ur-agent 1.40.1 → 1.41.1

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.
@@ -153,9 +153,11 @@ never runs automatically unless enabled.
153
153
 
154
154
  ## Prompt Planning
155
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:
156
+ UR-Nexus can plan an `ur exec` prompt into ordered executable tasks, show a task
157
+ board, run independent tasks through adaptive parallel logical workers, and
158
+ verify task claims after execution. Short prompts stay as one compact task when
159
+ splitting is not useful. Longer prompts are decomposed by explicit ordering,
160
+ bullets, dependencies, and file targets. The defaults are:
159
161
 
160
162
  ```json
161
163
  {
@@ -168,9 +170,15 @@ claims after execution. The defaults are:
168
170
  ```
169
171
 
170
172
  `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,
173
+ tasks to run concurrently up to `maxAgents`; the scheduler still uses only the
174
+ number of agents that is useful for the current dependency graph and file locks.
175
+ Simple prompts use one agent, medium independent prompts use two or three when
176
+ useful, and large independent task graphs can use the configured maximum.
177
+ `showTaskBoard` renders visible progress during real execution and keeps the
178
+ final ordered board in the execution report. The board shows ordered tasks,
179
+ current status, the running task, finished tasks, tasks waiting for approval or
180
+ context, active/max agents, queued tasks, and finished/failed/waiting/skipped
181
+ counts. `strictVerification` rejects unsupported claims about changed files,
174
182
  commands, or generated output. With `--no-strict-verification`, unsupported
175
183
  claims become warnings and the task may finish when no hard execution error was
176
184
  observed.
@@ -189,12 +197,31 @@ ur exec "run quietly but keep the final board" --quiet
189
197
  ur exec "warn instead of failing unsupported claims" --no-strict-verification
190
198
  ```
191
199
 
200
+ Risky actions use an approval-first workflow. UR-Nexus asks for approval before
201
+ destructive commands, outside-workspace writes/deletes, network actions,
202
+ credential-sensitive access, security testing commands, exploit-like commands,
203
+ or commands that affect external systems. The request explains the action, why
204
+ approval is required, and the command or file path when available. The action is
205
+ not executed until approval evidence exists, and the decision is recorded in
206
+ the final report.
207
+
208
+ Outside-workspace reads are allowed when explicitly requested or clearly needed
209
+ for the task, and the outside path is recorded as evidence. Modifying, removing,
210
+ or deleting anything outside the workspace requires explicit approval first.
211
+ For cybersecurity or security-research tasks, UR-Nexus supports authorized
212
+ workflows by asking for target scope and authorization confirmation when needed.
213
+ Vague requests are converted into scoped research tasks that wait for approval;
214
+ local, lab, and test targets are preferred unless the user confirms authorized
215
+ external scope.
216
+
192
217
  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.
218
+ finished, waiting approval/context, failed, and skipped task records, actual
219
+ changed files from workspace snapshots, unreported changed files,
220
+ outside-workspace files accessed or modified, verified commands surfaced by the
221
+ executor, unverified command claims, approval decisions, verification failures,
222
+ warnings, and remaining limitations. Command tracking cannot prove detached or
223
+ provider-internal activity unless the task runner surfaces those commands as
224
+ observed evidence.
198
225
 
199
226
  ## Project Safety Policy
200
227
 
@@ -338,6 +365,15 @@ Sandbox behavior has three modes, controlled by `sandbox.enabled` and
338
365
  UR fails closed: it refuses to start rather than run without a working
339
366
  sandbox.
340
367
 
368
+ To turn the sandbox on or off, use the `/config` tool or run:
369
+
370
+ ```sh
371
+ ur config set sandbox.enabled true
372
+ ur config set sandbox.enabled false
373
+ ```
374
+
375
+ You can also inspect the current state with `ur sandbox status`.
376
+
341
377
  OS confinement depends on platform support: `sandbox-exec` (Seatbelt) on
342
378
  macOS, or `bwrap` (bubblewrap) on Linux/WSL2. `ur sandbox check` reports
343
379
  missing dependencies for the current platform.
@@ -44,7 +44,7 @@
44
44
  <main id="content" class="content">
45
45
  <header class="topbar">
46
46
  <div>
47
- <p class="eyebrow">Version 1.40.1</p>
47
+ <p class="eyebrow">Version 1.41.1</p>
48
48
  <h1>UR-Nexus Documentation</h1>
49
49
  <p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
50
50
  </div>
@@ -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.40.1",
5
+ "version": "1.41.1",
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.40.1",
3
+ "version": "1.41.1",
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",