elliot-stack 1.0.5 → 1.0.6

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 estack-' + 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 estack-' + 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 estack-' + 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(' /estack-' + 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.5",
3
+ "version": "1.0.6",
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: estack:better-title
2
+ name: 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: estack:chris-voss
2
+ name: 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: estack:github-issue-tracker
2
+ name: 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.
@@ -58,6 +58,6 @@ git clone --depth 1 <repo-url> ~/repo-search-storage/<repo-name>
58
58
 
59
59
  ## Searching
60
60
 
61
- To explore a repo, spawn one or more **Haiku** subagents using the Agent tool with `model: "haiku"` and `subagent_type: "Explore"`. Point them at the cloned repo path.
61
+ To explore a repo, spawn one or more **Haiku** subagents using the Agent tool with `model: "haiku"` and `subagent_type: "Explore"`. In the prompt, always include the **full absolute path** to the cloned repo (e.g. `C:/Users/2supe/repo-search-storage/gstack`) and tell the subagent to search within that directory. Without this, the subagent won't know where to look.
62
62
 
63
63
  If the question spans multiple areas of the repo, spawn multiple subagents in parallel — each focused on a different aspect — to get answers faster.