ur-agent 1.27.6 → 1.28.0
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/CHANGELOG.md +21 -0
- package/dist/cli.js +1862 -1686
- package/docs/providers.md +6 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.28.0
|
|
4
|
+
|
|
5
|
+
- Subscription CLI providers (Codex, Claude Code, Gemini, Antigravity) now
|
|
6
|
+
perform real dispatch: the official CLI is spawned in non-interactive mode with
|
|
7
|
+
the scoped model and prompt, and its stdout becomes the response. Non-zero exit
|
|
8
|
+
or empty output fails clearly instead of returning placeholder text.
|
|
9
|
+
- API providers now use each provider's native wire format: Anthropic
|
|
10
|
+
`x-api-key` + `anthropic-version` on `/v1/messages`, OpenAI `Authorization:
|
|
11
|
+
Bearer` on `/v1/chat/completions`, Gemini `x-goog-api-key` on
|
|
12
|
+
`:generateContent`, routed by a new provider-family classifier.
|
|
13
|
+
- Real runtime provider identity: `getRuntimeProviderId`/`getProviderFamily`
|
|
14
|
+
expose the true selected provider; `getAPIProvider` is derived from it rather
|
|
15
|
+
than string-matching raw settings.
|
|
16
|
+
- Fix saved local/server (live-discovery) model pairs being rejected on a cold
|
|
17
|
+
process; the endpoint is treated as the source of truth before discovery runs.
|
|
18
|
+
Static (API/subscription) pairs remain strictly validated.
|
|
19
|
+
- Add behavior-proving tests that exercise the real clients (CLI runner, mocked
|
|
20
|
+
HTTP) and assert wire format, response content, identity, and cold-cache
|
|
21
|
+
restart — not just provider-id routing. Centralize the Ollama default and
|
|
22
|
+
remove dead code.
|
|
23
|
+
|
|
3
24
|
## 1.27.6
|
|
4
25
|
|
|
5
26
|
- Route runtime requests through the selected provider/model pair instead of
|