ur-agent 1.14.1 → 1.15.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/README.md +3 -0
- package/bin/ur.js +0 -9
- package/dist/cli.js +41115 -39083
- package/docs/AGENT_FEATURES.md +20 -0
- package/docs/AGENT_TRENDS.md +19 -14
- package/docs/AGENT_UPGRADE_1.15.0.md +129 -0
- package/docs/CODE_FEATURE_INVENTORY.md +997 -0
- package/docs/USAGE.md +8 -0
- package/docs/VALIDATION.md +1 -1
- package/extensions/vscode-ur-inline-diffs/README.md +23 -0
- package/extensions/vscode-ur-inline-diffs/extension.js +186 -0
- package/extensions/vscode-ur-inline-diffs/media/ur.svg +5 -0
- package/extensions/vscode-ur-inline-diffs/package.json +74 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -108,6 +108,9 @@ ur arena "implement a debounce helper" --agents 2 --dry-run
|
|
|
108
108
|
ur escalate run "refactor the cache layer" --force-oracle --dry-run
|
|
109
109
|
ur ci-loop --command "bun test" --dry-run
|
|
110
110
|
ur artifacts capture-diff
|
|
111
|
+
ur bg run "fix the flaky parser test" --worktree --dry-run
|
|
112
|
+
ur ide diff capture --title "Working tree review"
|
|
113
|
+
ur eval bench list
|
|
111
114
|
```
|
|
112
115
|
|
|
113
116
|
## Documentation
|
package/bin/ur.js
CHANGED
|
@@ -221,14 +221,6 @@ function runA2AServer() {
|
|
|
221
221
|
})
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
if (
|
|
225
|
-
userArgs[0] === 'a2a' &&
|
|
226
|
-
userArgs[1] === 'serve' &&
|
|
227
|
-
!userArgs.includes('--help') &&
|
|
228
|
-
!userArgs.includes('-h')
|
|
229
|
-
) {
|
|
230
|
-
runA2AServer()
|
|
231
|
-
} else {
|
|
232
224
|
const args =
|
|
233
225
|
existsSync(bundledEntrypoint)
|
|
234
226
|
? [bundledEntrypoint, ...userArgs]
|
|
@@ -283,4 +275,3 @@ child.on('exit', (code, signal) => {
|
|
|
283
275
|
|
|
284
276
|
process.exit(code ?? 1)
|
|
285
277
|
})
|
|
286
|
-
}
|