A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
A Claude Code skill + local daemon that enables pasting clipboard images into a Claude Code session on a remote server o
A Claude Code skill + local daemon that enables pasting clipboard images into a Claude Code session on a remote server over SSH.
Claude Code doesn't natively support pasting images over SSH. This project solves that with a similar approach to sshimg.nvim, but specifically for Claude Code.
Local Machine Remote Server (SSH)
┌──────────────────────┐ ┌──────────────────────────┐
│ Clipboard (PNG) │ │ Claude Code │
│ │ │ │ │ │
│ ▼ │ │ ▼ │
│ ccimgd (Port 9998) │◄────────────────│ /paste-image Skill │
│ - wl-paste │ SSH Reverse │ - TCP Request to ccimgd │
│ - Returns base64 │ Tunnel │ - Receives base64 image │
│ image in response │ (Port 9998) │ - Saves as temp file │
│ │ │ - Read → Claude sees │
└──────────────────────┘ │ the image │
└──────────────────────────┘
/paste-image skill runs the ccimg client on the remote server, which sends a TCP request to 127.0.0.1:9998 (forwarded through the SSH reverse tunnel to the local machine)ccimgd reads the PNG image from the local clipboard (wl-paste on Wayland, xclip on X11, pngpaste on macOS)ccimg saves it as a temporary PNG file and prints the pathRead tool to display the imagewl-paste (Wayland, part of wl-clipboard) or xclip (X11)pngpaste (brew install pngpaste)Build both binaries (daemon + client):
./build.sh
This builds statically linked binaries for all supported platforms:
daemon/ccimgd-linux-amd64, daemon/ccimgd-darwin-amd64, daemon/ccimgd-darwin-arm64client/ccimg-linux-amd64, client/ccimg-darwin-amd64, client/ccimg-darwin-arm64cp daemon/ccimgd-linux-amd64 ~/.local/bin/ccimgd
cp daemon/ccimgd.service ~/.config/systemd/user/
systemctl --user daemon-reload
systemctl --user enable --now ccimgd
cp daemon/ccimgd-darwin-arm64 /usr/local/bin/ccimgd # or ccimgd-darwin-amd64 for Intel
cp daemon/com.ccimgd.plist ~/Library/LaunchAgents/
launchctl load ~/Library/LaunchAgents/com.ccimgd.plist
Copy the client binary and skill to the remote server:
scp client/ccimg-linux-amd64 your-server:~/.local/bin/ccimg
scp skill/paste-image.md your-server:~/.claude/commands/paste-image.md
To avoid permission prompts each time, add this to ~/.claude/settings.json:
{
"permissions": {
"allow": [
"Bash(ccimg)"
]
}
}
Connect with a reverse tunnel:
ssh -R 9998:localhost:9998 your-server
Or add to ~/.ssh/config:
Host your-server
RemoteForward 9998 localhost:9998
In Claude Code on the remote server, copy an image to the clipboard on your local machine and run:
/paste-image
| Aspect | sshimg.nvim | claude-ssh-image-skill |
|---|---|---|
| Client | Neovim plugin (Lua) | Claude Code skill |
| Daemon | imgd (Port 9999) | ccimgd (Port 9998) |
| Image transfer | Daemon → scp → Server | Daemon → base64 in TCP response → Client saves |
| Request needs | host + path | Nothing (empty object) |
| Coexistence | Port 9999 | Port 9998 — both can run simultaneously |
MIT
Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Sho
AI image generation skill for Claude Code -- Creative Director powered by Gemini
A Claude Code skill by Hao (駱君昊) that learns your Facebook voice and auto-posts to FB / IG / Threads / X with a 14-day c
Universal SEO skill for Claude Code. 25 sub-skills + 18 sub-agents covering technical SEO, E-E-A-T, schema, GEO/AEO, bac