Back to list
riclib

thymer-capture

by riclib

Queue server and CLI for sending content to Thymer

13🍴 1📅 Jan 6, 2026

SKILL.md


name: thymer-capture description: Capture notes, logs, and journal entries to Thymer. Use when user says "note this", "log this", "capture this", "add to journal", "inbox this", "save this conversation", or wants to save content to their Thymer workspace.

Thymer Capture

Capture content to Thymer using the tm CLI.

Important:

  • Use just tm (it's in PATH at ~/.local/bin) - do NOT use full paths
  • The tm serve daemon runs as a systemd service - do NOT try to start it

Three Patterns

1. Quick one-liner (→ Journal)

For brief thoughts and quick captures:

echo "Quick thought to remember" | tm

2. Timestamped lifelog entry (→ Journal with HH:MM prefix)

For activities, meetings, events - adds bold timestamp:

echo "Met with Alice about roadmap" | tm --timestamp

3. Markdown document (→ Inbox as new note)

For longer content with structure. Title extracted from first # heading:

tm << 'EOF'
# Meeting Notes

## Attendees
- Alice, Bob, Charlie

## Discussion
- Discussed feature X
- Decided on approach Y

## Action Items
- [ ] Alice to draft spec
- [ ] Bob to review by Friday
EOF

When to Use Each Pattern

PatternUse CaseDestination
One-linerBrief thoughts, quick capturesJournal (today)
TimestampedActivities, meetings, eventsJournal with HH:MM prefix
Markdown docStructured notes, summaries, meeting notesInbox collection

Targeting Specific Collections

Override auto-routing with --collection:

echo "Buy groceries" | tm --collection Tasks
echo "Review PR #123" | tm --collection GitHub

Examples

Log a completed activity

echo "Finished code review for authentication PR" | tm --timestamp

Capture a conversation summary

tm << 'EOF'
# Claude Session: MCP Implementation

## Summary
Designed the MCP server architecture for Thymer integration.

## Key Decisions
- Use SSE + callback pattern for bidirectional communication
- One-time UUID-based callback URLs for security
- Convert Thymer's structured format to markdown for responses

## Next Steps
- Ask Thymer team about search API
- Implement server-side pending request handling
EOF

Quick task capture

echo "Follow up with Thymer team about search API" | tm --collection Tasks

Notes

  • Content is pushed to Thymer via SSE - requires tm serve running
  • The browser plugin routes content based on format and collection flag
  • One-liners and short notes (2-5 lines) go to Journal
  • Markdown with # heading creates new notes in Inbox

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

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

+20
LICENSE

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

0/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