@juancr11/sibu 0.9.2 → 0.9.3
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
package/templates/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"templateVersion": "
|
|
2
|
+
"templateVersion": "77",
|
|
3
3
|
"templates": {
|
|
4
4
|
"AGENTS.md": {
|
|
5
5
|
"version": "25",
|
|
@@ -145,12 +145,11 @@
|
|
|
145
145
|
]
|
|
146
146
|
},
|
|
147
147
|
"skills/ai-implementation-plan-executor/SKILL.md": {
|
|
148
|
-
"version": "
|
|
148
|
+
"version": "17",
|
|
149
149
|
"description": "Mandatory AI implementation plan executor skill for implementing full story plans before story-level review and commit.",
|
|
150
150
|
"changes": [
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"Continues Epics automatically by implementing the next planned story or planning the next unplanned story and waiting for plan approval."
|
|
151
|
+
"Prevents the executor from staging or committing Git-ignored story artifacts, including docs/features paths when ignored.",
|
|
152
|
+
"Clarifies that ignored approval marker changes remain local and commits include only eligible non-ignored story changes."
|
|
154
153
|
]
|
|
155
154
|
},
|
|
156
155
|
"skills/ai-prompt-engineer-master/SKILL.md": {
|
|
@@ -23,7 +23,7 @@ Execute one existing story implementation plan completely, one ordered step file
|
|
|
23
23
|
|
|
24
24
|
- Code, docs, tests, or other repo changes required by all unapproved implementation steps in the story plan.
|
|
25
25
|
- Step approval metadata in every completed step file only after explicit story-level user approval.
|
|
26
|
-
- One focused commit for the approved story implementation.
|
|
26
|
+
- One focused commit for the approved story implementation, excluding any paths ignored by Git.
|
|
27
27
|
- When continuing an Epic and the next story has no plan, story-local implementation step files created by applying `ai-implementation-planner`.
|
|
28
28
|
|
|
29
29
|
### When this skill stops
|
|
@@ -160,7 +160,7 @@ When the user explicitly approves the completed story, update every step file co
|
|
|
160
160
|
|
|
161
161
|
Before writing approval markers, identify the current Git user with `git config user.name`; if it is unavailable, use `git config user.email`. Use that value for `Approved by`.
|
|
162
162
|
|
|
163
|
-
After writing approval markers, commit only the changes produced by the approved story before continuing. The commit must include
|
|
163
|
+
After writing approval markers, commit only the non-ignored changes produced by the approved story before continuing. Do not attempt to stage or commit paths ignored by Git, including `docs/features/**` paths when the repository ignores them. The commit must include files intentionally changed while implementing the story that are eligible to be committed, and it must include step file approval markers only when those step files are not ignored. Ignored approval marker changes remain local and uncommitted; report that clearly. If every story change is ignored and there is nothing eligible to commit, skip the commit, report that no commit was created, and continue only according to the Epic continuation rules that do not depend on a commit hash. The commit must not include unrelated local edits or pre-existing worktree changes. Use the files tracked during story execution, `git check-ignore` when needed, and a focused `git status --short` check to stage the correct paths. Do not run broad `git diff` investigations or other "what changed?" archaeology unless it is required to avoid committing unrelated changes and the user has approved that extra inspection.
|
|
164
164
|
|
|
165
165
|
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.
|
|
166
166
|
|
|
@@ -199,7 +199,8 @@ Do not:
|
|
|
199
199
|
- add product scope absent from the story, Epic, feature brief, technical design, or step files
|
|
200
200
|
- silently move work into unrelated or unapproved Deep Modules
|
|
201
201
|
- continue past a failed validation without reporting it and asking how to proceed
|
|
202
|
-
- leave approved story changes uncommitted before moving to the next story
|
|
202
|
+
- leave committable approved story changes uncommitted before moving to the next story
|
|
203
|
+
- attempt to stage or commit story files, approval markers, or other paths that are ignored by Git
|
|
203
204
|
- execute a newly created next-story plan before the user approves that plan
|
|
204
205
|
|
|
205
206
|
## Final response behavior
|
|
@@ -211,10 +212,11 @@ After implementing all unapproved steps in one story, briefly report:
|
|
|
211
212
|
- the steps completed
|
|
212
213
|
- validations run and their results
|
|
213
214
|
- notable risks or follow-up questions, if any
|
|
214
|
-
- that you are waiting for story approval before marking all completed steps approved, committing, and continuing the Epic
|
|
215
|
+
- that you are waiting for story approval before marking all completed steps approved, committing eligible non-ignored changes, and continuing the Epic
|
|
215
216
|
|
|
216
217
|
After approving and committing a story implementation, briefly report the commit and the Epic continuation result:
|
|
217
218
|
|
|
219
|
+
- commit hash when a commit was created, or a note that only ignored changes existed and no commit was created
|
|
218
220
|
- next story is being implemented immediately because it already has a plan
|
|
219
221
|
- next story was planned and is waiting for plan review and approval
|
|
220
222
|
- or the Epic appears ready
|