ur-agent 1.53.0 → 1.54.1
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,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.54.1
|
|
4
|
+
|
|
5
|
+
- Fixed `/speak`, `/computer`, `/memory-suggest`, `/import-session` and
|
|
6
|
+
`/permission-profile` being unreachable from the shell. They were registered
|
|
7
|
+
as slash commands but never wired into the Commander tree in `main.tsx`, so
|
|
8
|
+
`ur speak "hi"` was parsed as the interactive prompt and failed with "too
|
|
9
|
+
many arguments". All five now have shell subcommands with their own flags.
|
|
10
|
+
- Fixed argument parsing in the three new commands. The shell wiring quotes
|
|
11
|
+
every argument, so `split(/\s+/)` yielded `"'100'"` rather than `100` and
|
|
12
|
+
numeric arguments were rejected. They now use the quote-aware
|
|
13
|
+
`parseArguments`, matching every other local command.
|
|
14
|
+
- Quieted `scripts/backfill-releases.mjs`: `gh release view` writes "release
|
|
15
|
+
not found" for each unpublished tag, which is the expected answer during a
|
|
16
|
+
scan and was burying the plan in twenty lines of noise.
|
|
17
|
+
|
|
18
|
+
## 1.54.0
|
|
19
|
+
|
|
20
|
+
- Wired the 1.53.0 capability libraries into runnable commands. They were
|
|
21
|
+
verified modules but nothing invoked them; these are the execution paths.
|
|
22
|
+
- Added `/speak <text>` (alias `/say`), which drives the platform speech
|
|
23
|
+
synthesiser with `--voice` and `--rate`. Text is passed on stdin, so it is
|
|
24
|
+
never shell-parsed, and a missing synthesiser reports an install hint rather
|
|
25
|
+
than failing the session.
|
|
26
|
+
- Added `/computer screenshot|click|type` (alias `/desktop-control`). Clicks
|
|
27
|
+
are validated against the real screen geometry and refuse to run when the
|
|
28
|
+
geometry cannot be read, rather than clicking blind. Every state-changing
|
|
29
|
+
action requires an explicit `--yes`; without it the command prints what it
|
|
30
|
+
would do and stops. A macOS screenshot that silently writes nothing reports
|
|
31
|
+
the Screen Recording permission requirement.
|
|
32
|
+
- Added `/memory-suggest` (alias `/suggest-memory`), which scans recent user
|
|
33
|
+
messages from the live transcript and proposes durable facts with their
|
|
34
|
+
type, confidence and originating rule. Proposals are never saved on their
|
|
35
|
+
own; `/remember` still does the writing.
|
|
36
|
+
|
|
3
37
|
## 1.53.0
|
|
4
38
|
|
|
5
39
|
- Added automatic memory extraction (`src/memdir/extractFacts.ts`). Durable
|