dev-looplisted
Install: claude install-skill FeatureAgents/AgentsGitFlowController
# dev-loop · Executable Development Loop (Hard Gate, Not a Suggestion)
This skill is the **runnable form** of the pipeline declared in AGENTS.md §4. AGENTS.md states the *rules* (review before merge, local develop untouched, etc.); this file states the *sequence and the loop back-edges*. The loop is **mandatory** — content work that skips or short-circuits it violates discipline, not just style.
## The Loop
```
┌─ start-work (baseline first: git fetch + derive feature/<topic> from origin/develop)
│
├─ TDD INNER LOOP (repeat until green + behavior-verified)
│ red → unit-testcase / e2e-testcase: write failing unit tests or define E2E scenarios
│ green → coder: minimal implementation
│ test → unit-tester: green unit tests / e2e-tester: verify real sandbox & physical evidence
│ refactor → cleanup; re-run tests
│
├─ code-reviewer ──┐
├─ security-checker ──┼─ (all run; each emits [通過] / [問題] lists)
├─ test-reviewer ──┘
│ │
│ any [問題] item present? ──YES──▶ back to coder/tester, fix, RE-RUN REVIEWS (loop)
│ │
│ NO (all clean)
│ ▼
├─ doc-writer (update AGENTS.md, READMEs via readme-sync if needed)
│
├─ closeout
│ • bump version (npm version patch) on the feature branch
│ • CHANGELOG entry (version number only, no date, same PR)
│ • QA triple: typecheck 0 Error · npm test all green · npm run verify:matrix all green
│ • pre-commit-review: list fi