ur-agent 1.40.1 → 1.41.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 +7 -0
- package/README.md +44 -23
- package/dist/cli.js +474 -153
- package/docs/CONFIGURATION.md +38 -11
- package/documentation/index.html +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/docs/CONFIGURATION.md
CHANGED
|
@@ -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
|
|
157
|
-
board, run independent tasks through parallel logical workers, and
|
|
158
|
-
claims after execution.
|
|
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
|
|
172
|
-
|
|
173
|
-
|
|
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
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
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
|
|
package/documentation/index.html
CHANGED
|
@@ -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.
|
|
47
|
+
<p class="eyebrow">Version 1.41.0</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.
|
|
5
|
+
"version": "1.41.0",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED