@oneciel-ai/claude-any 0.1.67 → 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 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.67`
65
+ Current version: `0.1.68`
60
66
 
61
67
  ## Why This Exists
62
68
 
@@ -393,6 +399,19 @@ 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
+
396
415
  ### 0.1.67
397
416
 
398
417
  - **Fast prelaunch navigation**: arrow-key redraws no longer call the router
package/claude-any ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env sh
2
+ set -eu
3
+
4
+ PYTHON_BIN="${CLAUDE_ANY_PYTHON:-python3}"
5
+ CLAUDE_ANY_DIR="${CLAUDE_ANY_HOME:-"$HOME/.local/share/claude-any"}"
6
+
7
+ exec "$PYTHON_BIN" "$CLAUDE_ANY_DIR/claude_any.py" cli "$@"
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env sh
2
+ set -eu
3
+
4
+ PYTHON_BIN="${CLAUDE_ANY_PYTHON:-python3}"
5
+ CLAUDE_ANY_DIR="${CLAUDE_ANY_HOME:-"$HOME/.local/share/claude-any"}"
6
+
7
+ exec "$PYTHON_BIN" "$CLAUDE_ANY_DIR/claude_any.py" cli stop
@@ -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,7 @@
1
+ #!/usr/bin/env sh
2
+ set -eu
3
+
4
+ PYTHON_BIN="${CLAUDE_ANY_PYTHON:-python3}"
5
+ CLAUDE_ANY_DIR="${CLAUDE_ANY_HOME:-"$HOME/.local/share/claude-any"}"
6
+
7
+ exec "$PYTHON_BIN" "$CLAUDE_ANY_DIR/claude_any.py" "$@"
@@ -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