elliot-stack 1.0.33 → 1.0.37

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.
Files changed (82) hide show
  1. package/LICENSE +21 -21
  2. package/bin/install.cjs +981 -981
  3. package/hooks/repo-search-nudge.js +32 -32
  4. package/package.json +1 -1
  5. package/skills/estack-active-learning-tutor/SKILL.md +339 -339
  6. package/skills/estack-better-title/SKILL.md +64 -64
  7. package/skills/estack-better-title/scripts/rename.sh +55 -55
  8. package/skills/estack-chris-voss/SKILL.md +80 -80
  9. package/skills/estack-chris-voss/references/elliot-notes.md +120 -120
  10. package/skills/estack-chris-voss/references/voss-principles.md +210 -210
  11. package/skills/estack-customer-discovery/SKILL.md +60 -60
  12. package/skills/estack-flight-planner/SKILL.md +332 -332
  13. package/skills/estack-flight-planner/references/config_schema.md +156 -156
  14. package/skills/estack-flight-planner/references/flight_history_schema.md +97 -97
  15. package/skills/estack-flight-planner/references/shuttle_schedules.md +98 -98
  16. package/skills/estack-flight-planner/scripts/check_setup.sh +89 -89
  17. package/skills/estack-flight-planner/scripts/fetch_flights.py +99 -99
  18. package/skills/estack-flight-planner/scripts/filter_flights.py +265 -265
  19. package/skills/estack-flight-planner/scripts/pair_shuttles.py +173 -173
  20. package/skills/estack-github-issue-tracker/SKILL.md +322 -322
  21. package/skills/estack-github-issue-tracker/bin/tracker-tools.cjs +1358 -1358
  22. package/skills/estack-github-issue-tracker/references/gh-cli-patterns.md +124 -124
  23. package/skills/estack-github-issue-tracker/references/result-file-schema.md +156 -156
  24. package/skills/estack-github-issue-tracker/references/tracker-schema.md +96 -96
  25. package/skills/estack-github-issue-tracker/tracker-template.md +58 -58
  26. package/skills/estack-leadership-coach/SKILL.md +1 -1
  27. package/skills/estack-leadership-coach/adding-references.md +1 -1
  28. package/skills/estack-migrate-claude-session-history/SKILL.md +15 -2
  29. package/skills/estack-pdf-to-md/SKILL.md +1 -2
  30. package/skills/estack-prompt-builder-coach/SKILL.md +81 -81
  31. package/skills/estack-prompt-builder-coach/definition-of-done-generator.md +42 -42
  32. package/skills/estack-prompt-builder-coach/prompt-builder.md +37 -37
  33. package/skills/estack-prompt-builder-coach/task-shaper.md +36 -36
  34. package/skills/estack-prompt-builder-coach/vague-ask-auditor.md +37 -37
  35. package/skills/estack-read-claude-session-history/SKILL.md +224 -204
  36. package/skills/estack-read-claude-session-history/references/jsonl-schema.md +126 -126
  37. package/skills/estack-read-claude-session-history/references/modes.md +423 -423
  38. package/skills/estack-read-claude-session-history/references/recipes.md +271 -271
  39. package/skills/estack-read-claude-session-history/scripts/lib/__init__.py +1 -1
  40. package/skills/estack-read-claude-session-history/scripts/lib/parser.py +460 -460
  41. package/skills/estack-read-claude-session-history/scripts/lib/paths.py +234 -234
  42. package/skills/estack-read-claude-session-history/scripts/lib/search.py +179 -179
  43. package/skills/estack-read-claude-session-history/scripts/lib/subagents.py +88 -88
  44. package/skills/estack-read-claude-session-history/scripts/lib/tools.py +144 -144
  45. package/skills/estack-read-claude-session-history/scripts/read_transcript.py +1776 -1776
  46. package/skills/estack-read-claude-session-history/scripts/tests/conftest.py +40 -40
  47. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/README.md +20 -20
  48. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/all-noise.jsonl +4 -4
  49. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/basic-session.jsonl +2 -2
  50. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-gaps.jsonl +9 -9
  51. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-noise.jsonl +7 -7
  52. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-parallel-a.jsonl +3 -3
  53. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-parallel-b.jsonl +3 -3
  54. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-waiting.jsonl +5 -5
  55. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/interrupted.jsonl +2 -2
  56. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/multi-compact.jsonl +8 -8
  57. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/pending-user.jsonl +2 -2
  58. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-no-meta/subagents/agent-aaa.jsonl +2 -2
  59. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-no-meta.jsonl +2 -2
  60. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-parent/subagents/agent-xyz123.jsonl +2 -2
  61. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-parent/subagents/agent-xyz123.meta.json +1 -1
  62. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-parent.jsonl +4 -4
  63. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/time-spread.jsonl +6 -6
  64. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/timeline-day-test.jsonl +5 -5
  65. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/tool-zoo.jsonl +10 -10
  66. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/truncated.jsonl +2 -2
  67. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/unicode.jsonl +2 -2
  68. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/with-advisor.jsonl +3 -3
  69. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/with-compact.jsonl +5 -5
  70. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/with-thinking.jsonl +2 -2
  71. package/skills/estack-read-claude-session-history/scripts/tests/test_backup_roots.py +56 -56
  72. package/skills/estack-read-claude-session-history/scripts/tests/test_engagement.py +239 -239
  73. package/skills/estack-read-claude-session-history/scripts/tests/test_json_format.py +201 -201
  74. package/skills/estack-read-claude-session-history/scripts/tests/test_modes.py +199 -199
  75. package/skills/estack-read-claude-session-history/scripts/tests/test_parser.py +195 -195
  76. package/skills/estack-read-claude-session-history/scripts/tests/test_paths.py +133 -133
  77. package/skills/estack-read-claude-session-history/scripts/tests/test_search.py +78 -78
  78. package/skills/estack-read-claude-session-history/scripts/tests/test_subagents.py +43 -43
  79. package/skills/estack-read-claude-session-history/scripts/tests/test_timeline.py +179 -179
  80. package/skills/estack-read-claude-session-history/scripts/tests/test_timezone_and_project.py +212 -212
  81. package/skills/estack-read-claude-session-history/scripts/tests/test_tools.py +80 -80
  82. package/skills/estack-repo-search/SKILL.md +67 -65
@@ -1,68 +1,70 @@
1
- ---
2
- name: estack-repo-search
3
- version: 1.0.2
4
- description: >-
5
- (repo-search) Clone and search external GitHub repositories to answer questions about their
6
- code. Use this skill whenever the user references a repo you don't have local
7
- context for, asks about code in an external project, wants to compare
8
- implementations across repos, or needs information from a codebase that isn't
9
- in the current working directory. Also use when the user says things like
10
- "check how X does it", "look at the source for Y", "search that repo",
11
- "clone it and find...", or references a GitHub URL. If you're unsure whether
12
- you have enough context about an external codebase to answer accurately,
13
- use this skill to clone it and look.
14
- ---
15
-
16
- # Repo Search
17
-
18
- Search external repositories by cloning them into a persistent sandbox and exploring with subagents.
19
-
20
- ## Available repos
21
-
22
- ```!
23
- mkdir -p ~/repo-search-storage
24
- echo "=== Repo Sandbox: ~/repo-search-storage ==="
25
- echo ""
26
- found=0
27
- for dir in ~/repo-search-storage/*/; do
28
- [ -d "$dir/.git" ] || continue
29
- found=1
30
- name=$(basename "$dir")
31
- url=$(cd "$dir" && git remote get-url origin 2>/dev/null || echo "(no remote)")
32
- echo "- $name → $url"
33
- echo " Updating..."
34
- (cd "$dir" && git pull --ff-only 2>&1) | sed 's/^/ /'
35
- echo ""
36
- done
37
- if [ "$found" -eq 0 ]; then
38
- echo "(no repos cached yet)"
39
- fi
40
- ```
41
-
42
- Present the user with the repos listed above and offer to search any of them or clone a new one.
43
-
44
- ## Finding the correct repo
45
-
46
- Before cloning, you must have the exact GitHub URL. Follow these rules:
47
-
48
- - **If the user gave a full GitHub URL** (e.g. `https://github.com/org/repo`), use it directly.
49
- - **If the user gave only a name** (e.g. "openclaw", "langchain"), use WebSearch to find the correct GitHub repository URL first. Never guess a repo URL — confirm it via search.
50
- - **Always verify** the search result matches what the user is asking about before cloning. It doesn't hurt to confirm with the user — "I found X repo, is that the one you meant?" — before spending time cloning. Wrong repo = wasted time and misleading answers.
51
-
52
- ## Cloning
53
-
54
- Once you have a confirmed URL, shallow clone into the sandbox:
55
-
56
- ```bash
57
- git clone --depth 1 <repo-url> ~/repo-search-storage/<repo-name>
58
- ```
59
-
60
- ## Searching
61
-
62
- 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.
63
-
64
- If the question spans multiple areas of the repo, spawn multiple subagents in parallel — each focused on a different aspect — to get answers faster.
65
-
1
+ ---
2
+ name: estack-repo-search
3
+ version: 1.0.3
4
+ description: >-
5
+ (repo-search) Clone and search external GitHub repositories to answer questions about their
6
+ code. Use this skill whenever the user references a repo you don't have local
7
+ context for, asks about code in an external project, wants to compare
8
+ implementations across repos, or needs information from a codebase that isn't
9
+ in the current working directory. Also use when the user says things like
10
+ "check how X does it", "look at the source for Y", "search that repo",
11
+ "clone it and find...", or references a GitHub URL. If you're unsure whether
12
+ you have enough context about an external codebase to answer accurately,
13
+ use this skill to clone it and look.
14
+ ---
15
+
16
+ # Repo Search
17
+
18
+ Search external repositories by cloning them into a persistent sandbox and exploring with subagents.
19
+
20
+ ## Available repos
21
+
22
+ ```!
23
+ mkdir -p ~/repo-search-storage
24
+ echo "=== Repo Sandbox: ~/repo-search-storage ==="
25
+ echo ""
26
+ found=0
27
+ for dir in ~/repo-search-storage/*/; do
28
+ [ -d "$dir/.git" ] || continue
29
+ found=1
30
+ name=$(basename "$dir")
31
+ url=$(cd "$dir" && git remote get-url origin 2>/dev/null || echo "(no remote)")
32
+ echo "- $name → $url"
33
+ echo " Updating..."
34
+ (cd "$dir" && git pull --ff-only 2>&1) | sed 's/^/ /'
35
+ echo ""
36
+ done
37
+ if [ "$found" -eq 0 ]; then
38
+ echo "(no repos cached yet)"
39
+ fi
40
+ ```
41
+
42
+ Present the user with the repos listed above and offer to search any of them or clone a new one.
43
+
44
+ ## Finding the correct repo
45
+
46
+ Before cloning, you must have the exact GitHub URL. Follow these rules:
47
+
48
+ - **If the user gave a full GitHub URL** (e.g. `https://github.com/org/repo`), use it directly.
49
+ - **If the user gave only a name** (e.g. "openclaw", "langchain"), use WebSearch to find the correct GitHub repository URL first. Never guess a repo URL — confirm it via search.
50
+ - **Always verify** the search result matches what the user is asking about before cloning. It doesn't hurt to confirm with the user — "I found X repo, is that the one you meant?" — before spending time cloning. Wrong repo = wasted time and misleading answers.
51
+
52
+ ## Cloning
53
+
54
+ Once you have a confirmed URL, shallow clone into the sandbox:
55
+
56
+ ```bash
57
+ git clone --depth 1 <repo-url> ~/repo-search-storage/<repo-name>
58
+ ```
59
+
60
+ ## Searching
61
+
62
+ 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.
63
+
64
+ If the question spans multiple areas of the repo, spawn multiple subagents in parallel — each focused on a different aspect — to get answers faster.
65
+
66
+ **The subagent's job is navigation, not answers.** Use subagent results to identify which files are relevant, then **read those files yourself** with the Read tool before drawing conclusions. Never trust a subagent's summary of code verbatim — always verify by reading the source directly.
67
+
66
68
  ---
67
69
 
68
70
  ## Skill Feedback