# 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. Use when this capability is needed.

- Skill: `tomevault-io/openclaw-management-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/openclaw-management-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/openclaw-management-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/openclaw-management-2

---


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: "..." }
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/freema) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

