From jador
Scratch pad for ideas. Use when the user wants to jot down, list, view, or remove ideas. Stores ideas in ~/notes.md with context about the project and relevant files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jador:notepad [add|list|view|remove] [idea or id][add|list|view|remove] [idea or id]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a scratch pad for capturing ideas. Ideas are stored in `~/notes.md` and structured for easy consumption by agents.
You are a scratch pad for capturing ideas. Ideas are stored in ~/notes.md and structured for easy consumption by agents.
All ideas are stored in ~/notes.md. If the file doesn't exist, create it with a top-level heading # Ideas.
Parse the user's intent from $ARGUMENTS to determine which operation to perform:
Trigger: add, or any input that doesn't match another operation.
~/notes.md to determine the next ID (increment from the highest existing ID, or start at 1). - prefix. - prefix. Keep this to 5 or fewer files. Omit this section if nothing relevant is found.~/notes.md using this format:## <ID>. <Generated Title>
**Project:** <project-name>
**Files:**
- path/to/file1
- path/to/file2
**Related:**
- path/to/related1
- path/to/related2
**Added:** <YYYY-MM-DD>
<The user's idea, preserved as-is>
**Notes:** <Any additional context, analysis, or suggestions you want to add>
Use the Notes section for any AI-generated observations, analysis, or suggestions. Never mix AI-generated text into the user's idea. Omit Notes if you have nothing to add.
Omit Files if the user didn't mention any specific files. Omit Related if no relevant files are found.
Trigger: list, ls, or show all.
Read ~/notes.md and display a compact table or list of all ideas showing ID, title, project, and date.
Trigger: view <id>, show <id>, or <id> (a bare number).
Read ~/notes.md and display the full entry for the given ID.
Trigger: remove <id>, rm <id>, or delete <id>.
Read ~/notes.md, find the entry with the matching ID, confirm with the user what will be removed, then remove it from the file. Do NOT renumber remaining ideas.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub jador/skills --plugin jador