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.
How 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.
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"
npx claudepluginhub umputun/cc-thingz --plugin workflowCopies text to the macOS system clipboard with optional rich HTML formatting for pasting into Slack, Word, Google Docs, Notion, etc. Includes plain-text fallback.
Formats plain text or markdown files with frontmatter, titles, summaries, headings, bold, lists, and code blocks. Outputs to {filename}-formatted.md.
Formats plain text or markdown files with frontmatter, titles, summaries, headings, bold, lists, and code blocks. Outputs to {filename}-formatted.md.