Claude opencode Skill

minutes-note

Add a note to the current recording or annotate a past meeting. Use whenever the user says "note that", "remember this", "mark this as important", "add a note about", "annotate the meeting", or wants to capture a thought during or after a recording. Plain text input — no markdown

LLM Mart · 0 points · 19 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download silverstein-minutes-tooling_skills_sources_minutes-note-e56450a.zip · 1 KB
Part of silverstein/minutes — 155 skills

Install

skills CLI npx skills add https://github.com/silverstein/minutes/tree/main/tooling/skills/sources/minutes-note
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install silverstein-minutes@llmmart
Git git clone https://github.com/silverstein/minutes.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole silverstein/minutes collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

/minutes-note

Add a timestamped note during a recording, or annotate a past meeting.

During a recording

# Add a note to the active recording (auto-timestamped)
minutes note "Alex wants monthly billing not annual billing"
minutes note "Case agreed — compromise at monthly billing for experiment"

Each note gets a timestamp matching the recording position (e.g., [4:23]). Notes feed into the LLM summarizer as high-priority context — the AI knows what you thought was important and weights those parts of the transcript more heavily in the summary.

After a meeting

# Annotate an existing meeting file
minutes note "Follow-up: Alex confirmed via email on Mar 18" --meeting ~/meetings/2026-03-17-pricing-call.md

Appends to the ## Notes section of the meeting file with a date stamp.

Tips

  • Notes are plain text — just type what you're thinking, no formatting needed
  • Short notes work best: "pricing pushback" > "Alex expressed concerns about the current pricing structure and suggested..."
  • Notes are searchable via minutes search

Gotchas

  • Must have an active recording for live notes — minutes note "..." without --meeting requires a recording in progress. Check with minutes status first. If no recording is active, use --meeting <path> to annotate an existing file.
  • --meeting requires the full path — Use the exact path from minutes list or minutes search, e.g., --meeting ~/meetings/2026-03-17-pricing-call.md. Tab completion works.
  • Notes don't support markdown — The note content is plain text. Markdown formatting like **bold** or - lists will be stored literally, not rendered.
  • Quotes in notes need escaping — If your note contains quotes, wrap the whole thing in single quotes or escape them: minutes note 'Alex said "no way"'.
Files (minutes)
  • skill.md 3.1 KB
    ---
    name: minutes-note
    description: Add a note to the current recording or annotate a past meeting. Use whenever the user says "note that", "remember this", "mark this as important", "add a note about", "annotate the meeting", or wants to capture a thought during or after a recording. Plain text input — no markdown needed.
    triggers:
      - note that
      - remember this
      - mark this as important
      - add a note about
      - annotate the meeting
    user_invocable: true
    metadata:
      display_name: Minutes Note
      short_description: Add a note to the current recording or annotate a past meeting. Use whenever the user says "note that", "remember this", "mark this as important", "add a note about", "annotate the meeting", or wants to capture a thought during or after a recording. Plain text input — no markdown needed.
      default_prompt: Use Minutes Note for this task.
      site_category: Capture
      site_example: /minutes-note Alex wants monthly billing
      site_best_for: Drop a timestamped note into the current recording or annotate a past one.
    assets:
      scripts: []
      templates: []
      references: []
    output:
      claude:
        path: .claude/plugins/minutes/skills/minutes-note/SKILL.md
      codex:
        path: .agents/skills/minutes/minutes-note/SKILL.md
    tests:
      golden: true
      lint_commands: true
    ---
    
    # /minutes-note
    
    Add a timestamped note during a recording, or annotate a past meeting.
    
    ## During a recording
    
    ```bash
    # Add a note to the active recording (auto-timestamped)
    minutes note "Alex wants monthly billing not annual billing"
    minutes note "Case agreed — compromise at monthly billing for experiment"
    ```
    
    Each note gets a timestamp matching the recording position (e.g., `[4:23]`). Notes feed into the LLM summarizer as high-priority context — the AI knows what you thought was important and weights those parts of the transcript more heavily in the summary.
    
    ## After a meeting
    
    ```bash
    # Annotate an existing meeting file
    minutes note "Follow-up: Alex confirmed via email on Mar 18" --meeting ~/meetings/2026-03-17-pricing-call.md
    ```
    
    Appends to the `## Notes` section of the meeting file with a date stamp.
    
    ## Tips
    
    - Notes are plain text — just type what you're thinking, no formatting needed
    - Short notes work best: "pricing pushback" > "Alex expressed concerns about the current pricing structure and suggested..."
    - Notes are searchable via `minutes search`
    
    ## Gotchas
    
    - **Must have an active recording for live notes** — `minutes note "..."` without `--meeting` requires a recording in progress. Check with `minutes status` first. If no recording is active, use `--meeting <path>` to annotate an existing file.
    - **`--meeting` requires the full path** — Use the exact path from `minutes list` or `minutes search`, e.g., `--meeting ~/meetings/2026-03-17-pricing-call.md`. Tab completion works.
    - **Notes don't support markdown** — The note content is plain text. Markdown formatting like `**bold**` or `- lists` will be stored literally, not rendered.
    - **Quotes in notes need escaping** — If your note contains quotes, wrap the whole thing in single quotes or escape them: `minutes note 'Alex said "no way"'`.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related