/cs-capture
/cs:capture <dump-text-or-path> — Explicit invocation of the brain-dump organizer. Captures an unstructured stream of thoughts/tasks/ideas and returns a 4-section actionable system (Projects/Ideas, Tasks, Connections, How I Can Help). Compressed format for small dumps. Max 1
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/cs-capture
Context preview
What this command does when you run it.
/cs:capture <dump-text-or-path> — Explicit invocation of the brain-dump organizer. Captures an unstructured stream of thoughts/tasks/ideas and returns a 4-section actionable system (Projects/Ideas, Tasks, Connections, How I Can Help). Compressed format for small dumps. Max 1
Command definition
cs-capture.mdname: "cs-capture"
description: "/cs:capture <dump-text-or-path> — Explicit invocation of the brain-dump organizer. Captures an unstructured stream of thoughts/tasks/ideas and returns a 4-section actionable system (Projects/Ideas, Tasks, Connections, How I Can Help). Compressed format for small dumps. Max 1 clarifying question. No fabricated connections. No corporate-ifying."
/cs:capture — Brain-Dump Organizer
**Command:** `/cs:capture <dump-text-or-path>`
The `cs-capture` persona organizes a dump into 4 actionable sections with zero information loss.
When to Run
- You have an unstructured block of mixed thoughts to organize
- You need workspace connections surfaced (Glob+Grep verified)
- You want concrete next-action offers, not generic "consider X" suggestions
The skill ALSO triggers automatically without `/cs:capture` when you:
- Use trigger phrases like "brain dump", "let me dump some ideas", "here's everything on my mind", "I need to organize my thoughts"
- Paste a long unstructured block of mixed ideas (implicit trigger)
`/cs:capture` is the explicit form — useful when your dump doesn't include the trigger phrasing but you still want the organize behavior.
What You Get
**For a typical 8+ item dump (4-section format):**
## Projects & Ideas
{clustered themes with embedded questions/decisions}
## Tasks
{flat scannable action list}
## Connections
{real workspace links — Glob+Grep verified, never fabricated}
## How I Can Help
{concrete offers — what + where}
**Which of these should I tackle?****For a small dump (≤5 unrelated items, compressed format):**
## What I heard
- ...
## How I can help
- ...
Which should I tackle?
Discipline
- **Capture everything** — zero loss; trivial items go in; user prunes later
- **Preserve voice** — no corporate-ifying; "build something crazy with AI" stays as that
- **Match output to input** — small dumps get compressed format, not forced 4 sections
- **No fabrication** — Section 3 only surfaces real workspace matches
- **No action without pick** — only auto-action is the organization itself
- **Max 1 clarifier per dump** — only when one item is genuinely ambiguous between task and project
Workflow
# 1. (Optional) Pre-classify the dump as a heuristic seed
python ../skills/capture/scripts/dump_classifier.py path/to/dump.txt
# 2. (Optional) Recommend output format
python ../skills/capture/scripts/complexity_estimator.py path/to/dump.txt
# 3. Inventory the workspace for Section 3 candidates
python ../skills/capture/scripts/workspace_inventory.py \
--root . --keywords "<extracted-keywords-from-dump>"
# 4. Persona organizes + delivers four (or compressed) sections.
# 5. Persona ends with "Which of these should I tackle?" and waits.
Stop Conditions
- Four sections (or compressed) delivered → done with the auto-action portion
- User picks a Section-4 offer → execute that offer
- User says "go" without picking → honor it but flag any items you weren't sure about
Anti-Patterns Rejected
- Fabricating workspace connections that weren't actually verified
- Dropping items deemed "trivial"
- Corporate-ifying the user's casual language
- Forcing 4-section structure when input is small
- Acting on Section-4 offers immediately without approval
- Splitting decisions/questions into separate top-level categories instead of embedding them
- Vague Section-4 offers ("you might want to consider…")
Related
- Agent: [`cs-capture`](../agents/cs-capture.md)
- Skill: [`capture`](../skills/capture/SKILL.md)
- Source spec: [`megaprompts/05-capture-megaprompt.md`](../../../megaprompts/05-capture-megaprompt.md)
- Adjacent commands: `/cs:grill-me` (slow deliberate plan grill), `/cs:grill-with-docs` (docs-anchored grill), `/cs:handoff` (session continuation)
---
**Version:** 1.0.0 **Source:** Path-B direct conversion of `megaprompts/05-capture-megaprompt.md`
Read more
name: "cs-capture" description: "/cs:capture <dump-text-or-path> — Explicit invocation of the brain-dump organizer. Captures an unstructured stream of thoughts/tasks/ideas and returns a 4-section actionable system (Projects/Ideas, Tasks, Connections, How I Can Help). Compressed format for small dumps. Max 1 clarifying question. No fabricated connections. No corporate-ifying."
/cs:capture — Brain-Dump Organizer
**Command:** `/cs:capture <dump-text-or-path>`
The `cs-capture` persona organizes a dump into 4 actionable sections with zero information loss.
When to Run
- You have an unstructured block of mixed thoughts to organize
- You need workspace connections surfaced (Glob+Grep verified)
- You want concrete next-action offers, not generic "consider X" suggestions
The skill ALSO triggers automatically without `/cs:capture` when you:
- Use trigger phrases like "brain dump", "let me dump some ideas", "here's everything on my mind", "I need to organize my thoughts"
- Paste a long unstructured block of mixed ideas (implicit trigger)
`/cs:capture` is the explicit form — useful when your dump doesn't include the trigger phrasing but you still want the organize behavior.
What You Get
**For a typical 8+ item dump (4-section format):**
## Projects & Ideas
{clustered themes with embedded questions/decisions}
## Tasks
{flat scannable action list}
## Connections
{real workspace links — Glob+Grep verified, never fabricated}
## How I Can Help
{concrete offers — what + where}
**Which of these should I tackle?****For a small dump (≤5 unrelated items, compressed format):**
## What I heard - ... ## How I can help - ... Which should I tackle?
Discipline
- **Capture everything** — zero loss; trivial items go in; user prunes later
- **Preserve voice** — no corporate-ifying; "build something crazy with AI" stays as that
- **Match output to input** — small dumps get compressed format, not forced 4 sections
- **No fabrication** — Section 3 only surfaces real workspace matches
- **No action without pick** — only auto-action is the organization itself
- **Max 1 clarifier per dump** — only when one item is genuinely ambiguous between task and project
Workflow
# 1. (Optional) Pre-classify the dump as a heuristic seed python ../skills/capture/scripts/dump_classifier.py path/to/dump.txt # 2. (Optional) Recommend output format python ../skills/capture/scripts/complexity_estimator.py path/to/dump.txt # 3. Inventory the workspace for Section 3 candidates python ../skills/capture/scripts/workspace_inventory.py \ --root . --keywords "<extracted-keywords-from-dump>" # 4. Persona organizes + delivers four (or compressed) sections. # 5. Persona ends with "Which of these should I tackle?" and waits.
Stop Conditions
- Four sections (or compressed) delivered → done with the auto-action portion
- User picks a Section-4 offer → execute that offer
- User says "go" without picking → honor it but flag any items you weren't sure about
Anti-Patterns Rejected
- Fabricating workspace connections that weren't actually verified
- Dropping items deemed "trivial"
- Corporate-ifying the user's casual language
- Forcing 4-section structure when input is small
- Acting on Section-4 offers immediately without approval
- Splitting decisions/questions into separate top-level categories instead of embedding them
- Vague Section-4 offers ("you might want to consider…")
Related
- Agent: [`cs-capture`](../agents/cs-capture.md)
- Skill: [`capture`](../skills/capture/SKILL.md)
- Source spec: [`megaprompts/05-capture-megaprompt.md`](../../../megaprompts/05-capture-megaprompt.md)
- Adjacent commands: `/cs:grill-me` (slow deliberate plan grill), `/cs:grill-with-docs` (docs-anchored grill), `/cs:handoff` (session continuation)
---
**Version:** 1.0.0 **Source:** Path-B direct conversion of `megaprompts/05-capture-megaprompt.md`
362 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Other commands on claude-skills.
- /focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Open command - /clean
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Open command - /cm
Stage working tree changes and create a Conventional Commit (no push).
Open command - /cp
Stage, commit, and push the current branch following git governance rules.
Open command - /pr
Create a pull request from the current branch.
Open command - /plugin-audit
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform compatibility, and ecosystem integration. Runs all built-in validation tools, invokes domain-appropriate agents for code review,
Open command

