plugins/workflow-skills/skills/capture/SKILL.md
Quick capture to the Obsidian vault. Routes content to daily note or Inbox based on type. Use when the user says "capture", "note this", "jot down", "quick note", "add to inbox", or "meeting note".
npx skillsauth add arosenkranz/claude-code-config captureInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Refer to ~/.claude/skills/obsidian-core/SKILL.md for CLI patterns, preflight checks, and error handling.
Accept whatever the user wants to capture. No required format.
| Type | Signals | |------|---------| | Task | "todo", "remember to", "need to", action verb + object | | Meeting note | "meeting", "standup", "sync", "call with", "sprint planning", "1:1" | | Idea | "idea", "what if", "brainstorm", speculative language | | Link/Resource | URL present, "article", "read this", "resource", "link" | | Quick note | Anything else |
Task — append to today's daily note:
obsidian daily:append content="- [ ] <task>" 2>/dev/null
Meeting note — create in Inbox with meeting structure:
obsidian create path="Inbox/YYYY-MM-DD Meeting Name.md" content="---\ntype: meeting\ntags: [meeting]\ndate: YYYY-MM-DD\n---\n\n# Meeting Name\n\n## Attendees\n- \n\n## Key Points\n- \n\n## Action Items\n- [ ] \n\n## Decisions Made\n- \n\n## Follow-up\n- \n"
Idea — append to today's daily note:
obsidian daily:append content="\n**Idea**: <content>" 2>/dev/null
Link/Resource — append to today's daily note:
obsidian daily:append content="- [<title>](<url>) - <brief note>" 2>/dev/null
Quick note — create in Inbox:
obsidian create path="Inbox/<title>.md" content="<content>"
Tell the user what was captured and where:
daily:append will create it automaticallytools
Lightweight orchestrator for spec-before-plan workflow. Use when starting a feature with ambiguous requirements. Walks SPEC.md → PLAN.md → execute, delegating to /superpowers:writing-plans and /superpowers:executing-plans. Invoke when asked to "spec this out", "spec-first", "spec and plan for X", or when feature requirements are vague.
tools
Problem Statement Co-Authoring Skill
development
Structure and maintain professional brag documents with clear templates for accomplishments, projects, and growth tracking. Use when documenting achievements, creating brag document entries, formatting accomplishments, or tracking career progress.
development
Analyze technical documentation for clarity, conciseness, and effectiveness using Google Technical Writing principles. Use when reviewing documentation, checking writing quality, improving docs, or providing writing feedback.