@callumvass/forgeflow-dev 0.3.1 → 0.3.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.
- package/README.md +37 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @callumvass/forgeflow-dev
|
|
2
|
+
|
|
3
|
+
Dev pipeline for [Pi](https://github.com/nicholasgriffintn/pi) — TDD implementation, code review, architecture, and skill discovery.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx pi install @callumvass/forgeflow-dev
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Commands
|
|
12
|
+
|
|
13
|
+
| Command | Description |
|
|
14
|
+
|---------|-------------|
|
|
15
|
+
| `/implement` | Implement a single issue using TDD (plan → implement → refactor → review) |
|
|
16
|
+
| `/implement-all` | Loop through all open issues: implement, review, merge |
|
|
17
|
+
| `/review` | Code review: deterministic checks → reviewer → judge |
|
|
18
|
+
| `/architecture` | Analyze codebase for architectural friction, create RFC issues |
|
|
19
|
+
| `/discover-skills` | Find and install domain-specific plugins for your tech stack |
|
|
20
|
+
|
|
21
|
+
## Agents
|
|
22
|
+
|
|
23
|
+
- **planner** — Reads an issue, explores the codebase, outputs sequenced test cases
|
|
24
|
+
- **implementor** — TDD implementation with red-green-refactor
|
|
25
|
+
- **refactorer** — Post-implementation cleanup, extracts shared patterns
|
|
26
|
+
- **code-reviewer** — Structured checklist-driven code review
|
|
27
|
+
- **review-judge** — Validates review findings against actual code
|
|
28
|
+
- **architecture-reviewer** — Identifies structural friction and proposes RFCs
|
|
29
|
+
- **skill-discoverer** — Finds domain-specific plugins for the project
|
|
30
|
+
|
|
31
|
+
## Skills
|
|
32
|
+
|
|
33
|
+
- **tdd** — Test-driven development with red-green-refactor loop
|
|
34
|
+
- **code-review** — Structured review with confidence scoring
|
|
35
|
+
- **opensrc** — Fetch library source code for reference
|
|
36
|
+
- **stitch** — UI design reference integration
|
|
37
|
+
- **plugins** — Domain-specific review plugin router
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@callumvass/forgeflow-dev",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Dev pipeline for Pi — TDD implementation, code review, architecture, and skill discovery.",
|
|
6
6
|
"keywords": [
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsup"
|
|
37
37
|
},
|
|
38
|
-
"
|
|
38
|
+
"devDependencies": {
|
|
39
39
|
"@callumvass/forgeflow-shared": "*"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|