Agent skill
openclaw-management
This skill should be used when the user wants to interact with OpenClaw, delegate tasks to their AI assistant, or check gateway status. Activates for AI assistant delegation and orchestration.
Install this agent skill to your Project
npx add-skill https://github.com/freema/openclaw-mcp/tree/main/plugins/claude/openclaw/skills/openclaw-management
SKILL.md
When the user wants to interact with OpenClaw or delegate tasks, use the OpenClaw MCP tools.
When to Use This Skill
Activate when the user:
- Wants to chat with OpenClaw ("Ask Claw to...", "Tell my assistant...")
- Delegates tasks ("Have OpenClaw research...", "Let Claw handle...")
- Checks status ("Is OpenClaw running?")
- Manages tasks ("Check task progress", "Cancel that task")
Tools Reference
| 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 |
Sync vs Async
Use sync (openclaw_chat):
- Quick questions
- Simple commands
- When you need immediate response
Use async (openclaw_chat_async):
- Research tasks
- Long-running operations
- Tasks that might timeout
Example Workflows
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: "..." }
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
kirby-i18n-workflows
Manages Kirby multi-language workflows, translations, and localized labels. Use when dealing with languages, translation keys, placeholders, or importing/exporting translations.
kirby-security-and-auth
Secures Kirby sites with access restriction, user roles, permissions, and protected downloads. Use when implementing login/role-based access, permissions, or file protection.
kirby-headless-api
Exposes Kirby content to headless clients using the API, KQL, and JSON representations. Use when building API endpoints, KQL queries, or headless frontends.
kirby-performance-and-media
Improves Kirby performance and media delivery (cache tuning, CDN, responsive images, lazy loading). Use when optimizing page speed, caching, or image handling.
kirby-panel-and-blueprints
Designs Kirby blueprints and Panel UI, including blueprint reuse/extends, programmable blueprints, and custom Panel fields/sections/areas. Use when changing the Panel experience or schema.
kirby-upgrade-and-maintenance
Upgrades Kirby and maintains dependencies safely using composer audit, plugin compatibility checks, and official docs. Use when updating Kirby versions or making maintenance changes that affect runtime.
Didn't find tool you were looking for?