elliot-stack 1.0.6 → 1.0.7
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/install.cjs
CHANGED
|
@@ -350,7 +350,7 @@ async function main() {
|
|
|
350
350
|
for (const name of skillNames) {
|
|
351
351
|
if (modifiedSkills.includes(name)) {
|
|
352
352
|
if (modifiedAction === 'skip') {
|
|
353
|
-
console.log(' Skipped
|
|
353
|
+
console.log(' Skipped ' + name + ' (local modifications preserved)');
|
|
354
354
|
const currentHash = computeSkillHash(path.join(SKILLS_DIR, name));
|
|
355
355
|
if (currentHash) newChecksums[name] = currentHash;
|
|
356
356
|
continue;
|
|
@@ -358,7 +358,7 @@ async function main() {
|
|
|
358
358
|
if (modifiedAction === 'merge') {
|
|
359
359
|
backupSkill(name);
|
|
360
360
|
mergedSkills.push(name);
|
|
361
|
-
console.log(' Backed up
|
|
361
|
+
console.log(' Backed up ' + name + ' → ~/.claude/.estack-backup/' + name);
|
|
362
362
|
}
|
|
363
363
|
// overwrite or merge — fall through to install
|
|
364
364
|
} else if (!needsUpdate.includes(name) && fs.existsSync(path.join(SKILLS_DIR, name))) {
|
|
@@ -368,7 +368,7 @@ async function main() {
|
|
|
368
368
|
copyDir(path.join(PACKAGE_SKILLS_DIR, name), path.join(SKILLS_DIR, name));
|
|
369
369
|
newChecksums[name] = packageHashes[name];
|
|
370
370
|
installedCount++;
|
|
371
|
-
console.log(' Installed
|
|
371
|
+
console.log(' Installed ' + name);
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
// 9. Write checksums
|
|
@@ -384,7 +384,7 @@ async function main() {
|
|
|
384
384
|
|
|
385
385
|
for (const name of skillNames) {
|
|
386
386
|
const desc = getSkillDescription(path.join(PACKAGE_SKILLS_DIR, name));
|
|
387
|
-
console.log(' /
|
|
387
|
+
console.log(' /' + name + (desc ? ' — ' + desc : ''));
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
if (mergedSkills.length > 0) {
|
package/package.json
CHANGED