ur-agent 1.65.12 → 1.65.13
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 +15 -0
- package/dist/cli.js +419 -339
- 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 +19 -5
- package/technical/README.md +1 -1
package/docs/VALIDATION.md
CHANGED
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.65.
|
|
48
|
+
<p class="eyebrow">Version 1.65.13</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.65.
|
|
5
|
+
"version": "1.65.13",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED
package/technical/04-tools.md
CHANGED
|
@@ -92,6 +92,15 @@ redirection, backgrounding, sandbox overrides, and permission-time rewrites to
|
|
|
92
92
|
mutating commands fail closed. The preview command remains a Bash side effect
|
|
93
93
|
and still follows normal permission, sandbox, and plan-worker rules.
|
|
94
94
|
|
|
95
|
+
Syntax verification has the same task-gate-only separation. A strictly parsed
|
|
96
|
+
`node --check <single-file>` or the bounded HTML checker that reads one file,
|
|
97
|
+
constructs but never invokes its first `<script>` body, and prints only a fixed
|
|
98
|
+
syntax result may run after a task-free one-shot Write. Generic `node -e`,
|
|
99
|
+
additional statements or invocation, mismatched files, flags, redirects,
|
|
100
|
+
expansion, backgrounding, sandbox overrides, and permission-time rewrites do
|
|
101
|
+
not qualify. Node remains non-read-only for Bash permission and sandbox
|
|
102
|
+
purposes, so this compatibility path cannot become a general execution bypass.
|
|
103
|
+
|
|
95
104
|
Task completion also protects that lifecycle boundary. When the final
|
|
96
105
|
actionable `in_progress` task has a successful `Write`/`Edit`/`MultiEdit`/
|
|
97
106
|
`NotebookEdit` after its recorded start but no later successful inspection,
|
|
@@ -117,7 +126,11 @@ Descriptions are optional and are never fabricated from labels. The runtime
|
|
|
117
126
|
accepts only lossless compatibility forms such as string choices and recognized
|
|
118
127
|
question-text aliases; it does not turn arbitrary prose or flat option rows into
|
|
119
128
|
invented questions. More than four blocking decisions are asked in later
|
|
120
|
-
rounds.
|
|
129
|
+
rounds. The sole presentation-only repair compacts a safe explicit header of at
|
|
130
|
+
most 500 characters to one bounded first-word chip when it exceeds 12
|
|
131
|
+
characters. The question, options, labels, descriptions, previews, metadata,
|
|
132
|
+
and selection mode remain byte-for-byte unchanged. Control/ANSI-bearing or
|
|
133
|
+
grossly oversized headers still fail validation.
|
|
121
134
|
|
|
122
135
|
One narrow end-turn recovery exists for weak models that clearly attempted this
|
|
123
136
|
tool but failed to emit a native call. On an interactive main-agent turn with
|
|
@@ -126,10 +139,11 @@ no existing tool use, the runtime may recover either one canonical
|
|
|
126
139
|
to invoke `AskUserQuestion`, or one standalone Markdown decision menu with
|
|
127
140
|
exactly one bold question, 2–8 bold labeled options with descriptions, and a
|
|
128
141
|
terminal instruction to select an option. The recovered object must pass the
|
|
129
|
-
live `AskUserQuestion` schema unchanged
|
|
130
|
-
the UI. JSON repair,
|
|
131
|
-
|
|
132
|
-
|
|
142
|
+
live `AskUserQuestion` schema unchanged except for that same deterministic
|
|
143
|
+
UI-header compaction before the normal tool executor opens the UI. JSON repair,
|
|
144
|
+
question/choice truncation, duplicate/ambiguous candidates, casual “A or B?”
|
|
145
|
+
prose, examples, incomplete menus, background workers, headless sessions, and
|
|
146
|
+
unavailable/disabled tools all fail closed.
|
|
133
147
|
|
|
134
148
|
Answers and annotations are not model input fields. They are accepted only
|
|
135
149
|
during post-permission validation after the interactive UI has returned one
|
package/technical/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# UR-Nexus — Technical Specifications
|
|
2
2
|
|
|
3
|
-
> Audited against the executable source and tests for `ur-agent` v1.65.
|
|
3
|
+
> Audited against the executable source and tests for `ur-agent` v1.65.13.
|
|
4
4
|
> Command, tool, flag, provider, and setting claims are checked against the
|
|
5
5
|
> implementation rather than copied from product prose. Release validation
|
|
6
6
|
> keeps this version synchronized and packages the complete `technical/`
|