@locksmithdon/dons-flow 2.1.1 → 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/README.md CHANGED
@@ -89,7 +89,7 @@ pi install npm:@tintinweb/pi-subagents
89
89
  pi install npm:@locksmithdon/dons-flow
90
90
  ```
91
91
 
92
- If RPIV's `/rpiv-setup` command is available, run it once and restart Pi to install RPIV's sibling plugins.
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.
93
93
 
94
94
  ### 3. Onboard the repo
95
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locksmithdon/dons-flow",
3
- "version": "2.1.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",
@@ -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
 
@@ -47,7 +47,25 @@ Look for:
47
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, also run `/rpiv-setup` once and restart Pi to install RPIV's sibling plugins.
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