Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions .github/workflows/multi-review.yml

This file was deleted.

32 changes: 0 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ npx skills add sun-praise/opencode-actions
## What it includes

- `review`: opinionated PR review wrapper with built-in prompt and model defaults
- `multi-review`: multi-agent parallel code review with coordinator synthesis — runs multiple reviewer personas (quality, security, etc.) in parallel, then synthesizes a unified report
- `architect-review`: architecture-level PR review focusing on coupling, layering, and structural concerns
- `feature-missing`: audits PR implementation against linked issue spec to find missing features
- `spec-coverage`: cross-references project spec/task files against PR implementation to find planned but unimplemented features
Expand Down Expand Up @@ -102,35 +101,6 @@ Use this alongside `review` to evaluate PR changes from an architecture perspect
opencode-go-api-key: ${{ secrets.OPENCODE_GO_API_KEY }}
```

## multi-review

Use this for multi-agent parallel code review with automatic synthesis. Runs multiple reviewer personas in parallel, then a coordinator agent synthesizes a unified report with cross-validation and deduplication.

- built-in personas: quality, security, performance, architecture
- parallel execution on a single runner via Python subprocess
- coordinator synthesis with dedup, cross-validation, and conflict resolution
- supports custom personas via YAML config file
- reviewer redundancy (multiple instances of the same persona)

```yaml
- name: Run multi-agent review
uses: sun-praise/opencode-actions/multi-review@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
zhipu-api-key: ${{ secrets.ZHIPU_API_KEY }}
```

With custom team:

```yaml
- name: Run multi-agent review
uses: sun-praise/opencode-actions/multi-review@v2
with:
default-team: "quality:1,security:1,performance:1"
github-token: ${{ secrets.GITHUB_TOKEN }}
zhipu-api-key: ${{ secrets.ZHIPU_API_KEY }}
```

## feature-missing

Use this alongside `review` to audit whether a PR's implementation covers all requirements from the linked issue spec.
Expand Down Expand Up @@ -177,7 +147,6 @@ Unlike `feature-missing` (which checks PR self-described scope), `spec-coverage`
| Action | Scope source | What it catches |
| --- | --- | --- |
| `review` | PR diff | Code quality, security, bugs |
| `multi-review` | PR diff (multi-agent) | Quality, security, performance, architecture in parallel |
| `architect-review` | PR diff + project conventions | Coupling, layering, module placement, structural concerns |
| `feature-missing` | PR title/body + linked issues | PR self-described scope completeness |
| `spec-coverage` | Project spec/task files | Full planned scope vs implementation |
Expand Down Expand Up @@ -233,7 +202,6 @@ Public consumers should reference the subdirectory action path:

```yaml
uses: sun-praise/opencode-actions/review@v2
uses: sun-praise/opencode-actions/multi-review@v2
uses: sun-praise/opencode-actions/architect-review@v2
uses: sun-praise/opencode-actions/feature-missing@v2
uses: sun-praise/opencode-actions/spec-coverage@v2
Expand Down
127 changes: 0 additions & 127 deletions multi-review/README.md

This file was deleted.

Loading
Loading