Help us improve
Share bugs, ideas, or general feedback.
From openclaw
Interacts with OpenClaw to delegate tasks, check gateway status, and manage async task lifecycle. Activates for AI assistant delegation and orchestration.
npx claudepluginhub freema/openclaw-mcp --plugin openclawHow this skill is triggered — by the user, by Claude, or both
Slash command
/openclaw:openclaw-managementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user wants to interact with OpenClaw or delegate tasks, use the OpenClaw MCP tools.
Answers OpenClaw questions on configuration, troubleshooting, setup, architecture, features, channels, gateway, automation, models, and design decisions using clawdocs and openclaw CLIs.
Conducts an interactive interview to understand goals and environment, then generates a tailored OpenClaw deployment plan with milestones, commands, and configurations.
Routes task dispatch to AO workers by default, with fallback to Hermes gateway for interactive sessions or explicit requests. Validates gateway health and auto-detects project context for PR tasks.
Share bugs, ideas, or general feedback.
When the user wants to interact with OpenClaw or delegate tasks, use the OpenClaw MCP tools.
Activate when the user:
| Task | Tool |
|---|---|
| Chat (sync) | openclaw_chat |
| Chat (async) | openclaw_chat_async |
| Task status | openclaw_task_status |
| List tasks | openclaw_task_list |
| Cancel task | openclaw_task_cancel |
| Gateway health | openclaw_status |
Use sync (openclaw_chat):
Use async (openclaw_chat_async):
Quick question:
openclaw_chat message="What's the weather?"
Long task:
openclaw_chat_async message="Research competitors and write a report"
→ { task_id: "task_abc123" }
openclaw_task_status task_id="task_abc123"
→ { status: "running" }
# ... poll until complete ...
openclaw_task_status task_id="task_abc123"
→ { status: "completed", result: "..." }