# Notes

> Create and manage text notes in the workspace

- Skill: `gebruder/notes` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gebruder/notes`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gebruder/notes/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: gebruder (https://skillmd.com/u/gebruder)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/gebruder/notes

---


# 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.
```

