From zenox
Activate code review mode via Oracle agent. Use when user says 'review', 'self-review', or 'code review', or after completing significant implementations. Surfaces critical issues, security concerns, and regressions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/zenox:reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
REVIEW MODE — Code review via Oracle activated.
REVIEW MODE — Code review via Oracle activated.
Required actions:
git diff (or git diff HEAD~1) to capture the actual changesReview pattern:
// Step 1: Get the diff
Bash("git diff") // or git diff HEAD~1 for committed changes
// Step 2: Fire ONE oracle agent with the diff included
Agent(
subagent_type: "oracle",
description: "Review recent changes",
prompt: "Review this implementation. Here is the git diff:\n\n```diff\n[actual diff output]\n```\n\nFocus on correctness, security, regressions, and architecture fit."
)
// Step 3: Wait for verdict -> address Critical/High findings -> deliver
Anti-patterns (DO NOT do these):
Verdict categories: Ship it / Ship with minor fixes / Needs changes / Needs rethinking.
Now execute the review. $ARGUMENTS
Get the git diff, fire one Oracle agent with the complete diff, and report the verdict.
npx claudepluginhub cyberboyayush/zenox-claudeProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.