elliot-stack 1.0.5 → 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 +4 -4
- package/package.json +1 -1
- package/skills/{better-title → estack-better-title}/SKILL.md +1 -1
- package/skills/{chris-voss → estack-chris-voss}/SKILL.md +1 -1
- package/skills/{github-issue-tracker → estack-github-issue-tracker}/SKILL.md +1 -1
- package/skills/{repo-search → estack-repo-search}/SKILL.md +2 -2
- /package/skills/{better-title → estack-better-title}/scripts/rename.sh +0 -0
- /package/skills/{chris-voss → estack-chris-voss}/references/elliot-notes.md +0 -0
- /package/skills/{chris-voss → estack-chris-voss}/references/voss-principles.md +0 -0
- /package/skills/{github-issue-tracker → estack-github-issue-tracker}/bin/tracker-tools.cjs +0 -0
- /package/skills/{github-issue-tracker → estack-github-issue-tracker}/references/gh-cli-patterns.md +0 -0
- /package/skills/{github-issue-tracker → estack-github-issue-tracker}/references/result-file-schema.md +0 -0
- /package/skills/{github-issue-tracker → estack-github-issue-tracker}/references/tracker-schema.md +0 -0
- /package/skills/{github-issue-tracker → estack-github-issue-tracker}/tracker-template.md +0 -0
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
|
@@ -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
|
|
@@ -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"`.
|
|
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.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/skills/{github-issue-tracker → estack-github-issue-tracker}/references/gh-cli-patterns.md
RENAMED
|
File without changes
|
|
File without changes
|
/package/skills/{github-issue-tracker → estack-github-issue-tracker}/references/tracker-schema.md
RENAMED
|
File without changes
|
|
File without changes
|