claude-yolo 1.3.0 → 1.3.1
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 +16 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,13 +21,27 @@ This wrapper:
|
|
|
21
21
|
2. Creates a modified copy of the Claude CLI code to bypass permission checks
|
|
22
22
|
- Replaces all `getIsDocker()` calls with `true`
|
|
23
23
|
- Replaces all `hasInternetAccess()` calls with `false`
|
|
24
|
-
3. Leaves the original Claude CLI file untouched
|
|
24
|
+
3. Leaves the original Claude CLI file untouched (won't affect your normal `claude` command)
|
|
25
25
|
4. Adds the `--dangerously-skip-permissions` flag to command line arguments
|
|
26
26
|
5. Imports the modified copy of the CLI
|
|
27
27
|
|
|
28
|
+
## New in Version 1.3.0
|
|
29
|
+
|
|
30
|
+
- **Non-destructive approach**: Now creates a separate modified copy of the CLI file instead of modifying the original
|
|
31
|
+
- **Safe for global installations**: Your regular `claude` command will work normally even after installing claude-yolo
|
|
32
|
+
- **Debug mode**: Set the `DEBUG=1` environment variable to see detailed logs about the modifications
|
|
33
|
+
|
|
28
34
|
## Why?
|
|
29
35
|
|
|
30
|
-
Sometimes you just want to YOLO and skip those pesky permission checks.
|
|
36
|
+
Sometimes you just want to YOLO and skip those pesky permission checks. This tool lets you do that without modifying your original Claude CLI installation.
|
|
37
|
+
|
|
38
|
+
## Debugging
|
|
39
|
+
|
|
40
|
+
If you encounter any issues, you can run with debug output:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
DEBUG=1 claude-yolo
|
|
44
|
+
```
|
|
31
45
|
|
|
32
46
|
## Disclaimer
|
|
33
47
|
|