refacil-sdd-ai 2.0.8 → 2.0.9
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/bin/cli.js +6 -1
- 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
|
-
|
|
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