{"service":"code-review","route":"POST /code-review","price":"$0.02","payment":"x402 (USDC on Base) — POST to this path, pay the returned 402, retry","description":"Review code or a diff (up to 60k chars). Default output: guaranteed-valid JSON findings [{line, severity, issue, fix}]. Input: { code? | diff?, language?, focus?, format? ('json'|'text') }.","input":{"properties":{"code":{"type":"string","description":"Code to review (max 60k chars; or provide diff)"},"diff":{"type":"string","description":"Unified diff to review (max 60k chars)"},"language":{"type":"string","description":"Language hint"},"focus":{"type":"string","description":"e.g. 'security'"},"format":{"type":"string","description":"json (default) | text"}}},"inputExample":{"code":"function add(a, b) { return a - b; }","language":"javascript"},"outputExample":{"findings":[{"line":1,"severity":"major","issue":"returns a-b, not a+b","fix":"return a + b"}],"summary":"One logic bug."},"outputSchema":{"type":"object","properties":{"findings":{"type":"array"},"summary":{"type":"string"}}}}