Structured code review skill for DeepSeek Harness.
Teaches the agent a systematic code review process:
- Correctness: logic errors, edge cases, error handling
- Security: input validation, secrets, injection
- Performance: unnecessary loops, N+1, blocking ops
- Style: naming, complexity, dead code
- Testing: coverage, edge cases
dsh plugin --profile your-profile add dsh-plugin-code-reviewJust ask the agent to review code:
- "Review this diff"
- "Check this PR for security issues"
- "Review src/auth.ts"
[CRITICAL] src/auth.ts:42 - Missing input validation on user email
[WARNING] src/api.ts:18 - Potential SQL injection via string concatenation
[SUGGESTION] src/utils.ts:7 - Function too long, consider splitting
MIT -- YYTbit