Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
a09d198
fix(web): allow workflow graph view to load without a codebase (#958)
coleam00 Apr 7, 2026
688aeea
fix(web): clarify server fallback chain comment for absent codebaseCwd
coleam00 Apr 7, 2026
1a8a1db
chore: update Homebrew formula for v0.3.2
github-actions[bot] Apr 8, 2026
1e513df
Merge branch 'dev' of https://github.com/coleam00/Archon into dev
coleam00 Apr 8, 2026
ef03cd2
fix(adapters): mock global fetch in GitLab adapter tests to prevent C…
coleam00 Apr 8, 2026
50f96f8
feat: script node type for DAG workflows (bun/uv runtimes) (#999)
Wirasm Apr 9, 2026
5cfc7da
fix: interactive-prd workflow bugs (#1001, #1002, #1003) (#1005)
Wirasm Apr 9, 2026
0d1ff41
fix(utils): correct misleading port-range comment in calculatePortOff…
kuishou68 Apr 9, 2026
2994d56
fix: Promise.any race condition in validator script check (#1007) (#1…
Wirasm Apr 9, 2026
53cabd4
fix: PowerShell Add-ToUserPath corrupts PATH when single entry exists…
RivoLink Apr 9, 2026
f121bbf
fix: normalize script path separators for Windows compatibility
coleam00 Apr 9, 2026
95679fa
fix(cli): workflow reject ignores positional reason argument
coleam00 Apr 9, 2026
36bd9cf
feat: add `archon serve` command for one-command web UI install (#1011)
Wirasm Apr 10, 2026
6f1b72e
feat: add automatic update check notification for binary users (#1039)
Wirasm Apr 10, 2026
c7412fb
fix: add explicit export entries for community forge adapters (#1041)
Wirasm Apr 10, 2026
572b23e
feat: auto-resolve Codex native binary in compiled builds (#995) (#1012)
Wirasm Apr 10, 2026
7318bf3
Release 0.3.3
Wirasm Apr 10, 2026
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
11 changes: 7 additions & 4 deletions .archon/workflows/defaults/archon-interactive-prd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ nodes:
- id: foundation-gate
approval:
message: "Answer the foundation questions above. Your answers will guide the research phase."
capture_response: true
depends_on: [initiate]

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

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

# ═══════════════════════════════════════════════════════════════
Expand All @@ -188,11 +191,11 @@ nodes:
**Deep dive answers**: $deepdive-gate.output
**Scope answers**: $scope-gate.output

Generate a complete PRD file at `.claude/PRPs/prds/{kebab-case-name}.prd.md`.
Generate a complete PRD file at `$ARTIFACTS_DIR/prds/{kebab-case-name}.prd.md`.

First create the directory:
```bash
mkdir -p .claude/PRPs/prds
mkdir -p $ARTIFACTS_DIR/prds
```

**First principles rule**: Before writing the Technical Approach section, READ the
Expand Down Expand Up @@ -243,9 +246,9 @@ nodes:
Read the PRD file that was just generated. The generate node output the file path:
$generate.output

Find the PRD file — check `.claude/PRPs/prds/` for the most recently created `.prd.md` file:
Find the PRD file — check `$ARTIFACTS_DIR/prds/` for the most recently created `.prd.md` file:
```bash
ls -t .claude/PRPs/prds/*.prd.md | head -1
ls -t $ARTIFACTS_DIR/prds/*.prd.md | head -1
```

Read the entire PRD, then verify EVERY technical claim against the actual codebase:
Expand Down
Loading
Loading