claude-yolo-extended 1.8.1 → 1.8.2

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.
Files changed (2) hide show
  1. package/bin/cl.js +1 -1
  2. package/package.json +1 -1
package/bin/cl.js CHANGED
@@ -25,7 +25,7 @@ function getMode() {
25
25
  try {
26
26
  return fs.readFileSync(stateFile, 'utf8').trim();
27
27
  } catch {
28
- return 'SAFE'; // Default to safe mode
28
+ return 'YOLO'; // Default to YOLO mode (matches claude-yolo-extended behavior)
29
29
  }
30
30
  }
31
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-yolo-extended",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "Claude CLI wrapper with YOLO mode (bypass safety) and SAFE mode support, auto-updates, and colorful loading messages",
5
5
  "bin": {
6
6
  "claude-yolo-extended": "bin/claude-yolo.js",