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 estack-' + name + ' (local modifications preserved)');
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 estack-' + name + ' → ~/.claude/.estack-backup/' + name);
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 estack-' + name);
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(' /estack-' + name + (desc ? ' — ' + desc : ''));
387
+ console.log(' /' + name + (desc ? ' — ' + desc : ''));
388
388
  }
389
389
 
390
390
  if (mergedSkills.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elliot-stack",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Elliot's skill stack for Claude Code — install via npx elliot-stack@latest",
5
5
  "bin": {
6
6
  "elliot-stack": "bin/install.cjs"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: better-title
2
+ name: estack-better-title
3
3
  description: Suggest better chat session titles and rename the session
4
4
  disable-model-invocation: true
5
5
  allowed-tools: Bash, AskUserQuestion
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: chris-voss
2
+ name: estack-chris-voss
3
3
  description: >
4
4
  Applies Chris Voss negotiation principles from *Never Split the Difference* to any situation
5
5
  where understanding human psychology, persuasion, or influence would improve the output. Use
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: github-issue-tracker
2
+ name: estack-github-issue-tracker
3
3
  description: >
4
4
  GitHub issue tracker management. Checks all open issues the user is involved in,
5
5
  finds related/duplicate issues, reports what changed, and recommends next steps.
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: repo-search
2
+ name: estack-repo-search
3
3
  description: >-
4
4
  Clone and search external GitHub repositories to answer questions about their
5
5
  code. Use this skill whenever the user references a repo you don't have local