ur-agent 1.52.0 → 1.54.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 +49 -0
- package/dist/cli.js +3367 -13492
- 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,54 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.54.0
|
|
4
|
+
|
|
5
|
+
- Wired the 1.53.0 capability libraries into runnable commands. They were
|
|
6
|
+
verified modules but nothing invoked them; these are the execution paths.
|
|
7
|
+
- Added `/speak <text>` (alias `/say`), which drives the platform speech
|
|
8
|
+
synthesiser with `--voice` and `--rate`. Text is passed on stdin, so it is
|
|
9
|
+
never shell-parsed, and a missing synthesiser reports an install hint rather
|
|
10
|
+
than failing the session.
|
|
11
|
+
- Added `/computer screenshot|click|type` (alias `/desktop-control`). Clicks
|
|
12
|
+
are validated against the real screen geometry and refuse to run when the
|
|
13
|
+
geometry cannot be read, rather than clicking blind. Every state-changing
|
|
14
|
+
action requires an explicit `--yes`; without it the command prints what it
|
|
15
|
+
would do and stops. A macOS screenshot that silently writes nothing reports
|
|
16
|
+
the Screen Recording permission requirement.
|
|
17
|
+
- Added `/memory-suggest` (alias `/suggest-memory`), which scans recent user
|
|
18
|
+
messages from the live transcript and proposes durable facts with their
|
|
19
|
+
type, confidence and originating rule. Proposals are never saved on their
|
|
20
|
+
own; `/remember` still does the writing.
|
|
21
|
+
|
|
22
|
+
## 1.53.0
|
|
23
|
+
|
|
24
|
+
- Added automatic memory extraction (`src/memdir/extractFacts.ts`). Durable
|
|
25
|
+
preferences and project conventions are proposed from user messages, deduped
|
|
26
|
+
against stored memory by normalized key and containment, and ranked by
|
|
27
|
+
confidence. Deliberately rule-based: a per-turn model call costs latency on
|
|
28
|
+
every turn, and a model asked what to remember over-answers. Precision beats
|
|
29
|
+
recall here because a wrong memory is replayed into every later session.
|
|
30
|
+
Instructions scoped to the moment ("for now", "just this once") and anything
|
|
31
|
+
resembling a credential are never captured. Extraction reads user messages
|
|
32
|
+
only, so the agent cannot teach itself its own guesses.
|
|
33
|
+
- Added spoken output (`src/voice/speak.ts`) for macOS, Linux and Windows.
|
|
34
|
+
Code blocks, URLs and file paths are replaced before synthesis rather than
|
|
35
|
+
read character by character, output is capped and cut on a sentence
|
|
36
|
+
boundary, and the text travels on stdin so it is never shell-parsed. A
|
|
37
|
+
missing synthesiser degrades to silence instead of interrupting the session.
|
|
38
|
+
- Added desktop-control primitives (`src/utils/computerUse/commands.ts`) for
|
|
39
|
+
macOS and Linux: screenshot, click, and type. Coordinates are bounds-checked
|
|
40
|
+
against the real screen, typed text is escaped into an AppleScript literal it
|
|
41
|
+
cannot break out of, and every state-changing action is marked as requiring
|
|
42
|
+
approval while reads are not.
|
|
43
|
+
- Added `/permission-profile [list|use <name>|clear]` (alias `/profile`) to
|
|
44
|
+
switch the active profile from the CLI. The switch is written to whichever
|
|
45
|
+
settings source defines the profile, so it lands beside its definition rather
|
|
46
|
+
than creating a shadowing entry elsewhere.
|
|
47
|
+
- Added `scripts/backfill-releases.mjs` to publish GitHub Releases for tags
|
|
48
|
+
that predate the release workflow. Tags without a matching `CHANGELOG.md`
|
|
49
|
+
section are skipped rather than given invented notes, existing releases are
|
|
50
|
+
left alone, and nothing is created without `--apply`.
|
|
51
|
+
|
|
3
52
|
## 1.52.0
|
|
4
53
|
|
|
5
54
|
- Implemented Ollama Cloud authentication. The Ollama client sent no
|