forge-cc 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skills/forge-go.md +13 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forge-cc",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Pre-PR verification harness for Claude Code agents — gate runner + CLI + MCP server",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -32,23 +32,23 @@ If all milestones are complete:
32
32
 
33
33
  > All milestones complete! Create a PR with `gh pr create` or run `/forge:spec` to start a new project.
34
34
 
35
- ### Step 1.5 — Choose Execution Mode
35
+ ### Step 1.5 — Choose Execution Mode (MANDATORY)
36
36
 
37
- **Unless `--auto` was passed as an argument**, prompt the user to choose their execution mode using AskUserQuestion:
37
+ **STOP. Do NOT proceed to Step 2 until this step is complete.**
38
38
 
39
- ```
40
- Question: "How should this project be executed?"
41
- Header: "Mode"
42
- Options:
43
- 1. Label: "Single milestone"
44
- Description: "Execute the next milestone, then stop. Good for reviewing progress between milestones or when context is tight."
45
- 2. Label: "Auto (all milestones)"
46
- Description: "Chain all remaining milestones with fresh context between each. Prints continuation instructions after each milestone completes."
47
- ```
39
+ If `--auto` was passed as an argument, set mode to auto and skip the prompt below.
40
+
41
+ Otherwise, you MUST use the AskUserQuestion tool RIGHT NOW to ask the user which mode they want. Do not skip this. Do not assume single milestone. Do not proceed without an answer.
48
42
 
49
- If `--auto` was passed as an argument, skip this prompt and proceed in auto mode.
43
+ Use AskUserQuestion with exactly these parameters:
44
+ - question: "How should this project be executed?"
45
+ - header: "Mode"
46
+ - options:
47
+ - label: "Single milestone", description: "Execute the next pending milestone, then stop. Good for reviewing progress between milestones."
48
+ - label: "Auto (all milestones)", description: "Chain all remaining milestones with fresh context between each. After each milestone, prints a continuation prompt for the next session."
49
+ - multiSelect: false
50
50
 
51
- Store the user's choice and apply it in Step 8 (Route Next).
51
+ **Wait for the user's response before continuing.** Store their choice and apply it in Step 8 (Route Next).
52
52
 
53
53
  ### Step 2 — Pre-flight Checks
54
54