@juicesharp/rpiv-pi 0.5.1 → 0.6.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 +2 -0
- package/extensions/rpiv-core/siblings.ts +5 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -145,6 +145,7 @@ Invoke via `/skill:<name>` from inside a Pi Agent session.
|
|
|
145
145
|
| `/rpiv-setup` | Install all sibling plugins in one go |
|
|
146
146
|
| `/rpiv-update-agents` | Sync rpiv agent profiles: add new, update changed, remove stale |
|
|
147
147
|
| `/advisor` | Configure advisor model and reasoning effort |
|
|
148
|
+
| `/btw` | Ask a side question without polluting the main conversation |
|
|
148
149
|
| `/todos` | Show current todo list |
|
|
149
150
|
| `/web-search-config` | Set Brave Search API key |
|
|
150
151
|
|
|
@@ -180,6 +181,7 @@ Pi Agent discovers extensions via `"extensions": ["./extensions"]` and skills vi
|
|
|
180
181
|
|
|
181
182
|
- **Web search** — run `/web-search-config` to set the Brave Search API key, or set the `BRAVE_SEARCH_API_KEY` environment variable
|
|
182
183
|
- **Advisor** — run `/advisor` to select a reviewer model and reasoning effort
|
|
184
|
+
- **Side questions** — type `/btw <question>` anytime (even mid-stream) to ask the primary model a one-off question; answer appears in a borderless bottom overlay and never enters the main conversation
|
|
183
185
|
- **Agent concurrency** — `@tintinweb/pi-subagents` defaults to 4 concurrent agents; raise via `/agents → Settings → Max concurrency → 48` if skills stall on wide fan-outs
|
|
184
186
|
- **Agent profiles** — editable at `<cwd>/.pi/agents/`; sync from bundled defaults with `/rpiv-update-agents` (overwrites rpiv-managed files, preserves your custom agents)
|
|
185
187
|
|
|
@@ -40,6 +40,11 @@ export const SIBLINGS: readonly SiblingPlugin[] = [
|
|
|
40
40
|
matches: /rpiv-advisor/i,
|
|
41
41
|
provides: "advisor tool + /advisor command",
|
|
42
42
|
},
|
|
43
|
+
{
|
|
44
|
+
pkg: "npm:@juicesharp/rpiv-btw",
|
|
45
|
+
matches: /rpiv-btw/i,
|
|
46
|
+
provides: "/btw side-question command",
|
|
47
|
+
},
|
|
43
48
|
{
|
|
44
49
|
pkg: "npm:@juicesharp/rpiv-web-tools",
|
|
45
50
|
matches: /rpiv-web-tools/i,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juicesharp/rpiv-pi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Skill-based development workflow for Pi Agent — discover, research, design, plan, implement, validate",
|
|
5
5
|
"keywords": ["pi-package", "pi-extension", "rpiv", "skills", "workflow"],
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"@juicesharp/rpiv-ask-user-question": "*",
|
|
29
29
|
"@juicesharp/rpiv-todo": "*",
|
|
30
30
|
"@juicesharp/rpiv-advisor": "*",
|
|
31
|
+
"@juicesharp/rpiv-btw": "*",
|
|
31
32
|
"@juicesharp/rpiv-web-tools": "*"
|
|
32
33
|
}
|
|
33
34
|
}
|