AI Worker worker.md

Agently

[GenAI Application Development Framework] ๐Ÿš€ Build GenAI application quick and easy ๐Ÿ’ฌ Easy to interact with GenAI agent in code using structure data and chained-calls syntax ๐Ÿงฉ Use Event-Driven F...

Agent framework 1,584 stars Python Apache-2.0 Worker-compatible

Source#

  • Repository: AgentEra/Agently
  • Last source update: 2026-06-05
  • Last verified: 2026-06-07

Tags#

agentagent-based-frameworkagent-frameworkchatglmclaudedeepseek

Integration notes#

Framework-level abstraction; derive bounded worker contracts from concrete tasks and APIs in docs/examples.

worker.md example#

Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.

---
id: agently-repo-derived-worker
name: Agently Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/agently/
source_repository: https://github.com/AgentEra/Agently
repository_default_branch: main
repository_language: Python
repository_license: Apache-2.0
repository_updated_at: 2026-06-05
worker_mode: tool-gateway-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.95
derived_on: 2026-06-07
tags:
  - agent
  - agent-based-framework
  - agent-framework
  - chatglm
  - claude
  - deepseek
---

# Agently Repo-Derived Worker

## Repo-derived summary
- Registry summary: [GenAI Application Development Framework]  ๐Ÿš€ Build GenAI application quick and easy ๐Ÿ’ฌ Easy to interact with GenAI agent in code using structure data and chained-calls syntax ๐Ÿงฉ Use Event-Driven F...
- Repository description: [GenAI Application Development Framework]  ๐Ÿš€ Build GenAI application quick and easy ๐Ÿ’ฌ Easy to interact with GenAI agent in code using structure data and chained-calls syntax ๐Ÿงฉ Use Event-Driven Flow *TriggerFlow* to manage complex GenAI working logic ๐Ÿ”€ Switch to any model without rewrite application code
- Stars (snapshot): 1,584
- Primary language: Python
- Worker mode classification: tool-gateway-worker

## Extracted from
- https://github.com/AgentEra/Agently
- https://github.com/AgentEra/Agently/blob/main/README.md
- https://github.com/AgentEra/Agently/blob/main/README_CN.md
- https://img.shields.io/pypi/v/agently.svg

## Evidence notes (from repository text)
- README summary paragraph: > Build AI service backends with structured outputs, observable Actions, runtime Skills, MCP capabilities, process streams, and recoverable workflows.
- # Agently 4.1.3.5 - AI Application Runtime Framework
- > Build AI service backends with structured outputs, observable Actions, runtime Skills, MCP capabilities, process streams, and recoverable workflows.
- https://github.com/AgentEra/Agently/blob/main/README.md | https://github.com/AgentEra/Agently/blob/main/README_CN.md
- Docs ยท Quickstart ยท Why Agently ยท Capabilities ยท Architecture ยท Ecosystem
- Agently is for teams moving from "the model can do it once" to "the application must do it reliably":

## Installation hints found in README
- `pip install -U agently`
- `pip install agently-devtools`

## worker.md contract (derived starter)
Purpose: Expose repository-supported tool/server capabilities behind a bounded worker interface.

### Input schema
```json
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "request_id",
    "operation",
    "payload"
  ],
  "properties": {
    "request_id": {
      "type": "string"
    },
    "operation": {
      "type": "string"
    },
    "payload": {
      "type": "object"
    }
  }
}
```

### Output schema
```json
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "request_id",
    "status",
    "result"
  ],
  "properties": {
    "request_id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "ok",
        "retryable_error",
        "invalid_request",
        "invalid_output"
      ]
    },
    "result": {
      "type": "object"
    }
  }
}
```

### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: request_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use

## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.

How to use#

  • Save this as a worker spec file (for example: agently-my-task.worker.md).
  • Replace the input/output schemas and purpose with your real bounded task.
  • Enforce schema validation + timeout + retry policy in your runtime before production use.

Citation#

Reference URL: https://worker.md/registry/agently/

Source URL: https://github.com/AgentEra/Agently