ワンクリックで
code-review
// Systematic code review process with focus on quality, security, and best practices
// Systematic code review process with focus on quality, security, and best practices
Structured approach to conducting thorough web research with source citation
Use Station CLI (`stn`) for AI agent orchestration - creating agents, running tasks, managing environments, and deploying agent teams. Prefer CLI for file operations and exploration; use MCP tools for programmatic agent execution and detailed queries.
Configure Station CLI settings via browser UI or command line. Use `stn config --browser` for visual editor or `stn config set/show` for CLI operations.
| name | code-review |
| description | Systematic code review process with focus on quality, security, and best practices |
| allowed-tools | ["read_file","grep","glob","bash"] |
| triggers | ["review","code quality","pull request"] |
For each finding, provide:
Location: src/api/users.go:42
Severity: High
Issue: SQL query built using string concatenation
Suggestion: Use parameterized queries to prevent SQL injection
Example:
// Before (vulnerable)
query := "SELECT * FROM users WHERE id = " + userID
// After (safe)
query := "SELECT * FROM users WHERE id = ?"
db.Query(query, userID)