reviw 0.11.2 → 0.12.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/README.md +3 -0
- package/cli.cjs +10 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -90,6 +90,9 @@ reviw changes.diff
|
|
|
90
90
|
### Mermaid Fullscreen
|
|
91
91
|

|
|
92
92
|
|
|
93
|
+
### Submit Review Dialog
|
|
94
|
+

|
|
95
|
+
|
|
93
96
|
## Output Example
|
|
94
97
|
|
|
95
98
|
```yaml
|
package/cli.cjs
CHANGED
|
@@ -1253,6 +1253,8 @@ function diffHtmlTemplate(diffData) {
|
|
|
1253
1253
|
<label><input type="checkbox" id="prompt-subagents" checked /> All implementation, verification, and report creation will be done by the sub-agents.</label>
|
|
1254
1254
|
<label><input type="checkbox" id="prompt-reviw" checked /> Open in REVIW next time.</label>
|
|
1255
1255
|
<label><input type="checkbox" id="prompt-screenshots" checked /> Update all screenshots and videos.</label>
|
|
1256
|
+
<label><input type="checkbox" id="prompt-user-feedback-todo" checked /> Add the user's feedback to the Todo list, and do not check it off without the user's approval.</label>
|
|
1257
|
+
<label><input type="checkbox" id="prompt-deep-dive" checked /> Before implementing, deeply probe the user's request. If using Claude Code, start with AskUserQuestion and EnterPlanMode; otherwise achieve the same depth through interactive questions and planning, even if the UI differs.</label>
|
|
1256
1258
|
</div>
|
|
1257
1259
|
<div class="modal-actions">
|
|
1258
1260
|
<button id="modal-cancel">Cancel</button>
|
|
@@ -1626,7 +1628,9 @@ function diffHtmlTemplate(diffData) {
|
|
|
1626
1628
|
const promptCheckboxes = [
|
|
1627
1629
|
{ id: 'prompt-subagents', text: 'All implementation, verification, and report creation will be done by the sub-agents.' },
|
|
1628
1630
|
{ id: 'prompt-reviw', text: 'Open in REVIW next time.' },
|
|
1629
|
-
{ id: 'prompt-screenshots', text: 'Update all screenshots and videos.' }
|
|
1631
|
+
{ id: 'prompt-screenshots', text: 'Update all screenshots and videos.' },
|
|
1632
|
+
{ id: 'prompt-user-feedback-todo', text: "Add the user's feedback to the Todo list, and do not check it off without the user's approval." },
|
|
1633
|
+
{ id: 'prompt-deep-dive', text: "Before implementing, deeply probe the user's request. If using Claude Code, start with AskUserQuestion and EnterPlanMode; otherwise achieve the same depth through interactive questions and planning, even if the UI differs." }
|
|
1630
1634
|
];
|
|
1631
1635
|
const PROMPT_STORAGE_KEY = 'reviw-prompt-prefs';
|
|
1632
1636
|
|
|
@@ -3140,6 +3144,8 @@ function htmlTemplate(dataRows, cols, projectRoot, relativePath, mode, previewHt
|
|
|
3140
3144
|
<label><input type="checkbox" id="prompt-subagents" checked /> All implementation, verification, and report creation will be done by the sub-agents.</label>
|
|
3141
3145
|
<label><input type="checkbox" id="prompt-reviw" checked /> Open in REVIW next time.</label>
|
|
3142
3146
|
<label><input type="checkbox" id="prompt-screenshots" checked /> Update all screenshots and videos.</label>
|
|
3147
|
+
<label><input type="checkbox" id="prompt-user-feedback-todo" checked /> Add the user's feedback to the Todo list, and do not check it off without the user's approval.</label>
|
|
3148
|
+
<label><input type="checkbox" id="prompt-deep-dive" checked /> Before implementing, deeply probe the user's request. If using Claude Code, start with AskUserQuestion and EnterPlanMode; otherwise achieve the same depth through interactive questions and planning, even if the UI differs.</label>
|
|
3143
3149
|
</div>
|
|
3144
3150
|
<div class="modal-actions">
|
|
3145
3151
|
<button id="modal-cancel">Cancel</button>
|
|
@@ -4077,7 +4083,9 @@ function htmlTemplate(dataRows, cols, projectRoot, relativePath, mode, previewHt
|
|
|
4077
4083
|
const promptCheckboxes = [
|
|
4078
4084
|
{ id: 'prompt-subagents', text: 'All implementation, verification, and report creation will be done by the sub-agents.' },
|
|
4079
4085
|
{ id: 'prompt-reviw', text: 'Open in REVIW next time.' },
|
|
4080
|
-
{ id: 'prompt-screenshots', text: 'Update all screenshots and videos.' }
|
|
4086
|
+
{ id: 'prompt-screenshots', text: 'Update all screenshots and videos.' },
|
|
4087
|
+
{ id: 'prompt-user-feedback-todo', text: "Add the user's feedback to the Todo list, and do not check it off without the user's approval." },
|
|
4088
|
+
{ id: 'prompt-deep-dive', text: "Before implementing, deeply probe the user's request. If using Claude Code, start with AskUserQuestion and EnterPlanMode; otherwise achieve the same depth through interactive questions and planning, even if the UI differs." }
|
|
4081
4089
|
];
|
|
4082
4090
|
const PROMPT_STORAGE_KEY = 'reviw-prompt-prefs';
|
|
4083
4091
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reviw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Lightweight file reviewer with in-browser comments for CSV, TSV, Markdown, and Git diffs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"cli.cjs"
|
|
11
11
|
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "vitest run",
|
|
14
|
+
"test:watch": "vitest"
|
|
15
|
+
},
|
|
12
16
|
"license": "MIT",
|
|
13
17
|
"author": "kazuph",
|
|
14
18
|
"publishConfig": {
|
|
@@ -27,9 +31,5 @@
|
|
|
27
31
|
"@playwright/test": "^1.57.0",
|
|
28
32
|
"playwright": "^1.57.0",
|
|
29
33
|
"vitest": "^4.0.14"
|
|
30
|
-
},
|
|
31
|
-
"scripts": {
|
|
32
|
-
"test": "vitest run",
|
|
33
|
-
"test:watch": "vitest"
|
|
34
34
|
}
|
|
35
|
-
}
|
|
35
|
+
}
|