Claude Code Plugins

Community-maintained marketplace

Feedback

note-capture

@pgflow-dev/pgflow
178
0

Save conversation context to topic notes. Use when user says "capture note [about X]", "save to notes", "create note [in topic]", "note this [for topic]", "add note to [topic]". IMPORTANT - User must say "note" or "notes" explicitly.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name note-capture
description Save conversation context to topic notes. Use when user says "capture note [about X]", "save to notes", "create note [in topic]", "note this [for topic]", "add note to [topic]". IMPORTANT - User must say "note" or "notes" explicitly.
allowed-tools Write, Bash, AskUserQuestion

Note Capture

Save conversation context to .notes/[topic]/WIP-[name].md

@../_shared/notes/topics.md

- ALWAYS use AskUserQuestion for topic selection - User MUST say "note" or "notes" (not just "save this")

Workflow

1. Determine topic:

If user specified topic explicitly → use it

Otherwise use AskUserQuestion to select from available topics above.

2. Create file:

  • Filename: WIP-[descriptive-name].md (kebab-case)
  • Location: .notes/[topic]/WIP-[name].md
  • Format: H1 title on first line

3. Confirm:

  • Tell user where saved
  • Suggest notes-sync skill to commit

File Format

# [Descriptive title]

[Content from conversation]

H1 can be informal: questions, TODOs, context notes.

Examples

With explicit topic:

  • "capture note about deployment in pgflow-demo"
  • "add note to ci-optimization about parallel jobs"

Inferred topic:

  • "capture note about this CI discussion" → Ask: which topic?
  • "note this for later" → Ask: which topic + what to capture?

@../_shared/notes/notes-layout.md