بنقرة واحدة
toggle
Use when the user asks to pause, resume, or check CLoClo (cloclo off/on/status).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when the user asks to pause, resume, or check CLoClo (cloclo off/on/status).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Use when the pipeline needs an independent review of a spec, plan, or implementation via GLM (skipped when no Z.ai key is configured).
Use when setting up Claude Code for a new project — generates CLAUDE.md, real settings.json hooks, memory seeds, project skills, and an optional wiki, all adapted to the detected stack. Triggers: /bootstrap, setup project, initialise, configure claude code, nouveau projet
Use when the user asks to roll back or undo work from a CLoClo pipeline run (/rollback, 'undo pipeline', annule, reviens en arriere).
LLM-maintained persistent project wiki. Use when the user invokes /wiki or asks to ingest a document into the project wiki, query accumulated project knowledge, or health-check it. Claude does the bookkeeping — summaries, cross-references, contradictions, index. Triggers: /wiki, /wiki init, /wiki ingest, /wiki query, /wiki lint, /wiki status
Use when the pipeline needs a local CodeRabbit CLI review of a git diff during Phase 6.5
Use when the pipeline needs an independent review of a spec, plan, or implementation via the Codex CLI (falls back to a Claude subagent when Codex is unavailable).
استنادا إلى تصنيف SOC المهني
| name | toggle |
| description | Use when the user asks to pause, resume, or check CLoClo (cloclo off/on/status). |
Parse the user's message to determine the action:
The kill-switch is a single file, .cloclo-disabled, at the project root — resolved
the same way the hooks resolve it, so a toggle run from any subdirectory targets the same
file the hooks check. Anchor every command with this exact expression:
STATE="${CLAUDE_PROJECT_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}/.cloclo-disabled"
STATE="${CLAUDE_PROJECT_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}/.cloclo-disabled"
touch "$STATE"
Confirm:
CLoClo paused for this project. Hooks are silent, and /pipeline and /wiki ingest will
warn before proceeding (they check .cloclo-disabled at Step 0). Your wiki and skills are
otherwise untouched.
Note: .cloclo-disabled is LOCAL to this project (per-project, not global). Consider adding
it to .gitignore — committing it would disable CLoClo for every collaborator.
To resume: cloclo on
STATE="${CLAUDE_PROJECT_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}/.cloclo-disabled"
rm -f "$STATE"
Confirm:
CLoClo active. Hooks resumed, and /pipeline and /wiki no longer warn.
ROOT="${CLAUDE_PROJECT_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}"
if [ -f "$ROOT/.cloclo-disabled" ]; then echo "PAUSED: $ROOT"; else echo "ACTIVE: $ROOT"; fi
Report:
CLoClo is [ACTIVE|PAUSED] for project <resolved project root>.
.cloclo-disabled — when paused they stay silent.