ur-agent 1.51.0 → 1.53.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 +50 -0
- package/dist/cli.js +1480 -12176
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.53.0
|
|
4
|
+
|
|
5
|
+
- Added automatic memory extraction (`src/memdir/extractFacts.ts`). Durable
|
|
6
|
+
preferences and project conventions are proposed from user messages, deduped
|
|
7
|
+
against stored memory by normalized key and containment, and ranked by
|
|
8
|
+
confidence. Deliberately rule-based: a per-turn model call costs latency on
|
|
9
|
+
every turn, and a model asked what to remember over-answers. Precision beats
|
|
10
|
+
recall here because a wrong memory is replayed into every later session.
|
|
11
|
+
Instructions scoped to the moment ("for now", "just this once") and anything
|
|
12
|
+
resembling a credential are never captured. Extraction reads user messages
|
|
13
|
+
only, so the agent cannot teach itself its own guesses.
|
|
14
|
+
- Added spoken output (`src/voice/speak.ts`) for macOS, Linux and Windows.
|
|
15
|
+
Code blocks, URLs and file paths are replaced before synthesis rather than
|
|
16
|
+
read character by character, output is capped and cut on a sentence
|
|
17
|
+
boundary, and the text travels on stdin so it is never shell-parsed. A
|
|
18
|
+
missing synthesiser degrades to silence instead of interrupting the session.
|
|
19
|
+
- Added desktop-control primitives (`src/utils/computerUse/commands.ts`) for
|
|
20
|
+
macOS and Linux: screenshot, click, and type. Coordinates are bounds-checked
|
|
21
|
+
against the real screen, typed text is escaped into an AppleScript literal it
|
|
22
|
+
cannot break out of, and every state-changing action is marked as requiring
|
|
23
|
+
approval while reads are not.
|
|
24
|
+
- Added `/permission-profile [list|use <name>|clear]` (alias `/profile`) to
|
|
25
|
+
switch the active profile from the CLI. The switch is written to whichever
|
|
26
|
+
settings source defines the profile, so it lands beside its definition rather
|
|
27
|
+
than creating a shadowing entry elsewhere.
|
|
28
|
+
- Added `scripts/backfill-releases.mjs` to publish GitHub Releases for tags
|
|
29
|
+
that predate the release workflow. Tags without a matching `CHANGELOG.md`
|
|
30
|
+
section are skipped rather than given invented notes, existing releases are
|
|
31
|
+
left alone, and nothing is created without `--apply`.
|
|
32
|
+
|
|
33
|
+
## 1.52.0
|
|
34
|
+
|
|
35
|
+
- Implemented Ollama Cloud authentication. The Ollama client sent no
|
|
36
|
+
`Authorization` header at all, so the hosted API was unreachable: local
|
|
37
|
+
sessions only worked because the signed-in daemon proxies `:cloud` models on
|
|
38
|
+
the user's behalf, and CI — which has no daemon — could not use Ollama at
|
|
39
|
+
all. `OLLAMA_API_KEY` is now sent as a bearer token, trimmed so a pasted
|
|
40
|
+
trailing newline cannot corrupt the header.
|
|
41
|
+
- A configured key with no configured host now resolves to `https://ollama.com`
|
|
42
|
+
rather than localhost, since a bare key is useless against a local daemon. An
|
|
43
|
+
explicit `OLLAMA_HOST` still wins, so self-hosted gateways are unaffected.
|
|
44
|
+
- Added `OLLAMA_API_KEY` to the Agentic CI provider-credential allowlist, so it
|
|
45
|
+
reaches the isolated agent while platform write tokens still do not. Together
|
|
46
|
+
these make `@ur` runnable in GitHub Actions against Ollama Cloud.
|
|
47
|
+
- Fixed the release gate hanging instead of failing. `bun test` loads all ~173
|
|
48
|
+
files into one process and peaks past 3 GB; when a runner OOM-kills it the
|
|
49
|
+
parent waits forever on dead children, which looks like a hang rather than a
|
|
50
|
+
failure. The gate now runs `--parallel=4`, which implies `--isolate` and
|
|
51
|
+
reclaims memory per worker. The suite itself was never broken.
|
|
52
|
+
|
|
3
53
|
## 1.51.0
|
|
4
54
|
|
|
5
55
|
- Added named permission profiles. `settings.permissions.profiles` holds named
|