원클릭으로
notes
Use when the user invokes /notes [idea] to capture a mid-session idea, or /notes without arguments to review open notes and pick one up.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when the user invokes /notes [idea] to capture a mid-session idea, or /notes without arguments to review open notes and pick one up.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | notes |
| description | Use when the user invokes /notes [idea] to capture a mid-session idea, or /notes without arguments to review open notes and pick one up. |
| argument-hint | [idea] or [-r idea] to include background research |
You are a quick-capture assistant. Behave based on whether ARGUMENTS is provided.
First, check if ARGUMENTS starts with -r (research mode flag) or equals exactly -r. If so, strip the flag from ARGUMENTS and use MODE A-RESEARCH. If ARGUMENTS is -r with no idea after it, output "Please provide an idea: /notes -r [idea]" and STOP. If ARGUMENTS is provided without -r, use MODE A-CAPTURE. If no ARGUMENTS at all, use MODE B.
No bypass permissions needed. Uses Read/Write tools instead of Bash.
Use the Read tool to read NOTES.md. If it doesn't exist, that's fine — we'll create it.
Generate a timestamp in YYYY-MM-DD HH:MM format.
If NOTES.md didn't exist, use the Write tool to create it with:
# 💡 Ideas & Notes
Capture notes mid-session. Each note gets a research brief in notes/.
---
**[TIMESTAMP]** — ARGUMENTS
- Status: 📝 Captured
---
If NOTES.md already existed, use the Write tool to rewrite the full file with the new entry appended at the end:
---
**[TIMESTAMP]** — ARGUMENTS
- Status: 📝 Captured
---
If CLAUDE.md exists and does not already contain "NOTES.md", use the Edit tool to append:
## Session Start
If NOTES.md exists and has 📝 Captured, 🆕 New, or 🔍 Analyzed entries, briefly mention the count.
💾 Saved to NOTES.md
↩️ Resuming...
If CLAUDE.md was updated in Step 3, append: 📌 Added session-start reminder to CLAUDE.md
STOP. Do not elaborate. Resume the previous task immediately.
-r flag)Requires bypass permissions for the background research agent to write files.
[ ! -f NOTES.md ] && IS_FIRST=true || IS_FIRST=false
if [ "$IS_FIRST" = "true" ]; then
printf '# 💡 Ideas & Notes\n\nCapture notes mid-session. Each note gets a research brief in notes/.\n\n' > NOTES.md
fi
mkdir -p notes
SLUG=$(printf '%s' "$ARGUMENTS" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g; s/--*/-/g' | cut -c1-50)
TIMESTAMP=$(date '+%Y-%m-%d %H:%M')
DATE_SLUG=$(date '+%Y%m%d-%H%M')
BRIEF_FILE="notes/${DATE_SLUG}-${SLUG}.md"
printf '\n---\n**[%s]** — %s\n- Status: 🆕 New\n- Brief: [%s](%s)\n---\n' \
"$TIMESTAMP" "$ARGUMENTS" "$BRIEF_FILE" "$BRIEF_FILE" >> NOTES.md
if [ -f CLAUDE.md ] && ! grep -q "NOTES.md" CLAUDE.md; then
printf '\n## Session Start\nIf NOTES.md exists and has 📝 Captured, 🆕 New, or 🔍 Analyzed entries, briefly mention the count.\n' >> CLAUDE.md
fi
printf 'BRIEF_FILE=%s\nTIMESTAMP=%s\nIS_FIRST=%s\n' "$BRIEF_FILE" "$TIMESTAMP" "$IS_FIRST"
Extract from the output: BRIEF_FILE, TIMESTAMP, IS_FIRST.
Call the Agent tool with:
""" IDEA: ARGUMENTS BRIEF_FILE: BRIEF_FILE TIMESTAMP: TIMESTAMP NOTES_ENTRY: [TIMESTAMP] — ARGUMENTS """
Replace BRIEF_FILE, ARGUMENTS, and TIMESTAMP with the actual values extracted in Step 1.
💾 Saved to NOTES.md
📋 Background research starting → BRIEF_FILE
↩️ Resuming...
If IS_FIRST was true, append: 📌 Added session-start reminder to CLAUDE.md
STOP. Do not elaborate. Do not respond to or acknowledge the background agent's task-notification when it arrives — it is fire-and-forget. Resume the previous task immediately.
Use the Read tool. If the file doesn't exist, output:
No notes yet. Use
/notes [idea]to capture one.
Stop.
Find all entries with Status: 🆕 New, Status: 🔍 Analyzed, or Status: 📝 Captured. For each, extract:
— on the **[timestamp]** line)Brief: line, if present)If no open notes:
All caught up — no open notes. Use
/notes [idea]to capture a new one.
If 4 or fewer open notes: use the AskUserQuestion tool with:
If more than 4 open notes: output a plain numbered list instead:
**Open Notes:**
1. [idea] (🔍 brief ready)
2. [idea] (📝 captured only)
...
Type a number to pick one up, or "none" to come back later.
If the note has a brief file (🔍 Analyzed): Read the brief file and output:
[idea title]
[one sentence from Feasibility]
Approach: [Suggested Approach — numbered list]
Open questions:
Shall we start? I'll create a plan first.
If the note has no brief (📝 Captured): Output the idea and ask how the user wants to proceed:
[idea title]
This note was captured without background research. Would you like me to:
Then update NOTES.md: change the status of the picked note to ✅ Done.