reviw 1.3.0 → 1.4.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.ja.md CHANGED
@@ -165,7 +165,25 @@ summary: Overall the data looks good, minor issues noted above.
165
165
  ```bash
166
166
  # Claude Codeで
167
167
  /plugin marketplace add kazuph/reviw
168
- /plugin install reviw-plugin@reviw-marketplace
168
+ /plugin install reviw-plugin@reviw-plugins
169
+ ```
170
+
171
+ ### `npx skills` でスキルを入れる
172
+
173
+ Codex、OpenCode、Cursor など、`npx skills` 対応エージェントで reviw のタスクスキルを使いたい場合はこちらを使います。Claude Code は上のプラグイン導線を使ってください。
174
+
175
+ ```bash
176
+ # まず検出されるスキルを確認
177
+ npx skills add https://github.com/kazuph/reviw --list
178
+
179
+ # Codex 向けに全スキルをグローバルインストール
180
+ npx skills add https://github.com/kazuph/reviw -g -a codex -s '*' --copy -y
181
+
182
+ # Codex と OpenCode へまとめてグローバルインストール
183
+ npx skills add https://github.com/kazuph/reviw -g -a codex -a opencode -s '*' --copy -y
184
+ ```
185
+
186
+ `npx skills` が配るのは `plugin/skills/` 配下のスキル群です。Claude Code のプラグイン command や hooks はこの経路では入らず、上の Claude Code プラグイン導線でインストールします。
169
187
  ```
170
188
 
171
189
  ### プラグインディレクトリ構成
@@ -174,9 +192,6 @@ summary: Overall the data looks good, minor issues noted above.
174
192
  plugin/
175
193
  ├── .claude-plugin/
176
194
  │ └── plugin.json # プラグインメタデータ(名前、バージョン、説明)
177
- ├── commands/
178
- │ ├── do.md # /reviw:doコマンド定義
179
- │ └── done.md # /reviw:doneコマンド定義
180
195
  ├── agents/
181
196
  │ ├── report-builder.md # レポート生成エージェント
182
197
  │ ├── e2e-health-reviewer.md # E2Eテスト健全性チェック
@@ -187,6 +202,20 @@ plugin/
187
202
  │ ├── review-copy-consistency.md # テキスト整合性
188
203
  │ └── review-e2e-integrity.md # E2Eテスト整合性
189
204
  ├── skills/
205
+ │ ├── ask/
206
+ │ │ └── SKILL.md # 要件ヒアリングスキル
207
+ │ ├── bucho/
208
+ │ │ └── SKILL.md # 部長オーケストレーションスキル
209
+ │ ├── do/
210
+ │ │ └── SKILL.md # タスク開始スキル
211
+ │ ├── done/
212
+ │ │ └── SKILL.md # タスク完了スキル
213
+ │ ├── tiny-do/
214
+ │ │ └── SKILL.md # 軽量タスク開始スキル
215
+ │ ├── tiny-done/
216
+ │ │ └── SKILL.md # 軽量タスク完了スキル
217
+ │ ├── validate-report/
218
+ │ │ └── SKILL.md # REPORT.md検証の内部 helper
190
219
  │ ├── artifact-proof/
191
220
  │ │ └── SKILL.md # エビデンス収集スキル
192
221
  │ └── webapp-testing/
@@ -204,8 +233,11 @@ plugin/
204
233
 
205
234
  | 種類 | 名前 | 説明 |
206
235
  |------|------|------|
207
- | **コマンド** | `/reviw:do` | タスク開始 - git wtでworktree作成、計画、todo登録 |
208
- | **コマンド** | `/reviw:done` | 完了チェックリスト - 7レビューエージェント実行、エビデンス収集、レビュー開始 |
236
+ | **タスクスキル** | `/reviw:do` | タスク開始 - git wtでworktree作成、計画、todo登録 |
237
+ | **タスクスキル** | `/reviw:done` | 完了チェックリスト - 7レビューエージェント実行、エビデンス収集、レビュー開始 |
238
+ | **タスクスキル** | `/reviw:tiny-do` | 小タスク向けの軽量開始フロー |
239
+ | **タスクスキル** | `/reviw:tiny-done` | 小タスク向けの軽量完了フロー |
240
+ | **タスクスキル** | `/reviw:bucho` | Claude Code と Codex を束ねる部長モード |
209
241
  | **エージェント** | `report-builder` | ユーザーレビュー用レポート準備 |
210
242
  | **エージェント** | `review-code-quality` | コード品質: 可読性、DRY、型安全性、エラーハンドリング |
211
243
  | **エージェント** | `review-security` | セキュリティ: XSS、インジェクション、OWASP Top 10、秘密情報検出 |
@@ -221,7 +253,22 @@ plugin/
221
253
 
222
254
  ---
223
255
 
224
- ### コマンド
256
+ ### タスクスキル
257
+
258
+ #### 同梱タスクスキル一覧
259
+
260
+ | スキル | 用途 |
261
+ |------|------|
262
+ | `ask` | 実装前に要求・スコープ・制約・成功条件を明確化する |
263
+ | `bucho` | Claude Code と Codex を tmux 経由で束ねてチーム開発フローを回す |
264
+ | `check-yourself` | 推測を禁止し、実際の検証を強制する |
265
+ | `commit-and-push` | コミットメッセージ生成、commit、push、最終状態確認まで実行する |
266
+ | `do` | worktree 作成、計画策定、レビュー準備を含むフルの開始フローを実行する |
267
+ | `done` | エビデンス収集と reviw レビューを含むフルの完了フローを実行する |
268
+ | `open` | ファイル、成果物、URL を macOS の `open` で開く |
269
+ | `tiny-do` | 小さなタスク向けの軽量開始フローで実装へ入る |
270
+ | `tiny-done` | 小さなタスク向けの軽量完了フローで検証と確認を行う |
271
+ | `validate-report` | `done` から呼ばれる内部 helper として `REPORT.md` を検証する |
225
272
 
226
273
  #### `/reviw:do <タスク説明>`
227
274
 
@@ -243,7 +290,7 @@ plugin/
243
290
  └── videos/ # 動画録画
244
291
  ```
245
292
 
246
- **タスク再開:** セッション開始時またはコンテキスト圧縮後、コマンドは既存のworktreeを確認(`git wt`)し、`REPORT.md`から再開します。
293
+ **タスク再開:** セッション開始時またはコンテキスト圧縮後、スキルは既存のworktreeを確認(`git wt`)し、`REPORT.md`から再開します。
247
294
 
248
295
  #### `/reviw:done`
249
296
 
package/README.md CHANGED
@@ -165,7 +165,25 @@ This repository also serves as a Claude Code plugin marketplace. The plugin inte
165
165
  ```bash
166
166
  # In Claude Code
167
167
  /plugin marketplace add kazuph/reviw
168
- /plugin install reviw-plugin@reviw-marketplace
168
+ /plugin install reviw-plugin@reviw-plugins
169
+ ```
170
+
171
+ ### Install Skills with `npx skills`
172
+
173
+ Use this route when you want the task skills in Codex, OpenCode, Cursor, or other agent environments that support `npx skills`. For Claude Code, use the plugin installation flow above.
174
+
175
+ ```bash
176
+ # Preview what will be installed
177
+ npx skills add https://github.com/kazuph/reviw --list
178
+
179
+ # Install all reviw skills globally for Codex
180
+ npx skills add https://github.com/kazuph/reviw -g -a codex -s '*' --copy -y
181
+
182
+ # Install all reviw skills globally for Codex and OpenCode
183
+ npx skills add https://github.com/kazuph/reviw -g -a codex -a opencode -s '*' --copy -y
184
+ ```
185
+
186
+ `npx skills` distributes the skill directories under `plugin/skills/`. Claude Code plugin commands and hooks are installed through the Claude Code plugin flow above, not through `npx skills`.
169
187
  ```
170
188
 
171
189
  ### Plugin Directory Structure
@@ -174,9 +192,6 @@ This repository also serves as a Claude Code plugin marketplace. The plugin inte
174
192
  plugin/
175
193
  ├── .claude-plugin/
176
194
  │ └── plugin.json # Plugin metadata (name, version, description)
177
- ├── commands/
178
- │ ├── do.md # /reviw:do command definition
179
- │ └── done.md # /reviw:done command definition
180
195
  ├── agents/
181
196
  │ ├── report-builder.md # Report generation agent
182
197
  │ ├── e2e-health-reviewer.md # E2E test health check
@@ -187,6 +202,20 @@ plugin/
187
202
  │ ├── review-copy-consistency.md # Text consistency
188
203
  │ └── review-e2e-integrity.md # E2E test integrity
189
204
  ├── skills/
205
+ │ ├── ask/
206
+ │ │ └── SKILL.md # Requirements elicitation skill
207
+ │ ├── bucho/
208
+ │ │ └── SKILL.md # Manager orchestration skill
209
+ │ ├── do/
210
+ │ │ └── SKILL.md # Task start skill
211
+ │ ├── done/
212
+ │ │ └── SKILL.md # Task completion skill
213
+ │ ├── tiny-do/
214
+ │ │ └── SKILL.md # Lightweight task start skill
215
+ │ ├── tiny-done/
216
+ │ │ └── SKILL.md # Lightweight task completion skill
217
+ │ ├── validate-report/
218
+ │ │ └── SKILL.md # Internal REPORT.md validation helper
190
219
  │ ├── artifact-proof/
191
220
  │ │ └── SKILL.md # Evidence collection skill
192
221
  │ └── webapp-testing/
@@ -204,8 +233,11 @@ plugin/
204
233
 
205
234
  | Type | Name | Description |
206
235
  |------|------|-------------|
207
- | **Command** | `/reviw:do` | Start a task - create worktree with git wt, plan, register todos |
208
- | **Command** | `/reviw:done` | Complete checklist - run 7 review agents, collect evidence, start review |
236
+ | **Task Skill** | `/reviw:do` | Start a task - create worktree with git wt, plan, register todos |
237
+ | **Task Skill** | `/reviw:done` | Complete checklist - run 7 review agents, collect evidence, start review |
238
+ | **Task Skill** | `/reviw:tiny-do` | Start a smaller task with the lightweight workflow |
239
+ | **Task Skill** | `/reviw:tiny-done` | Finish a smaller task with lightweight review |
240
+ | **Task Skill** | `/reviw:bucho` | Orchestrate Claude Code and Codex in manager mode |
209
241
  | **Agent** | `report-builder` | Prepare reports and evidence for user review |
210
242
  | **Agent** | `review-code-quality` | Code quality: readability, DRY, type safety, error handling |
211
243
  | **Agent** | `review-security` | Security: XSS, injection, OWASP Top 10, secrets detection |
@@ -221,7 +253,22 @@ plugin/
221
253
 
222
254
  ---
223
255
 
224
- ### Commands
256
+ ### Task Skills
257
+
258
+ #### Bundled task skills
259
+
260
+ | Skill | Purpose |
261
+ |------|---------|
262
+ | `ask` | Clarify requirements, scope, constraints, and success criteria before implementation |
263
+ | `bucho` | Orchestrate Claude Code and Codex as a managed team through tmux |
264
+ | `check-yourself` | Force real verification instead of assumptions or lightweight spot checks |
265
+ | `commit-and-push` | Generate a commit message, create the commit, push it, and confirm a clean git state |
266
+ | `do` | Start the full task workflow with worktree setup, planning, and review preparation |
267
+ | `done` | Run the full completion workflow with evidence collection and reviw-based review |
268
+ | `open` | Open files, artifacts, and URLs with macOS `open` |
269
+ | `tiny-do` | Start a smaller task with the lightweight workflow |
270
+ | `tiny-done` | Finish a smaller task with the lightweight completion flow |
271
+ | `validate-report` | Internal helper used by `done` to validate `REPORT.md` against artifact-proof reporting rules |
225
272
 
226
273
  #### `/reviw:do <task description>`
227
274
 
@@ -243,7 +290,7 @@ Starts a new task with proper environment setup.
243
290
  └── videos/ # Video recordings
244
291
  ```
245
292
 
246
- **Task resumption:** When a session starts or after context compaction, the command checks for existing worktrees (via `git wt`) and resumes from `REPORT.md`.
293
+ **Task resumption:** When a session starts or after context compaction, the skill checks for existing worktrees (via `git wt`) and resumes from `REPORT.md`.
247
294
 
248
295
  #### `/reviw:done`
249
296