@c-d-cc/reap 0.14.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.ja.md +12 -10
- package/README.ko.md +12 -10
- package/README.md +13 -11
- package/README.zh-CN.md +12 -10
- package/dist/cli.js +845 -264
- package/dist/templates/help/en.txt +2 -0
- package/dist/templates/help/ko.txt +2 -0
- package/dist/templates/hooks/reap-guide.md +8 -6
- package/package.json +1 -1
|
@@ -5,6 +5,8 @@ CLI Commands:
|
|
|
5
5
|
reap status Show current project and Generation status
|
|
6
6
|
reap update Sync slash commands, templates, and hooks
|
|
7
7
|
reap fix Diagnose and repair .reap/ directory
|
|
8
|
+
reap clean Reset REAP project with interactive options
|
|
9
|
+
reap destroy Remove all REAP files from project
|
|
8
10
|
reap help Show this help message
|
|
9
11
|
|
|
10
12
|
Slash Commands (use in Claude Code):
|
|
@@ -161,15 +161,17 @@ REAP supports multiple AI agents simultaneously through the AgentAdapter abstrac
|
|
|
161
161
|
objective → planning → implementation → validation → completion
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
**Execution sequence
|
|
164
|
+
**Execution sequence** (auto-transition):
|
|
165
165
|
1. `/reap.start` — Create a new Generation
|
|
166
|
-
2. `/reap.objective` — Define goal + requirements →
|
|
167
|
-
3. `/reap.planning` — Task decomposition + plan →
|
|
168
|
-
4. `/reap.implementation` — Code implementation →
|
|
169
|
-
5. `/reap.validation` — Verification →
|
|
166
|
+
2. `/reap.objective` — Define goal + requirements → `--phase complete` auto-advances to planning
|
|
167
|
+
3. `/reap.planning` — Task decomposition + plan → `--phase complete` auto-advances to implementation
|
|
168
|
+
4. `/reap.implementation` — Code implementation → `--phase complete` auto-advances to validation
|
|
169
|
+
5. `/reap.validation` — Verification → `--phase complete` auto-advances to completion
|
|
170
170
|
6. `/reap.completion` — Retrospective + genome updates + archiving (auto)
|
|
171
171
|
|
|
172
|
-
|
|
172
|
+
Each `--phase complete` generates a stage chain token (nonce), auto-transitions to the next stage, and creates the next artifact template. The next stage command verifies the token at entry — this ensures stages cannot be skipped.
|
|
173
|
+
|
|
174
|
+
`/reap.next` is maintained as a **fallback command**. If auto-transition already occurred, it confirms the transition. If not, it errors.
|
|
173
175
|
`/reap.completion` auto-archives after the feedKnowledge phase — no separate `/reap.next` needed at the end.
|
|
174
176
|
|
|
175
177
|
## Language
|