pi-feature-dev 1.8.0 → 1.9.1

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
@@ -19,6 +19,9 @@ isolated workers, Git task commits, internal reviews, finalize, and a portable
19
19
  run summary. It is portable across host agents that provide fresh-context
20
20
  isolated workers and Git access.
21
21
 
22
+ The `final-check` skill asks: “What else have we missed? Is there anything we
23
+ need to check or fix?”
24
+
22
25
  The `grill` skill runs a dependency-aware interview that researches facts,
23
26
  exhausts the current decision frontier round by round, sharpens domain language,
24
27
  and records agreed terminology and durable architectural decisions.
@@ -98,6 +101,12 @@ Run a plan with `plan-exec`:
98
101
  /skill:plan-exec docs/plans/20260518-example.md
99
102
  ```
100
103
 
104
+ Run a final completeness check on the current work:
105
+
106
+ ```text
107
+ /skill:final-check
108
+ ```
109
+
101
110
  Stress-test an idea before planning or implementation:
102
111
 
103
112
  ```text
@@ -154,6 +163,9 @@ pi-feature-dev/
154
163
  ├── feature-dev/
155
164
  │ ├── agents/openai.yaml
156
165
  │ └── SKILL.md
166
+ ├── final-check/
167
+ │ ├── agents/openai.yaml
168
+ │ └── SKILL.md
157
169
  ├── grill/
158
170
  │ ├── agents/openai.yaml
159
171
  │ ├── SKILL.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-feature-dev",
3
- "version": "1.8.0",
3
+ "version": "1.9.1",
4
4
  "description": "Portable coding-agent workflows packaged as skills.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: final-check
3
+ description: What else have we missed? Is there anything we need to check or fix? Use when the user invokes `$final-check`.
4
+ ---
5
+
6
+ What else have we missed? Is there anything we need to check or fix?
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "What Did We Miss?"
3
+ short_description: "What else should we check or fix?"
4
+ default_prompt: "$final-check: What else have we missed? Is there anything we need to check or fix?"
@@ -18,6 +18,10 @@ Do not implement the resulting plan or design during or immediately after the gr
18
18
 
19
19
  Never turn a discoverable fact into homework for the user. Never silently turn an unresolved decision into an assumption.
20
20
 
21
+ ## Resolve bundled resources
22
+
23
+ Before invoking a read for any relative reference in this skill, resolve it against the directory containing the selected `grill/SKILL.md`. Use that resolved path for the read. Never use the global skills directory, the current working directory, or the repository root as the base.
24
+
21
25
  ## Workflow
22
26
 
23
27
  ### 1. Establish the subject
@@ -86,7 +90,7 @@ Continue until no unresolved branch can materially affect the result. Respect an
86
90
 
87
91
  ## Record decisions during the grill
88
92
 
89
- When a project term is explicitly resolved, update the applicable `CONTEXT.md` immediately. Read and follow [CONTEXT-FORMAT.md](./CONTEXT-FORMAT.md) before the first update. Keep `CONTEXT.md` a glossary only: no implementation details, requirements, scratch notes, or architectural decisions.
93
+ When a project term is explicitly resolved, update the applicable `CONTEXT.md` immediately. Resolve [CONTEXT-FORMAT.md](./CONTEXT-FORMAT.md) from the selected `grill/SKILL.md` directory, then read and follow it before the first update. Keep `CONTEXT.md` a glossary only: no implementation details, requirements, scratch notes, or architectural decisions.
90
94
 
91
95
  Offer an ADR only when all three conditions hold:
92
96
 
@@ -94,7 +98,7 @@ Offer an ADR only when all three conditions hold:
94
98
  2. The choice would be surprising without its context.
95
99
  3. Genuine alternatives were considered and rejected for specific reasons.
96
100
 
97
- If any condition is missing, do not create an ADR. If all three hold, ask the user whether to record it, then read and follow [ADR-FORMAT.md](./ADR-FORMAT.md). Create directories and files lazily.
101
+ If any condition is missing, do not create an ADR. If all three hold, ask the user whether to record it, then resolve [ADR-FORMAT.md](./ADR-FORMAT.md) from the selected `grill/SKILL.md` directory and read and follow it. Create directories and files lazily.
98
102
 
99
103
  ## Finish with a confirmed session result
100
104