-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
418 lines (418 loc) · 13.1 KB
/
Copy pathpackage.json
File metadata and controls
418 lines (418 loc) · 13.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
{
"name": "resolvr",
"displayName": "Resolvr",
"description": "Open a diff, leave comments, and let Claude work through them.",
"version": "1.4.0",
"packageManager": "pnpm@11.5.2",
"publisher": "ugudlado",
"repository": {
"type": "git",
"url": "https://github.com/ugudlado/resolvr"
},
"homepage": "https://github.com/ugudlado/resolvr#readme",
"bugs": {
"url": "https://github.com/ugudlado/resolvr/issues"
},
"license": "MIT",
"keywords": [
"code review",
"claude",
"ai",
"comments",
"diff",
"threads",
"scm"
],
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"SCM Providers",
"Other"
],
"activationEvents": [
"workspaceContains:.review/",
"onStartupFinished"
],
"icon": "assets/icon.png",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "resolvr.refresh",
"title": "Resolvr: Refresh"
},
{
"command": "resolvr.startReview",
"title": "Resolvr: Start Review"
},
{
"command": "resolvr.requestChanges",
"title": "Resolvr: Request Changes"
},
{
"command": "resolvr.createComment",
"title": "Add Comment"
},
{
"command": "resolvr.replyToComment",
"title": "Reply"
},
{
"command": "resolvr.resolveThread",
"title": "Resolve"
},
{
"command": "resolvr.unresolveThread",
"title": "Re-open"
},
{
"command": "resolvr.wontfixThread",
"title": "Won't Fix"
},
{
"command": "resolvr.outdatedThread",
"title": "Mark Outdated"
},
{
"command": "resolvr.openDiff",
"title": "Resolvr: Open Diff",
"icon": "$(diff)"
},
{
"command": "resolvr.openDiffFile",
"title": "Resolvr: Open Diff File"
},
{
"command": "resolvr.refreshDiff",
"title": "Resolvr: Refresh Diff",
"icon": "$(refresh)"
},
{
"command": "resolvr.closeDiff",
"title": "Resolvr: Close Diff"
},
{
"command": "resolvr.goToThread",
"title": "Resolvr: Go to Thread"
},
{
"command": "resolvr.toggleFileViewMode",
"title": "Resolvr: Toggle Tree/Flat View",
"icon": "$(list-tree)"
},
{
"command": "resolvr.toggleCommentsVisible",
"title": "Resolvr: Toggle Comment Visibility",
"icon": "$(eye)"
},
{
"command": "resolvr.regenerateSkills",
"title": "Resolvr: Regenerate Agent Skills",
"icon": "$(sparkle)"
},
{
"command": "resolvr.resolveWithAI",
"title": "Resolvr: Resolve with AI",
"icon": "$(robot)"
},
{
"command": "resolvr.changeTargetBranch",
"title": "Resolvr: Change Target Branch",
"icon": "$(git-branch)"
},
{
"command": "resolvr.nextHunk",
"title": "Resolvr: Next Hunk"
},
{
"command": "resolvr.prevHunk",
"title": "Resolvr: Previous Hunk"
},
{
"command": "resolvr.copyAnnotationSnippet",
"title": "Resolvr: Copy Browser Annotation Snippet",
"icon": "$(browser)"
}
],
"views": {
"explorer": [
{
"id": "resolvr.changedFiles",
"name": "Resolvr: Changed Files"
},
{
"id": "resolvr.threads",
"name": "Resolvr: Threads"
}
]
},
"viewsWelcome": [
{
"view": "resolvr.changedFiles",
"contents": "You're on the default branch — Resolvr reviews a feature branch against its target.\nCheck out a feature branch to start a review, or diff against a different base:\n[Change Target Branch](command:resolvr.changeTargetBranch)",
"when": "!resolvr.hasDiffPanel && resolvr.onDefaultBranch"
},
{
"view": "resolvr.changedFiles",
"contents": "No changes detected.\n[Refresh](command:resolvr.refresh)",
"when": "!resolvr.hasDiffPanel && !resolvr.onDefaultBranch"
},
{
"view": "resolvr.threads",
"contents": "No review threads yet.\nComment on code: open a changed file and click the + that appears in the gutter.\n[Open Diff View](command:resolvr.openDiff)\nAnnotate your running app from the browser:\n[Copy Annotation Snippet](command:resolvr.copyAnnotationSnippet)"
}
],
"walkthroughs": [
{
"id": "resolvr.gettingStarted",
"title": "Get started with Resolvr",
"description": "Review code with inline threads, annotate your running app from the browser, and resolve feedback with an AI agent.",
"steps": [
{
"id": "checkoutBranch",
"title": "Check out a feature branch",
"description": "Resolvr reviews your working branch against a target branch (auto-detected main/master).\n[Change Target Branch](command:resolvr.changeTargetBranch)",
"media": {
"markdown": "media/walkthrough/branch.md"
}
},
{
"id": "openDiff",
"title": "Open the diff view",
"description": "See every changed file and hunk, and step through the review stream.\n[Open Diff View](command:resolvr.openDiff)",
"media": {
"markdown": "media/walkthrough/diff.md"
},
"completionEvents": [
"onCommand:resolvr.openDiff"
]
},
{
"id": "firstComment",
"title": "Comment on a line",
"description": "Open any changed file and click the + that appears in the gutter to start a review thread.",
"media": {
"markdown": "media/walkthrough/comment.md"
}
},
{
"id": "resolveWithAI",
"title": "Resolve threads with AI",
"description": "Hand open threads to your coding agent — it reads the session context from .review/ and replies in-thread.\n[Resolve with AI](command:resolvr.resolveWithAI)",
"media": {
"markdown": "media/walkthrough/resolve-ai.md"
},
"completionEvents": [
"onCommand:resolvr.resolveWithAI"
]
},
{
"id": "beyondEditor",
"title": "Annotate from the browser & CLI",
"description": "Capture UI feedback by clicking elements in your running app, or file comments from the terminal.\n[Copy Annotation Snippet](command:resolvr.copyAnnotationSnippet)",
"media": {
"markdown": "media/walkthrough/beyond-editor.md"
},
"completionEvents": [
"onCommand:resolvr.copyAnnotationSnippet"
]
}
]
}
],
"menus": {
"comments/commentThread/context": [
{
"command": "resolvr.createComment",
"group": "inline",
"when": "commentController == resolvr && commentThreadIsEmpty"
},
{
"command": "resolvr.replyToComment",
"group": "inline",
"when": "commentController == resolvr && !commentThreadIsEmpty"
}
],
"commandPalette": [
{
"command": "resolvr.openDiffFile",
"when": "false"
},
{
"command": "resolvr.goToThread",
"when": "false"
},
{
"command": "resolvr.toggleFileViewMode",
"when": "false"
}
],
"view/title": [
{
"command": "resolvr.refreshDiff",
"when": "view == resolvr.changedFiles",
"group": "navigation"
},
{
"command": "resolvr.toggleFileViewMode",
"when": "view == resolvr.changedFiles && resolvr.hasDiffPanel",
"group": "navigation"
},
{
"command": "resolvr.changeTargetBranch",
"when": "view == resolvr.changedFiles && resolvr.hasDiffPanel",
"group": "navigation"
},
{
"command": "resolvr.resolveWithAI",
"when": "view == resolvr.threads",
"group": "navigation"
}
],
"comments/commentThread/title": [
{
"command": "resolvr.resolveWithAI",
"group": "inline@0",
"when": "commentController == resolvr && !commentThreadIsEmpty && commentThread == open"
},
{
"command": "resolvr.resolveThread",
"group": "inline@1",
"when": "commentController == resolvr && !commentThreadIsEmpty && commentThread == open"
},
{
"command": "resolvr.unresolveThread",
"group": "inline@1",
"when": "commentController == resolvr && !commentThreadIsEmpty && commentThread == closed"
},
{
"command": "resolvr.wontfixThread",
"group": "inline@2",
"when": "commentController == resolvr && !commentThreadIsEmpty && commentThread == open"
},
{
"command": "resolvr.outdatedThread",
"group": "inline@3",
"when": "commentController == resolvr && !commentThreadIsEmpty && commentThread == open"
}
],
"view/item/context": [
{
"command": "resolvr.resolveWithAI",
"when": "view == resolvr.threads && viewItem == thread-open",
"group": "inline@0"
},
{
"command": "resolvr.resolveThread",
"when": "view == resolvr.threads && viewItem == thread-open",
"group": "inline@1"
},
{
"command": "resolvr.wontfixThread",
"when": "view == resolvr.threads && viewItem == thread-open",
"group": "inline@2"
},
{
"command": "resolvr.outdatedThread",
"when": "view == resolvr.threads && viewItem == thread-open",
"group": "inline@3"
},
{
"command": "resolvr.unresolveThread",
"when": "view == resolvr.threads && viewItem == thread-closed",
"group": "inline@1"
}
]
},
"keybindings": [
{
"command": "resolvr.nextHunk",
"key": "alt+j",
"when": "resolvr.hasDiffPanel"
},
{
"command": "resolvr.prevHunk",
"key": "alt+k",
"when": "resolvr.hasDiffPanel"
}
],
"configuration": {
"title": "Resolvr",
"properties": {
"resolvr.codingAgent": {
"type": "string",
"enum": [
"claude",
"gemini",
"codex"
],
"default": "claude",
"description": "Which coding agent CLI to use for resolving review threads."
},
"resolvr.defaultTargetBranch": {
"type": "string",
"default": "main",
"description": "Default target branch for diff comparisons (e.g. 'main', 'master', 'develop'). New review sessions use this as their base branch."
},
"resolvr.diffBase": {
"type": "string",
"enum": [
"merge-base",
"target-tip"
],
"enumDescriptions": [
"Diff against the merge base of HEAD and the target (matches GitHub PR view; stable when the target branch advances).",
"Diff against the target branch tip (matches `git diff <target>`; shows reverse changes when the target advances)."
],
"default": "merge-base",
"description": "How the Changed Files view computes the base side. 'merge-base' (default) mirrors GitHub PR semantics."
},
"resolvr.capturePort": {
"type": "number",
"default": 43117,
"description": "Local port for the browser annotation capture endpoint (127.0.0.1 only). Change this if the default port is already in use, and regenerate your capture bookmarklet to match."
}
}
}
},
"bin": {
"resolvr": "./dist/cli.js"
},
"exports": {
"./vite": "./dist/vite.js"
},
"scripts": {
"build": "esbuild src/extension.ts --bundle --minify --platform=node --format=cjs --outfile=dist/extension.js --external:vscode && esbuild src/cli.ts --bundle --minify --platform=node --format=cjs --outfile=dist/cli.js --banner:js='#!/usr/bin/env node' && esbuild src/vitePlugin.ts --bundle --minify --platform=node --format=cjs --outfile=dist/vite.js",
"watch": "esbuild src/extension.ts --bundle --platform=node --format=cjs --outfile=dist/extension.js --external:vscode --watch",
"package": "vsce package --no-dependencies",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write src/**/*.ts",
"prepack": "pnpm build",
"prepare": "husky",
"knip": "knip",
"knip:fix": "knip --fix"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.24.0",
"husky": "^9.1.7",
"knip": "^5.86.0",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"typescript": "~5.8.3",
"vitest": "^4.1.7"
}
}