@ccdevkit/ccyolo 0.14.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,6 +66,28 @@ ccyolo --pt git --pt docker -- -p "build and push the image"
|
|
|
66
66
|
|
|
67
67
|
This runs `git` and `docker` commands on your host, while everything else runs in the container. You can specify `--pt` multiple times.
|
|
68
68
|
|
|
69
|
+
## Clipboard & Drag-Drop
|
|
70
|
+
|
|
71
|
+
ccyolo supports pasting images from your clipboard (Ctrl+V / Cmd+V) and dragging files into the terminal, just like the native `claude` CLI.
|
|
72
|
+
|
|
73
|
+
### How it works
|
|
74
|
+
|
|
75
|
+
When you paste or drag a file, ccyolo intercepts the input, copies the file into the container via a shared bridge directory, and rewrites the path so Claude sees it correctly.
|
|
76
|
+
|
|
77
|
+
### Platform support
|
|
78
|
+
|
|
79
|
+
| Platform | Clipboard (Ctrl+V) | File drag-drop |
|
|
80
|
+
|----------|-------------------|----------------|
|
|
81
|
+
| macOS (Intel & Apple Silicon) | ✅ | ✅ |
|
|
82
|
+
| Linux x64 | ✅ | ✅ |
|
|
83
|
+
| Windows x64 | ✅ | ✅ |
|
|
84
|
+
| Linux ARM64 | ❌ | ✅ |
|
|
85
|
+
| Windows ARM64 | ❌ | ✅ |
|
|
86
|
+
|
|
87
|
+
**Why no clipboard on ARM64?** Clipboard image support requires native system APIs (NSPasteboard, Win32, X11) which need CGO compilation. GitHub Actions doesn't provide native ARM64 runners for Linux or Windows, so those builds are cross-compiled without CGO. File drag-drop still works because it only requires path rewriting, not system clipboard access.
|
|
88
|
+
|
|
89
|
+
If you need clipboard support on ARM64, you can build from source on a native ARM64 machine with CGO enabled.
|
|
90
|
+
|
|
69
91
|
## Requirements
|
|
70
92
|
|
|
71
93
|
- Docker
|