Review
Skill azadmotala/claude-code-team-builder/examples/saas-dashboard/.claude/skills/review
A claude code skill that generates a complete AI development team — agents, skills, routing rules, and project context — for any software project.
npx -y skills add azadmotala/claude-code-team-builder --skill reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Code review for TenantFlow. Checks security, correctness, and quality. Focuses on tenant isolation, Stripe webhooks, and Clerk auth.
SKILL.md
1.1 KB, as published. Nobody here has run it
Code Review
Reviews staged/recent changes in TenantFlow for security, correctness, and quality.
Workflow
- Identify what changed —
git diff --statto see scope - Security pass — check for: tenant data leaks (missing tenantId filters), exposed secrets, auth bypass, IDOR, Stripe webhook signature skipping
- Correctness pass — does the logic match the intent? edge cases handled? subscription tier gates enforced?
- Quality pass — readability, test coverage, adherence to CLAUDE.md conventions
- Report — categorize findings as: 🔴 Must fix, 🟡 Should fix, 🟢 Suggestion
- Summary — overall assessment: ready to merge / needs work
Project specifics
- High-risk areas: tenant isolation in every DB query, Stripe webhook signature verification, Clerk organization scoping, invoice state transitions
- Conventions: shadcn/ui over custom components, tenantId on all queries, no direct DB modifications outside Prisma