ur-agent 1.50.6 → 1.51.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,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.51.0
|
|
4
|
+
|
|
5
|
+
- Added named permission profiles. `settings.permissions.profiles` holds named
|
|
6
|
+
rule sets (allow/deny/ask plus a description) and
|
|
7
|
+
`settings.permissions.activeProfile` selects one; its rules are appended to
|
|
8
|
+
the base lists from the same settings source. A misnamed profile contributes
|
|
9
|
+
nothing rather than failing open, and deny still beats allow downstream, so
|
|
10
|
+
a profile can only narrow or extend.
|
|
11
|
+
- Added `/import-session <path>` for session portability. It validates a
|
|
12
|
+
transcript exported from another machine line by line — all-or-nothing, so a
|
|
13
|
+
corrupt file can never half-import — caps size at the resume reader's limit,
|
|
14
|
+
and lands it under a fresh session id so imports never collide with local
|
|
15
|
+
history. The result prints the `ur -r <id>` command to resume it.
|
|
16
|
+
- Background agent completion and failure now fire the user's Notification
|
|
17
|
+
hooks with types `agent_completed` and `agent_failed`, so external tooling
|
|
18
|
+
(desktop notifiers, pagers, dashboards) can react to background work
|
|
19
|
+
finishing without polling. The in-app toast behavior is unchanged.
|
|
20
|
+
|
|
3
21
|
## 1.50.6
|
|
4
22
|
|
|
5
23
|
- Implemented `--effort` on Ollama. The support predicate compared
|