ur-agent 1.37.3 → 1.40.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/docs/ACP.md CHANGED
@@ -67,7 +67,7 @@ curl -s http://127.0.0.1:8123/acp \
67
67
 
68
68
  ```json
69
69
  { "jsonrpc": "2.0", "id": 1,
70
- "result": { "name": "ur-agent", "protocolVersion": "0.1.0",
70
+ "result": { "name": "UR", "protocolVersion": "0.1.0",
71
71
  "workspaceRoot": "/path/to/project",
72
72
  "capabilities": { "tools": true, "tasks": true, "sessions": true,
73
73
  "ide": true, "streaming": false, "cancellation": true } } }
@@ -215,7 +215,7 @@ and route model work through the local Ollama-backed UR runtime.
215
215
  | Recurring automations | `ur automation` and `.ur/automations/` | Project-local automation specs with validation, next-run calculation, manual run, due-run, dry-run, and last-run state |
216
216
  | Model capability report | `ur model-doctor` | Local Ollama model inventory with context length, advertised capabilities, and likely vision/code readiness |
217
217
  | Reusable agent templates | `ur agent-templates install` | Project agents for review, tests, browser QA, docs research, security, release notes, PR fixes, and memory curation |
218
- | GitHub agent runner | `.github/workflows/ur-agent.yml` scaffold | Opt-in CI entry point for manual prompts or `/ur` issue comments |
218
+ | GitHub agent runner | `.github/workflows/ur.yml` scaffold | Opt-in CI entry point for manual prompts or `/ur` issue comments |
219
219
  | A2A adapter handoff | `ur a2a serve` | Loopback Agent Card and token-gated task execution endpoint |
220
220
  | Semantic memory index | `ur semantic-memory build|search` | Local memory index over durable memory, docs, README, and UR instructions |
221
221
  | Claim provenance ledger | `ur claim-ledger add|list|validate` | Maps generated claims to web, file, MCP, tool, or user sources |
@@ -4,7 +4,7 @@ UR reads configuration from CLI flags, environment variables, and project or use
4
4
 
5
5
  ## Model Providers
6
6
 
7
- UR-AGENT supports official provider access paths only:
7
+ UR-Nexus supports official provider access paths only:
8
8
 
9
9
  - Explicit API providers: OpenAI, Anthropic, Gemini, OpenRouter, and
10
10
  OpenAI-compatible endpoints.
@@ -24,7 +24,7 @@ Bash/File tool execution, and sandbox guarantees apply to UR-run tools and
24
24
  final UR output, not to actions the external CLI performs internally. See
25
25
  [Provider Guide](providers.md) for the full provider capability matrix.
26
26
 
27
- UR-AGENT never scrapes browser sessions, extracts OAuth refresh tokens, reads
27
+ UR-Nexus never scrapes browser sessions, extracts OAuth refresh tokens, reads
28
28
  hidden provider auth files, bypasses provider restrictions, or proxies consumer
29
29
  web sessions as APIs.
30
30
 
@@ -151,6 +151,71 @@ The scan is limited to active local IPv4 interfaces, ignores loopback/link-local
151
151
  addresses, and uses bounded concurrency with short timeouts. It is opt-in and
152
152
  never runs automatically unless enabled.
153
153
 
154
+ ## Prompt Planning
155
+
156
+ UR-Nexus can plan an `ur exec` prompt into small executable tasks, show a task
157
+ board, run independent tasks through parallel logical workers, and verify task
158
+ claims after execution. The defaults are:
159
+
160
+ ```json
161
+ {
162
+ "taskPlanning": true,
163
+ "parallelAgents": true,
164
+ "maxAgents": 3,
165
+ "showTaskBoard": true,
166
+ "strictVerification": true
167
+ }
168
+ ```
169
+
170
+ `taskPlanning` enables prompt decomposition. `parallelAgents` allows independent
171
+ tasks to run concurrently up to `maxAgents`. `showTaskBoard` renders visible
172
+ progress during real execution and keeps the final board in the execution
173
+ report. `strictVerification` rejects unsupported claims about changed files,
174
+ commands, or generated output. With `--no-strict-verification`, unsupported
175
+ claims become warnings and the task may finish when no hard execution error was
176
+ observed.
177
+
178
+ Legacy nested configuration is still accepted under `urAgent`, while new
179
+ configuration can use the top-level keys above or a `nexus` object.
180
+
181
+ Per-run flags:
182
+
183
+ ```sh
184
+ ur exec "update docs and tests" --max-agents 3
185
+ ur exec "run exactly one direct prompt" --no-task-planning
186
+ ur exec "plan but run sequentially" --no-parallel-agents
187
+ ur exec "run without task board output" --no-task-board
188
+ ur exec "run quietly but keep the final board" --quiet
189
+ ur exec "warn instead of failing unsupported claims" --no-strict-verification
190
+ ```
191
+
192
+ The final `ur exec` report is generated from task execution evidence only:
193
+ finished, failed, and blocked task records, actual changed files from workspace
194
+ snapshots, unreported changed files, verified commands surfaced by the executor,
195
+ unverified command claims, verification failures, and warnings. Command tracking
196
+ cannot prove detached or provider-internal activity unless the task runner
197
+ surfaces those commands as observed evidence.
198
+
199
+ ## Project Safety Policy
200
+
201
+ The project safety policy lives at `.ur/safety-policy.json`. By default,
202
+ autonomous safe mode requires sandbox coverage for write, execute, and network
203
+ commands. Project owners who want to personally approve local network checks
204
+ instead of hard-requiring sandbox network isolation can remove `network` from
205
+ `sandboxRequiredFor`:
206
+
207
+ ```json
208
+ {
209
+ "version": 1,
210
+ "sandboxRequiredFor": ["write", "execute"]
211
+ }
212
+ ```
213
+
214
+ That setting makes commands such as `curl -s http://localhost:8000/ | head -20`
215
+ eligible for the normal permission flow instead of failing only because the
216
+ sandbox is unavailable. Secret-file and destructive-command rules still apply
217
+ unless explicitly changed by the project policy.
218
+
154
219
  ## CLI Flags
155
220
 
156
221
  Frequently used flags:
package/docs/IDE.md CHANGED
@@ -84,7 +84,7 @@ searchable command palette.
84
84
 
85
85
  Install it with `ur ide install` (offers the bundled VSIX) or from the
86
86
  packaged `.vsix`. The extension is bundled inside this repository and
87
- packaged as a local VSIX when installed from UR-AGENT; the public install
87
+ packaged as a local VSIX when installed from UR-Nexus; the public install
88
88
  path does not depend on an unpublished marketplace extension ID. Every
89
89
  feature below runs UR as a local subprocess and never talks to a model
90
90
  provider or network service directly.
@@ -34,7 +34,7 @@ ur --version
34
34
  source checkouts — executes the CLI through Bun (this repository pins
35
35
  `bun@1.3.14`). The npm-installed `bin/ur.js` launcher starts under Node
36
36
  only to detect Bun and re-exec into it; if Bun is missing or too old, the
37
- launcher prints `UR-AGENT requires Bun ... at runtime` and exits instead of
37
+ launcher prints `UR-Nexus requires Bun ... at runtime` and exits instead of
38
38
  falling back to Node.
39
39
  - Fix: install Bun, then rerun. Set `BUN_BIN` to an absolute Bun path if
40
40
  `bun` is installed but not on `PATH`.
package/docs/USAGE.md CHANGED
@@ -88,7 +88,7 @@ use `ollama.host` in settings if you want plain `ur` to default to a LAN host.
88
88
  Models exposed by the chosen Ollama app are valid, including local models and
89
89
  Ollama Cloud-backed models.
90
90
 
91
- UR-AGENT also has explicit provider commands for legal access paths:
91
+ UR-Nexus also has explicit provider commands for legal access paths:
92
92
 
93
93
  ```sh
94
94
  ur provider list
@@ -140,7 +140,7 @@ API modes are explicit. Keys are read from a key stored via
140
140
  `ur connect <provider>` (OS keychain) or from the environment variables
141
141
  `OPENAI_API_KEY`, `ANTHROPIC_API_KEY`, `GEMINI_API_KEY`, and
142
142
  `OPENROUTER_API_KEY`. Subscription CLIs are optional, never required
143
- dependencies, and never used as a silent fallback. UR-AGENT never scrapes
143
+ dependencies, and never used as a silent fallback. UR-Nexus never scrapes
144
144
  browser sessions, extracts OAuth tokens, or bypasses provider restrictions.
145
145
  OpenAI-compatible local or cloud endpoints use `base_url` plus `model`.
146
146
 
@@ -19,7 +19,7 @@ You need:
19
19
 
20
20
  ```sh
21
21
  ur --version
22
- # expected: the version from package.json, e.g. "1.35.1 (UR-AGENT)"
22
+ # expected: the version from package.json, e.g. "1.35.1 (UR-Nexus)"
23
23
  ```
24
24
 
25
25
  ## 0.1 Permission safety and context pack (1.19.0)
package/docs/plugins.md CHANGED
@@ -1,6 +1,6 @@
1
- # UR-AGENT plugins
1
+ # UR-Nexus plugins
2
2
 
3
- UR-AGENT plugins are trusted local extension bundles. They can contribute slash
3
+ UR-Nexus plugins are trusted local extension bundles. They can contribute slash
4
4
  commands, MCP servers, executable skills, templates, validators, language
5
5
  adapters, LSP servers, hooks, output styles, and agents.
6
6
 
@@ -8,7 +8,7 @@ adapters, LSP servers, hooks, output styles, and agents.
8
8
 
9
9
  ```text
10
10
  plugins/
11
- core/ # first-party plugins shipped with UR-AGENT
11
+ core/ # first-party plugins shipped with UR-Nexus
12
12
  community/ # contributed plugins staged for review
13
13
  examples/ # templates users can copy
14
14
  src/plugins/ # built-in plugin registration code
@@ -48,7 +48,7 @@ ur --plugin-dir ./plugins/community/my-plugin
48
48
  4. Set `capabilities` accurately so users know what the plugin enables.
49
49
  5. Run `bun test test/marketplaceTree.test.ts` before submitting.
50
50
 
51
- Plugins are loaded from local UR-AGENT paths first. Network marketplace installs
51
+ Plugins are loaded from local UR-Nexus paths first. Network marketplace installs
52
52
  remain explicit user actions and are subject to plugin policy checks.
53
53
 
54
54
  ## Manifest reference
package/docs/providers.md CHANGED
@@ -1,6 +1,6 @@
1
- # UR-AGENT providers
1
+ # UR-Nexus providers
2
2
 
3
- UR-AGENT integrates official model access paths only. API-key providers, local
3
+ UR-Nexus integrates official model access paths only. API-key providers, local
4
4
  runtimes, and OpenAI-compatible servers are UR-native backends: UR owns the
5
5
  conversation loop, native tool-call parsing, streaming, errors, and UR-run tool
6
6
  execution. Subscription CLI providers (Codex CLI, Claude Code, Gemini CLI,
@@ -11,7 +11,7 @@ silent fallback.
11
11
 
12
12
  ## Legal auth policy
13
13
 
14
- UR-AGENT never:
14
+ UR-Nexus never:
15
15
 
16
16
  - scrapes browser cookies or browser sessions
17
17
  - extracts, copies, or reuses OAuth refresh tokens
@@ -20,7 +20,7 @@ UR-AGENT never:
20
20
  - proxies a consumer web session as an API
21
21
  - claims provider support unless the official CLI/API path works
22
22
 
23
- UR-AGENT stores only safe config: provider name, model name, base URL, fallback
23
+ UR-Nexus stores only safe config: provider name, model name, base URL, fallback
24
24
  preference, and non-secret preferences. API keys are read from environment
25
25
  variables only when the user explicitly selects API mode.
26
26
 
@@ -108,7 +108,7 @@ ur config set provider.fallback ollama
108
108
 
109
109
  ## Provider-scoped model selection
110
110
 
111
- UR-AGENT shows providers first, then only models available for the selected provider. This prevents incompatible model/provider pairs and keeps API-key, local/server, subscription, and external app bridge model lists separate. The generic `subscription` entry has no models unless a real independent subscription runtime is configured; UR does not list fake subscription models.
111
+ UR-Nexus shows providers first, then only models available for the selected provider. This prevents incompatible model/provider pairs and keeps API-key, local/server, subscription, and external app bridge model lists separate. The generic `subscription` entry has no models unless a real independent subscription runtime is configured; UR does not list fake subscription models.
112
112
 
113
113
  ## Runtime provider routing
114
114
 
@@ -282,7 +282,7 @@ command instead of silently switching providers.
282
282
 
283
283
  ### Validation
284
284
 
285
- When you set a model that is incompatible with the current provider, UR-AGENT shows an error:
285
+ When you set a model that is incompatible with the current provider, UR-Nexus shows an error:
286
286
 
287
287
  ```
288
288
  Invalid model for current provider:
@@ -293,7 +293,7 @@ Invalid model for current provider:
293
293
  Error: Model "claude-sonnet-5" is not available for provider "openai-api".
294
294
  ```
295
295
 
296
- When you change providers, UR-AGENT warns if the current model is incompatible:
296
+ When you change providers, UR-Nexus warns if the current model is incompatible:
297
297
 
298
298
  ```
299
299
  Warning: Current model "gpt-5.5" is not available for provider "anthropic-api" and will be cleared.
@@ -377,7 +377,7 @@ CLIs, official login status where available, API key presence for API providers,
377
377
  local endpoint reachability, detectable model availability, unsupported account
378
378
  type signals, and fallback configuration.
379
379
 
380
- Fallback is never silent by default. If the selected provider fails, UR-AGENT
380
+ Fallback is never silent by default. If the selected provider fails, UR-Nexus
381
381
  reports the selected provider, failure reason, suggested fix, and configured
382
382
  fallback option.
383
383
 
@@ -389,11 +389,11 @@ fallback option.
389
389
  checks `claude auth status` when available. If `ANTHROPIC_API_KEY` is set,
390
390
  doctor warns that API-key mode may override subscription auth.
391
391
  - `gemini-cli`: launches only the official Gemini CLI flow. If the detected
392
- path is an unsupported personal-account path, UR-AGENT prints a clear error.
392
+ path is an unsupported personal-account path, UR-Nexus prints a clear error.
393
393
  - `antigravity-cli`: detects official CLI commands including `agy --version`,
394
394
  `antigravity --version`, `google-antigravity --version`, or `ag --version`
395
395
  where installed. It launches only an installed official CLI command where
396
- supported; UR-AGENT does not invent flags.
396
+ supported; UR-Nexus does not invent flags.
397
397
 
398
398
  ## API and local/server providers
399
399
 
@@ -1,6 +1,6 @@
1
- # UR-AGENT Documentation Site
1
+ # UR-Nexus Documentation Site
2
2
 
3
- This folder is a static documentation project for UR-AGENT.
3
+ This folder is a static documentation project for UR-Nexus.
4
4
 
5
5
  Open `index.html` directly in a browser. No build step or dev server is
6
6
  required.
@@ -72,7 +72,7 @@ const commands = [
72
72
  name: 'ur',
73
73
  category: 'Core',
74
74
  aliases: [],
75
- summary: 'Start an interactive UR-AGENT session in the current workspace.',
75
+ summary: 'Start an interactive UR-Nexus session in the current workspace.',
76
76
  examples: ['ur', 'ur --model qwen3-coder:480b-cloud', 'ur --continue', 'ur --resume'],
77
77
  },
78
78
  {
@@ -268,7 +268,7 @@ const commands = [
268
268
  name: 'update',
269
269
  category: 'Ops',
270
270
  aliases: ['upgrade'],
271
- summary: 'Check npm for UR-AGENT updates.',
271
+ summary: 'Check npm for UR-Nexus updates.',
272
272
  examples: ['ur update', 'ur upgrade'],
273
273
  },
274
274
  {
@@ -395,7 +395,7 @@ const commands = [
395
395
  category: 'Interop',
396
396
  aliases: ['embed'],
397
397
  summary: 'Show or scaffold examples for driving UR programmatically from TypeScript or Python.',
398
- examples: ['ur sdk', 'ur sdk init', 'ur sdk init --force', "import { query } from 'ur-agent/sdk'"],
398
+ examples: ['ur sdk', 'ur sdk init', 'ur sdk init --force', "import { query } from 'ur-nexus/sdk'"],
399
399
  },
400
400
  {
401
401
  name: 'safety',
@@ -436,7 +436,7 @@ const commands = [
436
436
  name: 'update',
437
437
  category: 'Ops',
438
438
  aliases: ['upgrade'],
439
- summary: 'Check npm for UR-AGENT updates. Interactive sessions also show an update-available notice when a newer package is published.',
439
+ summary: 'Check npm for UR-Nexus updates. Interactive sessions also show an update-available notice when a newer package is published.',
440
440
  examples: ['ur update', 'ur upgrade'],
441
441
  },
442
442
  {
@@ -713,7 +713,7 @@ const examples = [
713
713
  {
714
714
  title: 'SDK TypeScript',
715
715
  text: 'Drive UR from another Node program.',
716
- code: "import { query } from 'ur-agent/sdk'\n\nconst result = await query('Review the current git diff', { maxTurns: 6 })\nconsole.log(result.text)",
716
+ code: "import { query } from 'ur-nexus/sdk'\n\nconst result = await query('Review the current git diff', { maxTurns: 6 })\nconsole.log(result.text)",
717
717
  },
718
718
  {
719
719
  title: 'Eval suite',
@@ -1,5 +1,5 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" width="1120" height="560" viewBox="0 0 1120 560" role="img" aria-labelledby="title desc">
2
- <title id="title">UR-AGENT runtime architecture</title>
2
+ <title id="title">UR-Nexus runtime architecture</title>
3
3
  <desc id="desc">A diagram showing users, the UR CLI, project context, tools, agent orchestration, local Ollama models, and outputs.</desc>
4
4
  <defs>
5
5
  <linearGradient id="panel" x1="0" x2="1" y1="0" y2="1">
@@ -3,8 +3,8 @@
3
3
  <head>
4
4
  <meta charset="utf-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <title>UR-AGENT Documentation</title>
7
- <meta name="description" content="Professional documentation, tutorials, examples, and command reference for UR-AGENT.">
6
+ <title>UR-Nexus Documentation</title>
7
+ <meta name="description" content="Professional documentation, tutorials, examples, and command reference for UR-Nexus.">
8
8
  <link rel="stylesheet" href="styles.css">
9
9
  </head>
10
10
  <body>
@@ -14,7 +14,7 @@
14
14
  <div class="brand">
15
15
  <div class="brand-mark" aria-hidden="true">UR</div>
16
16
  <div>
17
- <strong>UR-AGENT</strong>
17
+ <strong>UR-Nexus</strong>
18
18
  <span>Documentation</span>
19
19
  </div>
20
20
  </div>
@@ -44,9 +44,9 @@
44
44
  <main id="content" class="content">
45
45
  <header class="topbar">
46
46
  <div>
47
- <p class="eyebrow">Version 1.37.3</p>
48
- <h1>UR-AGENT Documentation</h1>
49
- <p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-AGENT.</p>
47
+ <p class="eyebrow">Version 1.40.0</p>
48
+ <h1>UR-Nexus Documentation</h1>
49
+ <p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
50
50
  </div>
51
51
  <div class="topbar-actions">
52
52
  <a class="button" href="#quickstart">Start</a>
@@ -136,7 +136,7 @@ ur -p --output-format json "Review the current diff"</code></pre>
136
136
  <div class="section-heading">
137
137
  <p class="eyebrow">Legal Access Paths</p>
138
138
  <h2>Providers and authentication</h2>
139
- <p>UR-AGENT integrates official access paths only. It never scrapes browser sessions, extracts OAuth tokens, reads hidden provider auth files, bypasses provider restrictions, or proxies credentials.</p>
139
+ <p>UR-Nexus integrates official access paths only. It never scrapes browser sessions, extracts OAuth tokens, reads hidden provider auth files, bypasses provider restrictions, or proxies credentials.</p>
140
140
  </div>
141
141
  <div class="reference-grid">
142
142
  <article>
@@ -172,7 +172,7 @@ ur config set provider.fallback ollama</code></pre>
172
172
  <p>The CLI is the control plane. Project context and <code>.ur</code> assets feed agent orchestration, which uses approved provider adapters, local-first model runtimes, and approved tools to produce auditable results.</p>
173
173
  </div>
174
174
  <figure class="diagram">
175
- <img src="assets/ur-architecture.svg" alt="UR-AGENT runtime architecture diagram">
175
+ <img src="assets/ur-architecture.svg" alt="UR-Nexus runtime architecture diagram">
176
176
  </figure>
177
177
  </section>
178
178
 
@@ -5,7 +5,7 @@ inline diff review, an actions panel, an agent status card, a searchable
5
5
  command palette, a provider/model picker, and an agent options panel — all
6
6
  backed by the `ur` CLI already on your machine.
7
7
 
8
- UR-AGENT packages this extension from the repository as a local VSIX when the
8
+ UR-Nexus packages this extension from the repository as a local VSIX when the
9
9
  CLI installs the public IDE integration. It does not depend on an unpublished
10
10
  marketplace extension ID.
11
11
 
@@ -2212,7 +2212,7 @@ function renderOptionsHtml(options) {
2212
2212
  </style>
2213
2213
  </head>
2214
2214
  <body>
2215
- <h1>UR Agent Options</h1>
2215
+ <h1>UR-Nexus Options</h1>
2216
2216
  <p class="disclaimer">Based on local, curated data and the UR CLI's own provider registry only. This is not live market research and does not rank model quality.</p>
2217
2217
  <h2>Providers</h2>
2218
2218
  ${renderProviderTable(options)}
@@ -2248,7 +2248,7 @@ var AgentOptionsPanel = class _AgentOptionsPanel {
2248
2248
  _AgentOptionsPanel.current.panel.reveal(vscode12.ViewColumn.Active);
2249
2249
  return _AgentOptionsPanel.current;
2250
2250
  }
2251
- const panel = vscode12.window.createWebviewPanel("urAgentOptions", "UR Agent Options", vscode12.ViewColumn.Active, {
2251
+ const panel = vscode12.window.createWebviewPanel("urAgentOptions", "UR-Nexus Options", vscode12.ViewColumn.Active, {
2252
2252
  enableScripts: true
2253
2253
  });
2254
2254
  const instance = new _AgentOptionsPanel(panel, onRefresh);
@@ -2494,7 +2494,7 @@ function renderStatusHtml(status) {
2494
2494
  </style>
2495
2495
  </head>
2496
2496
  <body>
2497
- <h1>UR Agent Status</h1>
2497
+ <h1>UR-Nexus Status</h1>
2498
2498
  ${row("UR version", status.urVersion)}
2499
2499
  ${row("Workspace root", status.workspaceRoot)}
2500
2500
  ${row("Provider", status.provider.label)}
@@ -2545,7 +2545,7 @@ var StatusPanel = class _StatusPanel {
2545
2545
  _StatusPanel.current.panel.reveal(vscode15.ViewColumn.Active);
2546
2546
  return _StatusPanel.current;
2547
2547
  }
2548
- const panel = vscode15.window.createWebviewPanel("urAgentStatus", "UR Agent Status", vscode15.ViewColumn.Active, {
2548
+ const panel = vscode15.window.createWebviewPanel("urAgentStatus", "UR-Nexus Status", vscode15.ViewColumn.Active, {
2549
2549
  enableScripts: true
2550
2550
  });
2551
2551
  const instance = new _StatusPanel(panel, onRefresh);
@@ -2,8 +2,8 @@
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.37.3",
6
- "publisher": "ur-agent",
5
+ "version": "1.40.0",
6
+ "publisher": "ur-nexus",
7
7
  "engines": {
8
8
  "vscode": "^1.92.0"
9
9
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ur-agent",
3
- "version": "1.37.3",
4
- "description": "UR-AGENT \u2014 autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
3
+ "version": "1.40.0",
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",
7
7
  "engines": {
@@ -16,7 +16,7 @@
16
16
  "url": "https://github.com/Maitham16/UR/issues"
17
17
  },
18
18
  "homepage": "https://github.com/Maitham16/UR#readme",
19
- "license": "LicenseRef-UR-AGENT-Non-Commercial-Self-Responsibility",
19
+ "license": "LicenseRef-UR-Nexus-Non-Commercial-Self-Responsibility",
20
20
  "keywords": [
21
21
  "agent",
22
22
  "cli",
@@ -82,9 +82,9 @@
82
82
  "@opentelemetry/api-logs": "0.214.0",
83
83
  "@opentelemetry/core": "2.6.1",
84
84
  "@opentelemetry/resources": "2.6.1",
85
- "@opentelemetry/sdk-logs": "0.214.0",
86
- "@opentelemetry/sdk-metrics": "2.6.1",
87
- "@opentelemetry/sdk-trace-base": "2.6.1",
85
+ "@opentelemetry/sdk-logs": "^0.220.0",
86
+ "@opentelemetry/sdk-metrics": "^2.9.0",
87
+ "@opentelemetry/sdk-trace-base": "^2.9.0",
88
88
  "@opentelemetry/semantic-conventions": "1.40.0",
89
89
  "@smithy/node-http-handler": "^4.8.2",
90
90
  "@types/diff": "^7.0.0",
@@ -110,7 +110,7 @@
110
110
  "code-excerpt": "^4.0.0",
111
111
  "color-diff-napi": "^0.0.1",
112
112
  "commander": "^13.1.0",
113
- "diff": "^7.0.0",
113
+ "diff": "^9.0.0",
114
114
  "emoji-regex": "^10.4.0",
115
115
  "env-paths": "^3.0.0",
116
116
  "execa": "^9.5.0",
@@ -1,6 +1,6 @@
1
- # UR-AGENT plugin examples
1
+ # UR-Nexus plugin examples
2
2
 
3
- This directory contains templates for local UR-AGENT plugins. Copy an example
3
+ This directory contains templates for local UR-Nexus plugins. Copy an example
4
4
  directory, edit its `.ur-plugin/plugin.json`, and install it with:
5
5
 
6
6
  ```bash
@@ -1,6 +1,6 @@
1
1
  # Command Template
2
2
 
3
- Minimal local UR-AGENT plugin template.
3
+ Minimal local UR-Nexus plugin template.
4
4
 
5
5
  ```bash
6
6
  ur --plugin-dir ./plugins/examples/command-template
@@ -1,5 +1,5 @@
1
1
  ---
2
- description: Demonstrate a minimal UR-AGENT plugin command.
2
+ description: Demonstrate a minimal UR-Nexus plugin command.
3
3
  argument-hint: "[optional context]"
4
4
  ---
5
5