一键导入
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 |