cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm
leaflet
readability
golang
title: Note-Taking Workflows sidebar_label: Workflows description: Zettelkasten, meeting notes, daily notes, and more. sidebar_position: 7#
Note-Taking Workflows#
Zettelkasten#
Zettelkasten emphasizes atomic notes with heavy linking:
- Create atomic notes: Each note covers one concept
- Add descriptive tags: Use tags for categorization
- Link related notes: Reference other notes by title
- Develop ideas over time: Expand notes with new insights
Example:
noteleaf note create "Dependency Injection" --tags architecture,patterns
noteleaf note create "Inversion of Control" --tags architecture,patterns
# In each note, reference the other
Research#
For academic or technical research:
- Source note per paper/article: Create note for each source
- Extract key points: Summarize in your own words
- Tag by topic: Use consistent tags across research area
- Link to related work: Reference other sources
Example:
noteleaf note create "Paper: Microservices Patterns" \
--tags research,architecture,microservices
Meeting#
Capture discussions and action items:
- Template-based: Use meeting_note function from earlier
- Consistent structure: Attendees, agenda, discussion, actions
- Action items: Extract as tasks for follow-up
- Link to projects: Tag with project name
Example:
meeting_note "Sprint Planning"
# Then extract action items as tasks
noteleaf task add "Implement auth endpoint" --project web-service
Daily#
Journal-style daily entries:
- Daily template: Use daily_note function
- Reflect on work: What was accomplished, what's next
- Capture ideas: Random thoughts for later processing
- Review weekly: Scan week's notes for patterns
Example:
daily_note
# Creates note tagged with 'daily' and today's date
Personal Knowledge Base#
Build a reference library:
- How-to guides: Document procedures and commands
- Troubleshooting notes: Solutions to problems encountered
- Concept explanations: Notes on topics you're learning
- Snippets: Code examples and configurations
Use tags like: how-to, troubleshooting, reference, snippet