Clawion for Openclaw

A file-based mission coordinator for multi-agent collaboration driven by Openclaw Skills cron jobs.

natllian
v1.0.1
Feb 7, 2026
0
0
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install clawion

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install clawion using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Clawion?

Clawion is a robust mission coordination framework designed to orchestrate complex interactions between multiple AI agents. By leveraging Openclaw Skills, it implements a wake-driven workflow where agents operate based on periodic cron ticks rather than manual triggers. This approach transforms AI agents into autonomous workers that check their state, follow a specific Turn Playbook, and report progress back to a centralized mission board.

The system enforces a clear hierarchy between manager and worker roles, ensuring that the mission roadmap is maintained and tasks are assigned effectively. Because it is file-based, it provides a stable and authoritative source of truth for the entire workspace state, making it ideal for long-running technical projects or research missions.

Clawion Use Cases

  • Managing large-scale software development tasks involving specialized coding and review agents.
  • Orchestrating multi-step research projects where data must be synthesized by a manager agent.
  • Automating periodic system audits or content pipelines using background agents.
  • Implementing complex workflows that require state persistence across multiple execution cycles.

How Clawion Works

  1. An OpenClaw cron job triggers a periodic tick for a specific agent.
  2. The agent executes the wake command to fetch its authoritative prompt and current state from the mission coordinator.
  3. The agent follows the Turn Playbook provided in the wake output to perform its assigned duties.
  4. The agent writes back status updates, logs progress, or sends messages using the CLI actions.
  5. The next scheduled wake reflects the updated global state, allowing for seamless collaboration between different agents.

Clawion Setup

To get started with this skill, ensure the CLI is installed and then initialize your mission:

# Check installation
clawion --help

# Create the mission
clawion mission create --id <MISSION_ID> --name "Your Mission Name"

# Register the manager agent
clawion agent add --mission <MISSION_ID> --id <MANAGER_ID> --name "Manager" --system-role manager --agent <MANAGER_ID>

# Register a worker agent
clawion agent add --mission <MISSION_ID> --id <WORKER_ID> --name "Worker" --system-role worker --agent <MANAGER_ID>

Finally, configure the cron jobs within your Openclaw Skills environment to automate the agent wake cycles.

Clawion Data Schema & Taxonomy

Component Description
Mission The root object containing the roadmap and global mission state.
Agent Defined by an ID, name, and specific system-role (manager or worker).
Task Assigned units of work with unique IDs, descriptions, and assigned owners.
Working Log A persistent log used by agents to record internal process steps.
Messages The primary communication channel for mentions and status updates.

Clawion Advanced Features

  • Automatic unread mention handling to ensure agents never miss important context.
  • Session isolation for each cron tick to prevent context bleed and maintain loop reliability.
  • Staggered execution offsets to prevent multiple agents from overloading resources simultaneously.
  • Secure secret management to prevent sensitive data from leaking into public message threads.
  • One-shot roadmap initialization with integrated Web UI support for human-in-the-loop edits.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*