ur-agent 1.37.0 → 1.37.1
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/README.md +2 -0
- package/dist/cli.js +143 -67
- package/docs/CONFIGURATION.md +2 -0
- package/docs/IDE.md +9 -2
- package/docs/providers.md +2 -0
- package/extensions/vscode-ur-inline-diffs/README.md +11 -2
- package/extensions/vscode-ur-inline-diffs/media/ur.svg +3 -4
- package/extensions/vscode-ur-inline-diffs/out/extension.js +367 -129
- package/extensions/vscode-ur-inline-diffs/package.json +41 -2
- package/package.json +1 -1
|
@@ -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.
|
|
5
|
+
"version": "1.37.1",
|
|
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",
|
|
@@ -64,6 +66,10 @@
|
|
|
64
66
|
},
|
|
65
67
|
"views": {
|
|
66
68
|
"ur": [
|
|
69
|
+
{
|
|
70
|
+
"id": "urChat",
|
|
71
|
+
"name": "Chat"
|
|
72
|
+
},
|
|
67
73
|
{
|
|
68
74
|
"id": "urInlineDiffs",
|
|
69
75
|
"name": "Inline Diffs"
|
|
@@ -165,6 +171,11 @@
|
|
|
165
171
|
"title": "UR: Search Actions",
|
|
166
172
|
"icon": "$(search)"
|
|
167
173
|
},
|
|
174
|
+
{
|
|
175
|
+
"command": "urInlineDiffs.pickModel",
|
|
176
|
+
"title": "UR: Pick Model",
|
|
177
|
+
"icon": "$(symbol-variable)"
|
|
178
|
+
},
|
|
168
179
|
{
|
|
169
180
|
"command": "urInlineDiffs.openSettings",
|
|
170
181
|
"title": "UR: Open Settings"
|
|
@@ -196,13 +207,41 @@
|
|
|
196
207
|
}
|
|
197
208
|
],
|
|
198
209
|
"viewsWelcome": [
|
|
210
|
+
{
|
|
211
|
+
"view": "urChat",
|
|
212
|
+
"contents": "Start a UR chat.\n[New Chat](command:urInlineDiffs.chat.new) [Open Chat](command:urInlineDiffs.chat.open) [Pick Model](command:urInlineDiffs.pickModel)"
|
|
213
|
+
},
|
|
199
214
|
{
|
|
200
215
|
"view": "urInlineDiffs",
|
|
201
|
-
"contents": "
|
|
216
|
+
"contents": "Review diff bundles captured by `ur ide diff capture`.\n[Refresh](command:urInlineDiffs.refresh) [Show Status](command:urInlineDiffs.status)"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"view": "urActions",
|
|
220
|
+
"contents": "Background tasks and diff actions will appear here.\n[Refresh](command:urActions.refresh) [Search Actions](command:urInlineDiffs.searchActions)"
|
|
202
221
|
}
|
|
203
222
|
],
|
|
204
223
|
"menus": {
|
|
205
224
|
"view/title": [
|
|
225
|
+
{
|
|
226
|
+
"command": "urInlineDiffs.chat.new",
|
|
227
|
+
"when": "view == urChat",
|
|
228
|
+
"group": "navigation@1"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"command": "urInlineDiffs.chat.open",
|
|
232
|
+
"when": "view == urChat",
|
|
233
|
+
"group": "navigation@2"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"command": "urInlineDiffs.searchActions",
|
|
237
|
+
"when": "view == urChat",
|
|
238
|
+
"group": "navigation@3"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"command": "urInlineDiffs.pickModel",
|
|
242
|
+
"when": "view == urChat",
|
|
243
|
+
"group": "navigation@4"
|
|
244
|
+
},
|
|
206
245
|
{
|
|
207
246
|
"command": "urInlineDiffs.chat.new",
|
|
208
247
|
"when": "view == urInlineDiffs",
|
package/package.json
CHANGED