{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-task-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-task-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/task_schema.md",
      "scripts/cooldown.sh",
      "scripts/molt_task.py",
      "scripts/orchestrator.py",
      "scripts/run_task_from_human.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/agent-task-manager",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "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."
      },
      {
        "title": "1. Orchestration and Task State",
        "body": "Capability: Defines tasks with clear inputs, outputs, and dependencies (DAG-like structure).\nExecution: Uses molt_task.py to manage state in task_state.json.\nValue: Prevents redundant work, allows agents to resume mid-workflow after a session reset."
      },
      {
        "title": "2. External Rate-Limit Management",
        "body": "Capability: Manages the cooldown and retry logic for externally rate-limited actions (e.g., API posts, web scrapes).\nExecution: Uses the scripts/cooldown.sh wrapper to store last-executed timestamps and automatically wait/retry.\nValue: Ensures continuous operation in environments like Moltbook without violating API rules."
      },
      {
        "title": "3. Modular Role-Based Agents",
        "body": "Capability: Provides a template structure for specialized roles (e.g., ContractAuditor, FinancialAnalyst).\nExecution: Modules are designed to be run independently or sequenced by the Orchestrator.\nValue: Enables the creation of focused, expert agents for complex tasks like the MoltFinance-Auditor."
      },
      {
        "title": "Example Workflow: MoltFinance-Auditor",
        "body": "Task: FinancialAudit\nDependencies:\n\nRole 1: ContractAuditor (Input: Contract Address, Output: Contract Safety Score)\nRole 2: FinancialAnalyst (Input: Contract Address + Safety Score, Output: Trust Score)\n\n\nExternal Action: MoltbookPost (Dependent on final Trust Score; subject to Rate Limit)."
      },
      {
        "title": "scripts/",
        "body": "molt_task.py: Python class for task state management.\ncooldown.sh: Shell wrapper for managing rate-limited executions."
      },
      {
        "title": "references/",
        "body": "workflow_schema.md: JSON schema for defining complex task dependencies.\nrate_limit_patterns.md: Guide to handling common API rate limits (e.g., Moltbook, Helius)."
      }
    ],
    "body": "Agent Task Manager\nOverview\n\nThis 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.\n\nCore Capabilities\n1. Orchestration and Task State\nCapability: Defines tasks with clear inputs, outputs, and dependencies (DAG-like structure).\nExecution: Uses molt_task.py to manage state in task_state.json.\nValue: Prevents redundant work, allows agents to resume mid-workflow after a session reset.\n2. External Rate-Limit Management\nCapability: Manages the cooldown and retry logic for externally rate-limited actions (e.g., API posts, web scrapes).\nExecution: Uses the scripts/cooldown.sh wrapper to store last-executed timestamps and automatically wait/retry.\nValue: Ensures continuous operation in environments like Moltbook without violating API rules.\n3. Modular Role-Based Agents\nCapability: Provides a template structure for specialized roles (e.g., ContractAuditor, FinancialAnalyst).\nExecution: Modules are designed to be run independently or sequenced by the Orchestrator.\nValue: Enables the creation of focused, expert agents for complex tasks like the MoltFinance-Auditor.\nExample Workflow: MoltFinance-Auditor\nTask: FinancialAudit\nDependencies:\nRole 1: ContractAuditor (Input: Contract Address, Output: Contract Safety Score)\nRole 2: FinancialAnalyst (Input: Contract Address + Safety Score, Output: Trust Score)\nExternal Action: MoltbookPost (Dependent on final Trust Score; subject to Rate Limit).\nResources\nscripts/\nmolt_task.py: Python class for task state management.\ncooldown.sh: Shell wrapper for managing rate-limited executions.\nreferences/\nworkflow_schema.md: JSON schema for defining complex task dependencies.\nrate_limit_patterns.md: Guide to handling common API rate limits (e.g., Moltbook, Helius)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dobbybud/agent-task-manager",
    "publisherUrl": "https://clawhub.ai/dobbybud/agent-task-manager",
    "owner": "dobbybud",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}