claude-yolo 1.0.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 +17 -0
- package/bin/claude-yolo.js +5 -0
- package/package.json +12 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Claude YOLO
|
|
2
|
+
|
|
3
|
+
A simple wrapper for the Claude CLI that prints "YOLO" before running.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
npm install -g claude-yolo
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
claude-yolo [options]
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
All arguments and options are passed directly to the Claude CLI.
|
package/package.json
ADDED