Help us improve
Share bugs, ideas, or general feedback.
From workflow
Formats session's final answer as clean markdown—no headings, bold titles, proper tables/code—and copies to clipboard via cross-platform Bash. Use for copy requests.
npx claudepluginhub umputun/cc-thingz --plugin workflowHow this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:md-copyThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Extract the final answer from this session, convert it to proper markdown format, and copy to clipboard.
Copies recent conversation text to macOS clipboard as plain text via pbcopy or rich HTML via Swift for Slack, Notion, Word. Triggers on copy requests.
Captures the last substantive Q&A exchange from the conversation, saves it as a markdown file, and copies to clipboard.
Share bugs, ideas, or general feedback.
Extract the final answer from this session, convert it to proper markdown format, and copy to clipboard.
#, ##, etc.) — use bold for section titles insteadtmpfile="/tmp/claude-md-copy-$(date +%s).txt"
cat > "$tmpfile" << 'EOF'
<formatted content>
EOF
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"