ur-agent 1.65.14 → 1.66.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 +38 -0
- package/dist/cli.js +399 -254
- package/docs/VALIDATION.md +1 -1
- 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/technical/04-tools.md +7 -0
- package/technical/06-configuration.md +21 -0
- package/technical/07-memory-and-context.md +29 -1
- package/technical/09-multi-agent.md +6 -0
- package/technical/README.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.66.1
|
|
4
|
+
|
|
5
|
+
- Corrected the warning-state result used by reactive compaction and context
|
|
6
|
+
collapse when a custom proactive threshold is configured. Their
|
|
7
|
+
effective-window override can no longer report that the separate proactive
|
|
8
|
+
auto-compact trigger was crossed.
|
|
9
|
+
|
|
10
|
+
## 1.66.0
|
|
11
|
+
|
|
12
|
+
- Unified proactive compaction around one model-aware threshold and one live
|
|
13
|
+
token estimator. Small context windows now retain positive warning, error,
|
|
14
|
+
and trigger thresholds; configured 50–95% thresholds are honored; prompt
|
|
15
|
+
notifications, `/context`, and the SDK expose a clamped live-estimated
|
|
16
|
+
percentage remaining until the real trigger; reactive/collapse modes do not
|
|
17
|
+
claim a false
|
|
18
|
+
countdown; and successful compaction clears stale warnings.
|
|
19
|
+
- Preserved exact task execution state across full, partial, and
|
|
20
|
+
session-memory compaction. The restored authoritative snapshot keeps Task V2
|
|
21
|
+
IDs, statuses, owners, and dependency edges (or TodoWrite order/status),
|
|
22
|
+
prioritizes actionable work under 64-record and estimated 6,000-token
|
|
23
|
+
bounds, and requires `TaskList` before mutations when records were omitted.
|
|
24
|
+
- Closed a task-gate bypass caused by compacted history. Compact boundaries
|
|
25
|
+
now carry durable metadata that consumes the initial trivial-call allowance,
|
|
26
|
+
including SDK serialization, so a model cannot compact and then mutate as
|
|
27
|
+
though no earlier tool calls occurred.
|
|
28
|
+
- Removed a competing private compaction path from in-process workers. Workers
|
|
29
|
+
now use the normal agent query loop and therefore inherit the same feature
|
|
30
|
+
flags, exact trigger, session-memory-first path, reactive/collapse policy,
|
|
31
|
+
failure circuit breaker, cleanup, and compact-boundary behavior.
|
|
32
|
+
- Brought Kimi/Ollama bare task-call recovery into parity with the live task
|
|
33
|
+
schemas. Dependency fields, numeric task/dependency IDs, and `failed` or
|
|
34
|
+
`skipped` terminal updates are normalized safely; invalid IDs, statuses, and
|
|
35
|
+
unknown fields fail closed.
|
|
36
|
+
- Audited v1.65.0 through v1.65.5 for regression-safe enhancements. Every
|
|
37
|
+
concrete earlier technique is already present or superseded by stricter
|
|
38
|
+
current behavior, so no legacy implementation or removed feature was copied
|
|
39
|
+
back.
|
|
40
|
+
|
|
3
41
|
## 1.65.14
|
|
4
42
|
|
|
5
43
|
- Restored the proactive task-first behavior that was present in v1.65.0 and
|