ur-agent 1.65.1 → 1.65.3

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,60 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.65.3
4
+
5
+ - Removed two tips for things that do not exist: `/mobile to use UR from the
6
+ UR app on your phone` (no such command, no such app) and a pointer to
7
+ `ur.ai/web` (no DNS record, same dead domain class as the `ur.com` links
8
+ removed earlier). Tips are the first thing a new user reads, so a tip for
9
+ something that is not there is the worst place to be wrong.
10
+ - Added short tips covering the command surface that was going unnoticed —
11
+ spec-driven development, compiler-accurate renames, semantic code search,
12
+ crews and arenas, evals, guardrails, the audit trail, the security suite,
13
+ research and multimodal commands, and the tools added this week. One line
14
+ each: the goal is recall, not documentation.
15
+ - Added `test/tipsAreReal.test.ts`: every command a tip names must exist in the
16
+ slash-command reference, and no tip may reference a domain UR does not own.
17
+ It also asserts the checker finds real citations, so it cannot start passing
18
+ vacuously on an empty match.
19
+
20
+ ## 1.65.2
21
+
22
+ - Fixed `--discover-ollama` having no effect on model discovery or requests.
23
+ `getOllamaBaseUrl` resolves the session host correctly, but three callers
24
+ read a persisted `provider.baseUrl` *before* consulting it, so a value
25
+ written by `ur config set base_url` silently outranked a host chosen
26
+ interactively seconds earlier. `/model-doctor` calls `getOllamaBaseUrl()`
27
+ directly and was right, which is how the split surfaced: the doctor reported
28
+ `http://172.20.10.5:11434` and its six models while `/model` listed the local
29
+ daemon's, in the same session.
30
+ - This was not cosmetic. The request client had the same inversion
31
+ (`configured.baseUrl ?? getOllamaBaseUrl(...)` short-circuits), so calls went
32
+ to the local daemon while the doctor said otherwise — a different model than
33
+ the user believed, with no visible signal. The provider doctor had it too, so
34
+ it probed a host that was not in use.
35
+ - A model that does not advertise the `tools` capability now says so in the
36
+ transcript. UR already detected it and wrote the warning to the debug log,
37
+ which is invisible in a normal session: tool definitions were stripped, and
38
+ the model — having no way to act — described work it had not performed and
39
+ reported files it had not created. The warning appears once per model and
40
+ names the fix.
41
+ - `AskUserQuestion` states that `options` is required and that a question with
42
+ no discrete choices should be asked in plain text rather than by calling the
43
+ tool with a prose question and no options.
44
+ - Fixed the task list displaying out of order. `listTasks` returned `readdir`
45
+ order, which is lexicographic in practice, so past nine tasks it read
46
+ 1, 10, 11, 12, ... 2, 20, 3. Under ten tasks the two orders are identical,
47
+ which is why it went unnoticed and why a test written against a short
48
+ fixture would have passed against the broken code.
49
+ - A task list is now required before any tool that changes the workspace
50
+ (`Edit`, `Write`, `Bash`, ...). The system prompt already asked for one on
51
+ multi-step work and the agent still edited files and reported completion with
52
+ no plan on record. Reads are never blocked, so it can investigate before
53
+ planning; the first three tool calls are free so a one-line fix needs no
54
+ ceremony; task tools are exempt so the gate cannot block its own remedy; and
55
+ subagents are exempt since they execute a step rather than own the plan.
56
+ Configure with `tasks.requireBeforeChanges`.
57
+
3
58
  ## 1.65.1
4
59
 
5
60
  - Fixed `ur selftest run` reporting 0/5 anywhere but the UR repo. The drill