ur-agent 1.58.1 → 1.60.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 +53 -0
- package/dist/cli.js +2097 -1481
- package/docs/USAGE.md +9 -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 +1 -1
package/docs/USAGE.md
CHANGED
|
@@ -339,6 +339,15 @@ UR includes slash commands and CLI subcommands for common workflows:
|
|
|
339
339
|
raw video/trace requires selector redaction to be disabled
|
|
340
340
|
- `ur trigger ...` to parse GitHub/Slack webhook payloads and optionally launch a headless run
|
|
341
341
|
- `ur agent-templates ...`, `ur agent-task ...`, `ur agent-inspect`, `ur agent-features`, and `ur agent-trends` for agent template, PR handoff, timeline, and coverage utilities
|
|
342
|
+
- `ur sources` lists every untrusted block that entered the session (web fetches,
|
|
343
|
+
MCP results) with its source, size, digest and any injection signals.
|
|
344
|
+
`ur sources --check "<span>"` reports which source contains a span, or states
|
|
345
|
+
that it was not grounded in anything fetched. The ledger is per-process and
|
|
346
|
+
in-memory by design.
|
|
347
|
+
- `ur grade-trajectory --file <transcript.jsonl> --min-score 70` grades a run on
|
|
348
|
+
tool choice, verification, instruction compliance, safety and efficiency, and
|
|
349
|
+
exits non-zero below the threshold so it can gate CI. Rules are deterministic;
|
|
350
|
+
no model judges another model.
|
|
342
351
|
- `ur agent-inspect --costs [subagentsDir]` breaks a fan-out down per agent.
|
|
343
352
|
Subagent turns are never in the parent transcript — they are written to
|
|
344
353
|
`{sessionId}/subagents/agent-{agentId}.jsonl` — so without this a fan-out
|
package/documentation/index.html
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<main id="content" class="content">
|
|
46
46
|
<header class="topbar">
|
|
47
47
|
<div>
|
|
48
|
-
<p class="eyebrow">Version 1.
|
|
48
|
+
<p class="eyebrow">Version 1.60.0</p>
|
|
49
49
|
<h1>UR-Nexus Documentation</h1>
|
|
50
50
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
51
51
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.60.0",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED