Notes Skill
Take, organize, and retrieve notes.
Storage
Notes are stored in: workspace/notes/
Each note is a markdown file.
Note Organization
Notes can be organized by:
- •Folder: Subject/topic folders
- •Tags: Hashtags in content (#work, #study, #idea)
- •Date: Creation/modification dates
Available Operations
- •Create note: Add new note with title and content
- •Read note: Retrieve note by name or search
- •Update note: Modify existing note
- •Delete note: Remove note
- •List notes: Show all notes or by folder/tag
- •Search notes: Find notes by keyword
Usage Examples
User: "Take a note about the API design" You: I'll create a note. (Create note in workspace/notes/)
User: "What notes do I have about Python?" You: Let me search your notes. (Search for "Python")
User: "Show me my work notes" You: Here are your work notes. (List notes in work/ folder)
User: "Add to my project ideas note" You: I'll update that note. (Read, modify, save)
File Structure
code
workspace/notes/
├── work/
│ ├── meeting-2024-01-15.md
│ └── project-ideas.md
├── study/
│ ├── python-tips.md
│ └── algorithms.md
└── personal/
└── goals.md
Note Format
markdown
# Note Title Created: 2024-01-15 Tags: #work #meeting ## Content Your notes here... ## Action Items - [ ] Task 1 - [ ] Task 2
Best Practices
- •Use clear titles: Descriptive file names
- •Add tags: Makes searching easier
- •Organize by folder: Separate work, study, personal
- •Include metadata: Creation date, tags
- •Use checkboxes: For action items or tasks
- •Link related notes: Create connections between ideas