/code-review
Reviews code for bugs, style, and best practices. Use when reviewing PRs or checking code quality.
$ npx -y skills add Tibsfox/gsd-skill-creator --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/code-review
Context preview
What this command does when you run it.
Reviews code for bugs, style, and best practices. Use when reviewing PRs or checking code quality.
Command definition
code-review.mdname: code-review description: Reviews code for bugs, style, and best practices. Use when reviewing PRs or checking code quality.
Code Review
Checklist
**Correctness:** Logic errors, edge cases, off-by-one, resource leaks, race conditions, error handling
**Security:** Input validation, injection (SQL/XSS), auth/authz, secrets exposure, CSRF
**Performance:** N+1 queries, redundant work, memory leaks, blocking I/O, missing indexes
**Maintainability:** Clear naming, single responsibility, DRY, test coverage
Severity
| Level | Action | |-------|--------| | CRITICAL | Security/data-loss risk — must fix | | MAJOR | Bug/performance — should fix | | MINOR | Code smell — consider fixing | | STYLE | Formatting — optional |
Comment Format
### [SEVERITY] Brief description **File:** path:line **Issue:** What's wrong **Suggestion:** Proposed fix
Flag These
- `== true/false` → use boolean directly
- `catch(e) {}` → swallowed error
- Magic numbers → named constants
- Deep nesting → early returns
- Commented-out code → delete it
An adaptive learning and coprocessor architecture for Claude Code, built as an extension to GSD (open-gsd)
Repo: Tibsfox/gsd-skill-creator
Other commands on gsd-skill-creator.
- /api-design
REST API design best practices. Use when designing APIs, choosing status codes, or creating endpoints.
Open command - /context-handoff
Creates context handoff documents for session continuity. Use when ending sessions, switching tasks, or handing off work.
Open command - /decision-framework
Thinking frameworks for decisions and problem analysis. Use when evaluating options, root causes, or prioritizing.
Open command - /env-setup
Environment configuration and secrets management. Use when setting up .env files, managing secrets, or configuring environments.
Open command - /file-operation-patterns
Safe file operation patterns. Use when performing bulk file operations or writing deployment scripts.
Open command - /gsd-dashboard-console
Checks dashboard console inbox at GSD lifecycle boundaries and handles milestone-submit, config-update, and question-response messages. Use when running GSD workflows with the dashboard active.
Open command

