@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.
@@ -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):
@@ -5,6 +5,8 @@ CLI 명령어:
5
5
  reap status 현재 프로젝트 및 Generation 상태 확인
6
6
  reap update 슬래시 커맨드, 템플릿, 훅을 최신 버전으로 동기화
7
7
  reap fix .reap/ 디렉토리 구조 진단 및 복구
8
+ reap clean 대화형 옵션으로 REAP 프로젝트 초기화
9
+ reap destroy 프로젝트에서 모든 REAP 파일 제거
8
10
  reap help 이 도움말 표시
9
11
 
10
12
  슬래시 커맨드 (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 → `/reap.next`
167
- 3. `/reap.planning` — Task decomposition + plan → `/reap.next`
168
- 4. `/reap.implementation` — Code implementation → `/reap.next`
169
- 5. `/reap.validation` — Verification → `/reap.next`
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
- `/reap.next` is a **transition command**, not a lifecycle stage. It advances `current.yml` to the next stage.
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-d-cc/reap",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Recursive Evolutionary Autonomous Pipeline — AI and humans evolve software across generations",
5
5
  "type": "module",
6
6
  "license": "MIT",