adapters/openclaw/skills/clade-control/SKILL.md
Start, stop, or manage Clade autonomous coding loops remotely
npx skillsauth add shenxingy/claude-code-kit clade-controlInstall 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.
Start, stop, or manage autonomous coding loops on a remote machine.
User wants to:
Endpoint: POST {CLADE_BASE_URL}/control
Headers:
Authorization: Bearer {CLADE_API_KEY}
Content-Type: application/json
Start a new autonomous coding loop with a goal.
Request:
{
"project": "/home/user/myproject",
"action": "start",
"goal": "Fix all failing tests and ensure 100% pass rate",
"max_iter": 5,
"max_workers": 4,
"model": "sonnet"
}
Translating user intent to parameters:
max_iter: 3model: "opus"max_workers: 2max_iter: 3, model: "haiku"max_iter: 10, model: "opus"max_iter: 10, max_workers: 4, model: "sonnet"The goal can be:
"Fix the login page CSS on mobile""/home/user/myproject/goals/feature-x.md"Response:
{
"ok": true,
"action": "start",
"pid": 12345,
"goal": "/home/user/myproject/.claude/monitor-goal.md",
"max_iter": 5
}
Stop the currently running loop gracefully.
Request:
{
"project": "/home/user/myproject",
"action": "stop"
}
Response:
{"ok": true, "action": "stop", "sentinel": "/home/user/myproject/.claude/stop-start"}
Clear blockers so the loop can be restarted.
Request:
{
"project": "/home/user/myproject",
"action": "clear-blockers"
}
🚀 Loop started!
📋 Goal: {goal summary, first 80 chars}
⚙️ Config: {max_iter} iterations, {max_workers} workers, {model}
🔢 PID: {pid}
Use "status" to check progress.
🛑 Stop signal sent. The loop will finish its current task and exit gracefully.
🧹 Blockers cleared. You can now restart the loop.
testing
Test-suite diet — consolidate near-identical tests into table-driven cases, delete trivial/mock-only/brittle tests, and report every piece of coverage intentionally given up. Counterweight to AI test bloat that erodes loop clock speed.
development
In-session iterative loop — keeps Claude running in the current session until a task is done. Unlike /loop (which spawns background workers), /iloop stays in the current session and re-prompts each iteration via Stop hook. Use for: 'keep fixing until tests pass', 'iterate until this feature works', autonomous debugging. Triggers on: '/iloop', 'in-session loop', 'keep iterating', 'loop until done'.
development
Compose high-converting emails using proven copy frameworks (PAS, AIDA, BAB, FAB, 4Ps). Generates subject line variants with scores, responsive HTML templates with dark mode support, plain-text fallback, and preheader recommendations. Optimized for cold outreach, newsletters, product launches, promotions, and transactional emails. Adapts to user context from email-profile.md.
tools
Designs complete email automation sequences with timing, subject lines, copy, and conditional logic. Supports welcome series, nurture campaigns, re-engagement, abandoned cart, post-purchase, review requests, and custom sequences. Adapts sequence type, cadence, frameworks, and conditional branching to business context. Use when user wants to create an automated email series triggered by subscriber actions or time intervals.