@callumvass/forgeflow-pm 0.3.1 → 0.4.0
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 +36 -0
- package/package.json +2 -2
- package/skills/writing-style/SKILL.md +5 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @callumvass/forgeflow-pm
|
|
2
|
+
|
|
3
|
+
PM pipeline for [Pi](https://github.com/nicholasgriffintn/pi) — PRD refinement, issue creation, and investigation.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx pi install @callumvass/forgeflow-pm
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Commands
|
|
12
|
+
|
|
13
|
+
| Command | Description |
|
|
14
|
+
|---------|-------------|
|
|
15
|
+
| `/prd-qa` | Refine PRD.md via critic → architect → integrator loop |
|
|
16
|
+
| `/continue` | Update PRD with Done/Next, QA, then create issues for next phase |
|
|
17
|
+
| `/create-gh-issues` | Decompose PRD.md into vertical-slice GitHub issues |
|
|
18
|
+
| `/create-gh-issue` | Create a single GitHub issue from a feature idea |
|
|
19
|
+
| `/jira-issues` | Decompose Confluence PM docs into Jira issues |
|
|
20
|
+
| `/investigate` | Spike or RFC: explore codebase + web, fill a Confluence template |
|
|
21
|
+
|
|
22
|
+
## Agents
|
|
23
|
+
|
|
24
|
+
- **prd-critic** — Reviews PRD.md, outputs questions or signals completion
|
|
25
|
+
- **prd-architect** — Answers questions using PRD and codebase context
|
|
26
|
+
- **prd-integrator** — Incorporates answers back into PRD.md
|
|
27
|
+
- **gh-issue-creator** — Decomposes PRD into vertical-slice GitHub issues
|
|
28
|
+
- **gh-single-issue-creator** — Interactive single issue creation from a feature idea
|
|
29
|
+
- **jira-issue-creator** — Decomposes Confluence docs into Jira issues
|
|
30
|
+
- **investigator** — Spike/RFC research agent
|
|
31
|
+
|
|
32
|
+
## Skills
|
|
33
|
+
|
|
34
|
+
- **issue-template** — Standard format for GitHub issues
|
|
35
|
+
- **prd-quality** — PRD completeness and quality criteria
|
|
36
|
+
- **writing-style** — Consistent tone and formatting rules
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@callumvass/forgeflow-pm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "PM pipeline for Pi — PRD refinement, issue creation, and continue.",
|
|
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": {
|