ur-agent 1.56.1 → 1.57.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,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.57.0
|
|
4
|
+
|
|
5
|
+
- Connected four features that were built, tested and then left unreachable.
|
|
6
|
+
Each had passing unit tests while contributing nothing to a real session.
|
|
7
|
+
- `wrapUntrusted()` now runs on WebFetch and WebSearch results, at the
|
|
8
|
+
`mapToolResultToToolResultBlockParam` choke point every return path passes
|
|
9
|
+
through. Fetched pages and search results reach the model inside a
|
|
10
|
+
nonce-bound boundary they cannot close, with injection signals labelled. The
|
|
11
|
+
WebSearch citation reminder deliberately stays outside the boundary: it is
|
|
12
|
+
UR's own instruction, and wrapping it would present it as untrusted data.
|
|
13
|
+
- Added the `Computer` tool, so desktop control is available to the agent and
|
|
14
|
+
not only to the human through `/computer`. Screenshots are permitted as
|
|
15
|
+
read-only; clicks and keystrokes always ask, because the model chooses the
|
|
16
|
+
coordinates and the user has not seen them. Clicks are bounds-checked against
|
|
17
|
+
real screen geometry and refused when geometry is unavailable. The UI renders
|
|
18
|
+
a character count rather than the typed text, so a dictated password is not
|
|
19
|
+
echoed into the transcript.
|
|
20
|
+
- Added opt-in end-of-turn side effects at the `handleStopHooks` seam:
|
|
21
|
+
`voice.speakResponses` reads replies aloud, and `memory.suggest` proposes
|
|
22
|
+
durable facts deduped against stored memory. Both default to off, run on the
|
|
23
|
+
main thread only so subagents stay silent, and are best-effort — speech is
|
|
24
|
+
fire-and-forget so a long reply cannot delay the next prompt, and any failure
|
|
25
|
+
is swallowed rather than ending the turn.
|
|
26
|
+
- Extracted `existingMemoryLines` into `memoryLines.ts`, shared by
|
|
27
|
+
`/memory-suggest` and the turn hook.
|
|
28
|
+
- Added `test/wiringIntegration.test.ts`, which asserts the connections rather
|
|
29
|
+
than the modules — the specific failure the unit tests could not catch.
|
|
30
|
+
|
|
3
31
|
## 1.56.1
|
|
4
32
|
|
|
5
33
|
- Documented the 1.52.0–1.56.0 features, which had reached `technical/03` as
|