Notes

Create and manage text notes in the workspace

gebruder 1f8f417 752 B Updated

File contents

Notes

Manage text notes stored as files in the workspace.

Creating notes

Save notes as markdown files in a notes/ directory within the workspace.

  • Create a note: write to notes/<topic>.md
  • Use ISO dates for time-sensitive notes: notes/2024-01-15-meeting.md
  • Use descriptive names: notes/project-ideas.md

Finding notes

  • List all notes: ls notes/
  • Search notes: grep -r "keyword" notes/
  • Recent notes: ls -lt notes/ | head -10

Conventions

  • One topic per file
  • Use markdown headings for structure
  • Append to existing notes with a date header rather than overwriting
  • Example append format:
## 2024-01-15

New content here.

gebruder/wirken/tree/main/skills/notes commit 1f8f417ce9

Frequently asked questions

npx skillmds@latest add gebruder/notes