note-templates
Collection of reusable templates for common Apple Notes use cases. Use when creating structured notes for meetings, journals, projects, or references.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Collection of reusable templates for common Apple Notes use cases. Use when creating structured notes for meetings, journals, projects, or references.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Comprehensive React Native and Expo development skill for building cross-platform mobile apps. Use when creating React Native or Expo projects, building screens and navigation with Expo Router, using Expo SDK packages (camera, location, notifications, file system, etc.), configuring app.json or eas.json for builds, working with React Native core components (View, Text, FlatList, etc.), implementing state management, forms, and common patterns, setting up EAS Build, Submit, or Update, or troubleshooting React Native and Expo issues.
Comprehensive Swift and Apple platform development skill for building native iOS, macOS, tvOS, and iPadOS apps. Use when creating Swift projects, building SwiftUI views, implementing Swift concurrency (async/await, actors), working with SwiftData or Core Data, configuring Xcode projects, signing and capabilities, implementing platform-specific features (WidgetKit, App Intents, Live Activities), or troubleshooting Swift/Xcode issues.
Complete reference for Claude Code's memory management system including all file types, locations, import syntax, and best practices. Use when planning or managing CLAUDE.md and related memory files.
Expert knowledge for categorizing learnings and routing them to appropriate improvement targets. Use when analyzing session learnings to determine where context improvements should be applied.
SIMBL CLI command reference and usage guide. Use when working with SIMBL tasks or needing CLI syntax reference.
Best practices for writing SIMBL tasks that Claude can execute with zero context. Use when creating or refining tasks for maximum clarity.
| 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. |
This skill provides ready-to-use templates for creating well-structured notes using the notes CLI tool.
notes create "Meeting - [Topic] - $(date +%Y-%m-%d)" << 'EOF'
# [Topic] Meeting
**Date**: $(date +%Y-%m-%d)
**Time**:
**Location/Call**:
## Attendees
- [ ] Person 1
- [ ] Person 2
## Agenda
1.
2.
3.
## Discussion Notes
## Decisions Made
-
## Action Items
| Owner | Task | Due Date |
|-------|------|----------|
| | | |
## Follow-up
- Next meeting:
- Topics to revisit:
EOF
notes create "1-on-1 - [Person] - $(date +%Y-%m-%d)" << 'EOF'
# 1-on-1 with [Person]
**Date**: $(date +%Y-%m-%d)
## Check-in
- How are things going?
- Blockers or concerns?
## Topics to Discuss
- [ ]
## Their Updates
## My Updates
## Action Items
- [ ]
## Notes for Next Time
EOF
notes create "[Project] - Kickoff" << 'EOF'
# [Project Name] - Project Kickoff
## Overview
**Start Date**:
**Target Completion**:
**Project Lead**:
## Objectives
1.
2.
3.
## Scope
### In Scope
-
### Out of Scope
-
## Key Stakeholders
-
## Milestones
| Milestone | Date | Status |
|-----------|------|--------|
| | | |
## Risks & Mitigation
| Risk | Impact | Mitigation |
|------|--------|------------|
| | | |
## Resources
-
## Success Criteria
-
EOF
notes create "[Project] - Status - $(date +%Y-%m-%d)" << 'EOF'
# [Project] Status Update
**Date**: $(date +%Y-%m-%d)
**Status**: 🟢 On Track / 🟡 At Risk / 🔴 Blocked
## Summary
Brief overview of current state.
## Completed This Week
- ✅
## In Progress
- 🔄
## Planned Next Week
- 📋
## Blockers / Risks
-
## Metrics
-
## Notes
EOF
notes create "Journal - $(date +%Y-%m-%d)" << 'EOF'
# Daily Journal - $(date +%Y-%m-%d)
## Morning Intentions
Top 3 priorities for today:
1.
2.
3.
## Schedule
- [ ]
## Notes & Thoughts
## Wins Today
-
## Lessons Learned
-
## Tomorrow's Focus
-
EOF
notes create "Weekly Review - $(date +%Y-W%V)" << 'EOF'
# Weekly Review - Week $(date +%V), $(date +%Y)
## Accomplishments
What did I complete this week?
-
## Challenges
What obstacles did I face?
-
## Learnings
What did I learn?
-
## Metrics
- Tasks completed:
- Goals achieved:
## Next Week Focus
Top priorities:
1.
2.
3.
## Notes
EOF
notes create "Research - [Topic]" << 'EOF'
# Research: [Topic]
**Date Started**: $(date +%Y-%m-%d)
**Status**: In Progress / Complete
## Question / Problem
What am I trying to learn or solve?
## Key Findings
### Finding 1
### Finding 2
## Sources
- [ ] Source 1: [link/reference]
- [ ] Source 2: [link/reference]
## Quotes & Data
>
## Analysis
## Conclusions
## Next Steps
-
## Related Notes
-
EOF
notes create "Book - [Title] by [Author]" << 'EOF'
# [Book Title]
**Author**: [Author Name]
**Date Read**: $(date +%Y-%m-%d)
**Rating**: ⭐⭐⭐⭐⭐
## Summary
Brief overview of the book.
## Key Concepts
1.
2.
3.
## Favorite Quotes
> "Quote here" (p. XX)
## Takeaways
What will I apply from this book?
-
## Related Books
-
EOF
notes create "Idea - [Brief Title]" << 'EOF'
# Idea: [Title]
**Date**: $(date +%Y-%m-%d)
**Category**:
## The Idea
## Problem It Solves
## Why Now?
## First Steps
1.
2.
## Resources Needed
-
## Related Ideas
-
EOF
notes create "Bug - [Brief Description]" << 'EOF'
# Bug: [Brief Description]
**Date**: $(date +%Y-%m-%d)
**Severity**: Low / Medium / High / Critical
**Status**: Open / Investigating / Fixed
## Description
What's happening?
## Steps to Reproduce
1.
2.
3.
## Expected Behavior
## Actual Behavior
## Environment
- OS:
- Version:
- Browser/App:
## Screenshots/Logs
## Possible Cause
## Solution
EOF
$(date +%Y-%m-%d) syntax auto-fills the current date| 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 |