ur-agent 1.80.3 → 1.80.5
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 +40 -0
- package/README.md +2 -2
- package/dist/cli.js +1652 -1117
- package/docs/A2A.md +8 -0
- package/docs/AGENT_FEATURES.md +15 -0
- package/docs/AGENT_TRENDS.md +1 -0
- package/docs/CONFIGURATION.md +16 -0
- package/docs/GAP_ANALYSIS_2026-08-11.md +1 -1
- package/docs/TROUBLESHOOTING.md +26 -0
- package/docs/USAGE.md +10 -1
- package/docs/VALIDATION.md +26 -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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.80.5
|
|
4
|
+
|
|
5
|
+
- Fixed the plan-mode/task-tracking deadlock introduced by the strict task
|
|
6
|
+
gate. Writing or editing only the active session plan file is now allowed
|
|
7
|
+
during plan mode, while project files remain protected and read-only.
|
|
8
|
+
- Plan approval now guarantees a visible execution board before coding starts.
|
|
9
|
+
Existing actionable tasks are preserved; otherwise UR derives a bounded,
|
|
10
|
+
deduplicated set of implementation tasks plus a dependent verification task
|
|
11
|
+
through the canonical `TaskCreate` lifecycle.
|
|
12
|
+
- `ExitPlanMode` can no longer be blocked for lacking the tasks it is
|
|
13
|
+
responsible for synchronizing. Plan prompts and recovery documentation now
|
|
14
|
+
describe the same lifecycle. Approve All remains unchanged.
|
|
15
|
+
|
|
16
|
+
## 1.80.4
|
|
17
|
+
|
|
18
|
+
- Stopped runaway WebFetch loops on permanent HTTP 4xx responses. Failures are
|
|
19
|
+
keyed by normalized URL rather than the hidden summarization prompt, so
|
|
20
|
+
changing prompts or alternating between two dead links cannot bypass the
|
|
21
|
+
circuit breaker. The first repeated URL is refused without another network
|
|
22
|
+
request; continued repetition stops the turn.
|
|
23
|
+
- WebFetch now distinguishes permanent client errors from transient timeouts,
|
|
24
|
+
conflicts, early-data responses, rate limits, and server failures. Permanent
|
|
25
|
+
errors direct the agent to WebSearch, a parent/index page, or another source;
|
|
26
|
+
transient failures remain retryable. URL identities are hashed, bounded,
|
|
27
|
+
scoped to the active query, and cleared when that query completes.
|
|
28
|
+
- Plan mode now explicitly creates visible implementation tasks with
|
|
29
|
+
`TaskCreate` before workspace changes. Task-gate recovery clarifies that
|
|
30
|
+
entering or updating a plan is not a substitute for the task list. Approve
|
|
31
|
+
All remains unchanged.
|
|
32
|
+
- Completed shell-command display hardening in the background-task detail
|
|
33
|
+
dialog. Tabs, control bytes, invisible characters, and bidirectional controls
|
|
34
|
+
are made explicit before width truncation, matching Bash and PowerShell.
|
|
35
|
+
- Unified prompt and standalone configuration assignments. `ur config set`
|
|
36
|
+
now supports accessibility, thinking, output, compaction, and Vim/editor
|
|
37
|
+
settings; `ur config get` and `ur config list` expose effective safe values
|
|
38
|
+
for automation without hand-editing JSON.
|
|
39
|
+
- Added `ur a2a card --v1` to preview the existing current A2A 1.0 Agent Card,
|
|
40
|
+
plus `ur session status [session-id]` to inspect an explicit conversation or
|
|
41
|
+
the latest resumable conversation for the current project.
|
|
42
|
+
|
|
3
43
|
## 1.80.3
|
|
4
44
|
|
|
5
45
|
- Restored visible task planning with a strict-hybrid default. Atomic,
|
package/README.md
CHANGED
|
@@ -444,7 +444,7 @@ as first-class subcommands in the shipped CLI.
|
|
|
444
444
|
| `ur auth claude` | Launch the official Claude Code login flow. |
|
|
445
445
|
| `ur auth gemini` | Use the official Gemini CLI login flow where supported. |
|
|
446
446
|
| `ur auth antigravity` | Use the official Antigravity CLI login flow where supported. |
|
|
447
|
-
| `ur config set` |
|
|
447
|
+
| `ur config set|get|list` | Set or inspect validated non-secret agent, accessibility, editor, and provider settings. |
|
|
448
448
|
| `ur mcp` | Configure Model Context Protocol servers, expose fail-closed built-in tools over standard input/output, or run the secure stateless web server with Tasks and Apps. |
|
|
449
449
|
| `ur skill` | Initialize, run, strictly verify, Ed25519-sign, and create trusted signing keys for portable skills. |
|
|
450
450
|
| `ur ag-ui serve` | Start the secure AG-UI HTTP/SSE adapter for user-facing applications with truthful capability discovery. |
|
|
@@ -453,7 +453,7 @@ as first-class subcommands in the shipped CLI.
|
|
|
453
453
|
| `ur acp` | Connect editors through the Agent Client Protocol, or manage the separate UR HTTP JSON-RPC server. |
|
|
454
454
|
| `ur exec` | Run one or more prompts in non-interactive mode with optional concurrency. |
|
|
455
455
|
| `ur ide diff` | Capture editor-readable inline diff bundles. |
|
|
456
|
-
| `ur a2a card` | Print Agent-to-Agent discovery metadata. |
|
|
456
|
+
| `ur a2a card` | Print legacy Agent-to-Agent discovery metadata; add `--v1` to preview the current A2A 1.0 card. |
|
|
457
457
|
| `ur a2a serve` | Start the negotiated Agent-to-Agent server with automatic client compatibility. |
|
|
458
458
|
| `ur sdk` | Show programmatic headless usage and scaffold SDK examples. |
|
|
459
459
|
| `ur trigger` | Parse a GitHub/Slack webhook payload and optionally launch a headless UR run. |
|