reviw 0.10.6 → 0.11.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 +56 -0
- package/cli.cjs +1005 -106
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ A lightweight browser-based tool for reviewing and annotating tabular data, text
|
|
|
20
20
|
### Media Fullscreen
|
|
21
21
|
- Click images in Markdown preview to open fullscreen viewer
|
|
22
22
|
- Click videos to open fullscreen playback with native controls
|
|
23
|
+
- Click anywhere (including the image/video itself) to close the fullscreen overlay
|
|
24
|
+
- Clicking media automatically highlights the corresponding source line in the Markdown panel
|
|
23
25
|
|
|
24
26
|
### UI Features
|
|
25
27
|
- **Theme toggle**: Switch between light and dark modes
|
|
@@ -103,10 +105,64 @@ comments:
|
|
|
103
105
|
summary: Overall the data looks good, minor issues noted above.
|
|
104
106
|
```
|
|
105
107
|
|
|
108
|
+
## Claude Code Plugin
|
|
109
|
+
|
|
110
|
+
This repository also serves as a Claude Code plugin marketplace. The plugin integrates reviw into Claude Code workflows with task management and review automation.
|
|
111
|
+
|
|
112
|
+
### Installation
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
# In Claude Code
|
|
116
|
+
/plugin marketplace add kazuph/reviw
|
|
117
|
+
/plugin install reviw-plugin@reviw-marketplace
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
### Plugin Features
|
|
121
|
+
|
|
122
|
+
| Component | Name | Description |
|
|
123
|
+
|-----------|------|-------------|
|
|
124
|
+
| **Command** | `/reviw:do` | Start a task - create worktree, plan, register todos |
|
|
125
|
+
| **Command** | `/reviw:done` | Complete checklist - collect evidence, start review with reviw |
|
|
126
|
+
| **Agent** | `report-builder` | Prepare reports and evidence for user review |
|
|
127
|
+
| **Skill** | `artifact-proof` | Collect evidence (screenshots, videos, logs) + reviw review workflow |
|
|
128
|
+
| **Hook** | PreToolUse | Remind to review before git commit/push |
|
|
129
|
+
| **Hook** | Stop | Warn if task is still in progress |
|
|
130
|
+
|
|
131
|
+
### Workflow
|
|
132
|
+
|
|
133
|
+
```
|
|
134
|
+
/reviw:do <task description>
|
|
135
|
+
↓
|
|
136
|
+
Create worktree + Plan
|
|
137
|
+
↓
|
|
138
|
+
Implementation
|
|
139
|
+
↓
|
|
140
|
+
/reviw:done
|
|
141
|
+
↓
|
|
142
|
+
Collect evidence + Create report
|
|
143
|
+
↓
|
|
144
|
+
npx reviw opens report (foreground)
|
|
145
|
+
↓
|
|
146
|
+
User comments → Submit & Exit
|
|
147
|
+
↓
|
|
148
|
+
Register feedback to Todo
|
|
149
|
+
↓
|
|
150
|
+
Fix → Re-review until approved
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
### Completion Criteria
|
|
154
|
+
|
|
155
|
+
| Stage | Content |
|
|
156
|
+
|-------|---------|
|
|
157
|
+
| 1/3 | Implementation complete |
|
|
158
|
+
| 2/3 | Build, start, verification complete |
|
|
159
|
+
| 3/3 | Review with reviw → User approval |
|
|
160
|
+
|
|
106
161
|
## Development
|
|
107
162
|
|
|
108
163
|
- Main source: `cli.cjs`
|
|
109
164
|
- Tests: `npm test` (vitest + playwright)
|
|
165
|
+
- Plugin: `plugin/` directory
|
|
110
166
|
|
|
111
167
|
## License
|
|
112
168
|
|