Claude Code
Auth: Pro/Max subscription via claude login (no API key in this repo).
Cost: counts against your subscription plan limits.
Output: JSON envelope.
Install
See the official docs at https://docs.claude.com/en/docs/agents-and-tools/claude-code/. After install:
claude loginConfirm with claude -p "hello" --output-format json and check you get a
result field back.
Config entry
{ "id": "claude", "enabled": true, "command": "claude", "args": ["-p", "{prompt}", "--output-format", "json", "--allowedTools", "Read"], "prompt_via": "arg", "model": null, "result_path": "result", "timeout": 300, "paid": false}Notes
result_path: "result"matches Claude Code’s JSON envelope.modelisnullbecause the subscription should not be forced to a specific model. Don’t add{model}to args here.--allowedTools Readkeeps the reviewer from modifying your repo.paid: falsereflects that this is covered by your subscription; runs still count against plan limits.