claude-yolo-extended 1.9.1 → 1.9.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.
- package/AI_HANDOFF.md +15 -14
- package/CLAUDE.md +7 -7
- package/bin/cl.ps1 +36 -36
- package/package.json +41 -41
package/AI_HANDOFF.md
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
# AI Session Handoff
|
|
2
|
-
|
|
3
|
-
## Current State
|
|
4
|
-
* **Last Updated:** 2025-
|
|
5
|
-
* **
|
|
6
|
-
* **
|
|
7
|
-
|
|
8
|
-
##
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
# AI Session Handoff
|
|
2
|
+
|
|
3
|
+
## Current State
|
|
4
|
+
* **Last Updated:** 2025-12-26
|
|
5
|
+
* **Version:** 1.9.2
|
|
6
|
+
* **Status:** Ready for npm publish
|
|
7
|
+
|
|
8
|
+
## Session Summary
|
|
9
|
+
* Updated `@anthropic-ai/claude-code` from 2.0.55 to 2.0.76
|
|
10
|
+
* Committed and pushed to GitHub with tag v1.9.2
|
|
11
|
+
* npm publish pending (requires `npm login`)
|
|
12
|
+
|
|
13
|
+
## NEXT STEPS (Resume Work Here)
|
|
14
|
+
1. [ ] Run `npm login` then `npm publish` to publish v1.9.2
|
|
15
|
+
2. [ ] Verify package at https://www.npmjs.com/package/claude-yolo-extended
|
package/CLAUDE.md
CHANGED
|
@@ -73,11 +73,11 @@ npm link
|
|
|
73
73
|
|
|
74
74
|
- **npm Package**: https://www.npmjs.com/package/claude-yolo-extended
|
|
75
75
|
- **GitHub Repository**: https://github.com/jslitzkerttcu/claude-yolo
|
|
76
|
-
- **Issues**: https://github.com/jslitzkerttcu/claude-yolo/issues
|
|
77
|
-
|
|
78
|
-
## AI_HANDOFF.md Protocol
|
|
79
|
-
(These rules govern the 'AI_HANDOFF.md' file found in the root)
|
|
80
|
-
1. **Transient State Only:** This file is a specific 'mutex' token for the next session. It is NOT a project history log.
|
|
81
|
-
2. **No Documentation:** Do not write architectural decisions or code snippets here. Use README.md for that.
|
|
82
|
-
3. **Clean Up:** When updating this file, REMOVE completed tasks. Do not mark them as [x] and leave them. The file should only ever contain the *current* state and *immediate* next steps.
|
|
76
|
+
- **Issues**: https://github.com/jslitzkerttcu/claude-yolo/issues
|
|
77
|
+
|
|
78
|
+
## AI_HANDOFF.md Protocol
|
|
79
|
+
(These rules govern the 'AI_HANDOFF.md' file found in the root)
|
|
80
|
+
1. **Transient State Only:** This file is a specific 'mutex' token for the next session. It is NOT a project history log.
|
|
81
|
+
2. **No Documentation:** Do not write architectural decisions or code snippets here. Use README.md for that.
|
|
82
|
+
3. **Clean Up:** When updating this file, REMOVE completed tasks. Do not mark them as [x] and leave them. The file should only ever contain the *current* state and *immediate* next steps.
|
|
83
83
|
4. **Size Limit:** Keep this file short (under 50 lines).
|
package/bin/cl.ps1
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
# Claude YOLO/SAFE Mode Wrapper Script
|
|
2
|
-
# Usage: cl.ps1 /YON | /YOFF | /STATUS | /HELP | [claude commands]
|
|
3
|
-
|
|
4
|
-
param(
|
|
5
|
-
[Parameter(Position=0)]
|
|
6
|
-
[string]$Command,
|
|
7
|
-
[Parameter(Position=1)]
|
|
8
|
-
[string]$Argument
|
|
9
|
-
)
|
|
10
|
-
|
|
11
|
-
# Colors for output
|
|
12
|
-
$RED = "`e[31m"
|
|
13
|
-
$YELLOW = "`e[33m"
|
|
14
|
-
$CYAN = "`e[36m"
|
|
15
|
-
$GREEN = "`e[32m"
|
|
16
|
-
$RESET = "`e[0m"
|
|
17
|
-
|
|
18
|
-
function Write-Colored($Text, $Color) {
|
|
19
|
-
Write-Host "$Color$Text$RESET"
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
# Check if Node.js is installed
|
|
23
|
-
if (-not (Get-Command node -ErrorAction SilentlyContinue)) {
|
|
24
|
-
Write-Colored "Error: Node.js is not installed. Please install Node.js first." $RED
|
|
25
|
-
exit 1
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
# Check if the main script exists
|
|
29
|
-
$scriptPath = Join-Path $PSScriptRoot "claude-yolo.js"
|
|
30
|
-
if (-not (Test-Path $scriptPath)) {
|
|
31
|
-
Write-Colored "Error: Main script not found. Please reinstall the package." $RED
|
|
32
|
-
exit 1
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
# Run the main script with arguments
|
|
36
|
-
& node $scriptPath $Command $Argument
|
|
1
|
+
# Claude YOLO/SAFE Mode Wrapper Script
|
|
2
|
+
# Usage: cl.ps1 /YON | /YOFF | /STATUS | /HELP | [claude commands]
|
|
3
|
+
|
|
4
|
+
param(
|
|
5
|
+
[Parameter(Position=0)]
|
|
6
|
+
[string]$Command,
|
|
7
|
+
[Parameter(Position=1)]
|
|
8
|
+
[string]$Argument
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
# Colors for output
|
|
12
|
+
$RED = "`e[31m"
|
|
13
|
+
$YELLOW = "`e[33m"
|
|
14
|
+
$CYAN = "`e[36m"
|
|
15
|
+
$GREEN = "`e[32m"
|
|
16
|
+
$RESET = "`e[0m"
|
|
17
|
+
|
|
18
|
+
function Write-Colored($Text, $Color) {
|
|
19
|
+
Write-Host "$Color$Text$RESET"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
# Check if Node.js is installed
|
|
23
|
+
if (-not (Get-Command node -ErrorAction SilentlyContinue)) {
|
|
24
|
+
Write-Colored "Error: Node.js is not installed. Please install Node.js first." $RED
|
|
25
|
+
exit 1
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
# Check if the main script exists
|
|
29
|
+
$scriptPath = Join-Path $PSScriptRoot "claude-yolo.js"
|
|
30
|
+
if (-not (Test-Path $scriptPath)) {
|
|
31
|
+
Write-Colored "Error: Main script not found. Please reinstall the package." $RED
|
|
32
|
+
exit 1
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
# Run the main script with arguments
|
|
36
|
+
& node $scriptPath $Command $Argument
|
package/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "claude-yolo-extended",
|
|
3
|
-
"version": "1.9.
|
|
4
|
-
"description": "Claude CLI wrapper with YOLO mode (bypass safety) and SAFE mode support, auto-updates, and colorful loading messages",
|
|
5
|
-
"bin": {
|
|
6
|
-
"claude-yolo-extended": "bin/claude-yolo.js",
|
|
7
|
-
"cl": "bin/cl.js"
|
|
8
|
-
},
|
|
9
|
-
"dependencies": {
|
|
10
|
-
"punycode": "latest",
|
|
11
|
-
"@anthropic-ai/claude-code": "2.0.
|
|
12
|
-
},
|
|
13
|
-
"type": "module",
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/jslitzkerttcu/claude-yolo.git"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"claude",
|
|
20
|
-
"cli",
|
|
21
|
-
"anthropic",
|
|
22
|
-
"wrapper",
|
|
23
|
-
"yolo",
|
|
24
|
-
"safe-mode",
|
|
25
|
-
"permissions"
|
|
26
|
-
],
|
|
27
|
-
"author": "jslitzkerttcu",
|
|
28
|
-
"license": "MIT",
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/jslitzkerttcu/claude-yolo/issues"
|
|
31
|
-
},
|
|
32
|
-
"homepage": "https://github.com/jslitzkerttcu/claude-yolo#readme",
|
|
33
|
-
"engines": {
|
|
34
|
-
"node": ">=14.16"
|
|
35
|
-
},
|
|
36
|
-
"os": [
|
|
37
|
-
"win32",
|
|
38
|
-
"darwin",
|
|
39
|
-
"linux"
|
|
40
|
-
]
|
|
41
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-yolo-extended",
|
|
3
|
+
"version": "1.9.2",
|
|
4
|
+
"description": "Claude CLI wrapper with YOLO mode (bypass safety) and SAFE mode support, auto-updates, and colorful loading messages",
|
|
5
|
+
"bin": {
|
|
6
|
+
"claude-yolo-extended": "bin/claude-yolo.js",
|
|
7
|
+
"cl": "bin/cl.js"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"punycode": "latest",
|
|
11
|
+
"@anthropic-ai/claude-code": "2.0.76"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/jslitzkerttcu/claude-yolo.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"claude",
|
|
20
|
+
"cli",
|
|
21
|
+
"anthropic",
|
|
22
|
+
"wrapper",
|
|
23
|
+
"yolo",
|
|
24
|
+
"safe-mode",
|
|
25
|
+
"permissions"
|
|
26
|
+
],
|
|
27
|
+
"author": "jslitzkerttcu",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/jslitzkerttcu/claude-yolo/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/jslitzkerttcu/claude-yolo#readme",
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=14.16"
|
|
35
|
+
},
|
|
36
|
+
"os": [
|
|
37
|
+
"win32",
|
|
38
|
+
"darwin",
|
|
39
|
+
"linux"
|
|
40
|
+
]
|
|
41
|
+
}
|