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.
npx claudepluginhub cyberboyayush/zenox-claudeThis skill uses the workspace's default tool permissions.
REVIEW MODE — Code review via Oracle activated.
Provides 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.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
Share bugs, ideas, or general feedback.
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.