refacil-sdd-ai 2.0.8 → 2.0.10

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/cli.js +6 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -241,7 +241,12 @@ function update() {
241
241
  console.log('\n refacil-sdd-ai: Actualizando skills...\n');
242
242
  const count = installSkills();
243
243
  console.log(` ${count} skills actualizadas en .claude/skills/ y .cursor/skills/`);
244
- console.log(' AGENTS.md y configuraciones no fueron modificados.');
244
+
245
+ // Ensure hook is installed (for users updating from versions without hook)
246
+ if (installHook()) {
247
+ console.log(' Hook check-update agregado a .claude/settings.json');
248
+ }
249
+
245
250
  console.log('\n REINICIA tu sesion de Claude Code o Cursor para aplicar los cambios.\n');
246
251
  }
247
252
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "refacil-sdd-ai",
3
- "version": "2.0.8",
3
+ "version": "2.0.10",
4
4
  "description": "SDD-AI: Specification-Driven Development with AI — metodologia de desarrollo con IA usando OpenSpec, Claude Code y Cursor",
5
5
  "bin": {
6
6
  "refacil-sdd-ai": "./bin/cli.js"