elliot-stack 1.0.24 → 1.0.25

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/README.md CHANGED
@@ -11,7 +11,7 @@ A curated set of Claude Code skills by Elliot Drel. One command installs them al
11
11
  npx elliot-stack@latest
12
12
  ```
13
13
 
14
- This installs skills to `~/.agents/skills/` and symlinks them into `~/.claude/skills/`, then registers a `SessionStart` hook so your skills stay up to date automatically.
14
+ This installs skills to `~/.agents/skills/` and symlinks them into `~/.claude/skills/`, then registers a `SessionStart` hook so your skills stay up to date automatically. Any agent that reads from `~/.agents/skills/` (OpenClaw, Codex, ChatGPT, Cursor, and others) will pick them up automatically with no extra config.
15
15
 
16
16
  ## Skills
17
17
 
@@ -32,11 +32,15 @@ This installs skills to `~/.agents/skills/` and symlinks them into `~/.claude/sk
32
32
 
33
33
  Hooks install to `~/.claude/hooks/` and are auto-registered in your `~/.claude/settings.json`.
34
34
 
35
+ Important: hooks are a Claude Code feature. Skills are stored in `~/.agents/skills/`
36
+ and linked into Claude, but hook scripts and hook registration can only be installed
37
+ in Claude's config (`~/.claude/hooks/` and `~/.claude/settings.json`).
38
+
35
39
  ## How it works
36
40
 
37
- - Skills install to `~/.agents/skills/estack-*/` (symlinked from `~/.claude/skills/estack-*/`)
38
- - Hooks install to `~/.claude/hooks/` and are registered in `~/.claude/settings.json`
39
- - A `SessionStart` hook auto-updates both each time you open Claude Code
41
+ - Skills install to `~/.agents/skills/estack-*/` (symlinked from `~/.claude/skills/estack-*/`; auto-detected by any agent that reads `~/.agents/skills/`, including OpenClaw, Codex, ChatGPT, and Cursor)
42
+ - Hooks are Claude Code-only: they install to `~/.claude/hooks/` and are registered in `~/.claude/settings.json`
43
+ - A `SessionStart` hook auto-updates skills each time you open Claude Code
40
44
  - If you've made local edits to a skill or hook, the installer detects the conflict and lets you choose: overwrite, skip, or merge
41
45
  - Every skill carries its own semver (`version:` in SKILL.md frontmatter; hooks use a `// @version` comment), independent of the package version — update messages show exactly what moved, e.g. `estack-chris-voss (1.0.0 → 1.1.0)`. Under the hood, updates are detected by content hash, so a change can never be missed; a release-time check (`scripts/check-versions.cjs`) guarantees every content change ships with a version bump.
42
46
 
@@ -50,7 +54,7 @@ npx elliot-stack@latest
50
54
 
51
55
  ## Requirements
52
56
 
53
- - [Claude Code](https://claude.ai/code) CLI installed
57
+ - [Claude Code](https://claude.ai/code) CLI installed (other agents that read `~/.agents/skills/` work too)
54
58
  - Node.js 18+
55
59
 
56
60
  ## Contributing
package/bin/install.cjs CHANGED
@@ -885,13 +885,13 @@ async function main() {
885
885
  // 11. Summary output
886
886
  if (DRY_RUN) {
887
887
  console.log('\n[dry run] No files were changed. Run with --install to apply.\n');
888
- console.log(' ' + installedCount + ' skill' + (installedCount !== 1 ? 's' : '') + ' would be installed/updated in ~/.agents/skills/ (linked from ~/.claude/skills/)');
888
+ console.log(' ' + installedCount + ' skill' + (installedCount !== 1 ? 's' : '') + ' would be installed/updated in ~/.agents/skills/ (linked from ~/.claude/skills/; auto-detected by any agent that reads ~/.agents/skills/)');
889
889
  if (installedHookCount > 0) {
890
890
  console.log(' ' + installedHookCount + ' hook' + (installedHookCount !== 1 ? 's' : '') + ' would be installed/updated in ~/.claude/hooks/');
891
891
  }
892
892
  } else {
893
893
  console.log('\nestack installed successfully!\n');
894
- console.log(' ' + installedCount + ' skill' + (installedCount !== 1 ? 's' : '') + ' installed to ~/.agents/skills/ (symlinked from ~/.claude/skills/)');
894
+ console.log(' ' + installedCount + ' skill' + (installedCount !== 1 ? 's' : '') + ' installed to ~/.agents/skills/ (symlinked from ~/.claude/skills/; auto-detected by any agent that reads ~/.agents/skills/)');
895
895
  if (installedHookCount > 0) {
896
896
  console.log(' ' + installedHookCount + ' hook' + (installedHookCount !== 1 ? 's' : '') + ' installed to ~/.claude/hooks/');
897
897
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elliot-stack",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
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,6 +1,6 @@
1
1
  ---
2
2
  name: estack-active-learning-tutor
3
- version: 1.0.0
3
+ version: 1.0.1
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
  ---
@@ -401,3 +401,34 @@ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quo
401
401
  Share the printed URL with the user and offer to open it in their browser.
402
402
 
403
403
  They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
404
+
405
+ ---
406
+
407
+ ## Skill Feedback
408
+
409
+ 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:
410
+
411
+ **If `gh` is installed** (`gh --version` succeeds), create the issue directly:
412
+
413
+ ```bash
414
+ gh issue create \
415
+ --repo ElliotDrel/e-stack \
416
+ --title "estack-active-learning-tutor: <concise summary>" \
417
+ --body "<description from user feedback — expected vs. actual behavior and context>"
418
+ ```
419
+
420
+ **If `gh` is not installed**, build a pre-filled URL:
421
+
422
+ ```bash
423
+ python3 -c "
424
+ import urllib.parse
425
+ title = 'estack-active-learning-tutor: <concise summary>'
426
+ body = '<description from user feedback — expected vs. actual behavior and context>'
427
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
428
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
429
+ "
430
+ ```
431
+
432
+ Share the printed URL with the user and offer to open it in their browser.
433
+
434
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-better-title
3
- version: 1.0.0
3
+ version: 1.0.1
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
@@ -155,3 +155,34 @@ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quo
155
155
  Share the printed URL with the user and offer to open it in their browser.
156
156
 
157
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
+ **If `gh` is not installed**, build a pre-filled URL:
175
+
176
+ ```bash
177
+ python3 -c "
178
+ import urllib.parse
179
+ title = 'estack-better-title: <concise summary>'
180
+ body = '<description from user feedback — expected vs. actual behavior and context>'
181
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
182
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
183
+ "
184
+ ```
185
+
186
+ Share the printed URL with the user and offer to open it in their browser.
187
+
188
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-chris-voss
3
- version: 1.0.0
3
+ version: 1.0.1
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
@@ -171,3 +171,34 @@ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quo
171
171
  Share the printed URL with the user and offer to open it in their browser.
172
172
 
173
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
+ **If `gh` is not installed**, build a pre-filled URL:
191
+
192
+ ```bash
193
+ python3 -c "
194
+ import urllib.parse
195
+ title = 'estack-chris-voss: <concise summary>'
196
+ body = '<description from user feedback — expected vs. actual behavior and context>'
197
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
198
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
199
+ "
200
+ ```
201
+
202
+ Share the printed URL with the user and offer to open it in their browser.
203
+
204
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-customer-discovery
3
- version: 1.0.0
3
+ version: 1.0.1
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
 
@@ -151,3 +151,34 @@ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quo
151
151
  Share the printed URL with the user and offer to open it in their browser.
152
152
 
153
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
+ **If `gh` is not installed**, build a pre-filled URL:
171
+
172
+ ```bash
173
+ python3 -c "
174
+ import urllib.parse
175
+ title = 'estack-customer-discovery: <concise summary>'
176
+ body = '<description from user feedback — expected vs. actual behavior and context>'
177
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
178
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
179
+ "
180
+ ```
181
+
182
+ Share the printed URL with the user and offer to open it in their browser.
183
+
184
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-flight-planner
3
- version: 1.0.0
3
+ version: 1.0.1
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
  ---
@@ -428,3 +428,34 @@ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quo
428
428
  Share the printed URL with the user and offer to open it in their browser.
429
429
 
430
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
+ 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
+
438
+ **If `gh` is installed** (`gh --version` succeeds), create the issue directly:
439
+
440
+ ```bash
441
+ gh issue create \
442
+ --repo ElliotDrel/e-stack \
443
+ --title "estack-flight-planner: <concise summary>" \
444
+ --body "<description from user feedback — expected vs. actual behavior and context>"
445
+ ```
446
+
447
+ **If `gh` is not installed**, build a pre-filled URL:
448
+
449
+ ```bash
450
+ python3 -c "
451
+ import urllib.parse
452
+ title = 'estack-flight-planner: <concise summary>'
453
+ body = '<description from user feedback — expected vs. actual behavior and context>'
454
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
455
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
456
+ "
457
+ ```
458
+
459
+ Share the printed URL with the user and offer to open it in their browser.
460
+
461
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-github-issue-tracker
3
- version: 1.0.0
3
+ version: 1.0.1
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.
@@ -402,3 +402,34 @@ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quo
402
402
  Share the printed URL with the user and offer to open it in their browser.
403
403
 
404
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
+ 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
+
412
+ **If `gh` is installed** (`gh --version` succeeds), create the issue directly:
413
+
414
+ ```bash
415
+ gh issue create \
416
+ --repo ElliotDrel/e-stack \
417
+ --title "estack-github-issue-tracker: <concise summary>" \
418
+ --body "<description from user feedback — expected vs. actual behavior and context>"
419
+ ```
420
+
421
+ **If `gh` is not installed**, build a pre-filled URL:
422
+
423
+ ```bash
424
+ python3 -c "
425
+ import urllib.parse
426
+ title = 'estack-github-issue-tracker: <concise summary>'
427
+ body = '<description from user feedback — expected vs. actual behavior and context>'
428
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
429
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
430
+ "
431
+ ```
432
+
433
+ Share the printed URL with the user and offer to open it in their browser.
434
+
435
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-prompt-builder-coach
3
- version: 1.0.0
3
+ version: 1.0.1
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,3 +79,34 @@ 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
+ ---
84
+
85
+ ## Skill Feedback
86
+
87
+ 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:
88
+
89
+ **If `gh` is installed** (`gh --version` succeeds), create the issue directly:
90
+
91
+ ```bash
92
+ gh issue create \
93
+ --repo ElliotDrel/e-stack \
94
+ --title "estack-prompt-builder-coach: <concise summary>" \
95
+ --body "<description from user feedback — expected vs. actual behavior and context>"
96
+ ```
97
+
98
+ **If `gh` is not installed**, build a pre-filled URL:
99
+
100
+ ```bash
101
+ python3 -c "
102
+ import urllib.parse
103
+ title = 'estack-prompt-builder-coach: <concise summary>'
104
+ body = '<description from user feedback — expected vs. actual behavior and context>'
105
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
106
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
107
+ "
108
+ ```
109
+
110
+ Share the printed URL with the user and offer to open it in their browser.
111
+
112
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-read-claude-session-history
3
- version: 1.0.0
3
+ version: 1.0.1
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,3 +202,34 @@ 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
+ ---
207
+
208
+ ## Skill Feedback
209
+
210
+ 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:
211
+
212
+ **If `gh` is installed** (`gh --version` succeeds), create the issue directly:
213
+
214
+ ```bash
215
+ gh issue create \
216
+ --repo ElliotDrel/e-stack \
217
+ --title "estack-read-claude-session-history: <concise summary>" \
218
+ --body "<description from user feedback — expected vs. actual behavior and context>"
219
+ ```
220
+
221
+ **If `gh` is not installed**, build a pre-filled URL:
222
+
223
+ ```bash
224
+ python3 -c "
225
+ import urllib.parse
226
+ title = 'estack-read-claude-session-history: <concise summary>'
227
+ body = '<description from user feedback — expected vs. actual behavior and context>'
228
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
229
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
230
+ "
231
+ ```
232
+
233
+ Share the printed URL with the user and offer to open it in their browser.
234
+
235
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: estack-repo-search
3
- version: 1.0.0
3
+ version: 1.0.1
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
@@ -91,3 +91,34 @@ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quo
91
91
  ```
92
92
 
93
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
+ **If `gh` is not installed**, build a pre-filled URL:
111
+
112
+ ```bash
113
+ python3 -c "
114
+ import urllib.parse
115
+ title = 'estack-repo-search: <concise summary>'
116
+ body = '<description from user feedback — expected vs. actual behavior and context>'
117
+ base = 'https://github.com/ElliotDrel/e-stack/issues/new'
118
+ print(base + '?title=' + urllib.parse.quote(title) + '&body=' + urllib.parse.quote(body))
119
+ "
120
+ ```
121
+
122
+ Share the printed URL with the user and offer to open it in their browser.
123
+
124
+ They can also click it directly, review the pre-filled title and body, and click **Submit new issue**.