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 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.
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("YOLO");
4
+
5
+ import '@anthropic-ai/claude-code/cli.mjs';
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "claude-yolo",
3
+ "version": "1.0.0",
4
+ "description": "YOLO wrapper for Claude CLI",
5
+ "bin": {
6
+ "claude-yolo": "./bin/claude-yolo.js"
7
+ },
8
+ "dependencies": {
9
+ "@anthropic-ai/claude-code": "latest"
10
+ },
11
+ "type": "module"
12
+ }