forge-workflow 1.4.6 → 1.4.9
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/.claude/skills/forge-workflow/SKILL.md +3 -2
- package/bin/forge.js +1162 -825
- package/docs/planning/PROGRESS.md +10 -0
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ A TDD-first workflow for AI coding agents. Ship features with confidence.
|
|
|
13
13
|
## When to Use
|
|
14
14
|
|
|
15
15
|
Automatically invoke this skill when the user wants to:
|
|
16
|
+
|
|
16
17
|
- Build a new feature
|
|
17
18
|
- Fix a bug
|
|
18
19
|
- Create a pull request
|
|
@@ -21,7 +22,7 @@ Automatically invoke this skill when the user wants to:
|
|
|
21
22
|
## 9 Stages
|
|
22
23
|
|
|
23
24
|
| Stage | Command | Description |
|
|
24
|
-
|
|
25
|
+
| ----- | ------- | ----------- |
|
|
25
26
|
| 1 | `/status` | Check current context, active work, recent completions |
|
|
26
27
|
| 2 | `/research` | Deep research with web search, document to docs/research/ |
|
|
27
28
|
| 3 | `/plan` | Create implementation plan, branch, OpenSpec if strategic |
|
|
@@ -34,7 +35,7 @@ Automatically invoke this skill when the user wants to:
|
|
|
34
35
|
|
|
35
36
|
## Workflow Flow
|
|
36
37
|
|
|
37
|
-
```
|
|
38
|
+
```text
|
|
38
39
|
/status -> /research -> /plan -> /dev -> /check -> /ship -> /review -> /merge -> /verify
|
|
39
40
|
```
|
|
40
41
|
|