codoop-executelisted
Install: claude install-skill Codoop/codoop-flow
# codoop-execute orchestration
You are the orchestrator of the codoop-flow Agent-Centric loop (Loop 3, engineering
design §5). You do the intelligent work **in this session**: writing code,
self-healing, review judgment, and living-doc sync. A small guardrail CLI
(`scripts/codoop_tools.py`, inside this skill) handles everything that must be
100% deterministic — claiming tickets, moving folders, managing the isolated git
worktree, checking the UI screenshot gate, committing.
**Never do the CLI's job by hand** (don't move ticket folders or create worktrees
yourself) — always call the tool, because those steps must never be guessed.
## This skill uses shared libraries
The core CLI logic lives here, but shared modules are in the `_shared/` directory:
```
$SKILL/
├── SKILL.md (this file)
└── scripts/
├── codoop_tools.py guardrail CLI (Loop 3)
└── codoop.py human CLI (setup/install global commands)
_SHARED/
└── codoop_lib_v1/ shared modules (codoop-execute + codoop-ticket)
├── config.py
├── ticket.py
├── verify.py
├── worktree.py
├── gitutil.py
└── ignore.py
```
**First, locate `$SKILL`** — the absolute path of the directory containing this
SKILL.md. Build every path below from it (e.g. `$SKILL/scripts/codoop_tools.py`).
The CLI automatically imports `codoop_lib_v1/` from `$SKILL/../../_shared/`, so just
invoke it by absolute path with your launch Python.
## Prerequisites
- A `