ur-agent 1.65.6 → 1.65.8

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,64 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.65.8
4
+
5
+ - Fixed provider API-key entry in `/model`: the masked input now uses the
6
+ available terminal width, explicit cursor/focus state, and a one-line secret
7
+ viewport instead of rendering one masked character per row. Narrow and
8
+ invalid resize states retain a safe minimum width.
9
+
10
+ ## 1.65.7
11
+
12
+ - Audited all 14 technical chapters against the shipped source and generated
13
+ CLI. The manual now distinguishes public runtime behavior from compile-time
14
+ flags, compatibility-only state, and source helpers; it is included in the
15
+ npm package and checked for valid paths, commands, configuration, and package
16
+ coverage.
17
+ - Reworked agent guidance into one compact, ordered execution contract plus
18
+ mode-specific code, research, debug, browser, image, video, and data
19
+ workflows. Structured tool calls, dependency-aware planning, bounded
20
+ parallelism, failure recovery, result inspection, verification, honest
21
+ completion, and prompt-injection boundaries remain explicit without unsafe
22
+ package-manager guesses or examples that merely narrate fake tool calls.
23
+ - Hardened task execution end to end. Both Task V2 and legacy TodoWrite plans
24
+ participate in mutation and completion gates, task order is numeric and
25
+ dependency-aware, failed/skipped states are rendered honestly, and the
26
+ verifier refuses an overall completion while actionable work remains or task
27
+ state cannot be read.
28
+ - Workflow execution now checks approval before invoking a side effect,
29
+ enforces verification unless explicitly advisory, records every settled
30
+ parallel branch, and persists progress atomically. Resume restores bounded
31
+ exact dependency outputs without replaying completed steps; missing or
32
+ oversized required output fails closed and explains how to recover.
33
+ - Multi-agent crews and planned `/exec` runs use bounded parallel workers,
34
+ dependency fan-in, exact verdicts, cancellation-aware respawn, isolated retry
35
+ worktrees, and a shared-checkout write gate. Ambiguous side effects are not
36
+ replayed, per-prompt worktrees keep dependent steps together, and concurrent
37
+ output files cannot overwrite one another.
38
+ - Fixed false-success and argument-parsing behavior across root and slash
39
+ commands. Invalid usage returns 2, failed operations return 1, child process
40
+ failures propagate, previews do not mutate, and claim-ledger persistence is
41
+ structurally validated, workspace-contained, private, atomic, and bounded.
42
+ - Strengthened provider and tool-call interoperability for smaller/local
43
+ models: streamed calls keep stable ordinals, cumulative fragments are
44
+ deduplicated conservatively, malformed or rewritten inputs are revalidated,
45
+ Ollama image results and session-host overrides are preserved, and OpenAI
46
+ Responses transport settings now reach actual client selection.
47
+ - Improved terminal task UX: live task/status displays use the selected
48
+ session model, show only actionable or active background work, preserve
49
+ selection as rows change, handle narrow terminals, expose blockers and every
50
+ terminal status, and never advertise blocked work as the next action.
51
+ - Hardened session, export, research, notes, file-operation, worktree, and
52
+ sandbox paths against traversal, symlink escape, oversized/corrupt state,
53
+ interrupted writes, stale replay, and misleading success. Unsupported
54
+ workflow/monitor task implementations remain inspectable as history but are
55
+ no longer presented as runnable.
56
+ - Added a typed `ur-agent/sdk` subpath for ESM and CommonJS with validated
57
+ subprocess inputs, deterministic JSON/NDJSON result parsing, environment
58
+ precedence, and nonzero-exit handling. Release gates rebuild generated
59
+ artifacts before publish, smoke-test both SDK module formats from the packed
60
+ tarball, require the technical manual, and verify runtime dependency ranges.
61
+
3
62
  ## 1.65.6
4
63
 
5
64
  - Remote sessions no longer reconnect forever when the server repeatedly
package/README.md CHANGED
@@ -549,10 +549,11 @@ ur plugin disable <plugin>
549
549
  manifest and reports its declared components and capability surface, so you can
550
550
  review what a plugin touches before enabling it.
551
551
 
552
- The npm package includes `README.md`, `QUALITY.md`, `docs/`, `documentation/`,
553
- and `plugins/`, so the npm package page and installed artifact both carry the
554
- marketplace documentation, core plugins, community staging directory, and
555
- example plugin template. See [Plugin Guide](docs/plugins.md).
552
+ The npm package includes `README.md`, `QUALITY.md`, `docs/`, `technical/`,
553
+ `documentation/`, and `plugins/`, so the npm package page and installed
554
+ artifact carry the audited technical manual, marketplace documentation, core
555
+ plugins, community staging directory, and example plugin template. See
556
+ [Plugin Guide](docs/plugins.md).
556
557
 
557
558
  UR also documents the core Cursor-style agent primitives as first-class,
558
559
  project-backed features: Agent surfaces (`ur`, `ur agents`, `ur crew`, `ur bg`),