LaunchKit · 2026
Back to Skills

agent-task-manager

Manages and orchestrates multi-step, stateful agent.

0
2.2k downloads
by @dobbybud

Setup & Installation

openclaw skills install @dobbybud/agent-task-manager

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agent-task-manager

What This Skill Does

Provides primitives for building multi-step agent workflows with task dependencies, persistent state, and rate-limit handling. Uses a DAG-like structure so agents can resume after session resets without repeating completed work. Includes cooldown logic for externally rate-limited actions like API posts or web scrapes.

Combining state persistence, dependency resolution, and rate-limit management in one structure eliminates the need to wire these concerns separately across agent scripts.

When to use it

  • Resume a multi-agent pipeline after a crashed session
  • Sequence a contract auditor and financial analyst with shared state
  • Throttle automated social posts to stay within API rate limits
  • Coordinate specialized role-based agents for a complex audit workflow
  • Track which steps in a long workflow have already completed

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Run a full financial audit on contract address 0xABC123 and post the result to Moltbook

AGENT
  1. 1Orchestrator loads task_state.json to check which steps are already complete
  2. 2ContractAuditor agent runs against 0xABC123 and writes a Contract Safety Score to task state
  3. 3FinancialAnalyst agent reads the Safety Score from state and computes a Trust Score
  4. 4cooldown.sh checks the last Moltbook post timestamp and waits if the cooldown window has not elapsed
  5. 5MoltbookPost action publishes the Trust Score once the rate limit clears
OUTPUT

Audit results posted to Moltbook with full task state saved for resumption if interrupted