adapters/openclaw/skills/clade-status/SKILL.md
Check Clade loop progress, worker status, costs, and recent commits
npx skillsauth add shenxingy/claude-code-kit clade-statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Check the progress of autonomous coding loops running on a remote machine.
User asks about:
Endpoint: GET {CLADE_BASE_URL}/status
Optional query: ?project=/path/to/project (omit to use default)
Headers:
Authorization: Bearer {CLADE_API_KEY}
Response:
{
"project": "/home/user/myproject",
"loop": {
"iteration": 3,
"converged": false,
"goal": "/home/user/myproject/goals/fix-tests.md",
"started": "2025-03-24T14:30:45+0000"
},
"session": {
"mode": "run",
"status": "running",
"outer_iter": 2,
"feature": "auth-middleware"
},
"cost": {"total": "2.14", "last_iter": "0.43"},
"recent_commits": [
"abc1234 feat: add auth middleware",
"def5678 fix: login redirect bug",
"ghi9012 test: add auth integration tests"
],
"last_supervisor": "Planning 2 tasks: fix login test, update schema...",
"has_blockers": false
}
Format as a compact, phone-friendly message:
{converged ? "✅" : "🔄"} Loop: iter {iteration}/{max_iter if known, else "?"} ({converged ? "CONVERGED" : status})
📋 Goal: {goal filename, not full path}
🏷️ Feature: {feature}
💰 Cost: ${total} (last iter: ${last_iter})
Recent commits:
{each commit on its own line, indented}
{if has_blockers: "⚠️ BLOCKERS detected — run clade-report for details"}
{if last_supervisor not empty: "🧠 Supervisor: \"{first 100 chars}...\""}
python monitor.py -p /project"development
Orchestrate a fleet of parallel `codex exec` workers with you (Claude Code) as the supervisor — spawn one per isolated git worktree, dispatch headless, verify each INDEPENDENTLY, PR/merge. The manual "codex-ultracode" pattern for fanning out real implementation, research, or review work onto Codex. Bakes in the hard gotchas (stdin blocking, background tracking, don't-trust-self-reports, writer isolation). Triggers on — orchestrate codex, codex workers, codex fleet, spawn codex, delegate to codex in parallel, manual ultracode, 开 codex 小弟, 派 codex worker — NOT for a single cross-vendor opinion (use the `second-opinion-codex` agent), NOT for web-UI worker decomposition (use `/orchestrate`).
development
Create and manage git worktrees for parallel Codex sessions
development
Verify project behavior anchors — compilation, tests, and interaction checks after autonomous runs. NOT the Codex built-in /verify (which runs the app to observe a single change working) — this one walks the AGENTS.md "Features (Behavior Anchors)" list.
documentation
End-of-session documentation sync — updates TODO.md and PROGRESS.md only (run /commit after to commit everything)