kakaroto-config 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/bin/release.js +2 -2
  2. package/package.json +1 -1
package/bin/release.js CHANGED
@@ -218,8 +218,8 @@ async function main() {
218
218
  fs.writeFileSync(PACKAGE_JSON, JSON.stringify(pkg, null, 2) + '\n');
219
219
  console.log(`Updated package.json: ${currentVersion} → ${newVersion}`);
220
220
 
221
- // Git operations - use execCommandSafe for commands with user-derived values
222
- if (!execCommandSafe('git', ['add', '.'], 'Staging changes')) {
221
+ // Git operations - selective add to avoid committing session data
222
+ if (!execCommandSafe('git', ['add', 'config/', 'package.json'], 'Staging changes')) {
223
223
  rl.close();
224
224
  process.exit(1);
225
225
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kakaroto-config",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Claude Code configuration by Pedro Jahara - autonomous workflows for /feature, /debug, /gate",
5
5
  "bin": {
6
6
  "kakaroto-config": "./bin/install.js"