@juancr11/sibu 0.9.2 → 0.9.4

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.2",
3
+ "version": "0.9.4",
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": "76",
2
+ "templateVersion": "78",
3
3
  "templates": {
4
4
  "AGENTS.md": {
5
5
  "version": "25",
@@ -52,25 +52,24 @@
52
52
  ]
53
53
  },
54
54
  "skills/product-vision-writer/SKILL.md": {
55
- "version": "7",
55
+ "version": "8",
56
56
  "description": "Mandatory product vision writer skill installed once at the shared .agents/skills workspace path.",
57
57
  "changes": [
58
- "Updates downstream artifact wording to use Deep Module Map."
58
+ "Strengthens product vision interviews to resolve material strategy questions before drafting instead of leaving uncertainty in the artifact."
59
59
  ]
60
60
  },
61
61
  "skills/deep-module-map-writer/SKILL.md": {
62
- "version": "2",
62
+ "version": "3",
63
63
  "description": "Mandatory Deep Module Map writer skill installed once at the shared .agents/skills workspace path.",
64
64
  "changes": [
65
- "Clarifies that Deep Modules are primarily technical design boundaries that hide substantial implementation complexity behind simple interfaces.",
66
- "Strengthens the interview flow so agents ask focused one-at-a-time questions until module interfaces, hidden complexity, and boundaries are defensible."
65
+ "Strengthens Deep Module Map interviews to ask as many one-at-a-time questions as needed and resolve material boundary questions before drafting."
67
66
  ]
68
67
  },
69
68
  "skills/feature-brief-writer/SKILL.md": {
70
- "version": "8",
69
+ "version": "9",
71
70
  "description": "Mandatory feature brief writer skill installed once at the shared .agents/skills workspace path.",
72
71
  "changes": [
73
- "Updates feature brief guidance to require Deep Modules from docs/deep-module-map.md."
72
+ "Removes Open Questions from the feature brief template and requires the interview to resolve material feature questions before drafting."
74
73
  ]
75
74
  },
76
75
  "skills/technical-design-writer/SKILL.md": {
@@ -145,12 +144,11 @@
145
144
  ]
146
145
  },
147
146
  "skills/ai-implementation-plan-executor/SKILL.md": {
148
- "version": "16",
147
+ "version": "17",
149
148
  "description": "Mandatory AI implementation plan executor skill for implementing full story plans before story-level review and commit.",
150
149
  "changes": [
151
- "Changes execution from per-step approval to full-story execution followed by one story-level review gate.",
152
- "Marks all completed steps approved and commits once after the completed story is approved.",
153
- "Continues Epics automatically by implementing the next planned story or planning the next unplanned story and waiting for plan approval."
150
+ "Prevents the executor from staging or committing Git-ignored story artifacts, including docs/features paths when ignored.",
151
+ "Clarifies that ignored approval marker changes remain local and commits include only eligible non-ignored story changes."
154
152
  ]
155
153
  },
156
154
  "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 all step file approval markers and files intentionally changed while implementing the story. It must not include unrelated local edits or pre-existing worktree changes. Use the files tracked during story 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.
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
@@ -38,6 +38,7 @@ This skill owns the Deep Module Map only. It does not own feature briefs, techni
38
38
  - Do not ask for or require a final confirmation summary before writing once enough Deep Module Map information is available.
39
39
  - Do not invent Deep Modules without grounding them in the product vision, current system behavior, and user interview.
40
40
  - Do not treat a command, screen, helper, folder, data object, or technical layer as a Deep Module merely because it exists.
41
+ - Do not leave material module-boundary questions unresolved in the final map; keep interviewing until the user answers, confirms an assumption, or explicitly excludes the boundary.
41
42
 
42
43
  ## What a Deep Module is
43
44
 
@@ -125,7 +126,10 @@ This file is user-owned product and implementation-boundary content created or u
125
126
  Be deliberately interrogative before writing.
126
127
 
127
128
  - Ask one focused question at a time.
128
- - Ask as many one-at-a-time questions as needed to understand the app well enough to defend the map.
129
+ - Ask as many one-at-a-time questions as needed to understand the app well enough to defend the map; do not optimize for a short interview.
130
+ - Walk down each module-boundary decision branch one by one, resolving dependencies between candidate modules before drafting.
131
+ - When useful, provide your recommended answer or a concise default assumption with the question so the user can confirm, correct, or reject it quickly.
132
+ - If a question can be answered by reading repository artifacts, inspect those artifacts instead of asking.
129
133
  - Do not rush to draft after a single answer unless the answer already makes interfaces, hidden complexity, boundaries, scenarios, and relationships clear.
130
134
  - Treat "enough context" as: candidate modules, suggested slugs, simple external interfaces, hidden implementation complexity, responsibilities, exclusions, scenarios, relationships, and cross-module rules are clear enough to defend.
131
135
  - Do not ask the user to name the Deep Modules up front. Most users do not know what the modules should be yet.
@@ -133,6 +137,7 @@ Be deliberately interrogative before writing.
133
137
  - Teach briefly as needed. If the user seems unsure, explain that a Deep Module hides a lot of implementation behind a simple interface, then ask the next question.
134
138
  - Do not create modules from vague labels without confirming what interface they expose and what complexity they hide.
135
139
  - If the conversation stalls, propose one concise assumption for the next unresolved point and ask the user to confirm or correct it.
140
+ - Draft only when there are no material open questions about interfaces, hidden complexity, ownership, exclusions, relationships, or cross-module rules.
136
141
 
137
142
  ## Interview method
138
143
 
@@ -38,6 +38,7 @@ This skill owns the product/business shape of a feature. It does not own UI inte
38
38
  - Do not invent Deep Modules or use modules that are absent from `docs/deep-module-map.md`.
39
39
  - Do not require a final confirmation summary before writing once enough feature brief context is available.
40
40
  - Do not duplicate or rewrite the product vision; apply only the relevant implications to the feature.
41
+ - Do not leave material product, scope, success, constraint, or Deep Module fit questions unresolved in the final brief; keep interviewing until the user answers, confirms an assumption, or explicitly excludes the topic.
41
42
 
42
43
  ## Required source of truth
43
44
 
@@ -99,7 +100,10 @@ Do not write the brief to technical design, UX, user story, implementation plan,
99
100
  Be deliberately interrogative before drafting. The feature brief should reflect the user's intent, not the assistant's assumptions.
100
101
 
101
102
  - Ask one focused question at a time.
102
- - Keep asking until you have complete practical understanding and explicit user alignment.
103
+ - Keep asking until you have complete practical understanding and explicit user alignment; do not optimize for a short interview.
104
+ - Walk down each feature decision branch one by one, resolving dependencies between product, scope, success, constraint, and module-fit decisions before drafting.
105
+ - When useful, provide your recommended answer or a concise default assumption with the question so the user can confirm, correct, or reject it quickly.
106
+ - If a question can be answered by reading repository artifacts, inspect those artifacts instead of asking.
103
107
  - Prefer follow-up questions over filling gaps with plausible invention.
104
108
  - Treat "100% understanding" as: feature intent, target user, scenario, user problem, business goal, MVP boundary, out-of-scope boundary, success signals, and known constraints are all clear enough to defend in the brief.
105
109
  - Treat "enough context" as: feature intent, target user/scenario, desired outcome, MVP boundary, out-of-scope boundary, success signals, constraints, and Deep Module fit are clear enough to defend in the brief.
@@ -165,9 +169,9 @@ Ask every question needed to remove material ambiguity, but only one at a time.
165
169
  - what outcome should improve
166
170
  - what must be included in the first version
167
171
  - what should stay out of scope
168
- - known constraints, risks, or open decisions
172
+ - known constraints and risks
169
173
 
170
- Draft only once feature intent, target user/scenario, desired outcome, MVP boundary, out-of-scope boundary, success signals, constraints, and Deep Module fit are clear enough to avoid invention.
174
+ Draft only once feature intent, target user/scenario, desired outcome, MVP boundary, out-of-scope boundary, success signals, constraints, and Deep Module fit are clear enough to avoid invention. Do not draft a brief with an `Open Questions` section.
171
175
 
172
176
  If the conversation stalls, offer a concise default assumption for the next unresolved point and ask the user to confirm or correct it before proceeding.
173
177
 
@@ -215,9 +219,6 @@ Recommended structure:
215
219
 
216
220
  ## Risks / Tradeoffs
217
221
  - <Important product, user, trust, operational, or positioning risks.>
218
-
219
- ## Open Questions
220
- - <Decisions that still need user/product input.>
221
222
  ```
222
223
 
223
224
  Adapt the structure to the feature. Add, rename, merge, or omit sections when useful, but keep the result business-level and product-vision-aligned.
@@ -234,7 +235,7 @@ Do not include:
234
235
  - engineering task lists
235
236
  - UI wireframes or detailed interaction specs
236
237
 
237
- If technical or UX decisions come up, capture them as brief product-level constraints or open questions.
238
+ If technical or UX decisions come up, either capture the resolved product-level implication as a constraint or ask follow-up questions before drafting. Do not add unresolved technical or UX decisions as open questions in the brief.
238
239
 
239
240
  ### 6. Save the document
240
241
 
@@ -267,6 +268,7 @@ Avoid:
267
268
  - drafting from vague feature labels without discovery
268
269
  - inventing new Deep Modules instead of stopping for a map update
269
270
  - inventing certainty where the product vision or user input is unresolved
271
+ - including an Open Questions section instead of resolving the questions during the interview
270
272
 
271
273
  ## Decision rule
272
274
 
@@ -34,13 +34,17 @@ Default output path: `docs/product-vision.md`.
34
34
 
35
35
  - Do not create Deep Module Maps, feature briefs, technical designs, UX specs, Epics, User Stories, implementation plans, or production code.
36
36
  - Do not require a final confirmation summary before writing once enough product vision context is available.
37
- - Do not pretend unresolved strategy questions are settled; ask a focused question or document a clear assumption.
37
+ - Do not leave material strategy questions unresolved in the final document; keep interviewing until the user answers, confirms an assumption, or explicitly excludes the topic.
38
38
 
39
39
  ## Workflow
40
40
 
41
41
  ### 1. Start with discovery, not drafting
42
42
 
43
- Ask focused questions before writing unless the user already provided enough source material. Ask one question at a time and use the fewest questions that can produce a useful document. Cover these areas over the interview:
43
+ Interview before writing unless the user already provided complete source material. Be deliberately interrogative: ask as many focused questions as needed to extract all material product vision decisions before drafting.
44
+
45
+ Ask one question at a time. Walk down the product decision tree branch by branch, resolving dependencies between decisions before moving on. When useful, include a recommended answer or concise assumption so the user can confirm, correct, or reject it quickly. If a question can be answered from existing repository artifacts, inspect those artifacts instead of asking.
46
+
47
+ Do not optimize for the fewest questions. Optimize for ending the interview with no material open product vision questions. Cover these areas over the interview:
44
48
 
45
49
  - **Product essence:** What is the product? What should it help people do, feel, or become?
46
50
  - **Current context:** Is this a new concept, an active project, or an existing product?
@@ -67,7 +71,7 @@ Before drafting, infer the product's through-line:
67
71
  - the product's opinion about the world
68
72
  - the decision-making principles that should survive future feature debates
69
73
 
70
- If the user's answers conflict, resolve the conflict explicitly in the draft by choosing the clearest product direction. Do not preserve every idea equally.
74
+ If the user's answers conflict, ask follow-up questions until the conflict is resolved or the user confirms which direction should win. Do not preserve every idea equally.
71
75
 
72
76
  ### 3. Draft the product vision document
73
77
 
@@ -118,13 +122,13 @@ Avoid:
118
122
  - overexplaining
119
123
  - feature lists masquerading as vision
120
124
  - excessive frameworks
121
- - pretending unresolved strategy questions are settled
125
+ - leaving unresolved strategy questions in the document
122
126
 
123
127
  Use the user's own language when it is vivid or revealing. Improve clarity without sanding off personality.
124
128
 
125
129
  ### 5. Handle incomplete inputs
126
130
 
127
- For rough ideas, produce a sharper first-pass vision with clear assumptions. For existing products, reflect what the product is today and what it must protect or change. If context is still insufficient, ask the smallest useful follow-up instead of inventing details.
131
+ For rough ideas, keep interviewing until the user has confirmed enough assumptions to support a sharper first-pass vision. For existing products, reflect what the product is today and what it must protect or change. If context is still insufficient, ask the next most important follow-up instead of inventing details.
128
132
 
129
133
  ### 6. Save the document
130
134