@locksmithdon/dons-flow 2.1.0 → 2.1.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/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -75,13 +75,21 @@ Full instructions are at [obra/superpowers](https://github.com/obra/superpowers)
|
|
|
75
75
|
|
|
76
76
|
### 2. Install RPIV and this package
|
|
77
77
|
|
|
78
|
+
RPIV and the Pi subagent runtime are declared as peer dependencies of this package. With npm 7+, they are installed automatically when you install `@locksmithdon/dons-flow`:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
pi install npm:@locksmithdon/dons-flow
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
If your Pi setup does not auto-install peer dependencies, install them explicitly:
|
|
85
|
+
|
|
78
86
|
```bash
|
|
79
87
|
pi install npm:@juicesharp/rpiv-pi
|
|
80
88
|
pi install npm:@tintinweb/pi-subagents
|
|
81
89
|
pi install npm:@locksmithdon/dons-flow
|
|
82
90
|
```
|
|
83
91
|
|
|
84
|
-
If RPIV's `/rpiv-setup` command is available,
|
|
92
|
+
If RPIV's `/rpiv-setup` command is available, `/skill:setup-dons-flow` runs it automatically to install RPIV's sibling plugins. Restart Pi when prompted so the new extensions load.
|
|
85
93
|
|
|
86
94
|
### 3. Onboard the repo
|
|
87
95
|
|
|
@@ -6,7 +6,7 @@ Check RPIV and Superpowers monthly to decide how `@locksmithdon/dons-flow` shoul
|
|
|
6
6
|
|
|
7
7
|
- **Cadence:** Monthly, or after every 2–3 projects completed with this workflow.
|
|
8
8
|
- **Duration:** 15–30 minutes.
|
|
9
|
-
- **Owner:**
|
|
9
|
+
- **Owner:** Don Smith.
|
|
10
10
|
|
|
11
11
|
## Trigger
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@locksmithdon/dons-flow",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Don's Flow v2 — a developer-specific Pi Agent workflow built on RPIV's observable pipeline, Superpowers' discipline, and a structured landing closeout.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"closeout"
|
|
15
15
|
],
|
|
16
16
|
"license": "MIT",
|
|
17
|
-
"author": "
|
|
17
|
+
"author": "Don Smith",
|
|
18
18
|
"type": "module",
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
@@ -5,7 +5,7 @@ description: Use when starting or navigating a major piece of work to apply the
|
|
|
5
5
|
|
|
6
6
|
# Don's Flow
|
|
7
7
|
|
|
8
|
-
**Version 2** of the developer workflow for
|
|
8
|
+
**Version 2** of the developer workflow for Don Smith. It composes three independent systems into one working practice:
|
|
9
9
|
|
|
10
10
|
1. **Superpowers** — Jesse Vincent's agentic methodology: Socratic design, bite-sized plans, red/green TDD, and subagent-driven execution. It is the system that got Don here.
|
|
11
11
|
2. **RPIV** — Juice Sharp's observable, artifact-chained delivery pipeline. It adds deliberate checkpoints, self-reflection, and a durable paper trail.
|
|
@@ -28,12 +28,12 @@ This skill is the map. It does not replace the skills it references — it helps
|
|
|
28
28
|
|
|
29
29
|
This skill assumes the following are available:
|
|
30
30
|
|
|
31
|
-
- **Superpowers** — the upstream methodology. Installed as a harness plugin (Claude, Codex, Gemini, Cursor, Copilot, etc.), not via npm. See `setup-dons-flow` for per-harness commands.
|
|
32
|
-
- **RPIV** (`@juicesharp/rpiv-pi`) — the observable delivery pipeline.
|
|
33
|
-
- **Pi subagent runtime** (`@tintinweb/pi-subagents`) — runtime used by RPIV.
|
|
31
|
+
- **Superpowers** — the upstream methodology. Installed as a harness plugin (Claude, Codex, Gemini, Cursor, Copilot, etc.), not via npm. See `setup-dons-flow` for per-harness commands. This is the only manual install step.
|
|
32
|
+
- **RPIV** (`@juicesharp/rpiv-pi`) — the observable delivery pipeline. Peer dependency; auto-installed with npm 7+ when you install `@locksmithdon/dons-flow`.
|
|
33
|
+
- **Pi subagent runtime** (`@tintinweb/pi-subagents`) — runtime used by RPIV. Peer dependency; auto-installed with npm 7+ when you install `@locksmithdon/dons-flow`.
|
|
34
34
|
- **Don's Flow** (`@locksmithdon/dons-flow`) — this package, which adds closeout and discipline skills.
|
|
35
35
|
|
|
36
|
-
If RPIV or the subagent runtime is missing,
|
|
36
|
+
If RPIV or the subagent runtime is missing, install them explicitly. If Superpowers is missing, this package's ported skills still provide the closeout workflow, but you will not have access to the upstream Superpowers entry points like `brainstorming` or `test-driven-development`.
|
|
37
37
|
|
|
38
38
|
## Before you start
|
|
39
39
|
|
|
@@ -43,7 +43,7 @@ If this repo has not been onboarded yet, run:
|
|
|
43
43
|
/skill:setup-dons-flow
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
That skill checks prerequisites, detects Superpowers, and creates the repo-owned conventions (`docs/tabled.md`, `docs/status.md`, `docs/memory/`, `docs/changes/`, `docs/retros/`, `docs/runbooks/`, `AGENTS.md`).
|
|
46
|
+
That skill checks prerequisites, detects Superpowers, installs RPIV's sibling extensions via `/rpiv-setup`, and creates the repo-owned conventions (`docs/tabled.md`, `docs/status.md`, `docs/memory/`, `docs/changes/`, `docs/retros/`, `docs/runbooks/`, `AGENTS.md`).
|
|
47
47
|
|
|
48
48
|
## Three modes of working
|
|
49
49
|
|
|
@@ -31,7 +31,7 @@ Superpowers is not an npm package and cannot be installed via `pi install` or `n
|
|
|
31
31
|
|
|
32
32
|
## Process
|
|
33
33
|
|
|
34
|
-
### Step 1: Detect installed Pi packages
|
|
34
|
+
### Step 1: Detect installed Pi packages and install RPIV siblings
|
|
35
35
|
|
|
36
36
|
Run:
|
|
37
37
|
|
|
@@ -43,11 +43,29 @@ Look for:
|
|
|
43
43
|
|
|
44
44
|
| Package | Required? | If missing |
|
|
45
45
|
|---|---|---|
|
|
46
|
-
| `npm:@juicesharp/rpiv-pi` | Yes | `pi install npm:@juicesharp/rpiv-pi
|
|
47
|
-
| `npm:@tintinweb/pi-subagents` | Yes | `pi install npm:@tintinweb/pi-subagents
|
|
46
|
+
| `npm:@juicesharp/rpiv-pi` | Yes | Peer dependency; auto-installed with npm 7+ when you install `@locksmithdon/dons-flow`. If not, run `pi install npm:@juicesharp/rpiv-pi`. |
|
|
47
|
+
| `npm:@tintinweb/pi-subagents` | Yes | Peer dependency; auto-installed with npm 7+ when you install `@locksmithdon/dons-flow`. If not, run `pi install npm:@tintinweb/pi-subagents`. |
|
|
48
48
|
| `npm:@locksmithdon/dons-flow` | Yes | `pi install npm:@locksmithdon/dons-flow` |
|
|
49
49
|
|
|
50
|
-
If RPIV is installed
|
|
50
|
+
If RPIV is installed but its sibling extensions are missing, run RPIV's setup command automatically:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
/rpiv-setup
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
This installs the sibling plugins:
|
|
57
|
+
|
|
58
|
+
- `@juicesharp/rpiv-ask-user-question`
|
|
59
|
+
- `@juicesharp/rpiv-todo`
|
|
60
|
+
- `@juicesharp/rpiv-advisor`
|
|
61
|
+
- `@juicesharp/rpiv-i18n`
|
|
62
|
+
- `@juicesharp/rpiv-web-tools`
|
|
63
|
+
- `@juicesharp/rpiv-args`
|
|
64
|
+
- `@juicesharp/rpiv-workflow`
|
|
65
|
+
|
|
66
|
+
After `/rpiv-setup` completes, **restart Pi** so the new extensions are loaded. Then re-run `/skill:setup-dons-flow` to continue onboarding.
|
|
67
|
+
|
|
68
|
+
If you cannot restart Pi in this session, report the remaining siblings to the user and ask them to restart before proceeding.
|
|
51
69
|
|
|
52
70
|
### Step 2: Detect Superpowers
|
|
53
71
|
|