@linimin/pi-letscook 0.1.58 → 0.1.59

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.
@@ -14,9 +14,10 @@ This skill governs the boundary between:
14
14
 
15
15
  ## Core Contract
16
16
 
17
- - Ordinary chat may be used to clarify requirements, discuss tradeoffs, and propose implementation approaches.
17
+ - Ordinary chat may be used to clarify requirements, discuss tradeoffs, propose implementation approaches, and refine scope with the user.
18
18
  - `/cook` is the only explicit entrypoint into long-running completion workflow.
19
- - When the primary agent judges that a task has matured into completion-workflow scope, it must stop short of implementation and direct the user to `/cook`.
19
+ - When the primary agent judges that a task has matured into completion-workflow scope, it must stop short of long-running implementation and treat `/cook` as the workflow boundary.
20
+ - Before the user explicitly runs `/cook`, ordinary chat remains ordinary chat: the agent may still answer follow-up questions and refine requirements instead of switching into a handoff-only refusal mode.
20
21
 
21
22
  ## When To Hand Off To `/cook`
22
23
 
@@ -34,10 +35,11 @@ When the task is judged ready for completion workflow, the primary agent must:
34
35
 
35
36
  - stop before long-running implementation
36
37
  - not edit tracked product files in ordinary chat for that workflow-level task
37
- - tell the user to run `/cook`
38
- - explain that `/cook` will first look for a fresh explicit primary-agent handoff and otherwise fall back to recent discussion before asking for confirmation
38
+ - recommend bare `/cook` as the explicit workflow boundary once the task is implementation-ready
39
+ - explain that `/cook` starts a new workflow or next round only from a fresh valid explicit primary-agent handoff capsule from recent ordinary-chat discussion, while active workflows resume from canonical state unless a fresh valid explicit handoff proposes replacement
39
40
  - distinguish a workflow-worthy handoff from an implementation-ready handoff
40
41
  - only append an implementation-ready `/cook` handoff capsule when the first bounded implementation slice is concrete enough to start immediately
42
+ - if the user asks follow-up questions or refines requirements before running `/cook`, continue ordinary-chat discussion normally without acting as though workflow already started
41
43
 
42
44
  Required capsule format:
43
45
 
@@ -71,13 +73,15 @@ Required capsule format:
71
73
  Notes:
72
74
 
73
75
  - `constraints` may be replaced or supplemented by `non_goals` when clearer.
74
- - `first_slice_goal`, `first_slice_non_goals`, `implementation_surfaces`, `verification_commands`, and `why_this_slice_first` are required only for implementation-ready handoffs; if the work is workflow-worthy but that first slice is still vague, tell the user to run `/cook` without emitting this implementation-ready capsule.
76
+ - `first_slice_goal`, `first_slice_non_goals`, `implementation_surfaces`, `verification_commands`, and `why_this_slice_first` are required only for implementation-ready handoffs.
77
+ - If the work is workflow-worthy but that first slice is still vague, say that `/cook` will be the right next step once the first slice is concrete enough, then keep refining in ordinary chat without emitting this implementation-ready capsule yet.
78
+ - If later ordinary-chat discussion materially changes the startup brief before `/cook` runs, update or replace the capsule in a later assistant reply.
75
79
  - The mission must be positively startable implementation work; do not use rejection or suppression text as the mission.
76
80
  - The capsule is startup intake for `/cook` only. It is not canonical `.agent/**` state, not active-slice state, and not a second repo contract source.
77
81
 
78
82
  Suggested wording:
79
83
 
80
- > This task is now mature enough for the `/cook` workflow. If you want me to start implementation, run `/cook`. I’ve also attached an explicit `/cook` handoff capsule so `/cook` can confirm this plan directly before the workflow begins.
84
+ > This task now looks like `/cook` workflow work, but we are still in ordinary chat until you explicitly run `/cook`. If you want to keep refining the first slice first, we can do that here. Once you want to start implementation workflow, run bare `/cook`. I’ve also attached an explicit `/cook` handoff capsule so `/cook` can confirm this startup brief directly before the workflow begins.
81
85
 
82
86
  A short recap may include mission, scope, or acceptance, but that recap must not be presented as canonical plan state.
83
87
 
@@ -89,6 +93,7 @@ Once the task is judged ready for completion workflow, the primary agent must no
89
93
  - modify tracked product files as part of that workflow-level task
90
94
  - act as though `/cook` had already been invoked
91
95
  - silently rewrite ordinary-chat discussion into active workflow state
96
+ - refuse ordinary-chat clarification or requirement-refinement turns solely because `/cook` would now be appropriate
92
97
 
93
98
  ## Relationship To `completion-protocol`
94
99