clipboard-handler
SolidCross-platform clipboard operations for text, images, files, and rich content
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"framework": { "enum": ["electron", "native"] },
"contentTypes": { "type": "array" }
},
"required": ["projectPath"]
}
```
## Electron Example
```javascript
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
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
clipboard
Copy text to clipboard with optional rich formatting. Triggers on "copy to clipboard", "copy that", "pbcopy", "copy formatted", "copy rich text".
77 Updated 6 days ago
CodeAlive-AI AI & Automation Solid
global-shortcut-manager
Register and manage global keyboard shortcuts across desktop platforms
1,160 Updated today
a5c-ai AI & Automation Solid
encoding-handler
Handle text encoding across platforms including UTF-8, Windows codepages, and BOM handling.
1,160 Updated today
a5c-ai AI & Automation Solid
screen-capture-api
Cross-platform screen and window capture for screenshots and recording
1,160 Updated today
a5c-ai AI & Automation Solid
clipboard
Copies track content (lyrics, style prompts, streaming lyrics) to the system clipboard. Use when the user needs to paste lyrics or style prompts into Suno or other external tools.
223 Updated 3 days ago
bitwize-music-studio