@juancr11/sibu 0.9.5 → 0.9.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juancr11/sibu",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "description": "CLI for setting up a local AI-augmented development workflow.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,5 +1,5 @@
1
1
  {
2
- "templateVersion": "82",
2
+ "templateVersion": "84",
3
3
  "templates": {
4
4
  "AGENTS.md": {
5
5
  "version": "26",
@@ -136,17 +136,17 @@
136
136
  ]
137
137
  },
138
138
  "skills/ai-implementation-planner/SKILL.md": {
139
- "version": "12",
139
+ "version": "13",
140
140
  "description": "Mandatory AI implementation planner skill for turning one approved User Story into small, story-local implementation step files.",
141
141
  "changes": [
142
- "Removes the implementation-plan approval gate and allows execution to continue immediately when implementation is requested."
142
+ "Clarifies that executor handoffs can come from the next story or next Epic and still continue without plan approval."
143
143
  ]
144
144
  },
145
145
  "skills/ai-implementation-plan-executor/SKILL.md": {
146
- "version": "18",
146
+ "version": "20",
147
147
  "description": "Mandatory AI implementation plan executor skill for implementing full story plans before story-level review and commit.",
148
148
  "changes": [
149
- "Allows the executor to generate missing story plans and immediately implement them, preserving only the story-level review gate after implementation."
149
+ "Changes next-Epic continuation to choose the next logical Epic based on dependencies, readiness, risk, and value instead of filename order."
150
150
  ]
151
151
  },
152
152
  "skills/ai-prompt-engineer-master/SKILL.md": {
@@ -25,6 +25,7 @@ Execute one existing story implementation plan completely, one ordered step file
25
25
  - Step approval metadata in every completed step file only after explicit story-level user approval.
26
26
  - One focused commit for the approved story implementation, excluding any paths ignored by Git.
27
27
  - When starting or continuing a story that has no plan, story-local implementation step files created by applying `ai-implementation-planner`, followed immediately by implementation.
28
+ - When an Epic is complete, the next Epic in the same feature is selected by inspecting the feature's `epics/` folder, then the first story in that Epic is planned and implemented immediately.
28
29
 
29
30
  ### When this skill stops
30
31
 
@@ -137,7 +138,7 @@ When starting or resuming a plan:
137
138
  6. Stop only for ambiguity, missing required files, conflicting scope, failed validation that cannot be safely fixed within the plan, or material risk.
138
139
  7. After the final unapproved step is implemented, report what changed, validation results, and any risks, then wait for explicit story-level approval.
139
140
 
140
- Do not mark steps approved, commit changes, or move to the next story until the user explicitly approves the completed story implementation.
141
+ Do not mark steps approved, commit changes, move to the next story, or move to the next Epic until the user explicitly approves the completed story implementation.
141
142
 
142
143
  ## Story review gate
143
144
 
@@ -161,17 +162,19 @@ After writing approval markers, commit only the non-ignored changes produced by
161
162
 
162
163
  Use a Conventional Commits 1.0.0 message that describes the completed story. If the commit fails, stop and report the failure instead of continuing.
163
164
 
164
- ## Epic continuation check
165
+ ## Feature continuation check
165
166
 
166
- After the approved story implementation is committed:
167
+ After the approved story implementation is committed, continue through the current feature unless there is no next story or Epic to implement.
167
168
 
168
169
  1. Inspect the current Epic's `stories/` folder in filename order.
169
170
  2. Identify whether there is a next User Story after the completed story.
170
- 3. If there is no next User Story in the Epic, tell the user the Epic appears ready and stop.
171
- 4. If a next User Story exists and its `.impl_plan/` folder exists with ordered step files, immediately begin implementing that next story plan using this same story execution model.
172
- 5. If a next User Story exists but its `.impl_plan/` folder is missing or empty, immediately create the implementation plan for that story by applying `ai-implementation-planner`, then immediately begin implementing the generated plan.
171
+ 3. If a next User Story exists and its `.impl_plan/` folder exists with ordered step files, immediately begin implementing that next story plan using this same story execution model.
172
+ 4. If a next User Story exists but its `.impl_plan/` folder is missing or empty, immediately create the implementation plan for that story by applying `ai-implementation-planner`, then immediately begin implementing the generated plan.
173
+ 5. If there is no next User Story in the current Epic, inspect the current feature's `epics/` folder and choose the next logical Epic to implement. Do not choose by filename alone. Base the choice on dependencies, prerequisite capabilities, technical sequencing, risk reduction, feature value, story readiness, and whether the Epic can be implemented without violating the feature brief or technical design. Briefly report the selected Epic and why it is the logical next step.
174
+ 6. If a next logical Epic exists, inspect its `stories/` folder, select the first logical unapproved User Story to implement, create its implementation plan if needed with `ai-implementation-planner`, and immediately begin implementing it. Prefer story order when it reflects dependencies; otherwise choose based on prerequisites, risk, and value sequence.
175
+ 7. If no logical next Epic exists or every Epic in the feature has all stories approved, tell the user the feature appears ready and stop.
173
176
 
174
- This continuation behavior is an explicit exception to the normal hard-start rule only after a story has been approved and committed. It lets the executor keep an Epic moving while preserving only the story-level review gate after implementation.
177
+ This continuation behavior is an explicit exception to the normal hard-start rule only after a story has been approved and committed. It lets the executor keep a feature moving across stories and Epics while preserving only the story-level review gate after each story implementation.
175
178
 
176
179
  ## Implementation rules
177
180
 
@@ -190,13 +193,13 @@ Do:
190
193
 
191
194
  Do not:
192
195
 
193
- - create a missing initial plan from scratch
196
+ - invent a missing plan manually instead of applying `ai-implementation-planner`
194
197
  - mark any step approved before the user explicitly approves the completed story
195
198
  - commit story implementation changes before story approval
196
199
  - add product scope absent from the story, Epic, feature brief, technical design, or step files
197
200
  - silently move work into unrelated or unapproved Deep Modules
198
201
  - continue past a failed validation without reporting it and asking how to proceed
199
- - leave committable approved story changes uncommitted before moving to the next story
202
+ - leave committable approved story changes uncommitted before moving to the next story or Epic
200
203
  - attempt to stage or commit story files, approval markers, or other paths that are ignored by Git
201
204
 
202
205
  ## Final response behavior
@@ -208,11 +211,12 @@ After implementing all unapproved steps in one story, briefly report:
208
211
  - the steps completed
209
212
  - validations run and their results
210
213
  - notable risks or follow-up questions, if any
211
- - that you are waiting for story approval before marking all completed steps approved, committing eligible non-ignored changes, and continuing the Epic
214
+ - that you are waiting for story approval before marking all completed steps approved, committing eligible non-ignored changes, and continuing the feature
212
215
 
213
- After approving and committing a story implementation, briefly report the commit and the Epic continuation result:
216
+ After approving and committing a story implementation, briefly report the commit and the feature continuation result:
214
217
 
215
218
  - commit hash when a commit was created, or a note that only ignored changes existed and no commit was created
216
- - next story is being implemented immediately because it already has a plan
217
- - next story was planned and implementation started immediately
218
- - or the Epic appears ready
219
+ - next story in the current Epic is being implemented immediately because it already has a plan
220
+ - next story in the current Epic was planned and implementation started immediately
221
+ - next Epic selected and its first unapproved story is being planned/implemented immediately
222
+ - or the feature appears ready
@@ -246,7 +246,7 @@ After writing and quality-checking the implementation step files, do not ask for
246
246
 
247
247
  If the user asked only to create a plan and did not ask for implementation, stop after creating the plan and report where it was written. Make clear that no plan approval is required before a later executor run.
248
248
 
249
- When this skill is invoked as the next-story planning handoff from `ai-implementation-plan-executor`, create the plan and immediately return control to the executor so it can implement the next story without a plan-review gate.
249
+ When this skill is invoked as the next-story or next-Epic planning handoff from `ai-implementation-plan-executor`, create the plan and immediately return control to the executor so it can implement that story without a plan-review gate.
250
250
 
251
251
  The final planning-only response must briefly include:
252
252