@juancr11/sibu 0.5.1 → 0.5.2

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.5.1",
3
+ "version": "0.5.2",
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": "52",
2
+ "templateVersion": "54",
3
3
  "templates": {
4
4
  "AGENTS.md": {
5
5
  "version": "22",
@@ -115,10 +115,10 @@
115
115
  ]
116
116
  },
117
117
  "skills/ai-implementation-plan-executor/SKILL.md": {
118
- "version": "10",
118
+ "version": "12",
119
119
  "description": "Mandatory AI implementation plan executor skill for implementing existing story implementation plans one reviewed step at a time.",
120
120
  "changes": [
121
- "Clarifies step-completion reports so agents say the step finished and identify the next step before waiting for approval."
121
+ "Clarifies focused approved-step commits and validation-only step reporting."
122
122
  ]
123
123
  },
124
124
  "skills/ai-prompt-engineer-master/SKILL.md": {
@@ -119,7 +119,11 @@ When the user explicitly approves the current step, update that step file by add
119
119
  - Approved at: <ISO-8601 timestamp>
120
120
  ```
121
121
 
122
- Before writing the approval marker, 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`. After writing the approval marker, commit all changes for the approved step before continuing. Use a Conventional Commits 1.0.0 message that describes the completed step. If the commit fails, stop and report the failure instead of continuing.
122
+ Before writing the approval marker, 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`.
123
+
124
+ After writing the approval marker, commit only the changes produced by the approved step before continuing. The commit must include the step file approval marker and files intentionally changed while implementing that step. It must not include unrelated local edits, pre-existing worktree changes, or changes from other steps. Use the files tracked during step execution 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.
125
+
126
+ Use a Conventional Commits 1.0.0 message that describes the completed step. If the commit fails, stop and report the failure instead of continuing.
123
127
 
124
128
  Then continue with the next unapproved step immediately, without asking for another pre-implementation confirmation, only after the approval marker is written and the approved step changes are committed.
125
129
 
@@ -162,6 +166,7 @@ Do not:
162
166
  After implementing one step, briefly report:
163
167
 
164
168
  - that the step finished
169
+ - if the step was validation-only and produced no code changes, say that it was just a validation step and all validations passed
165
170
  - current step file path
166
171
  - the next step file path, or that no next step remains
167
172
  - that you are waiting for user approval before marking the step approved, committing it, and continuing to the next step