@ccdevkit/ccyolo 0.8.0 → 0.9.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 +15 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center">ccyolo</h1>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
Run Claude Code in Docker with auto-accept enabled. No setup, full parity with `claude` CLI.
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<img src="screenshots/demo.gif" alt="Demo" />
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
> [!CAUTION]
|
|
12
|
+
> ccyolo is a safety net, not a sandbox. It protects against overzealous agents doing stupid things, but it won't contain a fully compromised, malicious agent. Only use with repositories you trust.
|
|
4
13
|
|
|
5
14
|
## Install
|
|
6
15
|
|
|
@@ -39,10 +48,10 @@ ccyolo --log /tmp/debug.log -- -c # Log to file
|
|
|
39
48
|
ccyolo --pt git -- -p "git status" # Run git on host instead of container
|
|
40
49
|
```
|
|
41
50
|
|
|
42
|
-
| Flag
|
|
43
|
-
|
|
44
|
-
| `-v`, `--verbose`
|
|
45
|
-
| `--log <path>`
|
|
51
|
+
| Flag | Description |
|
|
52
|
+
| ----------------------------------- | ------------------------------------------------- |
|
|
53
|
+
| `-v`, `--verbose` | Enable debug logging to stderr |
|
|
54
|
+
| `--log <path>` | Write debug logs to file |
|
|
46
55
|
| `--pt <cmd>`, `--passthrough <cmd>` | Run commands matching prefix on host (repeatable) |
|
|
47
56
|
|
|
48
57
|
### Passthrough
|