cc-pipeline 0.6.5 → 0.6.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-pipeline",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Autonomous Claude Code pipeline engine. Install into any repo, write a BRIEF.md, and let Claude build your project phase by phase.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,3 +31,11 @@
31
31
  ## Definition of Done
32
32
  <!-- How many phases? When is the project complete? -->
33
33
  <!-- Example: "~4 phases for MVP, complete when all features above work with tests passing" -->
34
+
35
+ ## Reference Documentation
36
+ <!-- Paths to any local documentation, API references, or research you've downloaded. -->
37
+ <!-- The pipeline will read these during spec and research phases. -->
38
+ <!-- Examples: -->
39
+ <!-- - `docs/stripe-api.md` — Stripe Payments API reference -->
40
+ <!-- - `docs/shadcn-components.md` — Available shadcn/ui components and usage -->
41
+ <!-- - `docs/architecture-decision.md` — ADR for chosen approach -->
@@ -16,6 +16,7 @@ Read these files first:
16
16
  1. **Phase Spec**: `docs/phases/phase-{{PHASE}}/SPEC.md` — what we're building this phase
17
17
  2. **Previous Reflections**: `{{PREV_REFLECTIONS}}` — lessons from last phase (if exists)
18
18
  3. **Project architecture docs** — any existing CLAUDE.md, README.md, or docs/
19
+ 4. **Reference Documentation**: Read `BRIEF.md` and check for a `## Reference Documentation` section — if present, read every file listed there
19
20
 
20
21
  Current phase: {{PHASE}}
21
22
 
@@ -7,6 +7,7 @@ You are the Spec Writer. Your job is to take the overall project vision and brea
7
7
  1. **Project Brief**: `BRIEF.md` — the big picture and goals
8
8
  2. **Previous Reflections**: `{{PREV_REFLECTIONS}}` — lessons and forward-look from last phase (if exists)
9
9
  3. **Any existing phase specs in docs/phases/** — for continuity and avoiding duplication
10
+ 4. **Reference Documentation**: If `BRIEF.md` contains a `## Reference Documentation` section, read every file listed there before writing the spec
10
11
 
11
12
  Current phase: {{PHASE}}
12
13