@mrclrchtr/supi-flow 0.6.1 → 0.9.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 +8 -0
- package/package.json +17 -6
package/README.md
CHANGED
|
@@ -148,6 +148,14 @@ Flow phases map to TNDM statuses and tags:
|
|
|
148
148
|
- **tndm CLI**: required (all ticket operations shell out to `tndm`)
|
|
149
149
|
- **pi**: discovers bundled skills and prompt templates automatically from the package
|
|
150
150
|
|
|
151
|
+
## PI package
|
|
152
|
+
|
|
153
|
+
This extension is published as a [`pi-package`](https://pi.dev/packages) — listed in the PI package gallery. Install directly:
|
|
154
|
+
|
|
155
|
+
```bash
|
|
156
|
+
pi install npm:@mrclrchtr/supi-flow
|
|
157
|
+
```
|
|
158
|
+
|
|
151
159
|
## Installation
|
|
152
160
|
|
|
153
161
|
The extension is auto-discovered when the plugin directory is in pi's extension search path:
|
package/package.json
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrclrchtr/supi-flow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "PI extension for spec-driven workflow (brainstorm → plan → apply → archive) with TNDM ticket coordination, custom tools, and 6 auto-discovered skills",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"pi-package",
|
|
8
|
+
"pi-extension",
|
|
9
|
+
"tndm",
|
|
10
|
+
"workflow",
|
|
11
|
+
"ticket-coordination"
|
|
12
|
+
],
|
|
6
13
|
"license": "Apache-2.0",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/mrclrchtr/tandem"
|
|
17
|
+
},
|
|
7
18
|
"pi": {
|
|
8
19
|
"extensions": [
|
|
9
20
|
"./src/index.ts"
|
|
@@ -24,9 +35,9 @@
|
|
|
24
35
|
"README.md"
|
|
25
36
|
],
|
|
26
37
|
"devDependencies": {
|
|
27
|
-
"@earendil-works/pi-ai": "
|
|
28
|
-
"@earendil-works/pi-coding-agent": "
|
|
29
|
-
"@types/node": "
|
|
30
|
-
"vitest": "
|
|
38
|
+
"@earendil-works/pi-ai": "0.74.0",
|
|
39
|
+
"@earendil-works/pi-coding-agent": "0.74.0",
|
|
40
|
+
"@types/node": "25.7.0",
|
|
41
|
+
"vitest": "4.1.6"
|
|
31
42
|
}
|
|
32
43
|
}
|