<< All versions
Skill v1.0.1
currentAutomated scan100/100gordonbrander/busytown/quick-capture
3 files
──Details
PublishedJuly 4, 2026 at 01:31 AM
Content Hashsha256:06e1b413e238862a...
Git SHAa50e00dda914
Bump Typepatch
──Files
Files (1 file, 1.5 KB)
SKILL.md1.5 KBactive
SKILL.md · 57 lines · 1.5 KB
version: "1.0.1" name: quick-capture description: Capture text into the note garden pipeline. Paste a transcript or idea and it flows through the zettelkasten pipeline. user_invocable: true
Quick Capture Skill
This skill captures text into the busytown-notes pipeline for processing into atomic Zettelkasten notes.
Usage
When invoked with /quick-capture <text>, this skill will:
- Take all text after the command
- Push a
capture.requestevent to the busytown event queue - Confirm submission to the user
The text may be a voice memo transcript, an idea, a thought, or any content.
Instructions
When the user invokes this skill:
- Extract all text after the
/quick-capturecommand - Properly escape the content for JSON (escape quotes, newlines, backslashes,
etc.)
- Push the event using:
``bash busytown events push --worker user --type capture.request --payload '{"content":"<escaped text>"}' ``
- Confirm to the user that the capture was submitted
- Mention they can watch progress with
busytown events list --tail 10
Example
User input:
/quick-capture I was thinking about how spaced repetition and the Zettelkasten method share a common principle.
Action:
bash
busytown events push --worker user --type capture.request --payload '{"content":"I was thinking about how spaced repetition and the Zettelkasten method share a common principle."}'
Response:
Capture submitted! Your text has been pushed to the note garden pipeline.Watch progress with: busytown events list --tail 10