Coding & Refactoringlow risk

clipboard

Copy text to clipboard with optional rich formatting. Triggers on "copy to clipboard", "copy that", "pbcopy", "copy formatted", "copy rich text".

CodeAlive-AI/ai-driven-development·skills/clipboard/SKILL.md
44/ 100推薦值

匯入這個 Skill

選擇你的 coding agent,複製專案級或個人級安裝指令。

固定至平台收錄的 commit
匯入目前專案.agents/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a codex -y
匯入個人環境~/.agents/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a codex -g -y
手動放置目錄.agents/skills/clipboardOfficial docs ↗
匯入目前專案.claude/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a claude-code -y
匯入個人環境~/.claude/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a claude-code -g -y
手動放置目錄.claude/skills/clipboardOfficial docs ↗
匯入目前專案.agents/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a github-copilot -y
匯入個人環境~/.copilot/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a github-copilot -g -y
手動放置目錄.agents/skills/clipboardOfficial docs ↗
匯入目前專案.agents/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a cursor -y
匯入個人環境~/.cursor/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a cursor -g -y
手動放置目錄.agents/skills/clipboardOfficial docs ↗
匯入目前專案.agents/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a gemini-cli -y
匯入個人環境~/.gemini/skills/clipboard
npx skills add https://github.com/CodeAlive-AI/ai-driven-development/tree/8bf74245234ac9a1779788dfd40dbeafb8655e0b/skills/clipboard -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/CodeAlive-AI/ai-driven-development.git --scope workspace --path skills/clipboard
手動放置目錄.agents/skills/clipboardOfficial docs ↗
⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
# Clipboard

Copy the most recent relevant text block from the conversation to the macOS system clipboard.

## Plain Text Copy (Default)

Use a heredoc to safely handle special characters (quotes, apostrophes, backticks, dollar signs):

```bash
cat <<'CLIPBOARD' | pbcopy
<text to copy>
CLIPBOARD
```

## Rich Text Copy (Formatted)

Use when the user wants formatting preserved for pasting into Slack, Word, Google Docs, Notion, etc. Sets both HTML and plain text on the clipboard via Swift, so the receiving app picks the richest format it supports.

**Step 1:** Write the HTML content to a temp file:

```bash
cat <<'CLIPBOARD_HTML' > /tmp/_clipboard_rich.html
<html><body>
<h2>Title</h2>
<p>Paragraph with <b>bold</b> and <i>italic</i>.</p>
<ul><li>Item one</li><li>Item two</li></ul>
</body></html>
CLIPBOARD_HTML
```

**Step 2:** Write the plain text fallback to a temp file:

```bash
cat <<'CLIPBOARD_TEXT' > /tmp/_clipboard_rich.txt
Title

Paragraph with bold and italic.

- Item one
- Item two
CLIPBOARD_TEXT
```

**Step 3:** Set clipboard with both HTML and plain text using Swift:

```bash
swift -e '
import AppKit

let html = try Data(contentsOf: URL(fileURLWithPath: "/tmp/_clipboard_rich.html"))
let text = try String(contentsOfFile: "/tmp/_clipboard_rich.txt", encoding: .utf8)

let pb = NSPasteboard.general
pb.clearContents()
pb.setData(html, forType: .html)
pb.setString(text, forType: .string)
'
```

**Step 4:** Clean up temp files:

```bash
rm -f /tmp/_clipboard_rich.html /tmp/_clipboard_rich.txt
```

## When to Use Rich vs Plain

- **Rich (HTML)**: User says "copy formatted", "copy as rich text", "copy for Slack/LinkedIn/Word/Docs/Notion", or the content has meaningful formatting (bold, headers, lists, code blocks). **This is also the correct way to copy for Slack and LinkedIn** — they accept HTML rich text from clipboard and render it with proper formatting (bold, lists, code, etc.). Do NOT use Slack mrkdwn or markdown syntax for clipboard copy — use HTML rich text instead, it works universally.
  - **⚠️ Slack does NOT render HTML `<table>` tags.** Tables pasted into Slack appear as a broken mess of text. Instead of `<table>`, present tabular data as plain-text lines (e.g. `Label: value` per line, or use `<pre>` for aligned columns). This also applies to LinkedIn and most chat apps.
- **Plain**: Default for code snippets, terminal output, simple text, or when user says "copy to clipboard" without formatting context

## Rules

1. Identify the most recent text block the user wants copied (message, code block, drafted text, etc.)
2. If ambiguous, ask what to copy
3. Use single-quoted heredoc delimiters (`'CLIPBOARD'`, `'CLIPBOARD_HTML'`, `'CLIPBOARD_TEXT'`) to prevent shell expansion
4. For rich copy, convert markdown-style content to proper HTML (use `<b>`, `<i>`, `<code>`, `<ul>/<li>`, `<h1>`-`<h6>`, `<pre>`, etc.). **Do NOT use `<table>` for Slack/chat targets** — use line-per-row text instead.
5. Always provide a plain text fallback alongside HTML
6. Confirm success after copying, noting whether plain or rich format was used