Install
openclaw skills install axodus-code-reviewReview code for correctness, security, performance, and maintainability.
openclaw skills install axodus-code-reviewAnalyze code (or a diff) to detect bugs, security issues, performance problems, and maintainability risks, then propose concrete improvements.
scope (required, string): files, diff, or code snippet to review.intent (optional, string): what the code is supposed to do.constraints (optional, string[]): security/perf/compat constraints.risk_tolerance (optional, enum: low|medium|high).Review report (example schema):
summary: "<1 paragraph>"
findings:
- id: "CR-001"
severity: "high|medium|low"
category: "bug|security|perf|maintainability"
issue: "<what>"
impact: "<why it matters>"
recommendation: "<how to fix>"
Input:
scope: “diff for auth middlewareâ€Output:
audience check on JWTs and a failing negative test case.