@juancr11/sibu 0.12.0 → 0.12.1

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.12.0",
3
+ "version": "0.12.1",
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": "92",
2
+ "templateVersion": "93",
3
3
  "templates": {
4
4
  "AGENTS.md": {
5
5
  "version": "28",
@@ -44,11 +44,10 @@
44
44
  ]
45
45
  },
46
46
  "skills/clean-code/SKILL.md": {
47
- "version": "4",
47
+ "version": "5",
48
48
  "description": "Mandatory clean-code skill installed once at the shared .agents/skills workspace path.",
49
49
  "changes": [
50
- "Installs the clean-code skill once at .agents/skills/clean-code/SKILL.md for any selected agent instead of duplicating per-agent copies.",
51
- "Uses the shared .agents/skills workspace path to test common skill discovery across Codex, Gemini, and Claude."
50
+ "Adds guidance to validate required function inputs before doing work instead of silently continuing with partial defaults."
52
51
  ]
53
52
  },
54
53
  "skills/product-vision-writer/SKILL.md": {
@@ -88,6 +88,7 @@ if (!(playlist = await playlistRepository.findById(playlistId))) {
88
88
 
89
89
  ### 9. Make error paths understandable
90
90
  - Error handling should be explicit and readable.
91
+ - Validate required inputs at function boundaries before doing work. If a missing or invalid input makes the whole operation fail, do not continue with partial defaults or defensive zero-value output unless the function explicitly supports partial results.
91
92
  - Add useful context when surfacing errors.
92
93
  - Do not hide failure paths in clever expressions.
93
94