Back to list
ebinnion

quill-cli

by ebinnion

Scripts and configuration for my Mac development machine

4🍴 0📅 Jan 21, 2026

SKILL.md


name: quill-cli description: Use when exporting meeting notes or transcripts from Quill Meetings app, listing recent meetings, searching meeting history, or piping meeting data to other tools

Quill CLI

Export meeting notes and transcripts from the Quill Meetings macOS app.

Quick Reference

CommandPurpose
quill listList recent meetings
quill list --limit 50List more meetings
quill list --since 7dMeetings from last 7 days
quill list --search "standup"Filter by title
quill export --latest --notesExport latest meeting notes
quill export --latest --transcriptExport latest transcript
quill export "Meeting Title" --notesExport by title
quill export abc123 --notesExport by ID (full or short)

Preferred Export Order

When exporting meetings, use this priority:

  1. First: Try --note-title "Eric Binnion" (partial match finds notes prefixed with this)
  2. Fallback: Use --transcript if 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

  1. CLI flag: --db-path /path
  2. Environment: QUILL_DATA_DIR=/path
  3. Config file: ~/.quillrc with {"dataDir": "/path"}
  4. Default: ~/Library/Application Support/Quill/

Installation

cd ~/Repos/quill-cli
npm install && npm link

Run quill --help for full command details.

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon