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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.41.0
|
|
4
|
+
|
|
5
|
+
- Persist the model chosen through the interactive `/model` picker to settings
|
|
6
|
+
and clear saved model state when `/model default` is used.
|
|
7
|
+
- Enable the sandbox by default when no explicit `sandbox.enabled` setting is
|
|
8
|
+
configured.
|
|
9
|
+
|
|
3
10
|
## 1.40.1
|
|
4
11
|
|
|
5
12
|
- Pin `diff` to ^7 and OpenTelemetry packages to 2.6.1/0.214.0 to match the
|
package/README.md
CHANGED
|
@@ -66,41 +66,59 @@ handing work off to other tools or agents when needed.
|
|
|
66
66
|
|
|
67
67
|
## Prompt Planning and Task Board
|
|
68
68
|
|
|
69
|
-
UR-Nexus
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
69
|
+
UR-Nexus decomposes `ur exec` prompts into executable task units before work
|
|
70
|
+
starts. Short prompts stay compact. Longer prompts are split into ordered small
|
|
71
|
+
tasks only when the wording, dependencies, or file targets make separate tasks
|
|
72
|
+
useful. Each task records id, order, title, description, status, dependencies,
|
|
73
|
+
assigned logical agent role, input, expected output, verification criteria, file
|
|
74
|
+
targets, risk level, and whether approval is required.
|
|
74
75
|
|
|
75
76
|
During real `ur exec` runs the task board streams when a task status changes,
|
|
76
77
|
then appears again in the final report. Quiet/non-interactive runs can suppress
|
|
77
|
-
streaming while preserving the final board.
|
|
78
|
-
|
|
78
|
+
streaming while preserving the final board. Public status labels are
|
|
79
|
+
action-oriented: queued, running, waiting approval, needs scope, needs context,
|
|
80
|
+
paused for review, skipped by policy, finished, and failed.
|
|
79
81
|
|
|
80
82
|
```text
|
|
81
83
|
[UR-Nexus Task Board]
|
|
84
|
+
Agents: 1 active / 3 max
|
|
82
85
|
|
|
83
|
-
1.
|
|
84
|
-
2. running
|
|
85
|
-
3.
|
|
86
|
+
1. queued | executor | Update CLI branding
|
|
87
|
+
2. running | executor | Update README references
|
|
88
|
+
3. waiting approval | verifier | Validate release archive
|
|
86
89
|
|
|
87
|
-
Progress: 0/3 finished, 1 running, 1
|
|
90
|
+
Progress: 0/3 finished, 1 running, 1 queued, 1 waiting, 0 failed, 0 skipped
|
|
88
91
|
```
|
|
89
92
|
|
|
90
93
|
Before a task runs, UR-Nexus checks that required files/resources exist and
|
|
91
|
-
that assumptions are explicit.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
that assumptions are explicit. Risky actions require explicit approval first:
|
|
95
|
+
destructive commands, outside-workspace writes/deletes, network or external
|
|
96
|
+
system actions, credential-sensitive access, exploit-like commands, and security
|
|
97
|
+
testing. The approval request records the action, reason, command or path when
|
|
98
|
+
available, and the approval decision in task evidence. Security-research prompts
|
|
99
|
+
need scoped targets and authorization confirmation; local/lab/test targets are
|
|
100
|
+
preferred unless the user confirms authorized external scope.
|
|
101
|
+
|
|
102
|
+
Outside-workspace reads are allowed when requested or clearly required, and the
|
|
103
|
+
outside path is recorded in the task board/evidence. Modifying or deleting
|
|
104
|
+
outside-workspace files requires approval before execution.
|
|
105
|
+
|
|
106
|
+
After a task runs, verification compares the executor's claims with evidence
|
|
107
|
+
from workspace snapshots and observed command records. Strict verification
|
|
108
|
+
rejects unsupported file-change and command claims; non-strict verification
|
|
109
|
+
records them as warnings. Independent tasks can run through adaptive parallel
|
|
110
|
+
logical workers: simple prompts use one agent, medium prompts use two or three
|
|
111
|
+
when useful, and large independent graphs can use up to `maxAgents`. Tasks that
|
|
96
112
|
depend on another task or target the same file are serialized.
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
the
|
|
113
|
+
|
|
114
|
+
At the end of execution, `ur exec` reports task counts, the final ordered task
|
|
115
|
+
board, active/max agents used, finished/waiting/failed/skipped tasks, actual
|
|
116
|
+
changed files, outside-workspace files accessed or modified, verified commands,
|
|
117
|
+
unverified command claims, approval decisions, verification failures, warnings,
|
|
118
|
+
and remaining limitations. Command tracking is limited to commands surfaced by
|
|
119
|
+
the task runner; provider-internal or detached activity is reported as
|
|
120
|
+
unverified unless the executor exposes it as observed evidence. Use
|
|
121
|
+
`--no-task-planning` to keep the legacy direct prompt execution path for a run.
|
|
104
122
|
|
|
105
123
|
Planning defaults are safe and can be configured with:
|
|
106
124
|
|
|
@@ -688,6 +706,9 @@ release until that GitHub run is green.
|
|
|
688
706
|
## Package
|
|
689
707
|
|
|
690
708
|
- npm package: [`ur-agent`](https://www.npmjs.com/package/ur-agent), binary `ur`.
|
|
709
|
+
- The package name remains `ur-agent` for compatibility with existing installs
|
|
710
|
+
and legacy `ur-agent` configs. User-facing branding is `UR-Nexus`; the global
|
|
711
|
+
command remains `ur`. A future package rename would use `ur-nexus`.
|
|
691
712
|
- The published package ships the bundled CLI (`dist/cli.js`), launcher
|
|
692
713
|
(`bin/ur.js`), documentation (`docs/`, `documentation/`, `examples/`), and
|
|
693
714
|
first-party plugins (`plugins/`, `.ur-plugin` marketplace manifest is part of
|