ワンクリックで
note
Manage persistent working memory. Add priority context, manual notes, or working memory that persists across sessions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage persistent working memory. Add priority context, manual notes, or working memory that persists across sessions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
UI/UX design intelligence with searchable database
Generate comprehensive implementation plans through systematic discovery, synthesis, verification, and decomposition into beads. Use when asked to plan a feature, create a roadmap, design an implementation approach, or decompose work into trackable issues. Do NOT use for simple one-step tasks, quick fixes, or when the user just wants to execute an existing plan — use the work skill instead.
Execute a plan or direct task with worker delegation and verification.
Deep investigation mode. Gather context, analyze, synthesize recommendations without making code changes.
Fetch up-to-date library documentation via Context7 MCP. Use when working with external libraries, APIs, or frameworks.
Start interview-driven planning with Prometheus. Asks clarifying questions before generating implementation plan.
| name | note |
| description | Manage persistent working memory. Add priority context, manual notes, or working memory that persists across sessions. |
| argument-hint | <content> [--priority|--manual|--show|--prune|--clear] |
| allowed-tools | Read, Write, Edit, Bash, Glob, AskUserQuestion |
| disable-model-invocation | true |
Manage notes that persist across Claude Code sessions. Priority context is injected at session start.
All notes live in .maestro/notepad.md with three sections:
# Notepad
## Priority Context
[Injected into every session start — use for critical reminders]
## Working Memory
[Accumulated context from sessions — auto-managed]
## Manual
[User-written notes that persist until manually removed]
/note Fix: auth middleware was missing token refresh check
Appends the content as a bullet to ## Working Memory.
--priority: Add to Priority Context/note --priority Fix auth before deploying to prod
Appends the content as a bullet to ## Priority Context. This section is read by session-start.sh and injected into every new session.
--manual: Add to Manual Notes/note --manual API rate limit is 100 req/min per key
Appends the content as a bullet to ## Manual.
--show: Display Notepad/note --show
Reads and displays the full notepad contents.
--prune: Prune Working Memory/note --prune
Removes entries from ## Working Memory that are no longer relevant. Keeps ## Priority Context and ## Manual intact. Uses judgment to remove stale items — ask the user if uncertain.
--clear: Clear a Section/note --clear priority
/note --clear working
/note --clear all
Clears the specified section (or all sections). Asks for confirmation before clearing ## Priority Context or all.
Extract the flag (if any) and the content from the user's input.
--priority → Priority Context--manual → Manual--show → display only--prune → prune Working Memory--clear <section> → clear sectionIf .maestro/notepad.md doesn't exist, create it with the template:
# Notepad
## Priority Context
## Working Memory
## Manual
Also ensure .maestro/ directory exists.
For add commands (default, --priority, --manual):
- <content> after the section header (before the next section)For --show:
/note <content> to start."For --prune:
## Working MemoryFor --clear:
After any write operation, show the updated section to confirm the change.
| Section | Written by | Read by | Persistence |
|---|---|---|---|
| Priority Context | User via --priority | session-start.sh | Until manually cleared |
| Working Memory | Default /note | Sessions, prune | Pruned periodically |
| Manual | User via --manual | Sessions | Until manually cleared |