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.
@@ -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.79.1</p>
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>
@@ -7,7 +7,7 @@ plugins {
7
7
  }
8
8
 
9
9
  group = "dev.urnexus"
10
- version = "1.79.1"
10
+ version = "1.80.0"
11
11
 
12
12
  repositories {
13
13
  mavenCentral()
@@ -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.79.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.79.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"
@@ -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 where every feature flag
7
- * is `false` by default.
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
- (process.env.FEATURE_FLAGS ?? '').split(',').filter(Boolean),
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',