@oneciel-ai/claude-any 0.1.66 → 0.1.68
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 +28 -1
- package/claude-any +7 -0
- package/claude-any-stop +7 -0
- package/claude-any-stop.cmd +18 -0
- package/claude-any-stop.ps1 +20 -0
- package/claude-any.cmd +18 -0
- package/claude-any.ps1 +20 -0
- package/claude-anyctl +7 -0
- package/claude-anyctl.cmd +18 -0
- package/claude-anyctl.ps1 +20 -0
- package/claude_any.py +991 -154
- package/claude_any_support/__init__.py +6 -0
- package/claude_any_support/observability.py +210 -0
- package/claude_any_support/transcript_filter.py +31 -0
- package/docs/README.ja.md +21 -1
- package/docs/README.ko.md +21 -1
- package/docs/README.zh.md +20 -1
- package/docs/manual.md +1 -1
- package/install.ps1 +5 -0
- package/install.sh +3 -1
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -25,6 +25,12 @@
|
|
|
25
25
|
|
|
26
26
|
## Today's Top 3 Benefits
|
|
27
27
|
|
|
28
|
+
### 2026-05-15
|
|
29
|
+
|
|
30
|
+
1. **Router management is now navigable** — the built-in router home page is split into top-menu sections for Overview, LLM Settings, Events, and Endpoints instead of crowding everything into one long screen.
|
|
31
|
+
2. **Safer remote debug exposure** — router external access is off by default, requires an explicit confirmed toggle, can be switched with `/router-debug`, restarts the router to apply the bind address, and shows `debug external` in the Claude Code status line when enabled.
|
|
32
|
+
3. **Operator-grade observability and live settings** — the router now exposes structured event views plus live LLM setting controls, making long Claude Code sessions easier to monitor, tune, and debug without editing config files by hand.
|
|
33
|
+
|
|
28
34
|
### 2026-05-14
|
|
29
35
|
|
|
30
36
|
1. **Plan Mode loop recovery is semantic, not hard-coded** — unchanged `Read` results are now converted with the previous authoritative observation and current Plan Mode state, so Claude Code can move to `ExitPlanMode` or the next real step instead of rereading the same slice.
|
|
@@ -56,7 +62,7 @@ arguments through unchanged.
|
|
|
56
62
|
|
|
57
63
|
Credits: One Ciel LLC
|
|
58
64
|
|
|
59
|
-
Current version: `0.1.
|
|
65
|
+
Current version: `0.1.68`
|
|
60
66
|
|
|
61
67
|
## Why This Exists
|
|
62
68
|
|
|
@@ -393,6 +399,27 @@ steps under that larger model's supervision.
|
|
|
393
399
|
|
|
394
400
|
## Changelog
|
|
395
401
|
|
|
402
|
+
### 0.1.68
|
|
403
|
+
|
|
404
|
+
- **Tabbed router management page**: the router root page now has top-menu
|
|
405
|
+
sections for Overview, LLM Settings, Events, and Endpoints, keeping remote
|
|
406
|
+
management usable as more controls are added.
|
|
407
|
+
- **Safe `/router-debug` toggle**: external router exposure is off by default,
|
|
408
|
+
requires an explicit confirmed setting, can be toggled inside Claude Code
|
|
409
|
+
with `/router-debug`, and automatically restarts the router so the bind
|
|
410
|
+
address changes immediately.
|
|
411
|
+
- **Main-branch npm automation**: pushing or merging to `main` now triggers the
|
|
412
|
+
npm publish workflow, but the workflow first checks whether the package
|
|
413
|
+
version already exists on npm and skips duplicate publishes.
|
|
414
|
+
|
|
415
|
+
### 0.1.67
|
|
416
|
+
|
|
417
|
+
- **Fast prelaunch navigation**: arrow-key redraws no longer call the router
|
|
418
|
+
`/health` endpoint just to render the `mode:` label, avoiding per-keystroke
|
|
419
|
+
delays when the router is stopped or slow.
|
|
420
|
+
- **Lower-latency paste handling**: portable raw input prompts drain pasted
|
|
421
|
+
bursts and flush once per batch instead of once per character.
|
|
422
|
+
|
|
396
423
|
### 0.1.66
|
|
397
424
|
|
|
398
425
|
- **TUI input fix for tmux/zsh**: portable menu prompts now handle visible text,
|
package/claude-any
ADDED
package/claude-any-stop
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@echo off
|
|
2
|
+
setlocal
|
|
3
|
+
|
|
4
|
+
if defined CLAUDE_ANY_HOME (
|
|
5
|
+
set "CLAUDE_ANY_SCRIPT=%CLAUDE_ANY_HOME%\claude_any.py"
|
|
6
|
+
) else (
|
|
7
|
+
set "CLAUDE_ANY_SCRIPT=%USERPROFILE%\.local\share\claude-any\claude_any.py"
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
if defined CLAUDE_ANY_PYTHON (
|
|
11
|
+
"%CLAUDE_ANY_PYTHON%" "%CLAUDE_ANY_SCRIPT%" cli stop
|
|
12
|
+
exit /b %ERRORLEVEL%
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
py -3 "%CLAUDE_ANY_SCRIPT%" cli stop
|
|
16
|
+
if not %ERRORLEVEL%==9009 exit /b %ERRORLEVEL%
|
|
17
|
+
python "%CLAUDE_ANY_SCRIPT%" cli stop
|
|
18
|
+
exit /b %ERRORLEVEL%
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
$ErrorActionPreference = "Stop"
|
|
2
|
+
|
|
3
|
+
if ($env:CLAUDE_ANY_HOME) {
|
|
4
|
+
$script = Join-Path $env:CLAUDE_ANY_HOME "claude_any.py"
|
|
5
|
+
} else {
|
|
6
|
+
$script = Join-Path $HOME ".local\share\claude-any\claude_any.py"
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
if ($env:CLAUDE_ANY_PYTHON) {
|
|
10
|
+
& $env:CLAUDE_ANY_PYTHON $script cli stop
|
|
11
|
+
exit $LASTEXITCODE
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
$py = Get-Command py -ErrorAction SilentlyContinue
|
|
15
|
+
if ($py) {
|
|
16
|
+
& $py.Source -3 $script cli stop
|
|
17
|
+
} else {
|
|
18
|
+
& python $script cli stop
|
|
19
|
+
}
|
|
20
|
+
exit $LASTEXITCODE
|
package/claude-any.cmd
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@echo off
|
|
2
|
+
setlocal
|
|
3
|
+
|
|
4
|
+
if defined CLAUDE_ANY_HOME (
|
|
5
|
+
set "CLAUDE_ANY_SCRIPT=%CLAUDE_ANY_HOME%\claude_any.py"
|
|
6
|
+
) else (
|
|
7
|
+
set "CLAUDE_ANY_SCRIPT=%USERPROFILE%\.local\share\claude-any\claude_any.py"
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
if defined CLAUDE_ANY_PYTHON (
|
|
11
|
+
"%CLAUDE_ANY_PYTHON%" "%CLAUDE_ANY_SCRIPT%" cli %*
|
|
12
|
+
exit /b %ERRORLEVEL%
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
py -3 "%CLAUDE_ANY_SCRIPT%" cli %*
|
|
16
|
+
if not %ERRORLEVEL%==9009 exit /b %ERRORLEVEL%
|
|
17
|
+
python "%CLAUDE_ANY_SCRIPT%" cli %*
|
|
18
|
+
exit /b %ERRORLEVEL%
|
package/claude-any.ps1
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
$ErrorActionPreference = "Stop"
|
|
2
|
+
|
|
3
|
+
if ($env:CLAUDE_ANY_HOME) {
|
|
4
|
+
$script = Join-Path $env:CLAUDE_ANY_HOME "claude_any.py"
|
|
5
|
+
} else {
|
|
6
|
+
$script = Join-Path $HOME ".local\share\claude-any\claude_any.py"
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
if ($env:CLAUDE_ANY_PYTHON) {
|
|
10
|
+
& $env:CLAUDE_ANY_PYTHON $script cli @args
|
|
11
|
+
exit $LASTEXITCODE
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
$py = Get-Command py -ErrorAction SilentlyContinue
|
|
15
|
+
if ($py) {
|
|
16
|
+
& $py.Source -3 $script cli @args
|
|
17
|
+
} else {
|
|
18
|
+
& python $script cli @args
|
|
19
|
+
}
|
|
20
|
+
exit $LASTEXITCODE
|
package/claude-anyctl
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@echo off
|
|
2
|
+
setlocal
|
|
3
|
+
|
|
4
|
+
if defined CLAUDE_ANY_HOME (
|
|
5
|
+
set "CLAUDE_ANY_SCRIPT=%CLAUDE_ANY_HOME%\claude_any.py"
|
|
6
|
+
) else (
|
|
7
|
+
set "CLAUDE_ANY_SCRIPT=%USERPROFILE%\.local\share\claude-any\claude_any.py"
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
if defined CLAUDE_ANY_PYTHON (
|
|
11
|
+
"%CLAUDE_ANY_PYTHON%" "%CLAUDE_ANY_SCRIPT%" %*
|
|
12
|
+
exit /b %ERRORLEVEL%
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
py -3 "%CLAUDE_ANY_SCRIPT%" %*
|
|
16
|
+
if not %ERRORLEVEL%==9009 exit /b %ERRORLEVEL%
|
|
17
|
+
python "%CLAUDE_ANY_SCRIPT%" %*
|
|
18
|
+
exit /b %ERRORLEVEL%
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
$ErrorActionPreference = "Stop"
|
|
2
|
+
|
|
3
|
+
if ($env:CLAUDE_ANY_HOME) {
|
|
4
|
+
$script = Join-Path $env:CLAUDE_ANY_HOME "claude_any.py"
|
|
5
|
+
} else {
|
|
6
|
+
$script = Join-Path $HOME ".local\share\claude-any\claude_any.py"
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
if ($env:CLAUDE_ANY_PYTHON) {
|
|
10
|
+
& $env:CLAUDE_ANY_PYTHON $script @args
|
|
11
|
+
exit $LASTEXITCODE
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
$py = Get-Command py -ErrorAction SilentlyContinue
|
|
15
|
+
if ($py) {
|
|
16
|
+
& $py.Source -3 $script @args
|
|
17
|
+
} else {
|
|
18
|
+
& python $script @args
|
|
19
|
+
}
|
|
20
|
+
exit $LASTEXITCODE
|