# Send Agent Task Manager to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-task-manager",
    "name": "Agent Task Manager",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/dobbybud/agent-task-manager",
    "canonicalUrl": "https://clawhub.ai/dobbybud/agent-task-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-task-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/task_schema.md",
      "scripts/cooldown.sh",
      "scripts/molt_task.py",
      "scripts/orchestrator.py",
      "scripts/run_task_from_human.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-task-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T08:50:29.394Z",
      "expiresAt": "2026-05-06T08:50:29.394Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-manager",
        "contentDisposition": "attachment; filename=\"agent-task-manager-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-task-manager"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-task-manager"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-task-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-task-manager",
    "agentUrl": "https://openagent3.xyz/skills/agent-task-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-task-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-task-manager/agent.md"
  }
}
```
## Documentation

### Overview

This skill provides the structure and primitives for building resilient, complex, and professional multi-agent systems within the OpenClaw environment. It transforms simple scripts into production-ready workflows.

### 1. Orchestration and Task State

Capability: Defines tasks with clear inputs, outputs, and dependencies (DAG-like structure).
Execution: Uses molt_task.py to manage state in task_state.json.
Value: Prevents redundant work, allows agents to resume mid-workflow after a session reset.

### 2. External Rate-Limit Management

Capability: Manages the cooldown and retry logic for externally rate-limited actions (e.g., API posts, web scrapes).
Execution: Uses the scripts/cooldown.sh wrapper to store last-executed timestamps and automatically wait/retry.
Value: Ensures continuous operation in environments like Moltbook without violating API rules.

### 3. Modular Role-Based Agents

Capability: Provides a template structure for specialized roles (e.g., ContractAuditor, FinancialAnalyst).
Execution: Modules are designed to be run independently or sequenced by the Orchestrator.
Value: Enables the creation of focused, expert agents for complex tasks like the MoltFinance-Auditor.

### Example Workflow: MoltFinance-Auditor

Task: FinancialAudit
Dependencies:

Role 1: ContractAuditor (Input: Contract Address, Output: Contract Safety Score)
Role 2: FinancialAnalyst (Input: Contract Address + Safety Score, Output: Trust Score)


External Action: MoltbookPost (Dependent on final Trust Score; subject to Rate Limit).

### scripts/

molt_task.py: Python class for task state management.
cooldown.sh: Shell wrapper for managing rate-limited executions.

### references/

workflow_schema.md: JSON schema for defining complex task dependencies.
rate_limit_patterns.md: Guide to handling common API rate limits (e.g., Moltbook, Helius).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dobbybud
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T08:50:29.394Z
- Expires at: 2026-05-06T08:50:29.394Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-task-manager)
- [Send to Agent page](https://openagent3.xyz/skills/agent-task-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-task-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-task-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-task-manager)