forge-cc 0.1.1 → 0.1.3
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 +1 -1
- package/skills/forge-go.md +14 -15
package/package.json
CHANGED
package/skills/forge-go.md
CHANGED
|
@@ -6,9 +6,11 @@ Execute milestones from your PRD with wave-based agent teams, self-healing verif
|
|
|
6
6
|
|
|
7
7
|
Follow these steps exactly. The execution engine at `src/go/executor.ts` provides the programmatic logic — this skill drives the agent orchestration.
|
|
8
8
|
|
|
9
|
-
### Step 1 — Orient
|
|
9
|
+
### Step 1 — Orient + Choose Mode
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
**This step has two parts. Complete BOTH before moving to Step 2. Do NOT read any other files, do NOT start pre-flight checks, do NOT read the PRD until both parts are done.**
|
|
12
|
+
|
|
13
|
+
**Part A — Read state (only these 3 files, nothing else):**
|
|
12
14
|
|
|
13
15
|
```
|
|
14
16
|
Read these files in parallel:
|
|
@@ -32,23 +34,20 @@ If all milestones are complete:
|
|
|
32
34
|
|
|
33
35
|
> All milestones complete! Create a PR with `gh pr create` or run `/forge:spec` to start a new project.
|
|
34
36
|
|
|
35
|
-
|
|
37
|
+
**Part B — Ask execution mode (MANDATORY — do this IMMEDIATELY after Part A):**
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
If `--auto` was passed as an argument, set mode to auto and skip the prompt.
|
|
38
40
|
|
|
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
|
-
```
|
|
41
|
+
Otherwise: **your very next tool call MUST be AskUserQuestion.** No file reads, no git commands, no exploration — ask the user first. Use exactly these parameters:
|
|
48
42
|
|
|
49
|
-
|
|
43
|
+
- question: "How should this project be executed?"
|
|
44
|
+
- header: "Mode"
|
|
45
|
+
- options:
|
|
46
|
+
- label: "Single milestone", description: "Execute the next pending milestone, then stop. Good for reviewing progress between milestones."
|
|
47
|
+
- 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."
|
|
48
|
+
- multiSelect: false
|
|
50
49
|
|
|
51
|
-
|
|
50
|
+
**Wait for the user's response before continuing.** Do not proceed to Step 2 until you have their answer. Store the choice for Step 8 (Route Next).
|
|
52
51
|
|
|
53
52
|
### Step 2 — Pre-flight Checks
|
|
54
53
|
|