@oneciel-ai/claude-any 0.1.31 → 0.1.33
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 -11
- package/claude-any-adv.png +0 -0
- package/claude_any.py +2 -2
- package/docs/README.ja.md +28 -11
- package/docs/README.ko.md +28 -11
- package/docs/README.zh.md +27 -11
- package/docs/manual.md +10 -6
- package/logo-small.png +0 -0
- package/logo.png +0 -0
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
# Claude Any
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# Claude Any
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="logo.png" alt="Claude Any logo" width="360">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+

|
|
4
8
|
|
|
5
9
|
| English | [한국어](docs/README.ko.md) | [日本語](docs/README.ja.md) | [中文](docs/README.zh.md) |
|
|
6
10
|
| --- | --- | --- | --- |
|
|
@@ -44,7 +48,7 @@ arguments through unchanged.
|
|
|
44
48
|
|
|
45
49
|
Credits: One Ciel LLC
|
|
46
50
|
|
|
47
|
-
Current version: `0.1.
|
|
51
|
+
Current version: `0.1.33`
|
|
48
52
|
|
|
49
53
|
## Why This Exists
|
|
50
54
|
|
|
@@ -334,16 +338,29 @@ steps under that larger model's supervision.
|
|
|
334
338
|
|
|
335
339
|
## Changelog
|
|
336
340
|
|
|
337
|
-
### 0.1.
|
|
341
|
+
### 0.1.33
|
|
338
342
|
|
|
339
|
-
- **
|
|
340
|
-
|
|
341
|
-
- **
|
|
342
|
-
|
|
343
|
+
- **Logo branding in every README**: add the Claude Any logo at the top of the
|
|
344
|
+
English, Korean, Japanese, and Chinese README files.
|
|
345
|
+
- **npm image assets included**: package `logo.png`, `logo-small.png`, and
|
|
346
|
+
`claude-any-adv.png` so the npm README renders the same branding as GitHub.
|
|
347
|
+
|
|
348
|
+
### 0.1.32
|
|
343
349
|
|
|
344
|
-
|
|
350
|
+
- **NVIDIA preset menu fix**: LLM presets no longer try to apply the unsupported
|
|
351
|
+
`native` option for NVIDIA hosted, so selecting Long context / Large output
|
|
352
|
+
presets stays inside the menu instead of exiting.
|
|
345
353
|
|
|
346
|
-
|
|
354
|
+
### 0.1.31
|
|
355
|
+
|
|
356
|
+
- **5-minute default upstream timeout**: existing saved 10/30-minute defaults
|
|
357
|
+
are migrated to 300000 ms so gateway stalls fail faster.
|
|
358
|
+
- **Localized gateway retries**: 502/503/504 and socket timeout responses are
|
|
359
|
+
retried automatically, with retry progress shown in the selected UI language.
|
|
360
|
+
|
|
361
|
+
### 0.1.30
|
|
362
|
+
|
|
363
|
+
- **Headless launch docs moved up**: README now shows copy-ready examples for
|
|
347
364
|
launching Claude Code directly with `--ca-provider`, `--ca-model`, `-p`, and
|
|
348
365
|
`CLAUDE_ANY_SKIP_MENU=1` immediately after install.
|
|
349
366
|
- **NVIDIA hosted wording cleanup**: provider and lifecycle docs now describe
|
|
Binary file
|
package/claude_any.py
CHANGED
|
@@ -84,7 +84,7 @@ PROVIDER_LABELS = {
|
|
|
84
84
|
"self-hosted-nim": "Self Hosted NIM",
|
|
85
85
|
}
|
|
86
86
|
APP_NAME = "Claude Any"
|
|
87
|
-
VERSION = "0.1.
|
|
87
|
+
VERSION = "0.1.33"
|
|
88
88
|
CREDITS = "Credits: One Ciel LLC"
|
|
89
89
|
|
|
90
90
|
LOG_LEVELS = {"SILENT": 0, "ERROR": 1, "WARN": 2, "INFO": 3, "DEBUG": 4, "TRACE": 5}
|
|
@@ -5725,7 +5725,7 @@ def apply_llm_preset_to_provider(provider: str, pcfg: dict[str, Any], preset_id:
|
|
|
5725
5725
|
],
|
|
5726
5726
|
}
|
|
5727
5727
|
for token in tokens_by_preset[preset_id]:
|
|
5728
|
-
if provider == "nvidia-hosted" and token.startswith(("context_window=", "reserve=")):
|
|
5728
|
+
if provider == "nvidia-hosted" and token.startswith(("context_window=", "reserve=", "native=")):
|
|
5729
5729
|
continue
|
|
5730
5730
|
apply_provider_option(provider, pcfg, token)
|
|
5731
5731
|
if server_limit:
|
package/docs/README.ja.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
# Claude Any
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# Claude Any
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="../logo.png" alt="Claude Any ロゴ" width="360">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+

|
|
4
8
|
|
|
5
9
|
| [English](../README.md) | [한국어](README.ko.md) | 日本語 | [中文](README.zh.md) |
|
|
6
10
|
| --- | --- | --- | --- |
|
|
@@ -43,7 +47,7 @@ vLLM、NVIDIA hosted、self-hosted NIM を選択し、通常の Claude Code 引
|
|
|
43
47
|
|
|
44
48
|
Credits: One Ciel LLC
|
|
45
49
|
|
|
46
|
-
現在のバージョン: `0.1.
|
|
50
|
+
現在のバージョン: `0.1.33`
|
|
47
51
|
|
|
48
52
|
## 作られた理由
|
|
49
53
|
|
|
@@ -307,16 +311,29 @@ Windows/Linux 管理、クリーンアップスクリプト、定期的なセキ
|
|
|
307
311
|
|
|
308
312
|
## 変更履歴
|
|
309
313
|
|
|
310
|
-
### 0.1.
|
|
314
|
+
### 0.1.33
|
|
311
315
|
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
-
|
|
315
|
-
|
|
316
|
+
- **すべての README の先頭にロゴを追加**: 英語、韓国語、日本語、中国語 README
|
|
317
|
+
の先頭に Claude Any ロゴを配置しました。
|
|
318
|
+
- **npm に画像アセットを同梱**: npm README でも GitHub と同じブランディングが
|
|
319
|
+
表示されるよう、`logo.png`、`logo-small.png`、`claude-any-adv.png` をパッケージに含めました。
|
|
320
|
+
|
|
321
|
+
### 0.1.32
|
|
316
322
|
|
|
317
|
-
|
|
323
|
+
- **NVIDIA preset メニュー修正**: NVIDIA hosted で未対応の `native` option を
|
|
324
|
+
LLM preset 適用時に触らないようにしました。Long context / Large output
|
|
325
|
+
preset を選択してもメニューが終了しません。
|
|
318
326
|
|
|
319
|
-
|
|
327
|
+
### 0.1.31
|
|
328
|
+
|
|
329
|
+
- **既定 upstream timeout を 5 分へ変更**: 保存済み設定の 10/30 分既定
|
|
330
|
+
timeout を 300000 ms に移行し、gateway stall を早く検出します。
|
|
331
|
+
- **言語別 gateway retry 表示**: 502/503/504 と socket timeout を自動再試行し、
|
|
332
|
+
選択中の UI 言語で retry 進行状況をチャットに表示します。
|
|
333
|
+
|
|
334
|
+
### 0.1.30
|
|
335
|
+
|
|
336
|
+
- **Headless 起動ドキュメントを上部へ移動**: インストール直後の README で
|
|
320
337
|
`--ca-provider`、`--ca-model`、`-p`、`CLAUDE_ANY_SKIP_MENU=1` を使って
|
|
321
338
|
Claude Code を直接起動する copy-ready な例を確認できます。
|
|
322
339
|
- **NVIDIA hosted の文言整理**: provider/lifecycle ドキュメントで NVIDIA
|
package/docs/README.ko.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
# Claude Any
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# Claude Any
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="../logo.png" alt="Claude Any 로고" width="360">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+

|
|
4
8
|
|
|
5
9
|
| [English](../README.md) | 한국어 | [日本語](README.ja.md) | [中文](README.zh.md) |
|
|
6
10
|
| --- | --- | --- | --- |
|
|
@@ -43,7 +47,7 @@ NVIDIA hosted, self-hosted NIM을 선택하고, Claude Code의 일반 인자는
|
|
|
43
47
|
|
|
44
48
|
Credits: One Ciel LLC
|
|
45
49
|
|
|
46
|
-
현재 버전: `0.1.
|
|
50
|
+
현재 버전: `0.1.33`
|
|
47
51
|
|
|
48
52
|
## 왜 만들었나
|
|
49
53
|
|
|
@@ -307,16 +311,29 @@ Windows 이벤트 로그 리뷰, 바이러스/랜섬웨어 침입 시도 정리,
|
|
|
307
311
|
|
|
308
312
|
## 변경 이력
|
|
309
313
|
|
|
310
|
-
### 0.1.
|
|
314
|
+
### 0.1.33
|
|
311
315
|
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
-
|
|
315
|
-
|
|
316
|
+
- **모든 README 상단 로고 브랜딩**: 영어, 한국어, 일본어, 중국어 README 최상단에
|
|
317
|
+
Claude Any 로고를 추가했습니다.
|
|
318
|
+
- **npm 이미지 자산 포함**: npm README에서도 GitHub와 같은 브랜딩이 보이도록
|
|
319
|
+
`logo.png`, `logo-small.png`, `claude-any-adv.png`를 패키지에 포함했습니다.
|
|
320
|
+
|
|
321
|
+
### 0.1.32
|
|
316
322
|
|
|
317
|
-
|
|
323
|
+
- **NVIDIA preset 메뉴 수정**: NVIDIA hosted에서 지원하지 않는 `native` 옵션을
|
|
324
|
+
LLM preset 적용 중 더 이상 건드리지 않으므로, Long context / Large output
|
|
325
|
+
preset 선택 시 메뉴가 종료되지 않습니다.
|
|
318
326
|
|
|
319
|
-
|
|
327
|
+
### 0.1.31
|
|
328
|
+
|
|
329
|
+
- **기본 upstream timeout 5분**: 기존 저장 설정의 10/30분 기본 timeout을
|
|
330
|
+
300000 ms로 마이그레이션하여 gateway stall을 더 빨리 감지합니다.
|
|
331
|
+
- **언어별 gateway 재시도 표시**: 502/503/504 및 socket timeout 응답을 자동
|
|
332
|
+
재시도하고, 선택된 UI 언어로 재시도 진행 상황을 채팅에 표시합니다.
|
|
333
|
+
|
|
334
|
+
### 0.1.30
|
|
335
|
+
|
|
336
|
+
- **Headless 실행 문서 상단 배치**: 설치 직후 README에서 `--ca-provider`,
|
|
320
337
|
`--ca-model`, `-p`, `CLAUDE_ANY_SKIP_MENU=1`로 Claude Code를 바로 실행하는
|
|
321
338
|
복사용 예제를 볼 수 있습니다.
|
|
322
339
|
- **NVIDIA hosted 문구 정리**: provider/lifecycle 문서가 NVIDIA hosted를 별도
|
package/docs/README.zh.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
# Claude Any
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# Claude Any
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="../logo.png" alt="Claude Any 标志" width="360">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+

|
|
4
8
|
|
|
5
9
|
| [English](../README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | 中文 |
|
|
6
10
|
| --- | --- | --- | --- |
|
|
@@ -43,7 +47,7 @@ NIM,并把普通 Claude Code 参数原样传递。
|
|
|
43
47
|
|
|
44
48
|
Credits: One Ciel LLC
|
|
45
49
|
|
|
46
|
-
当前版本: `0.1.
|
|
50
|
+
当前版本: `0.1.33`
|
|
47
51
|
|
|
48
52
|
## 为什么存在
|
|
49
53
|
|
|
@@ -293,16 +297,28 @@ Hermes 格式模型或部分较旧的 Qwen tool template。
|
|
|
293
297
|
|
|
294
298
|
## 更新日志
|
|
295
299
|
|
|
296
|
-
### 0.1.
|
|
300
|
+
### 0.1.33
|
|
297
301
|
|
|
298
|
-
-
|
|
299
|
-
|
|
300
|
-
-
|
|
301
|
-
|
|
302
|
+
- **所有 README 顶部加入 Logo 品牌展示**:在英文、韩文、日文和中文 README
|
|
303
|
+
顶部添加 Claude Any Logo。
|
|
304
|
+
- **npm 包包含图片资源**:将 `logo.png`、`logo-small.png` 和
|
|
305
|
+
`claude-any-adv.png` 打进包内,让 npm README 与 GitHub 显示一致的品牌图片。
|
|
306
|
+
|
|
307
|
+
### 0.1.32
|
|
302
308
|
|
|
303
|
-
|
|
309
|
+
- **NVIDIA preset 菜单修复**:在 NVIDIA hosted 上应用 LLM preset 时不再触碰
|
|
310
|
+
不支持的 `native` 选项,因此选择 Long context / Large output preset 不会退出菜单。
|
|
304
311
|
|
|
305
|
-
|
|
312
|
+
### 0.1.31
|
|
313
|
+
|
|
314
|
+
- **默认 upstream timeout 改为 5 分钟**:已保存配置中的 10/30 分钟默认
|
|
315
|
+
timeout 会迁移到 300000 ms,更快发现 gateway stall。
|
|
316
|
+
- **按语言显示 gateway 重试**:502/503/504 和 socket timeout 会自动重试,并用
|
|
317
|
+
当前 UI 语言在聊天中显示重试进度。
|
|
318
|
+
|
|
319
|
+
### 0.1.30
|
|
320
|
+
|
|
321
|
+
- **Headless 启动文档前置**:README 在安装后立即给出可复制示例,展示如何用
|
|
306
322
|
`--ca-provider`、`--ca-model`、`-p`、`CLAUDE_ANY_SKIP_MENU=1` 直接启动
|
|
307
323
|
Claude Code。
|
|
308
324
|
- **NVIDIA hosted 文案清理**:provider/lifecycle 文档现在说明 NVIDIA hosted
|
package/docs/manual.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
# Claude Any Manual
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
# Claude Any Manual
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="../logo-small.png" alt="Claude Any logo" width="220">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
Claude Any is a pre-launch configuration layer for Claude Code. It lets you
|
|
8
|
+
choose a provider, model, base URL, API key, and provider options before Claude
|
|
9
|
+
Code starts, while passing normal Claude Code arguments through unchanged.
|
|
6
10
|
|
|
7
11
|
Credits: One Ciel LLC
|
|
8
12
|
|
|
9
|
-
Current version: `0.1.
|
|
13
|
+
Current version: `0.1.33`
|
|
10
14
|
|
|
11
15
|
## Install
|
|
12
16
|
|
package/logo-small.png
ADDED
|
Binary file
|
package/logo.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oneciel-ai/claude-any",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.33",
|
|
4
4
|
"description": "Claude Code provider selector for Anthropic, Ollama, Ollama Cloud, vLLM, NVIDIA hosted, and self-hosted NIM.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "One Ciel LLC",
|
|
@@ -24,9 +24,12 @@
|
|
|
24
24
|
"claude-any-tool-guard.py",
|
|
25
25
|
"npm-bin/",
|
|
26
26
|
"install.sh",
|
|
27
|
-
"install.ps1",
|
|
28
|
-
"README.md",
|
|
29
|
-
"
|
|
27
|
+
"install.ps1",
|
|
28
|
+
"README.md",
|
|
29
|
+
"logo.png",
|
|
30
|
+
"logo-small.png",
|
|
31
|
+
"claude-any-adv.png",
|
|
32
|
+
"LICENSE",
|
|
30
33
|
"NOTICE",
|
|
31
34
|
"docs/"
|
|
32
35
|
],
|