ur-agent 1.79.1 → 1.80.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 +37 -0
- package/README.md +6 -6
- package/dist/cli.js +158647 -130549
- package/docs/A2A.md +5 -4
- package/docs/AGENT_FEATURES.md +17 -5
- package/docs/AGENT_TRENDS.md +34 -28
- package/docs/CONFIGURATION.md +43 -2
- package/docs/GAP_ANALYSIS_2026-08-11.md +59 -175
- package/docs/USAGE.md +32 -4
- 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 +2 -1
- package/plugins/bunBundleDev.ts +6 -5
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.80.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.80.0",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ur-agent",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.80.0",
|
|
4
4
|
"description": "UR-Nexus — autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "bun@1.3.14",
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"@a2a-js/sdk": "0.3.14",
|
|
85
85
|
"@ag-ui/core": "0.0.57",
|
|
86
86
|
"@ag-ui/encoder": "0.0.57",
|
|
87
|
+
"@anthropic-ai/sandbox-runtime": "0.0.71",
|
|
87
88
|
"diff2html": "^3.4.56",
|
|
88
89
|
"playwright-core": "^1.61.1",
|
|
89
90
|
"sharp": "^0.35.3"
|
package/plugins/bunBundleDev.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
*
|
|
4
4
|
* In production, Bun's bundler statically replaces `feature()` calls at compile
|
|
5
5
|
* time. During development (running unbundled with `bun run`), this plugin
|
|
6
|
-
* intercepts `bun:bundle` imports and returns a stub
|
|
7
|
-
*
|
|
6
|
+
* intercepts `bun:bundle` imports and returns a stub. Security-critical flags
|
|
7
|
+
* mirror production by default; optional product flags remain disabled.
|
|
8
8
|
*
|
|
9
9
|
* To enable specific flags during dev, set the env var FEATURE_FLAGS as a
|
|
10
10
|
* comma-separated list:
|
|
@@ -13,9 +13,10 @@
|
|
|
13
13
|
*/
|
|
14
14
|
import { plugin } from 'bun'
|
|
15
15
|
|
|
16
|
-
const enabledFlags = new Set(
|
|
17
|
-
|
|
18
|
-
)
|
|
16
|
+
const enabledFlags = new Set([
|
|
17
|
+
'TREE_SITTER_BASH',
|
|
18
|
+
...(process.env.FEATURE_FLAGS ?? '').split(',').filter(Boolean),
|
|
19
|
+
])
|
|
19
20
|
|
|
20
21
|
plugin({
|
|
21
22
|
name: 'bun-bundle-dev',
|