ur-agent 1.65.6 → 1.65.7
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 +52 -0
- package/README.md +5 -4
- package/dist/cli.js +5432 -3076
- package/dist/sdk/index.cjs +189 -0
- package/dist/sdk/index.d.ts +68 -0
- package/dist/sdk/index.js +149 -0
- package/docs/VALIDATION.md +1 -1
- package/documentation/app.js +91 -0
- 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 +13 -2
- package/technical/01-architecture.md +146 -0
- package/technical/02-cli-reference.md +227 -0
- package/technical/03-slash-commands.md +318 -0
- package/technical/04-tools.md +119 -0
- package/technical/05-providers-and-models.md +192 -0
- package/technical/06-configuration.md +407 -0
- package/technical/07-memory-and-context.md +147 -0
- package/technical/08-skills-plugins-workflows.md +211 -0
- package/technical/09-multi-agent.md +249 -0
- package/technical/10-headless-automation-eval.md +441 -0
- package/technical/11-integrations.md +156 -0
- package/technical/12-security-sandbox-stability.md +271 -0
- package/technical/13-research.md +129 -0
- package/technical/14-sessions.md +177 -0
- package/technical/README.md +43 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.65.7
|
|
4
|
+
|
|
5
|
+
- Audited all 14 technical chapters against the shipped source and generated
|
|
6
|
+
CLI. The manual now distinguishes public runtime behavior from compile-time
|
|
7
|
+
flags, compatibility-only state, and source helpers; it is included in the
|
|
8
|
+
npm package and checked for valid paths, commands, configuration, and package
|
|
9
|
+
coverage.
|
|
10
|
+
- Reworked agent guidance into one compact, ordered execution contract plus
|
|
11
|
+
mode-specific code, research, debug, browser, image, video, and data
|
|
12
|
+
workflows. Structured tool calls, dependency-aware planning, bounded
|
|
13
|
+
parallelism, failure recovery, result inspection, verification, honest
|
|
14
|
+
completion, and prompt-injection boundaries remain explicit without unsafe
|
|
15
|
+
package-manager guesses or examples that merely narrate fake tool calls.
|
|
16
|
+
- Hardened task execution end to end. Both Task V2 and legacy TodoWrite plans
|
|
17
|
+
participate in mutation and completion gates, task order is numeric and
|
|
18
|
+
dependency-aware, failed/skipped states are rendered honestly, and the
|
|
19
|
+
verifier refuses an overall completion while actionable work remains or task
|
|
20
|
+
state cannot be read.
|
|
21
|
+
- Workflow execution now checks approval before invoking a side effect,
|
|
22
|
+
enforces verification unless explicitly advisory, records every settled
|
|
23
|
+
parallel branch, and persists progress atomically. Resume restores bounded
|
|
24
|
+
exact dependency outputs without replaying completed steps; missing or
|
|
25
|
+
oversized required output fails closed and explains how to recover.
|
|
26
|
+
- Multi-agent crews and planned `/exec` runs use bounded parallel workers,
|
|
27
|
+
dependency fan-in, exact verdicts, cancellation-aware respawn, isolated retry
|
|
28
|
+
worktrees, and a shared-checkout write gate. Ambiguous side effects are not
|
|
29
|
+
replayed, per-prompt worktrees keep dependent steps together, and concurrent
|
|
30
|
+
output files cannot overwrite one another.
|
|
31
|
+
- Fixed false-success and argument-parsing behavior across root and slash
|
|
32
|
+
commands. Invalid usage returns 2, failed operations return 1, child process
|
|
33
|
+
failures propagate, previews do not mutate, and claim-ledger persistence is
|
|
34
|
+
structurally validated, workspace-contained, private, atomic, and bounded.
|
|
35
|
+
- Strengthened provider and tool-call interoperability for smaller/local
|
|
36
|
+
models: streamed calls keep stable ordinals, cumulative fragments are
|
|
37
|
+
deduplicated conservatively, malformed or rewritten inputs are revalidated,
|
|
38
|
+
Ollama image results and session-host overrides are preserved, and OpenAI
|
|
39
|
+
Responses transport settings now reach actual client selection.
|
|
40
|
+
- Improved terminal task UX: live task/status displays use the selected
|
|
41
|
+
session model, show only actionable or active background work, preserve
|
|
42
|
+
selection as rows change, handle narrow terminals, expose blockers and every
|
|
43
|
+
terminal status, and never advertise blocked work as the next action.
|
|
44
|
+
- Hardened session, export, research, notes, file-operation, worktree, and
|
|
45
|
+
sandbox paths against traversal, symlink escape, oversized/corrupt state,
|
|
46
|
+
interrupted writes, stale replay, and misleading success. Unsupported
|
|
47
|
+
workflow/monitor task implementations remain inspectable as history but are
|
|
48
|
+
no longer presented as runnable.
|
|
49
|
+
- Added a typed `ur-agent/sdk` subpath for ESM and CommonJS with validated
|
|
50
|
+
subprocess inputs, deterministic JSON/NDJSON result parsing, environment
|
|
51
|
+
precedence, and nonzero-exit handling. Release gates rebuild generated
|
|
52
|
+
artifacts before publish, smoke-test both SDK module formats from the packed
|
|
53
|
+
tarball, require the technical manual, and verify runtime dependency ranges.
|
|
54
|
+
|
|
3
55
|
## 1.65.6
|
|
4
56
|
|
|
5
57
|
- 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/`, `
|
|
553
|
-
and `plugins/`, so the npm package page and installed
|
|
554
|
-
|
|
555
|
-
example plugin template. See
|
|
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`),
|