agentsclimarketplace

Clipboard handler

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/clipboard-handler

Cross-platform clipboard operations for text, images, files, and rich contentFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill clipboard-handler

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.5 KB, 225 tokens by cl100k_base, as published. Nobody here has run it

clipboard-handler

Implement cross-platform clipboard operations for text, images, files, and rich content.

Capabilities

  • Read/write text to clipboard
  • Copy/paste images
  • Handle file paths
  • Support HTML/RTF content
  • Monitor clipboard changes
  • Clear clipboard

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "framework": { "enum": ["electron", "native"] },
    "contentTypes": { "type": "array" }
  },
  "required": ["projectPath"]
}

Electron Example

const { clipboard, nativeImage } = require('electron');

// Text
clipboard.writeText('Hello World');
const text = clipboard.readText();

// Image
const image = nativeImage.createFromPath('/path/to/image.png');
clipboard.writeImage(image);

// HTML
clipboard.writeHTML('<b>Hello</b>');

Related Skills

  • global-shortcut-manager
  • system-services-integration process

What ships with it: 1 file

449 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.