Skip to content

Commit c7d1281

Browse files
authored
Merge pull request #1043 from coleam00/dev
Release 0.3.3
2 parents 6af6d11 + 7318bf3 commit c7d1281

60 files changed

Lines changed: 5724 additions & 392 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.archon/workflows/defaults/archon-interactive-prd.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ nodes:
5252
- id: foundation-gate
5353
approval:
5454
message: "Answer the foundation questions above. Your answers will guide the research phase."
55+
capture_response: true
5556
depends_on: [initiate]
5657

5758
# ═══════════════════════════════════════════════════════════════
@@ -106,6 +107,7 @@ nodes:
106107
- id: deepdive-gate
107108
approval:
108109
message: "Answer the deep dive questions above (vision, primary user, JTBD, constraints). Add any adjustments from the research."
110+
capture_response: true
109111
depends_on: [research]
110112

111113
# ═══════════════════════════════════════════════════════════════
@@ -172,6 +174,7 @@ nodes:
172174
- id: scope-gate
173175
approval:
174176
message: "Answer the scope questions above (MVP, must-haves, hypothesis, exclusions). This is the final input before PRD generation."
177+
capture_response: true
175178
depends_on: [technical]
176179

177180
# ═══════════════════════════════════════════════════════════════
@@ -188,11 +191,11 @@ nodes:
188191
**Deep dive answers**: $deepdive-gate.output
189192
**Scope answers**: $scope-gate.output
190193
191-
Generate a complete PRD file at `.claude/PRPs/prds/{kebab-case-name}.prd.md`.
194+
Generate a complete PRD file at `$ARTIFACTS_DIR/prds/{kebab-case-name}.prd.md`.
192195
193196
First create the directory:
194197
```bash
195-
mkdir -p .claude/PRPs/prds
198+
mkdir -p $ARTIFACTS_DIR/prds
196199
```
197200
198201
**First principles rule**: Before writing the Technical Approach section, READ the
@@ -243,9 +246,9 @@ nodes:
243246
Read the PRD file that was just generated. The generate node output the file path:
244247
$generate.output
245248
246-
Find the PRD file — check `.claude/PRPs/prds/` for the most recently created `.prd.md` file:
249+
Find the PRD file — check `$ARTIFACTS_DIR/prds/` for the most recently created `.prd.md` file:
247250
```bash
248-
ls -t .claude/PRPs/prds/*.prd.md | head -1
251+
ls -t $ARTIFACTS_DIR/prds/*.prd.md | head -1
249252
```
250253
251254
Read the entire PRD, then verify EVERY technical claim against the actual codebase:

0 commit comments

Comments
 (0)