@juicesharp/rpiv-pi 1.0.11 → 1.0.12

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
@@ -1,5 +1,11 @@
1
1
  # rpiv-pi
2
2
 
3
+ <a href="https://github.com/juicesharp/rpiv-mono/tree/main/packages/rpiv-pi">
4
+ <picture>
5
+ <img src="https://raw.githubusercontent.com/juicesharp/rpiv-mono/main/packages/rpiv-pi/docs/cover.png" alt="rpiv-pi cover" width="100%">
6
+ </picture>
7
+ </a>
8
+
3
9
  [![npm version](https://img.shields.io/npm/v/@juicesharp/rpiv-pi.svg)](https://www.npmjs.com/package/@juicesharp/rpiv-pi)
4
10
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juicesharp/rpiv-pi",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Skill-based development workflow for Pi Agent — discover, research, design, plan, implement, validate",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -4,26 +4,22 @@ description: Answer structured research questions via targeted parallel analysis
4
4
  argument-hint: [path to discover artifact | free-text research prompt]
5
5
  ---
6
6
 
7
- ## Questions Source
8
-
9
- The user's argument is inlined below as `$ARGUMENTS` (resolved by rpiv-args). If `$ARGUMENTS` is empty, ask for input. If `$ARGUMENTS` is a path to a `.md` file under `thoughts/`, treat it as a discover artifact. Otherwise treat it as a free-text research prompt and auto-run discover via an Agent (Step 1, free-text branch).
10
-
11
7
  # Research
12
8
 
13
9
  You are tasked with answering structured research questions by spawning targeted analysis agents and synthesizing their findings into a comprehensive research document. This skill consumes questions artifacts produced by the `discover` skill — either provided directly by the user, or produced on-demand via an Agent when the user passes free text.
14
10
 
15
- Argument (resolved by rpiv-args): `$ARGUMENTS`
11
+ Input: `$ARGUMENTS`
16
12
 
17
13
  ## Step 1: Read Questions Artifact
18
14
 
19
- 1. **Determine input** by inspecting `$ARGUMENTS`:
15
+ 1. **Determine input** by inspecting the inlined argument below:
20
16
 
21
17
  **Path to a `.md` file under `thoughts/`** (questions artifact):
22
18
  - Read the questions artifact FULLY using the Read tool WITHOUT limit/offset
23
19
  - Extract: Discovery Summary, Questions (dense paragraphs), frontmatter metadata (topic, tags)
24
20
  - The Discovery Summary provides the file landscape overview — no need to re-discover
25
21
 
26
- **Free-text prompt / task description** (`$ARGUMENTS` is non-empty and is NOT a path to a `thoughts/**/*.md` file):
22
+ **Free-text prompt / task description** (argument is non-empty and is NOT a path to a `thoughts/**/*.md` file):
27
23
  - Dispatch ONE `Agent` tool call to run discover end-to-end:
28
24
  ```
29
25
  Agent({
@@ -35,7 +31,7 @@ Argument (resolved by rpiv-args): `$ARGUMENTS`
35
31
  - Capture the returned absolute path, then fall through into the "Path to a `.md` file …" branch above.
36
32
  - Report: `[Auto-discovered]: ran discover via Agent for "$ARGUMENTS". Questions artifact: [path].`
37
33
 
38
- **`$ARGUMENTS` is empty:**
34
+ **Argument is empty:**
39
35
  ```
40
36
  Please provide a discover questions artifact path or a free-text research prompt. Free text will auto-run discover via an Agent first.
41
37
  ```
@@ -298,8 +294,9 @@ Research document written to:
298
294
 
299
295
  Please review and let me know if you have follow-up questions.
300
296
 
301
- When ready:
302
- `/skill:design thoughts/shared/research/[filename].md`
297
+ When ready, choose your next step:
298
+ - `/skill:design thoughts/shared/research/[filename].md` — iterative design with vertical-slice decomposition (produces design artifact for plan)
299
+ - `/skill:blueprint thoughts/shared/research/[filename].md` — combined design + phased plan in one pass (produces implement-ready plan directly)
303
300
  ```
304
301
 
305
302
  ## Step 6: Handle Follow-ups