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.
Capture content to Thymer using the tm CLI.
Important:
tm (it's in PATH at ~/.local/bin) - do NOT use full pathstm serve daemon runs as a systemd service - do NOT try to start itFor brief thoughts and quick captures:
echo "Quick thought to remember" | tm
For activities, meetings, events - adds bold timestamp:
echo "Met with Alice about roadmap" | tm --timestamp
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
| Pattern | Use Case | Destination | |---------|----------|-------------| | One-liner | Brief thoughts, quick captures | Journal (today) | | Timestamped | Activities, meetings, events | Journal with HH:MM prefix | | Markdown doc | Structured notes, summaries, meeting notes | Inbox collection |
Override auto-routing with --collection:
echo "Buy groceries" | tm --collection Tasks
echo "Review PR #123" | tm --collection GitHub
echo "Finished code review for authentication PR" | tm --timestamp
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
echo "Follow up with Thymer team about search API" | tm --collection Tasks
tm serve running# heading creates new notes in InboxGoogle Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Manage Trello boards, lists, and cards via the Trello REST API.
Category:productivity