Agent skill
quill-cli
Use when exporting meeting notes or transcripts from Quill Meetings app, listing recent meetings, searching meeting history, or piping meeting data to other tools
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/quill-cli
SKILL.md
Quill CLI
Export meeting notes and transcripts from the Quill Meetings macOS app.
Quick Reference
| Command | Purpose |
|---|---|
quill list |
List recent meetings |
quill list --limit 50 |
List more meetings |
quill list --since 7d |
Meetings from last 7 days |
quill list --search "standup" |
Filter by title |
quill export --latest --notes |
Export latest meeting notes |
quill export --latest --transcript |
Export latest transcript |
quill export "Meeting Title" --notes |
Export by title |
quill export abc123 --notes |
Export by ID (full or short) |
Preferred Export Order
When exporting meetings, use this priority:
- First: Try
--note-title "Eric Binnion"(partial match finds notes prefixed with this) - Fallback: Use
--transcriptif no matching note exists
# Preferred - matches notes like "Eric Binnion - Summary", etc.
quill export --latest --notes --note-title "Eric Binnion"
# Fallback if no Eric Binnion note exists
quill export --latest --transcript
Common Workflows
Get latest meeting notes to clipboard:
quill export --latest --notes --note-title "Eric Binnion" | pbcopy
Export transcript to file:
quill export --latest --transcript > transcript.md
Find and export specific meeting:
quill list --search "planning" # Find meeting ID
quill export abc123 --notes --note-title "Eric Binnion"
Select different note template:
quill export --latest --notes --note-title "Product"
Options
Global:
--db-path <path>- Override Quill data directory
List:
-l, --limit <n>- Number of meetings (default: 20, max: 500)-s, --since <duration>- Time filter (7d,24h,2w)--search <query>- Title substring match
Export:
-n, --notes- Export AI-generated notes (default)-t, --transcript- Export full transcript with timestamps--latest- Most recent meeting--note-title <title>- Select note template by partial match
Configuration Priority
- CLI flag:
--db-path /path - Environment:
QUILL_DATA_DIR=/path - Config file:
~/.quillrcwith{"dataDir": "/path"} - Default:
~/Library/Application Support/Quill/
Installation
cd ~/Repos/quill-cli
npm install && npm link
Run quill --help for full command details.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?