ur-agent 1.37.0 → 1.37.2

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.
@@ -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.37.0",
5
+ "version": "1.37.2",
6
6
  "publisher": "ur-agent",
7
7
  "engines": {
8
8
  "vscode": "^1.92.0"
@@ -11,6 +11,7 @@
11
11
  "Other"
12
12
  ],
13
13
  "activationEvents": [
14
+ "onView:urChat",
14
15
  "onView:urInlineDiffs",
15
16
  "onView:urActions",
16
17
  "onCommand:urInlineDiffs.refresh",
@@ -32,6 +33,7 @@
32
33
  "onCommand:urInlineDiffs.reviewCurrentDiff",
33
34
  "onCommand:urInlineDiffs.runVerifier",
34
35
  "onCommand:urInlineDiffs.searchActions",
36
+ "onCommand:urInlineDiffs.pickModel",
35
37
  "onCommand:urInlineDiffs.openSettings",
36
38
  "onCommand:urInlineDiffs.openDocs",
37
39
  "onCommand:urInlineDiffs.openArtifacts",
@@ -53,6 +55,24 @@
53
55
  "typescript": "^5.7.0"
54
56
  },
55
57
  "contributes": {
58
+ "configuration": {
59
+ "title": "UR",
60
+ "properties": {
61
+ "ur.executablePath": {
62
+ "type": "string",
63
+ "default": "",
64
+ "description": "Absolute path or command name for the UR executable the extension should run. Leave empty to prefer a repo-local UR checkout in the workspace, then fall back to ur on PATH."
65
+ },
66
+ "ur.executableArgs": {
67
+ "type": "array",
68
+ "default": [],
69
+ "items": {
70
+ "type": "string"
71
+ },
72
+ "description": "Optional arguments inserted after ur.executablePath and before UR command arguments. Use this only for custom wrappers, for example when ur.executablePath points to bun and the first arg is a dist/cli.js path."
73
+ }
74
+ }
75
+ },
56
76
  "viewsContainers": {
57
77
  "activitybar": [
58
78
  {
@@ -64,6 +84,10 @@
64
84
  },
65
85
  "views": {
66
86
  "ur": [
87
+ {
88
+ "id": "urChat",
89
+ "name": "Chat"
90
+ },
67
91
  {
68
92
  "id": "urInlineDiffs",
69
93
  "name": "Inline Diffs"
@@ -165,6 +189,11 @@
165
189
  "title": "UR: Search Actions",
166
190
  "icon": "$(search)"
167
191
  },
192
+ {
193
+ "command": "urInlineDiffs.pickModel",
194
+ "title": "UR: Pick Model",
195
+ "icon": "$(symbol-variable)"
196
+ },
168
197
  {
169
198
  "command": "urInlineDiffs.openSettings",
170
199
  "title": "UR: Open Settings"
@@ -196,13 +225,41 @@
196
225
  }
197
226
  ],
198
227
  "viewsWelcome": [
228
+ {
229
+ "view": "urChat",
230
+ "contents": "Start a UR chat.\n[New Chat](command:urInlineDiffs.chat.new) [Open Chat](command:urInlineDiffs.chat.open) [Pick Model](command:urInlineDiffs.pickModel)"
231
+ },
199
232
  {
200
233
  "view": "urInlineDiffs",
201
- "contents": "UR inline diffs appear here when a review bundle is captured.\n[Show Status](command:urInlineDiffs.status) [Refresh](command:urInlineDiffs.refresh)"
234
+ "contents": "Review diff bundles captured by `ur ide diff capture`.\n[Refresh](command:urInlineDiffs.refresh) [Show Status](command:urInlineDiffs.status)"
235
+ },
236
+ {
237
+ "view": "urActions",
238
+ "contents": "Background tasks and diff actions will appear here.\n[Refresh](command:urActions.refresh) [Search Actions](command:urInlineDiffs.searchActions)"
202
239
  }
203
240
  ],
204
241
  "menus": {
205
242
  "view/title": [
243
+ {
244
+ "command": "urInlineDiffs.chat.new",
245
+ "when": "view == urChat",
246
+ "group": "navigation@1"
247
+ },
248
+ {
249
+ "command": "urInlineDiffs.chat.open",
250
+ "when": "view == urChat",
251
+ "group": "navigation@2"
252
+ },
253
+ {
254
+ "command": "urInlineDiffs.searchActions",
255
+ "when": "view == urChat",
256
+ "group": "navigation@3"
257
+ },
258
+ {
259
+ "command": "urInlineDiffs.pickModel",
260
+ "when": "view == urChat",
261
+ "group": "navigation@4"
262
+ },
206
263
  {
207
264
  "command": "urInlineDiffs.chat.new",
208
265
  "when": "view == urInlineDiffs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ur-agent",
3
- "version": "1.37.0",
3
+ "version": "1.37.2",
4
4
  "description": "UR-AGENT \u2014 autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.14",