@juancr11/sibu 0.11.1 → 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.
@@ -69,7 +69,13 @@ function buildCodexMcpServerConfig(server) {
69
69
  if (server.id === 'github') {
70
70
  return `[mcp_servers.github]
71
71
  url = "https://api.githubcopilot.com/mcp/"
72
- bearer_token_env_var = "GITHUB_PERSONAL_ACCESS_TOKEN"`;
72
+ bearer_token_env_var = "GITHUB_PERSONAL_ACCESS_TOKEN"
73
+
74
+ [mcp_servers.github.tools.issue_write]
75
+ approval_mode = "approve"
76
+
77
+ [mcp_servers.github.tools.sub_issue_write]
78
+ approval_mode = "approve"`;
73
79
  }
74
80
  if (server.id === 'notion') {
75
81
  return `[mcp_servers.notion]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juancr11/sibu",
3
- "version": "0.11.1",
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": "91",
2
+ "templateVersion": "93",
3
3
  "templates": {
4
4
  "AGENTS.md": {
5
5
  "version": "28",
@@ -9,10 +9,10 @@
9
9
  ]
10
10
  },
11
11
  ".codex/config.toml": {
12
- "version": "2",
12
+ "version": "3",
13
13
  "description": "Codex configuration pointing to AGENTS.md and rendering selected MCP servers with Codex-compatible settings.",
14
14
  "changes": [
15
- "Updates Codex GitHub MCP rendering to use the hosted HTTPS endpoint with bearer_token_env_var instead of Docker command arguments."
15
+ "Adds approval prompts for GitHub MCP issue and sub-issue write tools in Codex configs."
16
16
  ]
17
17
  },
18
18
  "GEMINI.md": {
@@ -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