forge-orkes 0.3.20 → 0.4.1

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": "forge-orkes",
3
- "version": "0.3.20",
3
+ "version": "0.4.1",
4
4
  "description": "Set up the Forge meta-prompting framework for Claude Code in your project",
5
5
  "bin": {
6
6
  "create-forge": "./bin/create-forge.js"
@@ -108,6 +108,7 @@ Subagents via `Task` → same precedence.
108
108
  | reviewing | sonnet | Audit judgment |
109
109
  | quick-tasking | haiku | Speed |
110
110
  | discussing | sonnet | Conversation |
111
+ | testing | sonnet | Code gen (author) + audit judgment (analyst) — matches executing/reviewing |
111
112
 
112
113
  | `current.status` | Route To |
113
114
  |-------------------|----------|
@@ -183,7 +184,7 @@ After clear, skills load from disk via "Read Context"/"Pre-Execution Checklist".
183
184
  Standard: not_started → [init?] → researching → discussing → planning → executing → verifying → reviewing → complete
184
185
  Full: not_started → [init?] → researching → discussing → architecting → planning → executing → verifying → reviewing → complete
185
186
 
186
- Branches (any tier, on-demand): debugging (stuck) · designing (UI) · securing (auth/data/API)
187
+ Branches (any tier, on-demand): debugging (stuck) · designing (UI) · securing (auth/data/API) · testing (e2e/integration/flake)
187
188
  Phase boundaries: `[clear]` recommended between phases to reset context.
188
189
  ```
189
190
 
@@ -186,6 +186,26 @@ Executor TDD (RED -> GREEN -> REFACTOR) auto-activates.
186
186
  - Multi-component integration (key_links)
187
187
  - Undefined interfaces (spec after architecting)
188
188
 
189
+ ### UI Coverage Carve-Out
190
+
191
+ Step 7 intentionally skips UI — that coverage is owned by `testing` skill (e2e + integration flows).
192
+
193
+ **Auto-suggest heuristic:** When requirements contain UI signals, prompt user once (pre-code) to invoke `testing`:
194
+
195
+ Signals (any match):
196
+ - `requirements.yml` description mentions: "UI", "page", "flow", "form", "dashboard", "component", "screen"
197
+ - Tasks in Step 6 have files matching: `src/components/**`, `src/pages/**`, `src/app/**`, `*.tsx`, `*.vue`, `*.svelte`
198
+ - `project.yml` stack includes web framework (Next.js, React, Vue, Svelte, Astro, Remix)
199
+
200
+ Prompt pattern:
201
+ > *"UI work detected. Invoke `testing` skill for e2e/integration coverage? (yes/no/later)"*
202
+
203
+ - **yes** — defer to `testing` after planning completes; note in plan frontmatter
204
+ - **no** — document rationale in `context.md` Discretion Areas
205
+ - **later** — surface again at verifying gate if UI tests still missing
206
+
207
+ Decision captured once, pre-code. Does not block planning.
208
+
189
209
  ## Step 8: Verify Plans
190
210
 
191
211
  8 dimensions:
@@ -315,5 +315,5 @@ pending → dismissed (during triage or later)
315
315
  ## Phase Handoff
316
316
 
317
317
  1. Confirm report + backlog
318
- 2. Set `current.status: complete`
318
+ 2. Set `current.status: complete` and `current.completed_at: "<ISO 8601 timestamp>"`
319
319
  3. *"Milestone [{name}] complete. Report: `.forge/audits/milestone-{id}-health-report.md`. {N} backlog items. `/forge` or backlog."*
@@ -13,7 +13,8 @@ current:
13
13
  phase_name: "" # Human-readable phase name
14
14
  plan: null # Current plan number within phase
15
15
  task: null # Current task number within plan
16
- status: not_started # not_started | researching | discussing | planning | executing | verifying | auditing | refactoring | complete
16
+ status: not_started # not_started | researching | discussing | planning | executing | verifying | reviewing | complete
17
+ completed_at: null # ISO 8601 timestamp — set when status transitions to complete
17
18
 
18
19
  progress:
19
20
  phases_complete: 0 # Number of roadmap phases with all tasks done
@@ -34,7 +34,7 @@ Auto-detects complexity. Override: "Use Quick/Standard/Full tier."
34
34
  ### Full (days)
35
35
  **Triggers:** new project, major milestone, complex multi-system, architectural decisions
36
36
  **Flow:** `researching` → `discussing` → `architecting` → `planning` → `executing` → `verifying` → `reviewing` → done
37
- **Optional:** `designing` (UI), `securing` (auth/data/API), `debugging` (stuck)
37
+ **Optional:** `designing` (UI), `securing` (auth/data/API), `debugging` (stuck), `testing` (e2e/integration/flake)
38
38
 
39
39
  ## Skill Routing
40
40
 
@@ -52,6 +52,7 @@ Auto-detects complexity. Override: "Use Quick/Standard/Full tier."
52
52
  | Small scoped fix | `quick-tasking` | Quick |
53
53
  | UI with design system | `designing` | When UI |
54
54
  | Security review | `securing` | When auth/data/API |
55
+ | E2E/integration tests + suite audit | `testing` | When UI/flows or flaky suite |
55
56
  | Systematic debugging | `debugging` | When stuck |
56
57
  | Upgrade Forge files | `upgrading` | On-demand |
57
58
  | Cross-session memory | `beads-integration` | When Beads installed |
@@ -103,6 +104,7 @@ models:
103
104
  | `executor` | Building + deviation rules | All dev tools | Execution |
104
105
  | `verifier` | Goal-backward verification | Read + Bash (tests) | Verification |
105
106
  | `reviewer` | Security + architecture + refactoring | Read, Bash, Grep, Glob | Reviewing |
107
+ | `tester` | E2E/integration authoring + suite analysis | Dual-mode: author (Write/Edit/Bash/git) · analyst (Read/Glob/Grep/Bash read-only) | Testing skill |
106
108
 
107
109
  ## Project Init (First Run)
108
110