| name | vibers-code-review |
| description | Human review workflow for AI-generated GitHub projects with spec-based feedback, security review, and follow-up PRs from the Vibers service. |
| type | skill |
| created | 2026-02-27T00:00:00.000Z |
| domain | productivity |
| category | automation |
| risk | critical |
| source | https://github.com/marsiandeployer/vibers-action |
| tags | ["skill","productivity","automation","vibers","code","review"] |
Vibers — Human Code Review for AI-Generated Projects
You push code. We review it against your spec, fix issues, and send a PR.
When to Use
Use this skill when:
- You want human review for AI-generated code pushed to GitHub
- You have a project spec and want reviewers to check implementation against it
- You want review feedback delivered as a follow-up PR with suggested fixes
- You are comfortable granting the Vibers service collaborator access to the repository
Quick Start (3 steps)
Step 1. Add collaborator
Go to your repo → Settings → Collaborators → Add marsiandeployer
Step 2. Add GitHub Action
Create .github/workflows/vibers.yml:
name: Vibers Code Review
on:
push:
branches: [main]
jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: marsiandeployer/vibers-action@v1
with:
spec_url: 'https://docs.google.com/document/d/YOUR_SPEC_ID/edit'
telegram_contact: '@your_telegram'
| Parameter | What it does |
|---|
spec_url | Link to your spec (Google Doc, Notion, etc.). Must be publicly accessible (or "anyone with the link can view"). Without access to spec, review is impossible. |
review_scope |