ur-agent 1.14.0 → 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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.14.1
4
+
5
+ ### Changed
6
+ - Removed the `desktop-app` startup tip pointing to `clau.de/desktop`.
7
+
8
+ ### Changed
9
+ - **Version bump.** Updated from 1.14.0 to 1.14.1 across `package.json`, `bunfig.toml`, and bundled CLI.
10
+
3
11
  ## 1.14.0
4
12
 
5
13
  ### Changed
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
- }