# Clipboard

> Copy the last meaningful output from the conversation to the macOS clipboard via pbcopy. Use when user wants to copy, grab, or export the last response.

- Skill: `dzhuneyt/clipboard` (Agent Skill)
- Install (CLI): `npx skillmds@latest add dzhuneyt/clipboard`
- Raw SKILL.md: https://api.skillmd.com/api/skills/dzhuneyt/clipboard/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Dzhuneyt (https://skillmd.com/u/dzhuneyt)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/dzhuneyt/clipboard

---


Copy your last substantive output to the macOS clipboard.

## Rules

- Strip any leading/trailing meta-commentary (e.g., "Here's what I found:", "Let me know if...", "Done.", "Copied to clipboard.")
- Keep only the core content the user would want to paste somewhere
- If the last output was a list, table, or code block — copy it as-is
- If the last output was prose with surrounding filler — extract the meaningful part

## Command

```bash
cat <<'EOF' | pbcopy
<paste the extracted content here>
EOF
```

After copying, confirm: "Copied to clipboard."

