npx claudepluginhub happy-nut/claude-plugin-viban --plugin vibanThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Approve a review-status issue after IDE review. Merges the branch, removes the worktree, and marks the card done.
CLI only (no direct viban.json access)
Input: $ARGUMENTS (required: issue ID)
viban get $ID
Confirm the issue is in review status. If not, tell the user and exit.
BRANCH="issue-$ID"
WT_DIR="$PWD/.viban/worktrees/$ID"
Detached HEAD from /viban:review — branch is intact, just switch back:
git checkout main
PR_NUM=$(gh pr list --head "$BRANCH" --json number --jq '.[0].number' 2>/dev/null)
If PR found:
gh pr merge "$PR_NUM" --squash --delete-branch
git pull origin main
git merge "$BRANCH" --no-ff -m "Merge issue-$ID: <title>"
git branch -d "$BRANCH"
If merge conflicts: help user resolve.
Nothing to merge. Proceed to Step 4.
[ -d "$WT_DIR" ] && git worktree remove "$WT_DIR" --force 2>/dev/null
viban done $ID
Check for stash:
STASH=$(git stash list | grep "viban-review: before #$ID" | head -1 | cut -d: -f1)
[ -n "$STASH" ] && git stash pop "$STASH"
Check for temp commit:
TEMP=$(git log --oneline -1 | grep "viban-review: temp commit before #$ID")
[ -n "$TEMP" ] && git reset HEAD~1
Report: "Issue #$ID approved and merged."
| Command | Description |
|---|---|
viban get <id> | View issue details |
viban done <id> | Mark issue as done |