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