@oneciel-ai/claude-any 0.1.105 → 0.1.106
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 +31 -1
- package/claude_any.py +2575 -286
- package/docs/HANDOFF.md +16 -0
- package/docs/README.ja.md +1 -1
- package/docs/README.ko.md +14 -1
- package/docs/README.zh.md +1 -1
- package/docs/manual.md +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,20 @@
|
|
|
26
26
|
|
|
27
27
|
## Today's Top 3 Benefits
|
|
28
28
|
|
|
29
|
+
### 2026-06-05
|
|
30
|
+
|
|
31
|
+
1. **Windows-aware install paths** — Claude Any now uses `%APPDATA%\claude-any`
|
|
32
|
+
for its default config on Windows, installs helper/statusline scripts under
|
|
33
|
+
`%LOCALAPPDATA%\claude-any\bin`, and searches Windows npm shims such as
|
|
34
|
+
`%APPDATA%\npm` when launching `claude`.
|
|
35
|
+
2. **DeepSeek V4 thinking compatibility** — DeepSeek.com V4 requests keep tools
|
|
36
|
+
available but remove forced `tool_choice` before upstream calls and
|
|
37
|
+
compatibility tests, matching DeepSeek's official V4 thinking-mode agent
|
|
38
|
+
compatibility guidance.
|
|
39
|
+
3. **More reliable install diagnostics** — multiple-install checks now reuse the
|
|
40
|
+
same OS-aware executable search paths, so Windows and mixed npm-prefix
|
|
41
|
+
machines report the launcher that will actually run.
|
|
42
|
+
|
|
29
43
|
### 2026-06-03
|
|
30
44
|
|
|
31
45
|
1. **Router lifecycle isolation** — Claude Any now distinguishes routers it
|
|
@@ -97,7 +111,7 @@ passes normal Claude Code arguments through unchanged.
|
|
|
97
111
|
|
|
98
112
|
Credits: One Ciel LLC
|
|
99
113
|
|
|
100
|
-
Current version: `0.1.
|
|
114
|
+
Current version: `0.1.106`
|
|
101
115
|
|
|
102
116
|
## Why This Exists
|
|
103
117
|
|
|
@@ -591,6 +605,22 @@ steps under that larger model's supervision.
|
|
|
591
605
|
|
|
592
606
|
## Changelog
|
|
593
607
|
|
|
608
|
+
### 0.1.106
|
|
609
|
+
|
|
610
|
+
- **MCP notification wait guard**: routed streams now cap MCP
|
|
611
|
+
`wait_for_notifications` / `wait_for_response`-style tool calls in every
|
|
612
|
+
provider conversion path, including Anthropic-compatible SSE passthrough.
|
|
613
|
+
Empty wait-tool inputs also receive a short timeout. This prevents long
|
|
614
|
+
polling tool calls from occupying Claude Code while mailbox/SSE notifications
|
|
615
|
+
pile up behind them.
|
|
616
|
+
- **Mailbox delivery hardening**: chat mailbox writes now rescan the persisted
|
|
617
|
+
JSONL tail under an inter-process file lock before assigning the next id, so
|
|
618
|
+
concurrent MCP writers cannot reuse the same local message id.
|
|
619
|
+
- **Stable notification de-duplication**: MCP notification observers now
|
|
620
|
+
de-duplicate repeated delivery of the same stable event id
|
|
621
|
+
(`stream_id`, `message_id`, `assignment_id`, `poll_id`, and similar generic
|
|
622
|
+
metadata) across multiple MCP writer names without hard-coding any product.
|
|
623
|
+
|
|
594
624
|
### 0.1.105
|
|
595
625
|
|
|
596
626
|
- **Router lifecycle isolation**: routed launches now track managed router
|