pi-feature-dev 1.4.0 → 1.5.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 +20 -0
- package/package.json +1 -1
- package/skills/feature-dev/agents/openai.yaml +4 -0
- package/skills/grill/ADR-FORMAT.md +35 -0
- package/skills/grill/CONTEXT-FORMAT.md +61 -0
- package/skills/grill/SKILL.md +114 -0
- package/skills/grill/agents/openai.yaml +4 -0
- package/skills/plan-exec/agents/openai.yaml +4 -0
- package/skills/plan-make/agents/openai.yaml +4 -0
- package/skills/plan-review/agents/openai.yaml +4 -0
package/README.md
CHANGED
|
@@ -19,6 +19,10 @@ 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 `grill` skill runs a dependency-aware interview that researches facts,
|
|
23
|
+
exhausts the current decision frontier round by round, sharpens domain language,
|
|
24
|
+
and records agreed terminology and durable architectural decisions.
|
|
25
|
+
|
|
22
26
|
## Install
|
|
23
27
|
|
|
24
28
|
```
|
|
@@ -60,6 +64,7 @@ versions came from:
|
|
|
60
64
|
|
|
61
65
|
- [umputun/cc-thingz](https://github.com/umputun/cc-thingz)
|
|
62
66
|
- [anthropics/claude-code feature-dev plugin](https://github.com/anthropics/claude-code/tree/main/plugins/feature-dev)
|
|
67
|
+
- [mattpocock/skills batch-grill-me and domain-modeling skills](https://github.com/mattpocock/skills)
|
|
63
68
|
|
|
64
69
|
## Usage
|
|
65
70
|
|
|
@@ -83,6 +88,12 @@ Run a plan with `plan-exec`:
|
|
|
83
88
|
/skill:plan-exec docs/plans/20260518-example.md
|
|
84
89
|
```
|
|
85
90
|
|
|
91
|
+
Stress-test an idea before planning or implementation:
|
|
92
|
+
|
|
93
|
+
```text
|
|
94
|
+
/skill:grill Challenge the design for usage-based billing.
|
|
95
|
+
```
|
|
96
|
+
|
|
86
97
|
This package is intentionally skill-only. It does not provide prompt template shortcuts; use `/skill:<name>` for explicit Pi invocation.
|
|
87
98
|
|
|
88
99
|
## Feature-dev workflow
|
|
@@ -104,14 +115,23 @@ pi-feature-dev/
|
|
|
104
115
|
├── package.json
|
|
105
116
|
└── skills/
|
|
106
117
|
├── feature-dev/
|
|
118
|
+
│ ├── agents/openai.yaml
|
|
107
119
|
│ └── SKILL.md
|
|
120
|
+
├── grill/
|
|
121
|
+
│ ├── agents/openai.yaml
|
|
122
|
+
│ ├── SKILL.md
|
|
123
|
+
│ ├── CONTEXT-FORMAT.md
|
|
124
|
+
│ └── ADR-FORMAT.md
|
|
108
125
|
├── plan-exec/
|
|
126
|
+
│ ├── agents/openai.yaml
|
|
109
127
|
│ ├── SKILL.md
|
|
110
128
|
│ ├── references/
|
|
111
129
|
│ └── scripts/
|
|
112
130
|
├── plan-make/
|
|
131
|
+
│ ├── agents/openai.yaml
|
|
113
132
|
│ └── SKILL.md
|
|
114
133
|
└── plan-review/
|
|
134
|
+
├── agents/openai.yaml
|
|
115
135
|
└── SKILL.md
|
|
116
136
|
```
|
|
117
137
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# ADR Format
|
|
2
|
+
|
|
3
|
+
Store an ADR in the `docs/adr/` directory owned by the applicable context. Use root `docs/adr/` for a system-wide decision. Create the directory lazily when the first ADR is accepted.
|
|
4
|
+
|
|
5
|
+
Use sequential filenames such as `0001-event-sourced-orders.md` and `0002-postgres-for-write-model.md`. Scan the target directory for the highest existing number and increment it by one.
|
|
6
|
+
|
|
7
|
+
## Template
|
|
8
|
+
|
|
9
|
+
```md
|
|
10
|
+
# {Short title of the decision}
|
|
11
|
+
|
|
12
|
+
{In one to three sentences, state the context, the decision, and why it was chosen.}
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
That is enough for most ADRs. Record that a decision was made and why; do not fill sections for ceremony.
|
|
16
|
+
|
|
17
|
+
## Optional sections
|
|
18
|
+
|
|
19
|
+
Include a section only when it adds information a future reader needs:
|
|
20
|
+
|
|
21
|
+
- `status` frontmatter (`proposed`, `accepted`, `deprecated`, or `superseded by ADR-NNNN`) when the decision may be revisited.
|
|
22
|
+
- **Considered Options** when rejected alternatives are worth remembering.
|
|
23
|
+
- **Consequences** when non-obvious downstream effects need to be explicit.
|
|
24
|
+
|
|
25
|
+
## Qualification test
|
|
26
|
+
|
|
27
|
+
Create an ADR only when all three statements are true:
|
|
28
|
+
|
|
29
|
+
1. Reversing the decision later would be meaningfully costly.
|
|
30
|
+
2. A future reader would find the choice surprising without its context.
|
|
31
|
+
3. The decision resolved a real trade-off among genuine alternatives.
|
|
32
|
+
|
|
33
|
+
Qualifying decisions commonly include architectural shape, cross-context integration, lock-in-heavy technology choices, ownership boundaries, deliberate deviations from the obvious path, constraints invisible in code, and non-obvious rejected alternatives.
|
|
34
|
+
|
|
35
|
+
Skip easy-to-reverse choices, obvious implementation details, and decisions with no real alternative.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# `CONTEXT.md` Format
|
|
2
|
+
|
|
3
|
+
Use `CONTEXT.md` as an opinionated domain glossary and nothing else.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```md
|
|
8
|
+
# {Context Name}
|
|
9
|
+
|
|
10
|
+
{One or two sentences describing what this context is and why it exists.}
|
|
11
|
+
|
|
12
|
+
## Language
|
|
13
|
+
|
|
14
|
+
**Order**: {A one- or two-sentence definition of the term.}
|
|
15
|
+
_Avoid_: Purchase, transaction
|
|
16
|
+
|
|
17
|
+
**Invoice**: A request for payment sent to a customer after delivery.
|
|
18
|
+
_Avoid_: Bill, payment request
|
|
19
|
+
|
|
20
|
+
**Customer**: A person or organization that places orders.
|
|
21
|
+
_Avoid_: Client, buyer, account
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Rules
|
|
25
|
+
|
|
26
|
+
- Be opinionated. When several words describe the same concept, choose one canonical term and list the others under `_Avoid_`.
|
|
27
|
+
- Keep definitions to one or two sentences. Define what the concept is, not everything it does.
|
|
28
|
+
- Include only terms specific to this project's domain. Exclude general programming concepts, implementation details, requirements, and architectural decisions.
|
|
29
|
+
- Group terms under subheadings only when natural clusters emerge. Keep a flat list for one cohesive area.
|
|
30
|
+
- Add or change a term only after the user explicitly resolves it.
|
|
31
|
+
|
|
32
|
+
Before adding a term, ask whether it is unique to this domain or merely a general technical concept. Include only the former.
|
|
33
|
+
|
|
34
|
+
## Single- and multi-context repositories
|
|
35
|
+
|
|
36
|
+
Use one root `CONTEXT.md` for a single context.
|
|
37
|
+
|
|
38
|
+
For multiple contexts, use a root `CONTEXT-MAP.md` to list the contexts, locations, and relationships:
|
|
39
|
+
|
|
40
|
+
```md
|
|
41
|
+
# Context Map
|
|
42
|
+
|
|
43
|
+
## Contexts
|
|
44
|
+
|
|
45
|
+
- [Ordering](./src/ordering/CONTEXT.md) — receives and tracks customer orders
|
|
46
|
+
- [Billing](./src/billing/CONTEXT.md) — generates invoices and processes payments
|
|
47
|
+
- [Fulfillment](./src/fulfillment/CONTEXT.md) — manages warehouse picking and shipping
|
|
48
|
+
|
|
49
|
+
## Relationships
|
|
50
|
+
|
|
51
|
+
- **Ordering → Fulfillment**: Ordering emits `OrderPlaced`; Fulfillment consumes it to start picking
|
|
52
|
+
- **Fulfillment → Billing**: Fulfillment emits `ShipmentDispatched`; Billing consumes it to generate an invoice
|
|
53
|
+
- **Ordering ↔ Billing**: Both use the canonical `CustomerId` and `Money` value definitions
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Infer the structure from existing files:
|
|
57
|
+
|
|
58
|
+
- If `CONTEXT-MAP.md` exists, read it and update the relevant context.
|
|
59
|
+
- If only a root `CONTEXT.md` exists, use the single context.
|
|
60
|
+
- If neither exists, create a root `CONTEXT.md` lazily after the first term is resolved.
|
|
61
|
+
- If several contexts exist and the correct owner is unclear, ask before writing.
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: grill
|
|
3
|
+
description: Relentlessly stress-test an idea, plan, requirement, architecture, or domain model through dependency-aware interview rounds. Use when the user asks to be grilled, challenged, interviewed, or pushed toward shared understanding; when assumptions and decision branches must be exhausted before action; or when domain terminology and durable architectural decisions should be sharpened and recorded in CONTEXT.md and ADRs.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Grill
|
|
7
|
+
|
|
8
|
+
Interview the user until both sides share an explicit, evidence-backed understanding. Model the topic as a decision tree, research discoverable facts, challenge the domain language, and record settled terminology and durable decisions as they crystallize.
|
|
9
|
+
|
|
10
|
+
Do not implement the resulting plan or design during or immediately after the grill. Capturing agreed terminology and accepted ADRs is part of the session. The skill ends after reporting the confirmed result; planning or implementation requires a separate user request.
|
|
11
|
+
|
|
12
|
+
## Core distinctions
|
|
13
|
+
|
|
14
|
+
- Treat a **fact** as something discoverable from the environment, artifacts, documentation, or code. Find it yourself.
|
|
15
|
+
- Treat a **decision** as a choice among viable alternatives. Put it to the user with a recommendation.
|
|
16
|
+
- Treat a **prerequisite** as a fact or decision that must settle before a downstream question can be answered without guessing.
|
|
17
|
+
- Treat the **frontier** as every unresolved decision whose prerequisites are settled now.
|
|
18
|
+
|
|
19
|
+
Never turn a discoverable fact into homework for the user. Never silently turn an unresolved decision into an assumption.
|
|
20
|
+
|
|
21
|
+
## Workflow
|
|
22
|
+
|
|
23
|
+
### 1. Establish the subject
|
|
24
|
+
|
|
25
|
+
Restate the outcome being explored, the requested deliverable, and any explicit constraints. Mark interpretations as provisional until the user confirms them.
|
|
26
|
+
|
|
27
|
+
Build a mental decision tree rooted in that outcome. Add only branches that can materially change the result, such as:
|
|
28
|
+
|
|
29
|
+
- scope and non-goals
|
|
30
|
+
- actors, responsibilities, and boundaries
|
|
31
|
+
- domain terms and invariants
|
|
32
|
+
- lifecycle, states, and failure behavior
|
|
33
|
+
- data ownership and integration points
|
|
34
|
+
- usability, security, performance, or operational constraints
|
|
35
|
+
- trade-offs, validation, rollout, and reversibility
|
|
36
|
+
|
|
37
|
+
Tailor the branches to the subject. Do not ask ceremonial questions that cannot affect a decision.
|
|
38
|
+
|
|
39
|
+
### 2. Research the facts
|
|
40
|
+
|
|
41
|
+
Inspect the relevant workspace, code, tests, documentation, prior decisions, and external sources before questioning the user. Distinguish direct evidence, reasonable inference, and remaining unknowns.
|
|
42
|
+
|
|
43
|
+
Use read-only tools or isolated research workers when the host provides them and current instructions permit them. If research runs asynchronously, treat its result as an unsettled prerequisite: defer only the dependent questions and continue with the rest of the frontier. If delegation is unavailable, research directly.
|
|
44
|
+
|
|
45
|
+
When code, documentation, and the user's statement disagree, surface the conflict with concrete evidence. Do not average contradictory models. Ask which model is authoritative and identify the losing model as cleanup or migration work when relevant.
|
|
46
|
+
|
|
47
|
+
### 3. Load and challenge the domain language
|
|
48
|
+
|
|
49
|
+
Look for `CONTEXT-MAP.md` and the relevant `CONTEXT.md` before inventing terminology:
|
|
50
|
+
|
|
51
|
+
- If `CONTEXT-MAP.md` exists, use it to locate the applicable bounded context and its ADR directory.
|
|
52
|
+
- If only a root `CONTEXT.md` exists, treat the repository as a single context.
|
|
53
|
+
- If neither exists, wait until the first domain term is explicitly resolved before creating a root `CONTEXT.md`.
|
|
54
|
+
|
|
55
|
+
Call out glossary conflicts immediately. Replace fuzzy or overloaded words with a proposed canonical term and ask the user to choose. Stress-test relationships and boundaries with concrete scenarios, especially edge cases that distinguish similar concepts.
|
|
56
|
+
|
|
57
|
+
Do not force domain documentation into a conversation-only session or a workspace where file writes are out of scope. Keep a concise decision and terminology ledger in the conversation instead.
|
|
58
|
+
|
|
59
|
+
### 4. Ask one frontier round
|
|
60
|
+
|
|
61
|
+
Compute the full current frontier. Exclude:
|
|
62
|
+
|
|
63
|
+
- questions answerable through research
|
|
64
|
+
- questions whose prerequisites are unresolved
|
|
65
|
+
- questions whose answers cannot change the outcome
|
|
66
|
+
|
|
67
|
+
Ask every frontier question in one numbered round. For each question:
|
|
68
|
+
|
|
69
|
+
1. State the decision precisely.
|
|
70
|
+
2. Give a recommended answer and a brief reason.
|
|
71
|
+
3. Present meaningful alternatives or invite a free-form answer when the choice is not bounded.
|
|
72
|
+
|
|
73
|
+
Then stop and wait for the user's answers. A question that depends on another question in the same round belongs to a later round.
|
|
74
|
+
|
|
75
|
+
### 5. Process answers and advance the tree
|
|
76
|
+
|
|
77
|
+
After each response:
|
|
78
|
+
|
|
79
|
+
1. Convert answers into explicit decisions without adding unstated meaning.
|
|
80
|
+
2. Resolve contradictions or ambiguity before depending on the answer.
|
|
81
|
+
3. Confirm delegated choices: when the user says "you decide," state the chosen recommendation and its trade-off, then ask the user to accept or revise it.
|
|
82
|
+
4. Update the terminology and decision ledger.
|
|
83
|
+
5. Recompute the tree and ask the next complete frontier round.
|
|
84
|
+
|
|
85
|
+
Continue until no unresolved branch can materially affect the result. Respect an explicit request to stop or defer a branch, but record the resulting unresolved decision and its impact.
|
|
86
|
+
|
|
87
|
+
## Record decisions during the grill
|
|
88
|
+
|
|
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.
|
|
90
|
+
|
|
91
|
+
Offer an ADR only when all three conditions hold:
|
|
92
|
+
|
|
93
|
+
1. The decision is hard or costly to reverse.
|
|
94
|
+
2. The choice would be surprising without its context.
|
|
95
|
+
3. Genuine alternatives were considered and rejected for specific reasons.
|
|
96
|
+
|
|
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.
|
|
98
|
+
|
|
99
|
+
## Finish with a confirmed session result
|
|
100
|
+
|
|
101
|
+
The grill is complete when research is settled enough for the decision, the frontier is empty, and no material branch remains silently assumed.
|
|
102
|
+
|
|
103
|
+
Present a candidate shared-understanding summary containing:
|
|
104
|
+
|
|
105
|
+
- objective and success criteria
|
|
106
|
+
- settled decisions and their main trade-offs
|
|
107
|
+
- canonical domain language
|
|
108
|
+
- constraints, invariants, and explicit non-goals
|
|
109
|
+
- unresolved facts, deferred decisions, and risks
|
|
110
|
+
- documentation created or updated
|
|
111
|
+
|
|
112
|
+
Ask the user to confirm that this is the shared understanding. If they correct or reopen anything, add the affected branches and resume the rounds.
|
|
113
|
+
|
|
114
|
+
After the user confirms, show a final `Grill Result` that records the accepted objective, decisions, canonical language, constraints, non-goals, unresolved items, and documentation changes. Then stop and return control to the user. Do not create a plan, write implementation code, launch an implementation handoff, or treat confirmation as permission to act.
|