forge-cc 0.1.26 → 0.1.27

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-cc",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "Pre-PR verification harness for Claude Code agents — gate runner + CLI + MCP server",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -39,21 +39,31 @@ options:
39
39
 
40
40
  ### Step 3 — Configure Gates
41
41
 
42
- Ask the user which verification gates to enable:
42
+ Ask the user which verification gates to enable. **AskUserQuestion supports max 4 options — use TWO questions to cover all 8 gates:**
43
43
 
44
44
  <AskUserQuestion>
45
- question: "Which verification gates should be active?"
45
+ question: "Which core gates should be active? (Recommended: all four)"
46
+ header: "Core gates"
46
47
  multiSelect: true
47
48
  options:
48
- - "types — TypeScript type checking (tsc --noEmit)"
49
- - "lint — ESLint / Biome linting"
50
- - "tests — Vitest / Jest test runner"
51
- - "visual — Playwright screenshot regression"
52
- - "runtime — Start the app and check for crashes"
49
+ - "types — TypeScript type checking (tsc --noEmit) (Recommended)"
50
+ - "lint — ESLint / Biome linting (Recommended)"
51
+ - "tests — Vitest / Jest test runner (Recommended)"
53
52
  - "prd — PRD completeness check"
54
53
  </AskUserQuestion>
55
54
 
56
- Default recommendation: `types`, `lint`, `tests`.
55
+ <AskUserQuestion>
56
+ question: "Enable any advanced gates? These require extra setup (Playwright, dev server, API access)."
57
+ header: "Advanced gates"
58
+ multiSelect: true
59
+ options:
60
+ - "visual — Playwright screenshot regression (requires Playwright + Chromium)"
61
+ - "runtime — Start the app and check for crashes (requires devServerUrl)"
62
+ - "review — AI code review (runs during forge verify)"
63
+ - "codex — Codex PR review polling (runs after PR creation)"
64
+ </AskUserQuestion>
65
+
66
+ Combine selections from both questions into the final gates list.
57
67
 
58
68
  Also collect project metadata (skip in Refresh mode if `.forge.json` already has values):
59
69