pi-feature-dev 1.9.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/package.json +1 -1
- package/skills/grill/SKILL.md +6 -2
package/package.json
CHANGED
package/skills/grill/SKILL.md
CHANGED
|
@@ -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.
|
|
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
|
|
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
|
|