brainstorm
Use before any creative work or significant changes. Activates on "brainstorm", "let's brainstorm", "deep analysis", "analyze this feature", "think through",…
Format final answer as markdown and copy to clipboard. Use when user says "copy as markdown", "md copy", "copy formatted", "clipboard", or wants the session's final answer formatted and copied.
$ npx -y skills add umputun/cc-thingz --skill md-copy --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/md-copyContext preview
The summary Claude sees to decide when to auto-load this skill.
Format final answer as markdown and copy to clipboard. Use when user says "copy as markdown", "md copy", "copy formatted", "clipboard", or wants the session's final answer formatted and copied.
name: md-copy description: Format final answer as markdown and copy to clipboard. Use when user says "copy as markdown", "md copy", "copy formatted", "clipboard", or wants the session's final answer formatted and copied. allowed-tools: Bash
Extract the final answer from this session, convert it to proper markdown format, and copy to clipboard.
1. **No heading elements** (`#`, `##`, etc.) — use **bold** for section titles instead 2. Convert any ASCII tables to proper markdown tables 3. Use *italic* for emphasis and minor notes 4. Preserve code blocks with proper language tags 5. Keep bullet lists and numbered lists 6. Remove any leading spaces or bullet headers (bullet-style) 7. Give the content a nice descriptive title (as bold text, not heading)
1. Identify the final answer/response in this session 2. Format it according to the rules above 3. Write formatted text to a timestamped temp file:
tmpfile="/tmp/claude-md-copy-$(date +%s).txt" cat > "$tmpfile" << 'EOF' <formatted content> EOF
4. Copy to clipboard and remove temp file:
if [[ "$OSTYPE" == "darwin"* ]]; then
pbcopy < "$tmpfile"
elif command -v xclip &> /dev/null; then
xclip -selection clipboard < "$tmpfile"
elif command -v xsel &> /dev/null; then
xsel --clipboard --input < "$tmpfile"
else
echo "No clipboard tool found" >&2
fi
rm -f "$tmpfile"5. Report success with character count
Things to make Claude Code even better — hooks, skills, and commands, organized as a marketplace of independent plugins. This is an unapologetically opinionated set.
Use before any creative work or significant changes. Activates on "brainstorm", "let's brainstorm", "deep analysis", "analyze this feature", "think through",…
Execute plan tasks sequentially using subagents. Use when user says 'exec', 'execute plan', 'run plan', or wants to implement a plan file task by task with…
Show commits since the last tag in a formatted table. Use when user asks "what changed since last release", "commits since last tag", "last-tag", "what's new",…
Use when user asks to create a release, cut a release, or publish a version. Auto-detects GitHub vs GitLab vs Gitea, calculates semantic version, generates…
Interactive git diff annotation review. Generates a cleaned-up diff, opens in editor for user annotations, and addresses feedback in a loop. Activates on "git…