elliot-stack 1.0.25 → 1.0.27
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/package.json +1 -1
- package/skills/estack-active-learning-tutor/SKILL.md +1 -66
- package/skills/estack-better-title/SKILL.md +1 -95
- package/skills/estack-chris-voss/SKILL.md +1 -95
- package/skills/estack-customer-discovery/SKILL.md +1 -95
- package/skills/estack-flight-planner/SKILL.md +1 -100
- package/skills/estack-github-issue-tracker/SKILL.md +1 -84
- package/skills/estack-prompt-builder-coach/SKILL.md +1 -2
- package/skills/estack-read-claude-session-history/SKILL.md +1 -2
- package/skills/estack-repo-search/SKILL.md +1 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-active-learning-tutor
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: (active-learning-tutor) Tutors a student through exam preparation using active learning — questioning, gap diagnosis, and concept mastery tracking. Use when the student says they want to study, learn, prep for an exam, be quizzed on a chapter, work through a practice test together, or be taught a topic conceptually rather than lectured.
|
|
5
5
|
disable-model-invocation: true
|
|
6
6
|
---
|
|
@@ -339,71 +339,6 @@ When in doubt about the shape of a Teaching turn, read `references/teaching-turn
|
|
|
339
339
|
|
|
340
340
|
---
|
|
341
341
|
|
|
342
|
-
## Skill Feedback
|
|
343
|
-
---
|
|
344
|
-
|
|
345
|
-
## Skill Feedback
|
|
346
|
-
|
|
347
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
348
|
-
|
|
349
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
350
|
-
|
|
351
|
-
```bash
|
|
352
|
-
gh issue create \
|
|
353
|
-
--repo ElliotDrel/e-stack \
|
|
354
|
-
--title "estack-active-learning-tutor: <concise summary>" \
|
|
355
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
356
|
-
```
|
|
357
|
-
|
|
358
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
359
|
-
|
|
360
|
-
```bash
|
|
361
|
-
python3 -c "
|
|
362
|
-
import urllib.parse
|
|
363
|
-
title = 'estack-active-learning-tutor: <concise summary>'
|
|
364
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
365
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
366
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
367
|
-
"
|
|
368
|
-
```
|
|
369
|
-
|
|
370
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
371
|
-
|
|
372
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
373
|
-
|
|
374
|
-
---
|
|
375
|
-
|
|
376
|
-
## Skill Feedback
|
|
377
|
-
|
|
378
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
379
|
-
|
|
380
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
381
|
-
|
|
382
|
-
```bash
|
|
383
|
-
gh issue create \
|
|
384
|
-
--repo ElliotDrel/e-stack \
|
|
385
|
-
--title "estack-active-learning-tutor: <concise summary>" \
|
|
386
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
387
|
-
```
|
|
388
|
-
|
|
389
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
390
|
-
|
|
391
|
-
```bash
|
|
392
|
-
python3 -c "
|
|
393
|
-
import urllib.parse
|
|
394
|
-
title = 'estack-active-learning-tutor: <concise summary>'
|
|
395
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
396
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
397
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
398
|
-
"
|
|
399
|
-
```
|
|
400
|
-
|
|
401
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
402
|
-
|
|
403
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
404
|
-
|
|
405
|
-
---
|
|
406
|
-
|
|
407
342
|
## Skill Feedback
|
|
408
343
|
|
|
409
344
|
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-better-title
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: (better-title) Suggest better chat session titles and rename the session
|
|
5
5
|
disable-model-invocation: true
|
|
6
6
|
allowed-tools: Bash, AskUserQuestion
|
|
@@ -77,100 +77,6 @@ gh issue create \
|
|
|
77
77
|
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
**If `gh` is not installed**, build a pre-filled URL and share it so the user can click, review, and submit:
|
|
81
|
-
|
|
82
|
-
```bash
|
|
83
|
-
python3 -c "
|
|
84
|
-
import urllib.parse
|
|
85
|
-
title = 'estack-better-title: <concise summary>'
|
|
86
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
87
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
88
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
89
|
-
"
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
Share the printed URL with the user. They click it, review the pre-filled title and body, then click **Submit new issue**.
|
|
93
|
-
|
|
94
|
-
---
|
|
95
|
-
|
|
96
|
-
## Skill Feedback
|
|
97
|
-
---
|
|
98
|
-
|
|
99
|
-
## Skill Feedback
|
|
100
|
-
|
|
101
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
102
|
-
|
|
103
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
104
|
-
|
|
105
|
-
```bash
|
|
106
|
-
gh issue create \
|
|
107
|
-
--repo ElliotDrel/e-stack \
|
|
108
|
-
--title "estack-better-title: <concise summary>" \
|
|
109
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
python3 -c "
|
|
116
|
-
import urllib.parse
|
|
117
|
-
title = 'estack-better-title: <concise summary>'
|
|
118
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
119
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
120
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
121
|
-
"
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
125
|
-
|
|
126
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
127
|
-
|
|
128
|
-
---
|
|
129
|
-
|
|
130
|
-
## Skill Feedback
|
|
131
|
-
|
|
132
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
133
|
-
|
|
134
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
135
|
-
|
|
136
|
-
```bash
|
|
137
|
-
gh issue create \
|
|
138
|
-
--repo ElliotDrel/e-stack \
|
|
139
|
-
--title "estack-better-title: <concise summary>" \
|
|
140
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
144
|
-
|
|
145
|
-
```bash
|
|
146
|
-
python3 -c "
|
|
147
|
-
import urllib.parse
|
|
148
|
-
title = 'estack-better-title: <concise summary>'
|
|
149
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
150
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
151
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
152
|
-
"
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
156
|
-
|
|
157
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
158
|
-
|
|
159
|
-
---
|
|
160
|
-
|
|
161
|
-
## Skill Feedback
|
|
162
|
-
|
|
163
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
164
|
-
|
|
165
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
166
|
-
|
|
167
|
-
```bash
|
|
168
|
-
gh issue create \
|
|
169
|
-
--repo ElliotDrel/e-stack \
|
|
170
|
-
--title "estack-better-title: <concise summary>" \
|
|
171
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
172
|
-
```
|
|
173
|
-
|
|
174
80
|
**If `gh` is not installed**, build a pre-filled URL:
|
|
175
81
|
|
|
176
82
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-chris-voss
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: >
|
|
5
5
|
(chris-voss) Applies Chris Voss negotiation principles from *Never Split the Difference* to any situation
|
|
6
6
|
where understanding human psychology, persuasion, or influence would improve the output. Use
|
|
@@ -93,100 +93,6 @@ gh issue create \
|
|
|
93
93
|
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
-
**If `gh` is not installed**, build a pre-filled URL and share it so the user can click, review, and submit:
|
|
97
|
-
|
|
98
|
-
```bash
|
|
99
|
-
python3 -c "
|
|
100
|
-
import urllib.parse
|
|
101
|
-
title = 'estack-chris-voss: <concise summary>'
|
|
102
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
103
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
104
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
105
|
-
"
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
Share the printed URL with the user. They click it, review the pre-filled title and body, then click **Submit new issue**.
|
|
109
|
-
|
|
110
|
-
---
|
|
111
|
-
|
|
112
|
-
## Skill Feedback
|
|
113
|
-
---
|
|
114
|
-
|
|
115
|
-
## Skill Feedback
|
|
116
|
-
|
|
117
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
118
|
-
|
|
119
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
120
|
-
|
|
121
|
-
```bash
|
|
122
|
-
gh issue create \
|
|
123
|
-
--repo ElliotDrel/e-stack \
|
|
124
|
-
--title "estack-chris-voss: <concise summary>" \
|
|
125
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
129
|
-
|
|
130
|
-
```bash
|
|
131
|
-
python3 -c "
|
|
132
|
-
import urllib.parse
|
|
133
|
-
title = 'estack-chris-voss: <concise summary>'
|
|
134
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
135
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
136
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
137
|
-
"
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
141
|
-
|
|
142
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
143
|
-
|
|
144
|
-
---
|
|
145
|
-
|
|
146
|
-
## Skill Feedback
|
|
147
|
-
|
|
148
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
149
|
-
|
|
150
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
151
|
-
|
|
152
|
-
```bash
|
|
153
|
-
gh issue create \
|
|
154
|
-
--repo ElliotDrel/e-stack \
|
|
155
|
-
--title "estack-chris-voss: <concise summary>" \
|
|
156
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
160
|
-
|
|
161
|
-
```bash
|
|
162
|
-
python3 -c "
|
|
163
|
-
import urllib.parse
|
|
164
|
-
title = 'estack-chris-voss: <concise summary>'
|
|
165
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
166
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
167
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
168
|
-
"
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
172
|
-
|
|
173
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
174
|
-
|
|
175
|
-
---
|
|
176
|
-
|
|
177
|
-
## Skill Feedback
|
|
178
|
-
|
|
179
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
180
|
-
|
|
181
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
182
|
-
|
|
183
|
-
```bash
|
|
184
|
-
gh issue create \
|
|
185
|
-
--repo ElliotDrel/e-stack \
|
|
186
|
-
--title "estack-chris-voss: <concise summary>" \
|
|
187
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
188
|
-
```
|
|
189
|
-
|
|
190
96
|
**If `gh` is not installed**, build a pre-filled URL:
|
|
191
97
|
|
|
192
98
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-customer-discovery
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: (customer-discovery) Guide users through customer discovery — validating business ideas, identifying target customers, crafting outreach, preparing interview questions, and analyzing interview results. Use this skill whenever the user mentions customer discovery, customer interviews, validating an idea, market research, finding product-market fit, talking to customers, outreach messages, interview guides, or analyzing customer feedback. Also use when someone says they have a business idea and want to test it, or when they're preparing to talk to potential customers.
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -73,100 +73,6 @@ gh issue create \
|
|
|
73
73
|
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
-
**If `gh` is not installed**, build a pre-filled URL and share it so the user can click, review, and submit:
|
|
77
|
-
|
|
78
|
-
```bash
|
|
79
|
-
python3 -c "
|
|
80
|
-
import urllib.parse
|
|
81
|
-
title = 'estack-customer-discovery: <concise summary>'
|
|
82
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
83
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
84
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
85
|
-
"
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
Share the printed URL with the user. They click it, review the pre-filled title and body, then click **Submit new issue**.
|
|
89
|
-
|
|
90
|
-
---
|
|
91
|
-
|
|
92
|
-
## Skill Feedback
|
|
93
|
-
---
|
|
94
|
-
|
|
95
|
-
## Skill Feedback
|
|
96
|
-
|
|
97
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
98
|
-
|
|
99
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
gh issue create \
|
|
103
|
-
--repo ElliotDrel/e-stack \
|
|
104
|
-
--title "estack-customer-discovery: <concise summary>" \
|
|
105
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
109
|
-
|
|
110
|
-
```bash
|
|
111
|
-
python3 -c "
|
|
112
|
-
import urllib.parse
|
|
113
|
-
title = 'estack-customer-discovery: <concise summary>'
|
|
114
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
115
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
116
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
117
|
-
"
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
121
|
-
|
|
122
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
123
|
-
|
|
124
|
-
---
|
|
125
|
-
|
|
126
|
-
## Skill Feedback
|
|
127
|
-
|
|
128
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
129
|
-
|
|
130
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
131
|
-
|
|
132
|
-
```bash
|
|
133
|
-
gh issue create \
|
|
134
|
-
--repo ElliotDrel/e-stack \
|
|
135
|
-
--title "estack-customer-discovery: <concise summary>" \
|
|
136
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
140
|
-
|
|
141
|
-
```bash
|
|
142
|
-
python3 -c "
|
|
143
|
-
import urllib.parse
|
|
144
|
-
title = 'estack-customer-discovery: <concise summary>'
|
|
145
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
146
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
147
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
148
|
-
"
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
152
|
-
|
|
153
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
154
|
-
|
|
155
|
-
---
|
|
156
|
-
|
|
157
|
-
## Skill Feedback
|
|
158
|
-
|
|
159
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
160
|
-
|
|
161
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
162
|
-
|
|
163
|
-
```bash
|
|
164
|
-
gh issue create \
|
|
165
|
-
--repo ElliotDrel/e-stack \
|
|
166
|
-
--title "estack-customer-discovery: <concise summary>" \
|
|
167
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
168
|
-
```
|
|
169
|
-
|
|
170
76
|
**If `gh` is not installed**, build a pre-filled URL:
|
|
171
77
|
|
|
172
78
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-flight-planner
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: (flight-planner) Find and rank flights between any two airports with config-driven preferences (budget, airlines, nonstop, time-of-day) and optional ground-shuttle pairing. Uses SerpAPI Google Flights (or WebSearch fallback). Saves preferences to `~/.flight-planner/config.json` and logs every search.
|
|
5
5
|
disable-model-invocation: true
|
|
6
6
|
---
|
|
@@ -334,105 +334,6 @@ If the user doesn't have a SerpAPI key and asks for help getting one:
|
|
|
334
334
|
|
|
335
335
|
## Skill Feedback
|
|
336
336
|
|
|
337
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then build a pre-filled GitHub issue URL and share it so the user can click, review, and submit:
|
|
338
|
-
|
|
339
|
-
```bash
|
|
340
|
-
python3 -c "
|
|
341
|
-
import urllib.parse
|
|
342
|
-
title = 'estack-flight-planner: <concise summary>'
|
|
343
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
344
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
345
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
346
|
-
"
|
|
347
|
-
```
|
|
348
|
-
|
|
349
|
-
Share the printed URL with the user. They click it, review the pre-filled title and body, then click **Submit new issue**.
|
|
350
|
-
|
|
351
|
-
## Adding a shuttle service to your config
|
|
352
|
-
|
|
353
|
-
If you regularly use a shuttle to your airport, add it to your config so the skill pairs flights with shuttle runs automatically:
|
|
354
|
-
|
|
355
|
-
```json
|
|
356
|
-
"shuttle_service": {
|
|
357
|
-
"name": "Your Shuttle Co.",
|
|
358
|
-
"schedule_urls": ["https://yourshuttle.example.com/schedule"],
|
|
359
|
-
"costs": {"ORD": 60, "MDW": 55},
|
|
360
|
-
"home_timezone": "America/New_York",
|
|
361
|
-
"airport_timezones": {"ORD": "America/Chicago", "MDW": "America/Chicago"}
|
|
362
|
-
}
|
|
363
|
-
```
|
|
364
|
-
|
|
365
|
-
See `references/shuttle_schedules.md` for the full schema, JSON format the pairing script expects, and tips on extracting schedule data from a shuttle company's website.
|
|
366
|
-
|
|
367
|
-
---
|
|
368
|
-
|
|
369
|
-
## Skill Feedback
|
|
370
|
-
---
|
|
371
|
-
|
|
372
|
-
## Skill Feedback
|
|
373
|
-
|
|
374
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
375
|
-
|
|
376
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
377
|
-
|
|
378
|
-
```bash
|
|
379
|
-
gh issue create \
|
|
380
|
-
--repo ElliotDrel/e-stack \
|
|
381
|
-
--title "estack-flight-planner: <concise summary>" \
|
|
382
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
383
|
-
```
|
|
384
|
-
|
|
385
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
386
|
-
|
|
387
|
-
```bash
|
|
388
|
-
python3 -c "
|
|
389
|
-
import urllib.parse
|
|
390
|
-
title = 'estack-flight-planner: <concise summary>'
|
|
391
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
392
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
393
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
394
|
-
"
|
|
395
|
-
```
|
|
396
|
-
|
|
397
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
398
|
-
|
|
399
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
400
|
-
|
|
401
|
-
---
|
|
402
|
-
|
|
403
|
-
## Skill Feedback
|
|
404
|
-
|
|
405
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
406
|
-
|
|
407
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
408
|
-
|
|
409
|
-
```bash
|
|
410
|
-
gh issue create \
|
|
411
|
-
--repo ElliotDrel/e-stack \
|
|
412
|
-
--title "estack-flight-planner: <concise summary>" \
|
|
413
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
414
|
-
```
|
|
415
|
-
|
|
416
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
417
|
-
|
|
418
|
-
```bash
|
|
419
|
-
python3 -c "
|
|
420
|
-
import urllib.parse
|
|
421
|
-
title = 'estack-flight-planner: <concise summary>'
|
|
422
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
423
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
424
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
425
|
-
"
|
|
426
|
-
```
|
|
427
|
-
|
|
428
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
429
|
-
|
|
430
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
431
|
-
|
|
432
|
-
---
|
|
433
|
-
|
|
434
|
-
## Skill Feedback
|
|
435
|
-
|
|
436
337
|
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
437
338
|
|
|
438
339
|
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-github-issue-tracker
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: >
|
|
5
5
|
(github-issue-tracker) GitHub issue tracker management. Checks all open issues the user is involved in,
|
|
6
6
|
finds related/duplicate issues, reports what changed, and recommends next steps.
|
|
@@ -324,89 +324,6 @@ $ARGUMENTS
|
|
|
324
324
|
|
|
325
325
|
## Skill Feedback
|
|
326
326
|
|
|
327
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then build a pre-filled GitHub issue URL and share it so the user can click, review, and submit:
|
|
328
|
-
|
|
329
|
-
```bash
|
|
330
|
-
python3 -c "
|
|
331
|
-
import urllib.parse
|
|
332
|
-
title = 'estack-github-issue-tracker: <concise summary>'
|
|
333
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
334
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
335
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
336
|
-
"
|
|
337
|
-
```
|
|
338
|
-
|
|
339
|
-
Share the printed URL with the user. They click it, review the pre-filled title and body, then click **Submit new issue**.
|
|
340
|
-
|
|
341
|
-
---
|
|
342
|
-
|
|
343
|
-
## Skill Feedback
|
|
344
|
-
---
|
|
345
|
-
|
|
346
|
-
## Skill Feedback
|
|
347
|
-
|
|
348
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
349
|
-
|
|
350
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
351
|
-
|
|
352
|
-
```bash
|
|
353
|
-
gh issue create \
|
|
354
|
-
--repo ElliotDrel/e-stack \
|
|
355
|
-
--title "estack-github-issue-tracker: <concise summary>" \
|
|
356
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
357
|
-
```
|
|
358
|
-
|
|
359
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
360
|
-
|
|
361
|
-
```bash
|
|
362
|
-
python3 -c "
|
|
363
|
-
import urllib.parse
|
|
364
|
-
title = 'estack-github-issue-tracker: <concise summary>'
|
|
365
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
366
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
367
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
368
|
-
"
|
|
369
|
-
```
|
|
370
|
-
|
|
371
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
372
|
-
|
|
373
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
374
|
-
|
|
375
|
-
---
|
|
376
|
-
|
|
377
|
-
## Skill Feedback
|
|
378
|
-
|
|
379
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
380
|
-
|
|
381
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
382
|
-
|
|
383
|
-
```bash
|
|
384
|
-
gh issue create \
|
|
385
|
-
--repo ElliotDrel/e-stack \
|
|
386
|
-
--title "estack-github-issue-tracker: <concise summary>" \
|
|
387
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
388
|
-
```
|
|
389
|
-
|
|
390
|
-
**If `gh` is not installed**, build a pre-filled URL:
|
|
391
|
-
|
|
392
|
-
```bash
|
|
393
|
-
python3 -c "
|
|
394
|
-
import urllib.parse
|
|
395
|
-
title = 'estack-github-issue-tracker: <concise summary>'
|
|
396
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
397
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
398
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
399
|
-
"
|
|
400
|
-
```
|
|
401
|
-
|
|
402
|
-
Share the printed URL with the user and offer to open it in their browser.
|
|
403
|
-
|
|
404
|
-
They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
|
|
405
|
-
|
|
406
|
-
---
|
|
407
|
-
|
|
408
|
-
## Skill Feedback
|
|
409
|
-
|
|
410
327
|
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
411
328
|
|
|
412
329
|
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-prompt-builder-coach
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: (prompt-builder-coach) Use whenever you or the user need to write, sharpen, audit, or scope a prompt or work request for an AI agent or model. This is a four-part kit covering shaping a fuzzy idea into a decided goal, building a prompt from scratch, auditing a draft request that feels vague, and defining what "done" looks like when the task is fuzzy. Trigger when the user says "help me write a prompt", "build me a prompt", "audit this prompt", "make this request better", "why is the AI giving me generic output", "I don't know what I want", "I have a rough idea", "what should done look like", or when handing a task to another agent and wanting it to land. Use it even when the user did not say the word "prompt" but is clearly trying to get an AI to do consequential work. Do not use for quick factual lookups or for executing an already well-defined task.
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -79,7 +79,6 @@ Every finished prompt or brief gets saved to a markdown file with a descriptive
|
|
|
79
79
|
- Do not run a part from memory. Always read its file on entry, per Rule 1.
|
|
80
80
|
- Do not over-apply the kit. A quick ask gets a quick prompt, not a six-field brief.
|
|
81
81
|
</guardrails>
|
|
82
|
-
|
|
83
82
|
---
|
|
84
83
|
|
|
85
84
|
## Skill Feedback
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-read-claude-session-history
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: (read-claude-session-history) Invoke for ANY task involving Claude Code session history, transcripts, or .jsonl files — this is the only way to read, parse, or search them; do not attempt to use Bash or Read on .jsonl directly. Use for: recovering context after /compact ("what were we doing before compact"), advisor response retrieval ("what did the advisor say"), subagent output collection ("get all subagent finals"), cross-project session search by keyword, session listing and triage, UUID and title lookup, resume-command generation, file-edit and tool-call forensics, session diff between two sessions or subagents, weekly work journal, day timeline of activity blocks and idle gaps, engagement/attention-time accounting (active vs elapsed time, break detection, parallel-chat-safe totals), recovering from .claude-backups after data loss, session count queries, and reading the last agent message before a crash or interrupt. Trigger phrases: "session history", "before compact", "what did claude do", "what did I work on", "search my sessions", "find that session", "what did the advisor say", "what did the agent edit", "from the backup", "list my sessions", "subagent outputs", "session journal", "resume previous", "which files did claude touch", "go back and look", "what did I do yesterday", "where did my day go", "timeline of my day", "how much time on", "how long did that actually take", "how much did I actually work", "active time", "time I spent".
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -202,7 +202,6 @@ See `references/recipes.md` for fuller multi-step workflows.
|
|
|
202
202
|
## When the modes return empty
|
|
203
203
|
|
|
204
204
|
If a mode returns empty/unexpected output, run `--mode debug` first. It prints the entry-type distribution, content-block types, and probes for advisor + compact markers — useful when the transcript schema has drifted or when a session was truncated.
|
|
205
|
-
|
|
206
205
|
---
|
|
207
206
|
|
|
208
207
|
## Skill Feedback
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: estack-repo-search
|
|
3
|
-
version: 1.0.
|
|
3
|
+
version: 1.0.2
|
|
4
4
|
description: >-
|
|
5
5
|
(repo-search) Clone and search external GitHub repositories to answer questions about their
|
|
6
6
|
code. Use this skill whenever the user references a repo you don't have local
|
|
@@ -78,35 +78,6 @@ gh issue create \
|
|
|
78
78
|
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
**If `gh` is not installed**, build a pre-filled URL and share it so the user can click, review, and submit:
|
|
82
|
-
|
|
83
|
-
```bash
|
|
84
|
-
python3 -c "
|
|
85
|
-
import urllib.parse
|
|
86
|
-
title = 'estack-repo-search: <concise summary>'
|
|
87
|
-
body = '<description from user feedback — expected vs. actual behavior and context>'
|
|
88
|
-
base = 'https://github.com/ElliotDrel/e-stack/issues/new'
|
|
89
|
-
print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
|
|
90
|
-
"
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
Share the printed URL with the user. They click it, review the pre-filled title and body, then click **Submit new issue**.
|
|
94
|
-
|
|
95
|
-
---
|
|
96
|
-
|
|
97
|
-
## Skill Feedback
|
|
98
|
-
|
|
99
|
-
If the user shares feedback about this skill — a bug, something confusing, a missing feature, or a suggestion — ask them to describe it in a bit more detail (what they expected, what happened, and any relevant context). Then file the issue using whichever method is available:
|
|
100
|
-
|
|
101
|
-
**If `gh` is installed** (`gh --version` succeeds), create the issue directly:
|
|
102
|
-
|
|
103
|
-
```bash
|
|
104
|
-
gh issue create \
|
|
105
|
-
--repo ElliotDrel/e-stack \
|
|
106
|
-
--title "estack-repo-search: <concise summary>" \
|
|
107
|
-
--body "<description from user feedback — expected vs. actual behavior and context>"
|
|
108
|
-
```
|
|
109
|
-
|
|
110
81
|
**If `gh` is not installed**, build a pre-filled URL:
|
|
111
82
|
|
|
112
83
|
```bash
|