pi-feature-dev 1.8.0 → 1.9.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 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.0",
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?"