reviw 0.11.3 → 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 +6 -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
|
@@ -1254,6 +1254,7 @@ function diffHtmlTemplate(diffData) {
|
|
|
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
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>
|
|
1257
1258
|
</div>
|
|
1258
1259
|
<div class="modal-actions">
|
|
1259
1260
|
<button id="modal-cancel">Cancel</button>
|
|
@@ -1628,7 +1629,8 @@ function diffHtmlTemplate(diffData) {
|
|
|
1628
1629
|
{ id: 'prompt-subagents', text: 'All implementation, verification, and report creation will be done by the sub-agents.' },
|
|
1629
1630
|
{ id: 'prompt-reviw', text: 'Open in REVIW next time.' },
|
|
1630
1631
|
{ id: 'prompt-screenshots', text: 'Update all screenshots and videos.' },
|
|
1631
|
-
{ 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." }
|
|
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." }
|
|
1632
1634
|
];
|
|
1633
1635
|
const PROMPT_STORAGE_KEY = 'reviw-prompt-prefs';
|
|
1634
1636
|
|
|
@@ -3143,6 +3145,7 @@ function htmlTemplate(dataRows, cols, projectRoot, relativePath, mode, previewHt
|
|
|
3143
3145
|
<label><input type="checkbox" id="prompt-reviw" checked /> Open in REVIW next time.</label>
|
|
3144
3146
|
<label><input type="checkbox" id="prompt-screenshots" checked /> Update all screenshots and videos.</label>
|
|
3145
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>
|
|
3146
3149
|
</div>
|
|
3147
3150
|
<div class="modal-actions">
|
|
3148
3151
|
<button id="modal-cancel">Cancel</button>
|
|
@@ -4081,7 +4084,8 @@ function htmlTemplate(dataRows, cols, projectRoot, relativePath, mode, previewHt
|
|
|
4081
4084
|
{ id: 'prompt-subagents', text: 'All implementation, verification, and report creation will be done by the sub-agents.' },
|
|
4082
4085
|
{ id: 'prompt-reviw', text: 'Open in REVIW next time.' },
|
|
4083
4086
|
{ id: 'prompt-screenshots', text: 'Update all screenshots and videos.' },
|
|
4084
|
-
{ 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." }
|
|
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." }
|
|
4085
4089
|
];
|
|
4086
4090
|
const PROMPT_STORAGE_KEY = 'reviw-prompt-prefs';
|
|
4087
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
|
+
}
|