install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/404-unknow/operator-skill" ~/.claude/skills/clawdbot-skills-operator-skill && rm -rf "$T"
manifest:
skills/404-unknow/operator-skill/SKILL.mdsource content
Skill Operator (PassDeck)
The Skill Operator serves as the orchestration and orchestration engine for collaborative agent sessions. It provides high-performance persistence using Loro-CRDT with an append-only log architecture, ensuring that data is never lost and remains consistent across all agents.
💾 Core Actions
team.create
team.create- Description: Initializes a new persistent collaborative session on disk. Creates the initial snapshot and metadata.
- Parameters:
{ taskName: string } - Output:
{ sessionId: string, status: 'Persisted' }
team.sync
team.sync- Description: Securely appends an incremental CRDT update to the session log. Every update is verified using Ed25519 signatures from the originating agent before persistence.
- Parameters:
{ sessionId: string, updatePayload: base64, publicKeyHex: string, signatureHex: string } - Output:
{ success: true, version: string }
team.load
team.load- Description: Recovers the full state of a collaborative session by merging the base snapshot with the incremental update log. Provides a "crash-proof" state recovery mechanism.
- Parameters:
{ sessionId: string } - Output:
{ payload: base64, format: 'full-merged-snapshot' }
🛡️ Key Features
- Performance: O(1) incremental sync performance.
- Fault-Tolerance: Instant crash recovery via Snapshot + WAL (Write-Ahead Logging).
- Security: Built-in Ed25519 signature verification for every sync operation.