@oneciel-ai/claude-any 0.1.24 → 0.1.25
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 +86 -38
- package/claude_any.py +521 -13
- package/docs/README.ja.md +71 -38
- package/docs/README.ko.md +71 -38
- package/docs/README.zh.md +70 -37
- package/docs/manual.md +107 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
| English | [한국어](docs/README.ko.md) | [日本語](docs/README.ja.md) | [中文](docs/README.zh.md) |
|
|
4
4
|
| --- | --- | --- | --- |
|
|
5
5
|
|
|
6
|
+
[](https://www.npmjs.com/package/@oneciel-ai/claude-any)
|
|
7
|
+
[](https://www.npmjs.com/package/@oneciel-ai/claude-any)
|
|
8
|
+
[](LICENSE)
|
|
9
|
+
|
|
6
10
|
> ## 🚀 Use the full Claude Code experience with free or low-cost LLMs
|
|
7
11
|
>
|
|
8
12
|
> - **Free** — [NVIDIA hosted NIM](https://build.nvidia.com/) (qwen3-coder-480b, gpt-oss, and friends) through the API Catalog.
|
|
@@ -30,7 +34,7 @@ arguments through unchanged.
|
|
|
30
34
|
|
|
31
35
|
Credits: One Ciel LLC
|
|
32
36
|
|
|
33
|
-
Current version: `0.1.
|
|
37
|
+
Current version: `0.1.25`
|
|
34
38
|
|
|
35
39
|
## Why This Exists
|
|
36
40
|
|
|
@@ -59,74 +63,78 @@ portable Python and shell wrappers. If you hit a macOS issue, please report it.
|
|
|
59
63
|
|
|
60
64
|
## Install
|
|
61
65
|
|
|
66
|
+
[](https://www.npmjs.com/package/@oneciel-ai/claude-any)
|
|
67
|
+
[](https://www.npmjs.com/package/@oneciel-ai/claude-any)
|
|
68
|
+
|
|
62
69
|
Requirements:
|
|
63
70
|
|
|
64
71
|
- Python 3.10+
|
|
65
72
|
- Claude Code installed and available as `claude`
|
|
66
|
-
- Node/npm
|
|
73
|
+
- Node/npm (used for the install shim and optional MCP web tooling)
|
|
67
74
|
|
|
68
|
-
|
|
75
|
+
**Install from the npm registry (recommended):**
|
|
69
76
|
|
|
70
77
|
```sh
|
|
71
|
-
npm install -g
|
|
78
|
+
npm install -g @oneciel-ai/claude-any
|
|
72
79
|
claude-any
|
|
73
80
|
```
|
|
74
81
|
|
|
75
|
-
|
|
82
|
+
**Upgrade:**
|
|
76
83
|
|
|
77
84
|
```sh
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
./install.sh
|
|
81
|
-
claude-any
|
|
85
|
+
npm update -g @oneciel-ai/claude-any
|
|
86
|
+
claude-any version
|
|
82
87
|
```
|
|
83
88
|
|
|
84
|
-
|
|
89
|
+
**Uninstall:**
|
|
85
90
|
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
cd claude-any
|
|
89
|
-
.\install.ps1
|
|
90
|
-
claude-any
|
|
91
|
+
```sh
|
|
92
|
+
npm uninstall -g @oneciel-ai/claude-any
|
|
91
93
|
```
|
|
92
94
|
|
|
93
|
-
|
|
95
|
+
### Alternative install paths
|
|
96
|
+
|
|
97
|
+
Install directly from the GitHub repository (useful for testing unreleased
|
|
98
|
+
commits between npm publishes):
|
|
94
99
|
|
|
95
100
|
```sh
|
|
96
|
-
npm install -g
|
|
101
|
+
npm install -g https://github.com/OneCielAI/claude-any.git
|
|
97
102
|
claude-any
|
|
98
103
|
```
|
|
99
104
|
|
|
100
|
-
|
|
105
|
+
POSIX source install:
|
|
101
106
|
|
|
102
107
|
```sh
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
108
|
+
git clone https://github.com/OneCielAI/claude-any.git
|
|
109
|
+
cd claude-any
|
|
110
|
+
./install.sh
|
|
111
|
+
claude-any
|
|
106
112
|
```
|
|
107
113
|
|
|
108
|
-
|
|
109
|
-
published to the public npm registry under the same package name:
|
|
114
|
+
Windows PowerShell source install:
|
|
110
115
|
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
+
```powershell
|
|
117
|
+
git clone https://github.com/OneCielAI/claude-any.git
|
|
118
|
+
cd claude-any
|
|
119
|
+
.\install.ps1
|
|
120
|
+
claude-any
|
|
116
121
|
```
|
|
117
122
|
|
|
118
|
-
|
|
119
|
-
repository secret `NPM_TOKEN`, then publish a GitHub Release or run the
|
|
120
|
-
`Publish to npm` workflow manually.
|
|
123
|
+
### Releasing (maintainers)
|
|
121
124
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
125
|
+
The npm registry version is published automatically by the
|
|
126
|
+
[`Publish to npm`](.github/workflows/npm-publish.yml) workflow when a new
|
|
127
|
+
GitHub Release is published. The workflow needs an `NPM_TOKEN` repository
|
|
128
|
+
secret containing a granular access token for `@oneciel-ai/claude-any` with
|
|
129
|
+
*Bypass 2FA for publishing* enabled.
|
|
126
130
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
131
|
+
Release flow:
|
|
132
|
+
|
|
133
|
+
1. Bump `version` in `package.json` and `VERSION` in `claude_any.py`.
|
|
134
|
+
2. Add a Changelog entry.
|
|
135
|
+
3. `git tag -a vX.Y.Z -m "..." && git push origin vX.Y.Z`.
|
|
136
|
+
4. `gh release create vX.Y.Z --title "..." --notes "..."` — this triggers
|
|
137
|
+
the publish workflow.
|
|
130
138
|
|
|
131
139
|
|
|
132
140
|

|
|
@@ -235,9 +243,26 @@ steps under that larger model's supervision.
|
|
|
235
243
|
`Cannot create agent worktree: not in a git repository...`.
|
|
236
244
|
- Config file caching — settings are read from disk once and reused until the
|
|
237
245
|
file changes, reducing per-request overhead in the router.
|
|
246
|
+
- Router control-plane endpoints for headless agent coordination:
|
|
247
|
+
`/ca/chat/messages`, `/ca/chat/wait`, `/ca/chat/stream`, `/ca/chat/files`,
|
|
248
|
+
and `/ca/plan/artifacts`.
|
|
238
249
|
|
|
239
250
|
## Changelog
|
|
240
251
|
|
|
252
|
+
### 0.1.25
|
|
253
|
+
|
|
254
|
+
- **Plan-mode guard + diagnostics**: non-Anthropic providers now strip Claude
|
|
255
|
+
Code self-tools such as `EnterPlanMode` before forwarding requests upstream.
|
|
256
|
+
Set `~/.config/claude-any/log-level` to `TRACE` to capture redacted request
|
|
257
|
+
and response summaries in `requests.jsonl` / `responses.jsonl`.
|
|
258
|
+
- **Headless agent chat service**: the router exposes a small HTTP control
|
|
259
|
+
plane for sub coding agents. Agents can post messages, poll updates after
|
|
260
|
+
the last seen message id, or wait on an SSE stream when they do not have
|
|
261
|
+
their own loop.
|
|
262
|
+
- **Plan artifact serving**: agents can create plan files through the router
|
|
263
|
+
and share stable local URLs, matching Claude Code's file/artifact-oriented
|
|
264
|
+
Plan-mode workflow without copying Anthropic's internal implementation.
|
|
265
|
+
|
|
241
266
|
### 0.1.24
|
|
242
267
|
|
|
243
268
|
- **First public npm release** under the correct scope: `@oneciel-ai/claude-any`. Earlier 0.1.x versions were never published to the registry; this is the version that is actually installable via `npm install -g @oneciel-ai/claude-any`.
|
|
@@ -414,6 +439,29 @@ claude-any --ca-no-update-check -p "Reply with OK only." --output-format text
|
|
|
414
439
|
|
|
415
440
|
All other arguments are passed through to Claude Code.
|
|
416
441
|
|
|
442
|
+
## Headless Agent Chat
|
|
443
|
+
|
|
444
|
+
When the claude-any router is running, sub agents can coordinate through local
|
|
445
|
+
HTTP endpoints without opening the menu:
|
|
446
|
+
|
|
447
|
+
```sh
|
|
448
|
+
# Send a message to a channel.
|
|
449
|
+
curl -s http://127.0.0.1:8799/ca/chat/messages \
|
|
450
|
+
-H 'content-type: application/json' \
|
|
451
|
+
-d '{"channel":"agents","sender_id":"codex","recipients":["kimi"],"message":"Need logs after id 42"}'
|
|
452
|
+
|
|
453
|
+
# Poll updates after the last message id.
|
|
454
|
+
curl -s 'http://127.0.0.1:8799/ca/chat/messages?channel=agents&recipient=kimi&after=42'
|
|
455
|
+
|
|
456
|
+
# Wait on a stream until messages arrive.
|
|
457
|
+
curl -N 'http://127.0.0.1:8799/ca/chat/stream?channel=agents&recipient=kimi&after=42&timeout=300'
|
|
458
|
+
|
|
459
|
+
# Publish a plan file and get a served URL.
|
|
460
|
+
curl -s http://127.0.0.1:8799/ca/plan/artifacts \
|
|
461
|
+
-H 'content-type: application/json' \
|
|
462
|
+
-d '{"title":"handoff","name":"handoff.md","content":"# Plan\n- step 1"}'
|
|
463
|
+
```
|
|
464
|
+
|
|
417
465
|
## Security
|
|
418
466
|
|
|
419
467
|
Do not commit runtime configuration or API keys. Claude Any stores local runtime
|