ur-agent 1.85.1 → 1.85.2
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 +23 -0
- package/README.md +10 -1
- package/dist/cli.js +740 -234
- package/docs/AGENT_FEATURES.md +1 -1
- package/docs/TROUBLESHOOTING.md +10 -0
- package/docs/USAGE.md +8 -2
- package/docs/VALIDATION.md +1 -1
- package/docs/providers.md +7 -1
- package/documentation/app.js +1 -1
- package/documentation/index.html +2 -2
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +2 -2
package/docs/AGENT_FEATURES.md
CHANGED
|
@@ -350,7 +350,7 @@ automatically changes the active provider.
|
|
|
350
350
|
| Clean update checks | `ur upgrade`, `ur update`, `src/cli/update.ts` | Detects development/source checkouts and prints a short pull-or-install message instead of attempting self-mutation. npm-installed builds compare the local version with `ur-agent` on npm and print update, latest, registry failure, and malformed-response states without stale planning text. |
|
|
351
351
|
| Bundled IDE extension install | `extensions/vscode-ur-inline-diffs/`, `src/utils/ide.ts`, `ur ide diff` | Public VS Code install now packages the repo's bundled inline-diffs extension as a local VSIX instead of trying an unpublished marketplace ID. The extension remains local-only and reviews `.ur/ide/diffs` bundles from the current workspace. |
|
|
352
352
|
| Professional clarification dialogs | `AskUserQuestion`, `src/tools/AskUserQuestionTool/AskUserQuestionTool.tsx` | Mandatory for every question with concrete choices; plain text is reserved for genuinely open-ended answers. Prefers 2-8 focused options but preserves larger legitimate menus, infers labels from description-only objects, accepts prompt aliases, deduplicates equivalent labels, safely repairs single suggestions with a neutral rejection choice, and is loaded without ToolSearch preloading. |
|
|
353
|
-
| NVIDIA Agentic/Special providers | live Build-card generator, `nvidiaHostedModels.ts`, `NvidiaSpecial`, `/model
|
|
353
|
+
| NVIDIA Agentic/Special providers | live Build-card generator, `nvidiaHostedModels.ts`, `NvidiaSpecial`, `/model`, first-workspace setup | Audits 100 current Build cards and preserves every Free Endpoint card: 13 Agentic and 23 Special. Uses each card's exact HTTP/NVCF/gRPC route, method, function ID, request/response schema, input/output hints, Assets/async handling, and artifact decoding. Runtime errors never remove models; focused selection never replaces the ongoing agent, appears during setup, and directly owns the next non-command prompt without depending on that agent provider. |
|
|
354
354
|
| Documentation release sync | `README.md`, `docs/`, `documentation/`, `CHANGELOG.md` | Keeps the npm README, static documentation site, provider guide, usage guide, feature ledger, validation runbook, and release notes aligned with current release behavior. |
|
|
355
355
|
|
|
356
356
|
## v1.24.0 Additions
|
package/docs/TROUBLESHOOTING.md
CHANGED
|
@@ -211,6 +211,16 @@ from `OPENAI_API_KEY`. NVIDIA Agentic/Special use one key stored with
|
|
|
211
211
|
`ur connect nvidia-nim` or `ur connect nvidia-special`; Agentic keeps any
|
|
212
212
|
custom `base_url` scoped to that provider.
|
|
213
213
|
|
|
214
|
+
When NVIDIA Special is selected, plain prompts are sent directly to its exact
|
|
215
|
+
model-card endpoint. They must not produce Anthropic/Ollama connection or
|
|
216
|
+
provider-model errors. If a contract needs media, provide its required field,
|
|
217
|
+
for example:
|
|
218
|
+
|
|
219
|
+
```text
|
|
220
|
+
prompt: Turn this source into an 8mm-film scene.
|
|
221
|
+
video_path: /absolute/path/source.mp4
|
|
222
|
+
```
|
|
223
|
+
|
|
214
224
|
### Anthropic says `anthropic-workspace-id is required`
|
|
215
225
|
|
|
216
226
|
- Cause: the API key is identity-linked and can act across workspaces. Anthropic
|
package/docs/USAGE.md
CHANGED
|
@@ -300,12 +300,18 @@ hosted picker. NVIDIA's live `nemotron-3.5-lightning-30b-a3b` endpoint is
|
|
|
300
300
|
focused first as its documented fastest 30B agent model; Left/Right controls
|
|
301
301
|
that model's advertised on/off thinking switch.
|
|
302
302
|
NVIDIA Special appears as its own provider, with purpose and input/output hints
|
|
303
|
-
before selection
|
|
303
|
+
before selection, including during first-workspace setup. Setup returns to the
|
|
304
|
+
provider list after a Special selection so the session also has an ordinary
|
|
305
|
+
agent model. The current Build audit preserves all 23 focused Free
|
|
304
306
|
Endpoint cards. `NvidiaSpecial` describes or runs each card's exact inference
|
|
305
307
|
URL, HTTP/RPC method, function ID, and request/response schema using the shared
|
|
306
308
|
key. It supports HTTP, direct NVCF, async polling, NVIDIA Assets, and five
|
|
307
309
|
documented Maxine/Riva gRPC services. Selecting one leaves the ongoing agent
|
|
308
|
-
unchanged
|
|
310
|
+
unchanged and activates direct task mode: the next non-command prompt calls
|
|
311
|
+
NVIDIA without first calling that agent. Plain prompts supply `prompt`; use
|
|
312
|
+
newline inputs such as `video_path: /path/source.mp4` or exact JSON when the
|
|
313
|
+
selected contract requires media or specialized fields. Returned
|
|
314
|
+
media/binary/JSON defaults to `.ur/artifacts/nvidia/`.
|
|
309
315
|
Cards are never removed; an unpublished protocol remains visible and clearly
|
|
310
316
|
cannot be invoked until NVIDIA publishes its contract.
|
|
311
317
|
On the `/model` model screen, `K` adds or replaces a
|
package/docs/VALIDATION.md
CHANGED
package/docs/providers.md
CHANGED
|
@@ -738,7 +738,13 @@ documented Nemotron coding-agent models, UR includes NVIDIA's
|
|
|
738
738
|
and [NIM endpoint guide](https://docs.nvidia.com/nim/large-language-models/latest/tutorials.html).
|
|
739
739
|
|
|
740
740
|
NVIDIA Special is a separate focused-task provider. Selecting a row stores a
|
|
741
|
-
|
|
741
|
+
task-mode selection and keeps the current chat provider/model. The next
|
|
742
|
+
non-command prompt is dispatched directly to NVIDIA, so an unavailable or
|
|
743
|
+
misconfigured chat provider cannot intercept the task. Plain text maps to the
|
|
744
|
+
contract's `prompt`; newline convenience fields (`video_path`, `image_path`,
|
|
745
|
+
`audio_path`, `output_path`, and generation options) or exact JSON cover richer
|
|
746
|
+
contracts. NVIDIA Special is also visible during first-workspace setup; after a
|
|
747
|
+
task is chosen, setup returns to the ordinary provider/model picker. The generator
|
|
742
748
|
crawls all 100 current Build cards and preserves every card labelled Free
|
|
743
749
|
Endpoint: 36 total, split into 13 Agentic and 23 Special. Thirty-five publish a
|
|
744
750
|
complete executable contract; 22 are Special. The remaining VoiceChat card is
|
package/documentation/app.js
CHANGED
|
@@ -68,7 +68,7 @@ const featureGroups = [
|
|
|
68
68
|
{
|
|
69
69
|
title: 'Providers and auth',
|
|
70
70
|
tags: ['subscription', 'API', 'local', 'effort', 'status bar'],
|
|
71
|
-
text: 'UR-native API/local/OpenAI-compatible runtimes, provider-scoped endpoints, NVIDIA Agentic plus NVIDIA Special with all 36 current Build Free Endpoint cards and exact per-card HTTP/NVCF/gRPC inference contracts, provider-only Unsloth inference, optional compatible-gateway keys, capability-driven reasoning effort, responsive OpenRouter routing, first-class subscription CLI providers dispatched through official vendor CLIs, provider doctor checks, secure API-key connect, non-secret config, fallback hints, and provider-aware status-bar output.',
|
|
71
|
+
text: 'UR-native API/local/OpenAI-compatible runtimes, provider-scoped endpoints, NVIDIA Agentic plus directly dispatched NVIDIA Special task mode with all 36 current Build Free Endpoint cards and exact per-card HTTP/NVCF/gRPC inference contracts, provider-only Unsloth inference, optional compatible-gateway keys, capability-driven reasoning effort, responsive OpenRouter routing, first-class subscription CLI providers dispatched through official vendor CLIs, provider doctor checks, secure API-key connect, non-secret config, fallback hints, and provider-aware status-bar output.',
|
|
72
72
|
commands: ['ur provider list', 'ur provider status', 'ur provider doctor nvidia-nim', 'ur connect status', 'ur config set provider nvidia-nim', 'ur config set provider nvidia-special', 'ur config set provider openai-api', 'ur config set provider ollama', 'ur config set base_url llama.cpp http://localhost:9931/v1', '/model', '/effort ultra', '/thinking on'],
|
|
73
73
|
},
|
|
74
74
|
{
|
package/documentation/index.html
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<main id="content" class="content">
|
|
46
46
|
<header class="topbar">
|
|
47
47
|
<div>
|
|
48
|
-
<p class="eyebrow">Version 1.85.
|
|
48
|
+
<p class="eyebrow">Version 1.85.2</p>
|
|
49
49
|
<h1>UR-Nexus Documentation</h1>
|
|
50
50
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
51
51
|
</div>
|
|
@@ -198,7 +198,7 @@ ur config set provider nvidia-nim
|
|
|
198
198
|
ur config set provider nvidia-special
|
|
199
199
|
ur config set base_url nvidia-nim https://integrate.api.nvidia.com/v1
|
|
200
200
|
/model # K API key · E endpoint</code></pre>
|
|
201
|
-
<p>NVIDIA is split into NVIDIA Agentic for the ongoing tool loop and NVIDIA Special for focused inference; both share one stored <code>NVIDIA_API_KEY</code>. UR audits all 100 current Build cards and preserves every Free Endpoint card: 13 Agentic and 23 Special. Thirty-five publish executable contracts; the one unpublished protocol stays visible and labelled. Each row shows purpose, input, and output, and uses that card's exact HTTP, direct NVCF, or gRPC endpoint, method, function ID, and request/response schema. NVIDIA Assets, asynchronous polling, five native Maxine/Riva gRPC services, and media/binary/JSON artifact saving are built in. Account errors never remove models, and choosing a Special task never changes the ongoing agent. Nemotron 3.5 Lightning retains its documented on/off thinking field; unknown models inherit no fabricated effort. Generic OpenAI-compatible endpoints can store an optional dedicated key, while anonymous endpoints remain valid.</p>
|
|
201
|
+
<p>NVIDIA is split into NVIDIA Agentic for the ongoing tool loop and NVIDIA Special for focused inference; both share one stored <code>NVIDIA_API_KEY</code>. UR audits all 100 current Build cards and preserves every Free Endpoint card: 13 Agentic and 23 Special. Thirty-five publish executable contracts; the one unpublished protocol stays visible and labelled. Each row shows purpose, input, and output, and uses that card's exact HTTP, direct NVCF, or gRPC endpoint, method, function ID, and request/response schema. Selecting Special activates a visible task mode: the next plain prompt goes directly to NVIDIA without depending on the ongoing chat provider. Plain text supplies the prompt, while fields such as <code>video_path</code> and exact JSON cover specialized inputs. Special is also available during first-workspace setup before the ordinary agent model is chosen. NVIDIA Assets, asynchronous polling, five native Maxine/Riva gRPC services, and media/binary/JSON artifact saving are built in. Account errors never remove models, and choosing a Special task never changes the ongoing agent. Nemotron 3.5 Lightning retains its documented on/off thinking field; unknown models inherit no fabricated effort. Generic OpenAI-compatible endpoints can store an optional dedicated key, while anonymous endpoints remain valid.</p>
|
|
202
202
|
</article>
|
|
203
203
|
<article>
|
|
204
204
|
<h3>Portable shell deadlines</h3>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.85.
|
|
5
|
+
"version": "1.85.2",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ur-agent",
|
|
3
|
-
"version": "1.85.
|
|
3
|
+
"version": "1.85.2",
|
|
4
4
|
"description": "UR-Nexus — autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "bun@1.3.14",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"overrides": {
|
|
76
76
|
"@hono/node-server": "2.0.12",
|
|
77
77
|
"body-parser": "2.3.0",
|
|
78
|
-
"fast-uri": "3.1.
|
|
78
|
+
"fast-uri": "3.1.6",
|
|
79
79
|
"form-data": "4.0.6",
|
|
80
80
|
"hono": "4.13.0",
|
|
81
81
|
"ip-address": "10.4.0",
|