| name | note-templates |
| description | Collection of reusable templates for common Apple Notes use cases. Use when creating structured notes for meetings, journals, projects, or references. |
Note Templates for Apple Notes CLI
This skill provides ready-to-use templates for creating well-structured notes using the notes CLI tool.
Template Categories
Meeting Notes
Standard Meeting Template
notes create "Meeting - [Topic] - $(date +%Y-%m-%d)" << 'EOF'
**Date**: $(date +%Y-%m-%d)
**Time**:
**Location/Call**:
- [ ] Person 1
- [ ] Person 2
1.
2.
3.
-
| Owner | Task | Due Date |
|-------|------|----------|
| | | |
- Next meeting:
- Topics to revisit:
EOF
1-on-1 Meeting Template
notes create "1-on-1 - [Person] - $(date +%Y-%m-%d)" << 'EOF'
**Date**: $(date +%Y-%m-%d)
- How are things going?
- Blockers or concerns?
- [ ]
- [ ]
EOF
Project Notes
Project Kickoff Template
notes create "[Project] - Kickoff" << 'EOF'
**Start Date**:
**Target Completion**:
**Project Lead**:
1.
2.
3.
-
-
-
| Milestone | Date | Status |
|-----------|------|--------|
| | | |
| Risk | Impact | Mitigation |
|------|--------|------------|
| | | |
-
-
EOF
Project Status Update Template
notes create "[Project] - Status - $(date +%Y-%m-%d)" << 'EOF'
**Date**: $(date +%Y-%m-%d)
**Status**: 🟢 On Track / 🟡 At Risk / 🔴 Blocked
Brief overview of current state.
- ✅
- 🔄
- 📋
-
-
EOF
Daily/Weekly Notes
Daily Journal Template
notes create "Journal - $(date +%Y-%m-%d)" << 'EOF'
Top 3 priorities for today:
1.
2.
3.
- [ ]
-
-
-
EOF
Weekly Review Template
notes create "Weekly Review - $(date +%Y-W%V)" << 'EOF'
What did I complete this week?
-
What obstacles did I face?
-
What did I learn?
-
- Tasks completed:
- Goals achieved:
Top priorities:
1.
2.
3.
EOF
Reference Notes
Research Notes Template
notes create "Research - [Topic]" << 'EOF'
**Date Started**: $(date +%Y-%m-%d)
**Status**: In Progress / Complete
What am I trying to learn or solve?
- [ ] Source 1: [link/reference]
- [ ] Source 2: [link/reference]
>
-
-
EOF
Book Notes Template
notes create "Book - [Title] by [Author]" << 'EOF'
**Author**: [Author Name]
**Date Read**: $(date +%Y-%m-%d)
**Rating**: ⭐⭐⭐⭐⭐
Brief overview of the book.
1.
2.
3.
> "Quote here" (p. XX)
What will I apply from this book?
-
-
EOF
Quick Capture
Idea Note Template
notes create "Idea - [Brief Title]" << 'EOF'
**Date**: $(date +%Y-%m-%d)
**Category**:
1.
2.
-
-
EOF
Bug Report Template
notes create "Bug - [Brief Description]" << 'EOF'
**Date**: $(date +%Y-%m-%d)
**Severity**: Low / Medium / High / Critical
**Status**: Open / Investigating / Fixed
What's happening?
## Steps to Reproduce
1.
2.
3.
## Expected Behavior
## Actual Behavior
## Environment
- OS:
- Version:
- Browser/App:
## Screenshots/Logs
## Possible Cause
## Solution
EOF
Usage Tips
- Customize templates: Modify these templates to match your workflow
- Create template notes: Store your customized templates as notes themselves
- Use date commands: The
$(date +%Y-%m-%d) syntax auto-fills the current date
- Consistent naming: Follow naming conventions for easy searching
Template Selection Guide
| Use Case | Template |
|---|
| Team meeting | Standard Meeting |
| Manager sync | 1-on-1 Meeting |
| New initiative | Project Kickoff |
| Weekly updates | Project Status |
| Personal reflection | Daily Journal |
| End of week | Weekly Review |
| Learning topic | Research Notes |
| Reading notes | Book Notes |
| Brainstorming | Idea Note |
| Issue tracking | Bug Report |