Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/loop-init-validation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# loop-init Validation Checklist

Tracks whether `npx @cobusgreyling/loop-init` produces a working, sane scaffold
for each pattern × --tool combination. Fill in a row after actually running
the command in a fresh git repo — don't guess.

## How to validate a row

\`\`\`
mkdir <temp-folder> && cd <temp-folder>
git init
npx @cobusgreyling/loop-init . --pattern <pattern> --tool <tool>
\`\`\`

Record the printed Loop Ready score, list files created, and note anything
unexpected. Command used for validation below (Windows/PowerShell):

\`\`\`
mkdir C:\Temp\loop-init-test
cd C:\Temp\loop-init-test
git init
npx @cobusgreyling/loop-init . --pattern daily-triage --tool claude
\`\`\`

## Matrix

| Pattern | --tool | Loop Ready score | Files created | Notes |
|---|---|---|---|---|
| daily-triage | claude | 100/100 (L3) | `.claude/skills/loop-triage/`, `.claude/agents/loop-verifier.md`, `STATE.md`, `LOOP.md`, `loop-budget.md`, `loop-run-log.md`, `loop-constraints.md`, `.claude/skills/loop-budget/SKILL.md`, `.claude/skills/loop-constraints/SKILL.md`, `AGENTS.md` (template) | Clean scaffold, no errors. Immediately scored 100/100 with no manual edits. |
| daily-triage | grok | | | |
| daily-triage | codex | | | |
| daily-triage | opencode | | | |
| ci-sweeper | claude | | | |
| ci-sweeper | grok | | | |
| ci-sweeper | codex | | | |
| ci-sweeper | opencode | | | |

Empty rows are open for other contributors — see #231.
2 changes: 2 additions & 0 deletions tools/loop-init/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Scaffold loop engineering starters into your project by pattern and tool.

**npx @cobusgreyling/loop-init . --pattern daily-triage --tool grok** works immediately.

See [docs/loop-init-validation.md](../../docs/loop-init-validation.md) for a validated pattern × --tool matrix.

## Install & Run

```bash
Expand Down