[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-continue-cn-check":3,"mdc-nsn57t-key":41,"related-org-continue-cn-check":1514,"related-repo-continue-cn-check":1536},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":36,"sourceUrl":39,"mdContent":40},"cn-check","execute AI agent checks with Continue","Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to \"run checks\", \"lint with AI\", \"review my changes with cn\", or set up Continue CI locally.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"continue","Continue","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcontinue.png","continuedev",[13,17,20,23],{"name":14,"slug":15,"type":16},"Automation","automation","tag",{"name":18,"slug":19,"type":16},"CLI","cli",{"name":21,"slug":22,"type":16},"Code Analysis","code-analysis",{"name":24,"slug":25,"type":16},"Testing","testing",34825,"https:\u002F\u002Fgithub.com\u002Fcontinuedev\u002Fcontinue","2026-07-12T08:47:33.246461","Apache-2.0",5020,[32,33,19,34,35],"agent","ai","developer-tools","open-source",{"repoUrl":27,"stars":26,"forks":30,"topics":37,"description":38},[32,33,19,34,35],"open-source coding agent","https:\u002F\u002Fgithub.com\u002Fcontinuedev\u002Fcontinue\u002Ftree\u002FHEAD\u002Fskills\u002Fcn-check","---\nname: cn-check\ndescription: Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to \"run checks\", \"lint with AI\", \"review my changes with cn\", or set up Continue CI locally.\nlicense: Apache-2.0\nmetadata:\n  author: continuedev\n  version: \"1.0.0\"\n---\n\n# cn check — Local AI Agent Checks\n\nRun AI-powered code checks locally against your working tree changes using the Continue CLI. Each check is an agent (defined in markdown) that reviews your diff, identifies issues, and optionally suggests fixes as a patch.\n\n## When to Use\n\n- User asks to run AI checks on their code changes\n- User wants to set up `cn check` in a project\n- User needs to create custom check agents\n- User wants to apply AI-suggested fixes locally\n- User asks about Continue CI or agent-based code review\n\n## Installation\n\n### Prerequisites\n\n- Node.js 18+\n- A git repository with uncommitted or branched changes\n\n### Install the CLI\n\n```bash\nnpm install -g @continuedev\u002Fcli\n```\n\n### Authenticate (required for Hub checks, optional for local-only)\n\n```bash\ncn login\n```\n\nThis opens a browser for authentication. After login, Hub-configured checks are available automatically.\n\n## Usage\n\n### Basic: Run all discovered checks\n\n```bash\ncn check\n```\n\nThis auto-detects checks from three sources (in priority order):\n\n1. Hub API — checks configured for your repo on continue.dev\n2. Local agents — markdown files in `.continue\u002Fagents\u002F*.md`\n\n### Specify agents explicitly\n\n```bash\n# Run a single local agent\ncn check --agent .continue\u002Fagents\u002Fsecurity-review.md\n\n# Run a Hub-published agent\ncn check --agent myorg\u002Fcode-style\n\n# Run multiple agents\ncn check --agent .continue\u002Fagents\u002Fsecurity.md --agent .continue\u002Fagents\u002Fdocs.md\n```\n\n### Compare against a specific base branch\n\n```bash\ncn check --base develop\n```\n\nDefault: auto-detects `main` or `master`.\n\n### Output formats\n\n```bash\n# JSON output (for CI pipelines or scripting)\ncn check --format json\n\n# Unified patch output (pipe to git apply)\ncn check --patch | git apply\n\n# Stop on first failure\ncn check --fail-fast\n```\n\n### Auto-fix mode\n\n```bash\ncn check --fix\n```\n\nRuns all checks, then applies any suggested patches directly to the working tree. Patches that conflict are reported but skipped.\n\n## Creating a Check Agent\n\nCreate a markdown file at `.continue\u002Fagents\u002F\u003Cname>.md`:\n\n```markdown\n# Security Review\n\nYou are a security reviewer. Examine the code changes for:\n\n- SQL injection vulnerabilities\n- XSS risks in user-facing output\n- Hardcoded secrets or credentials\n- Insecure use of eval() or similar\n\nIf you find issues, edit the files to fix them. If everything looks good, say so and exit.\n```\n\nThe agent receives:\n\n- The full diff against the base branch\n- A list of changed files\n- Access to read\u002Fedit files in a temporary worktree\n\nAny edits the agent makes are captured as a patch and reported as a \"fail\" with suggested changes.\n\n## How It Works\n\n1. **Diff** — Computes `git diff \u003Cbase>...HEAD` to find changed files\n2. **Resolve** — Discovers which checks to run (Hub, local, or `--agent` flags)\n3. **Worktree** — Creates a temporary git worktree per check for isolation\n4. **Run** — Forks a worker process per check; the agent runs with full tool access\n5. **Capture** — After the agent finishes, captures `git diff` in the worktree as a patch\n6. **Report** — Renders results: pass (no changes), fail (patch produced), or error\n\nChecks run in parallel by default. Use `--fail-fast` for sequential execution that stops on first failure.\n\n## Output\n\n### Interactive terminal (TTY)\n\nA live-updating table shows check progress:\n\n```\ncn check  -  3 checks against main  -  5 changed files\n\nCheck               Status         Time\n--------------------------------------------\nSecurity Review     * Running       12s\nCode Style          Pass            8s\nDocumentation       Pending         -\n```\n\nWhen complete, a full report prints with pass\u002Ffail status, agent output, and suggested patches.\n\n### JSON output (`--format json`)\n\n```json\n{\n  \"checks\": [\n    {\n      \"agent\": \".continue\u002Fagents\u002Fsecurity.md\",\n      \"name\": \"security\",\n      \"status\": \"pass\",\n      \"patch\": \"\",\n      \"output\": \"No security issues found.\",\n      \"duration\": 8.2\n    }\n  ],\n  \"summary\": {\n    \"total\": 1,\n    \"passed\": 1,\n    \"failed\": 0,\n    \"errored\": 0\n  }\n}\n```\n\n## CLI Reference\n\n```\ncn check [options]\n\nOptions:\n  --base \u003Cbranch>     Base branch for diff (default: auto-detect)\n  --format \u003Cformat>   Output format: text or json (default: text)\n  --fix               Apply suggested fixes to working tree\n  --patch             Output unified patch (pipe to git apply)\n  --fail-fast         Stop after first failing check\n  --agent \u003Cagent>     Agent to run (hub slug or local path, repeatable)\n  --config \u003Cpath>     Path to config file\n  --org \u003Cslug>        Organization slug\n  --verbose           Enable debug logging\n```\n\n## Troubleshooting\n\n| Problem                      | Solution                                                                              |\n| ---------------------------- | ------------------------------------------------------------------------------------- |\n| \"No changes detected\"        | Make sure you have uncommitted changes or specify `--base`                            |\n| \"No checks found\"            | Create `.continue\u002Fagents\u002F*.md` files or run `cn login` for Hub checks                 |\n| Check times out (5 min)      | Reduce diff size or split into focused agents                                         |\n| \"Worker exited with code 1\"  | Run with `--verbose` to see worker stderr                                             |\n| Patch conflicts with `--fix` | Apply patches manually: `cn check --patch > changes.patch && git apply changes.patch` |\n",{"data":42,"body":45},{"name":4,"description":6,"license":29,"metadata":43},{"author":11,"version":44},"1.0.0",{"type":46,"children":47},"root",[48,57,63,70,109,115,122,135,141,180,186,206,211,217,223,242,247,267,273,399,405,433,454,460,574,580,603,608,614,627,738,743,761,766,772,860,873,879,885,890,900,905,919,1353,1359,1368,1374,1508],{"type":49,"tag":50,"props":51,"children":53},"element","h1",{"id":52},"cn-check-local-ai-agent-checks",[54],{"type":55,"value":56},"text","cn check — Local AI Agent Checks",{"type":49,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Run AI-powered code checks locally against your working tree changes using the Continue CLI. Each check is an agent (defined in markdown) that reviews your diff, identifies issues, and optionally suggests fixes as a patch.",{"type":49,"tag":64,"props":65,"children":67},"h2",{"id":66},"when-to-use",[68],{"type":55,"value":69},"When to Use",{"type":49,"tag":71,"props":72,"children":73},"ul",{},[74,80,94,99,104],{"type":49,"tag":75,"props":76,"children":77},"li",{},[78],{"type":55,"value":79},"User asks to run AI checks on their code changes",{"type":49,"tag":75,"props":81,"children":82},{},[83,85,92],{"type":55,"value":84},"User wants to set up ",{"type":49,"tag":86,"props":87,"children":89},"code",{"className":88},[],[90],{"type":55,"value":91},"cn check",{"type":55,"value":93}," in a project",{"type":49,"tag":75,"props":95,"children":96},{},[97],{"type":55,"value":98},"User needs to create custom check agents",{"type":49,"tag":75,"props":100,"children":101},{},[102],{"type":55,"value":103},"User wants to apply AI-suggested fixes locally",{"type":49,"tag":75,"props":105,"children":106},{},[107],{"type":55,"value":108},"User asks about Continue CI or agent-based code review",{"type":49,"tag":64,"props":110,"children":112},{"id":111},"installation",[113],{"type":55,"value":114},"Installation",{"type":49,"tag":116,"props":117,"children":119},"h3",{"id":118},"prerequisites",[120],{"type":55,"value":121},"Prerequisites",{"type":49,"tag":71,"props":123,"children":124},{},[125,130],{"type":49,"tag":75,"props":126,"children":127},{},[128],{"type":55,"value":129},"Node.js 18+",{"type":49,"tag":75,"props":131,"children":132},{},[133],{"type":55,"value":134},"A git repository with uncommitted or branched changes",{"type":49,"tag":116,"props":136,"children":138},{"id":137},"install-the-cli",[139],{"type":55,"value":140},"Install the CLI",{"type":49,"tag":142,"props":143,"children":148},"pre",{"className":144,"code":145,"language":146,"meta":147,"style":147},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install -g @continuedev\u002Fcli\n","bash","",[149],{"type":49,"tag":86,"props":150,"children":151},{"__ignoreMap":147},[152],{"type":49,"tag":153,"props":154,"children":157},"span",{"class":155,"line":156},"line",1,[158,164,170,175],{"type":49,"tag":153,"props":159,"children":161},{"style":160},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[162],{"type":55,"value":163},"npm",{"type":49,"tag":153,"props":165,"children":167},{"style":166},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[168],{"type":55,"value":169}," install",{"type":49,"tag":153,"props":171,"children":172},{"style":166},[173],{"type":55,"value":174}," -g",{"type":49,"tag":153,"props":176,"children":177},{"style":166},[178],{"type":55,"value":179}," @continuedev\u002Fcli\n",{"type":49,"tag":116,"props":181,"children":183},{"id":182},"authenticate-required-for-hub-checks-optional-for-local-only",[184],{"type":55,"value":185},"Authenticate (required for Hub checks, optional for local-only)",{"type":49,"tag":142,"props":187,"children":189},{"className":144,"code":188,"language":146,"meta":147,"style":147},"cn login\n",[190],{"type":49,"tag":86,"props":191,"children":192},{"__ignoreMap":147},[193],{"type":49,"tag":153,"props":194,"children":195},{"class":155,"line":156},[196,201],{"type":49,"tag":153,"props":197,"children":198},{"style":160},[199],{"type":55,"value":200},"cn",{"type":49,"tag":153,"props":202,"children":203},{"style":166},[204],{"type":55,"value":205}," login\n",{"type":49,"tag":58,"props":207,"children":208},{},[209],{"type":55,"value":210},"This opens a browser for authentication. After login, Hub-configured checks are available automatically.",{"type":49,"tag":64,"props":212,"children":214},{"id":213},"usage",[215],{"type":55,"value":216},"Usage",{"type":49,"tag":116,"props":218,"children":220},{"id":219},"basic-run-all-discovered-checks",[221],{"type":55,"value":222},"Basic: Run all discovered checks",{"type":49,"tag":142,"props":224,"children":226},{"className":144,"code":225,"language":146,"meta":147,"style":147},"cn check\n",[227],{"type":49,"tag":86,"props":228,"children":229},{"__ignoreMap":147},[230],{"type":49,"tag":153,"props":231,"children":232},{"class":155,"line":156},[233,237],{"type":49,"tag":153,"props":234,"children":235},{"style":160},[236],{"type":55,"value":200},{"type":49,"tag":153,"props":238,"children":239},{"style":166},[240],{"type":55,"value":241}," check\n",{"type":49,"tag":58,"props":243,"children":244},{},[245],{"type":55,"value":246},"This auto-detects checks from three sources (in priority order):",{"type":49,"tag":248,"props":249,"children":250},"ol",{},[251,256],{"type":49,"tag":75,"props":252,"children":253},{},[254],{"type":55,"value":255},"Hub API — checks configured for your repo on continue.dev",{"type":49,"tag":75,"props":257,"children":258},{},[259,261],{"type":55,"value":260},"Local agents — markdown files in ",{"type":49,"tag":86,"props":262,"children":264},{"className":263},[],[265],{"type":55,"value":266},".continue\u002Fagents\u002F*.md",{"type":49,"tag":116,"props":268,"children":270},{"id":269},"specify-agents-explicitly",[271],{"type":55,"value":272},"Specify agents explicitly",{"type":49,"tag":142,"props":274,"children":276},{"className":144,"code":275,"language":146,"meta":147,"style":147},"# Run a single local agent\ncn check --agent .continue\u002Fagents\u002Fsecurity-review.md\n\n# Run a Hub-published agent\ncn check --agent myorg\u002Fcode-style\n\n# Run multiple agents\ncn check --agent .continue\u002Fagents\u002Fsecurity.md --agent .continue\u002Fagents\u002Fdocs.md\n",[277],{"type":49,"tag":86,"props":278,"children":279},{"__ignoreMap":147},[280,289,312,322,331,352,360,369],{"type":49,"tag":153,"props":281,"children":282},{"class":155,"line":156},[283],{"type":49,"tag":153,"props":284,"children":286},{"style":285},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[287],{"type":55,"value":288},"# Run a single local agent\n",{"type":49,"tag":153,"props":290,"children":292},{"class":155,"line":291},2,[293,297,302,307],{"type":49,"tag":153,"props":294,"children":295},{"style":160},[296],{"type":55,"value":200},{"type":49,"tag":153,"props":298,"children":299},{"style":166},[300],{"type":55,"value":301}," check",{"type":49,"tag":153,"props":303,"children":304},{"style":166},[305],{"type":55,"value":306}," --agent",{"type":49,"tag":153,"props":308,"children":309},{"style":166},[310],{"type":55,"value":311}," .continue\u002Fagents\u002Fsecurity-review.md\n",{"type":49,"tag":153,"props":313,"children":315},{"class":155,"line":314},3,[316],{"type":49,"tag":153,"props":317,"children":319},{"emptyLinePlaceholder":318},true,[320],{"type":55,"value":321},"\n",{"type":49,"tag":153,"props":323,"children":325},{"class":155,"line":324},4,[326],{"type":49,"tag":153,"props":327,"children":328},{"style":285},[329],{"type":55,"value":330},"# Run a Hub-published agent\n",{"type":49,"tag":153,"props":332,"children":334},{"class":155,"line":333},5,[335,339,343,347],{"type":49,"tag":153,"props":336,"children":337},{"style":160},[338],{"type":55,"value":200},{"type":49,"tag":153,"props":340,"children":341},{"style":166},[342],{"type":55,"value":301},{"type":49,"tag":153,"props":344,"children":345},{"style":166},[346],{"type":55,"value":306},{"type":49,"tag":153,"props":348,"children":349},{"style":166},[350],{"type":55,"value":351}," myorg\u002Fcode-style\n",{"type":49,"tag":153,"props":353,"children":355},{"class":155,"line":354},6,[356],{"type":49,"tag":153,"props":357,"children":358},{"emptyLinePlaceholder":318},[359],{"type":55,"value":321},{"type":49,"tag":153,"props":361,"children":363},{"class":155,"line":362},7,[364],{"type":49,"tag":153,"props":365,"children":366},{"style":285},[367],{"type":55,"value":368},"# Run multiple agents\n",{"type":49,"tag":153,"props":370,"children":372},{"class":155,"line":371},8,[373,377,381,385,390,394],{"type":49,"tag":153,"props":374,"children":375},{"style":160},[376],{"type":55,"value":200},{"type":49,"tag":153,"props":378,"children":379},{"style":166},[380],{"type":55,"value":301},{"type":49,"tag":153,"props":382,"children":383},{"style":166},[384],{"type":55,"value":306},{"type":49,"tag":153,"props":386,"children":387},{"style":166},[388],{"type":55,"value":389}," .continue\u002Fagents\u002Fsecurity.md",{"type":49,"tag":153,"props":391,"children":392},{"style":166},[393],{"type":55,"value":306},{"type":49,"tag":153,"props":395,"children":396},{"style":166},[397],{"type":55,"value":398}," .continue\u002Fagents\u002Fdocs.md\n",{"type":49,"tag":116,"props":400,"children":402},{"id":401},"compare-against-a-specific-base-branch",[403],{"type":55,"value":404},"Compare against a specific base branch",{"type":49,"tag":142,"props":406,"children":408},{"className":144,"code":407,"language":146,"meta":147,"style":147},"cn check --base develop\n",[409],{"type":49,"tag":86,"props":410,"children":411},{"__ignoreMap":147},[412],{"type":49,"tag":153,"props":413,"children":414},{"class":155,"line":156},[415,419,423,428],{"type":49,"tag":153,"props":416,"children":417},{"style":160},[418],{"type":55,"value":200},{"type":49,"tag":153,"props":420,"children":421},{"style":166},[422],{"type":55,"value":301},{"type":49,"tag":153,"props":424,"children":425},{"style":166},[426],{"type":55,"value":427}," --base",{"type":49,"tag":153,"props":429,"children":430},{"style":166},[431],{"type":55,"value":432}," develop\n",{"type":49,"tag":58,"props":434,"children":435},{},[436,438,444,446,452],{"type":55,"value":437},"Default: auto-detects ",{"type":49,"tag":86,"props":439,"children":441},{"className":440},[],[442],{"type":55,"value":443},"main",{"type":55,"value":445}," or ",{"type":49,"tag":86,"props":447,"children":449},{"className":448},[],[450],{"type":55,"value":451},"master",{"type":55,"value":453},".",{"type":49,"tag":116,"props":455,"children":457},{"id":456},"output-formats",[458],{"type":55,"value":459},"Output formats",{"type":49,"tag":142,"props":461,"children":463},{"className":144,"code":462,"language":146,"meta":147,"style":147},"# JSON output (for CI pipelines or scripting)\ncn check --format json\n\n# Unified patch output (pipe to git apply)\ncn check --patch | git apply\n\n# Stop on first failure\ncn check --fail-fast\n",[464],{"type":49,"tag":86,"props":465,"children":466},{"__ignoreMap":147},[467,475,496,503,511,543,550,558],{"type":49,"tag":153,"props":468,"children":469},{"class":155,"line":156},[470],{"type":49,"tag":153,"props":471,"children":472},{"style":285},[473],{"type":55,"value":474},"# JSON output (for CI pipelines or scripting)\n",{"type":49,"tag":153,"props":476,"children":477},{"class":155,"line":291},[478,482,486,491],{"type":49,"tag":153,"props":479,"children":480},{"style":160},[481],{"type":55,"value":200},{"type":49,"tag":153,"props":483,"children":484},{"style":166},[485],{"type":55,"value":301},{"type":49,"tag":153,"props":487,"children":488},{"style":166},[489],{"type":55,"value":490}," --format",{"type":49,"tag":153,"props":492,"children":493},{"style":166},[494],{"type":55,"value":495}," json\n",{"type":49,"tag":153,"props":497,"children":498},{"class":155,"line":314},[499],{"type":49,"tag":153,"props":500,"children":501},{"emptyLinePlaceholder":318},[502],{"type":55,"value":321},{"type":49,"tag":153,"props":504,"children":505},{"class":155,"line":324},[506],{"type":49,"tag":153,"props":507,"children":508},{"style":285},[509],{"type":55,"value":510},"# Unified patch output (pipe to git apply)\n",{"type":49,"tag":153,"props":512,"children":513},{"class":155,"line":333},[514,518,522,527,533,538],{"type":49,"tag":153,"props":515,"children":516},{"style":160},[517],{"type":55,"value":200},{"type":49,"tag":153,"props":519,"children":520},{"style":166},[521],{"type":55,"value":301},{"type":49,"tag":153,"props":523,"children":524},{"style":166},[525],{"type":55,"value":526}," --patch",{"type":49,"tag":153,"props":528,"children":530},{"style":529},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[531],{"type":55,"value":532}," |",{"type":49,"tag":153,"props":534,"children":535},{"style":160},[536],{"type":55,"value":537}," git",{"type":49,"tag":153,"props":539,"children":540},{"style":166},[541],{"type":55,"value":542}," apply\n",{"type":49,"tag":153,"props":544,"children":545},{"class":155,"line":354},[546],{"type":49,"tag":153,"props":547,"children":548},{"emptyLinePlaceholder":318},[549],{"type":55,"value":321},{"type":49,"tag":153,"props":551,"children":552},{"class":155,"line":362},[553],{"type":49,"tag":153,"props":554,"children":555},{"style":285},[556],{"type":55,"value":557},"# Stop on first failure\n",{"type":49,"tag":153,"props":559,"children":560},{"class":155,"line":371},[561,565,569],{"type":49,"tag":153,"props":562,"children":563},{"style":160},[564],{"type":55,"value":200},{"type":49,"tag":153,"props":566,"children":567},{"style":166},[568],{"type":55,"value":301},{"type":49,"tag":153,"props":570,"children":571},{"style":166},[572],{"type":55,"value":573}," --fail-fast\n",{"type":49,"tag":116,"props":575,"children":577},{"id":576},"auto-fix-mode",[578],{"type":55,"value":579},"Auto-fix mode",{"type":49,"tag":142,"props":581,"children":583},{"className":144,"code":582,"language":146,"meta":147,"style":147},"cn check --fix\n",[584],{"type":49,"tag":86,"props":585,"children":586},{"__ignoreMap":147},[587],{"type":49,"tag":153,"props":588,"children":589},{"class":155,"line":156},[590,594,598],{"type":49,"tag":153,"props":591,"children":592},{"style":160},[593],{"type":55,"value":200},{"type":49,"tag":153,"props":595,"children":596},{"style":166},[597],{"type":55,"value":301},{"type":49,"tag":153,"props":599,"children":600},{"style":166},[601],{"type":55,"value":602}," --fix\n",{"type":49,"tag":58,"props":604,"children":605},{},[606],{"type":55,"value":607},"Runs all checks, then applies any suggested patches directly to the working tree. Patches that conflict are reported but skipped.",{"type":49,"tag":64,"props":609,"children":611},{"id":610},"creating-a-check-agent",[612],{"type":55,"value":613},"Creating a Check Agent",{"type":49,"tag":58,"props":615,"children":616},{},[617,619,625],{"type":55,"value":618},"Create a markdown file at ",{"type":49,"tag":86,"props":620,"children":622},{"className":621},[],[623],{"type":55,"value":624},".continue\u002Fagents\u002F\u003Cname>.md",{"type":55,"value":626},":",{"type":49,"tag":142,"props":628,"children":632},{"className":629,"code":630,"language":631,"meta":147,"style":147},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Security Review\n\nYou are a security reviewer. Examine the code changes for:\n\n- SQL injection vulnerabilities\n- XSS risks in user-facing output\n- Hardcoded secrets or credentials\n- Insecure use of eval() or similar\n\nIf you find issues, edit the files to fix them. If everything looks good, say so and exit.\n","markdown",[633],{"type":49,"tag":86,"props":634,"children":635},{"__ignoreMap":147},[636,649,656,665,672,685,697,709,721,729],{"type":49,"tag":153,"props":637,"children":638},{"class":155,"line":156},[639,644],{"type":49,"tag":153,"props":640,"children":641},{"style":529},[642],{"type":55,"value":643},"# ",{"type":49,"tag":153,"props":645,"children":646},{"style":160},[647],{"type":55,"value":648},"Security Review\n",{"type":49,"tag":153,"props":650,"children":651},{"class":155,"line":291},[652],{"type":49,"tag":153,"props":653,"children":654},{"emptyLinePlaceholder":318},[655],{"type":55,"value":321},{"type":49,"tag":153,"props":657,"children":658},{"class":155,"line":314},[659],{"type":49,"tag":153,"props":660,"children":662},{"style":661},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[663],{"type":55,"value":664},"You are a security reviewer. Examine the code changes for:\n",{"type":49,"tag":153,"props":666,"children":667},{"class":155,"line":324},[668],{"type":49,"tag":153,"props":669,"children":670},{"emptyLinePlaceholder":318},[671],{"type":55,"value":321},{"type":49,"tag":153,"props":673,"children":674},{"class":155,"line":333},[675,680],{"type":49,"tag":153,"props":676,"children":677},{"style":529},[678],{"type":55,"value":679},"-",{"type":49,"tag":153,"props":681,"children":682},{"style":661},[683],{"type":55,"value":684}," SQL injection vulnerabilities\n",{"type":49,"tag":153,"props":686,"children":687},{"class":155,"line":354},[688,692],{"type":49,"tag":153,"props":689,"children":690},{"style":529},[691],{"type":55,"value":679},{"type":49,"tag":153,"props":693,"children":694},{"style":661},[695],{"type":55,"value":696}," XSS risks in user-facing output\n",{"type":49,"tag":153,"props":698,"children":699},{"class":155,"line":362},[700,704],{"type":49,"tag":153,"props":701,"children":702},{"style":529},[703],{"type":55,"value":679},{"type":49,"tag":153,"props":705,"children":706},{"style":661},[707],{"type":55,"value":708}," Hardcoded secrets or credentials\n",{"type":49,"tag":153,"props":710,"children":711},{"class":155,"line":371},[712,716],{"type":49,"tag":153,"props":713,"children":714},{"style":529},[715],{"type":55,"value":679},{"type":49,"tag":153,"props":717,"children":718},{"style":661},[719],{"type":55,"value":720}," Insecure use of eval() or similar\n",{"type":49,"tag":153,"props":722,"children":724},{"class":155,"line":723},9,[725],{"type":49,"tag":153,"props":726,"children":727},{"emptyLinePlaceholder":318},[728],{"type":55,"value":321},{"type":49,"tag":153,"props":730,"children":732},{"class":155,"line":731},10,[733],{"type":49,"tag":153,"props":734,"children":735},{"style":661},[736],{"type":55,"value":737},"If you find issues, edit the files to fix them. If everything looks good, say so and exit.\n",{"type":49,"tag":58,"props":739,"children":740},{},[741],{"type":55,"value":742},"The agent receives:",{"type":49,"tag":71,"props":744,"children":745},{},[746,751,756],{"type":49,"tag":75,"props":747,"children":748},{},[749],{"type":55,"value":750},"The full diff against the base branch",{"type":49,"tag":75,"props":752,"children":753},{},[754],{"type":55,"value":755},"A list of changed files",{"type":49,"tag":75,"props":757,"children":758},{},[759],{"type":55,"value":760},"Access to read\u002Fedit files in a temporary worktree",{"type":49,"tag":58,"props":762,"children":763},{},[764],{"type":55,"value":765},"Any edits the agent makes are captured as a patch and reported as a \"fail\" with suggested changes.",{"type":49,"tag":64,"props":767,"children":769},{"id":768},"how-it-works",[770],{"type":55,"value":771},"How It Works",{"type":49,"tag":248,"props":773,"children":774},{},[775,794,812,822,832,850],{"type":49,"tag":75,"props":776,"children":777},{},[778,784,786,792],{"type":49,"tag":779,"props":780,"children":781},"strong",{},[782],{"type":55,"value":783},"Diff",{"type":55,"value":785}," — Computes ",{"type":49,"tag":86,"props":787,"children":789},{"className":788},[],[790],{"type":55,"value":791},"git diff \u003Cbase>...HEAD",{"type":55,"value":793}," to find changed files",{"type":49,"tag":75,"props":795,"children":796},{},[797,802,804,810],{"type":49,"tag":779,"props":798,"children":799},{},[800],{"type":55,"value":801},"Resolve",{"type":55,"value":803}," — Discovers which checks to run (Hub, local, or ",{"type":49,"tag":86,"props":805,"children":807},{"className":806},[],[808],{"type":55,"value":809},"--agent",{"type":55,"value":811}," flags)",{"type":49,"tag":75,"props":813,"children":814},{},[815,820],{"type":49,"tag":779,"props":816,"children":817},{},[818],{"type":55,"value":819},"Worktree",{"type":55,"value":821}," — Creates a temporary git worktree per check for isolation",{"type":49,"tag":75,"props":823,"children":824},{},[825,830],{"type":49,"tag":779,"props":826,"children":827},{},[828],{"type":55,"value":829},"Run",{"type":55,"value":831}," — Forks a worker process per check; the agent runs with full tool access",{"type":49,"tag":75,"props":833,"children":834},{},[835,840,842,848],{"type":49,"tag":779,"props":836,"children":837},{},[838],{"type":55,"value":839},"Capture",{"type":55,"value":841}," — After the agent finishes, captures ",{"type":49,"tag":86,"props":843,"children":845},{"className":844},[],[846],{"type":55,"value":847},"git diff",{"type":55,"value":849}," in the worktree as a patch",{"type":49,"tag":75,"props":851,"children":852},{},[853,858],{"type":49,"tag":779,"props":854,"children":855},{},[856],{"type":55,"value":857},"Report",{"type":55,"value":859}," — Renders results: pass (no changes), fail (patch produced), or error",{"type":49,"tag":58,"props":861,"children":862},{},[863,865,871],{"type":55,"value":864},"Checks run in parallel by default. Use ",{"type":49,"tag":86,"props":866,"children":868},{"className":867},[],[869],{"type":55,"value":870},"--fail-fast",{"type":55,"value":872}," for sequential execution that stops on first failure.",{"type":49,"tag":64,"props":874,"children":876},{"id":875},"output",[877],{"type":55,"value":878},"Output",{"type":49,"tag":116,"props":880,"children":882},{"id":881},"interactive-terminal-tty",[883],{"type":55,"value":884},"Interactive terminal (TTY)",{"type":49,"tag":58,"props":886,"children":887},{},[888],{"type":55,"value":889},"A live-updating table shows check progress:",{"type":49,"tag":142,"props":891,"children":895},{"className":892,"code":894,"language":55},[893],"language-text","cn check  -  3 checks against main  -  5 changed files\n\nCheck               Status         Time\n--------------------------------------------\nSecurity Review     * Running       12s\nCode Style          Pass            8s\nDocumentation       Pending         -\n",[896],{"type":49,"tag":86,"props":897,"children":898},{"__ignoreMap":147},[899],{"type":55,"value":894},{"type":49,"tag":58,"props":901,"children":902},{},[903],{"type":55,"value":904},"When complete, a full report prints with pass\u002Ffail status, agent output, and suggested patches.",{"type":49,"tag":116,"props":906,"children":908},{"id":907},"json-output-format-json",[909,911,917],{"type":55,"value":910},"JSON output (",{"type":49,"tag":86,"props":912,"children":914},{"className":913},[],[915],{"type":55,"value":916},"--format json",{"type":55,"value":918},")",{"type":49,"tag":142,"props":920,"children":924},{"className":921,"code":922,"language":923,"meta":147,"style":147},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"checks\": [\n    {\n      \"agent\": \".continue\u002Fagents\u002Fsecurity.md\",\n      \"name\": \"security\",\n      \"status\": \"pass\",\n      \"patch\": \"\",\n      \"output\": \"No security issues found.\",\n      \"duration\": 8.2\n    }\n  ],\n  \"summary\": {\n    \"total\": 1,\n    \"passed\": 1,\n    \"failed\": 0,\n    \"errored\": 0\n  }\n}\n","json",[925],{"type":49,"tag":86,"props":926,"children":927},{"__ignoreMap":147},[928,936,964,972,1011,1048,1085,1114,1150,1176,1184,1193,1219,1250,1279,1309,1335,1344],{"type":49,"tag":153,"props":929,"children":930},{"class":155,"line":156},[931],{"type":49,"tag":153,"props":932,"children":933},{"style":529},[934],{"type":55,"value":935},"{\n",{"type":49,"tag":153,"props":937,"children":938},{"class":155,"line":291},[939,944,950,955,959],{"type":49,"tag":153,"props":940,"children":941},{"style":529},[942],{"type":55,"value":943},"  \"",{"type":49,"tag":153,"props":945,"children":947},{"style":946},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[948],{"type":55,"value":949},"checks",{"type":49,"tag":153,"props":951,"children":952},{"style":529},[953],{"type":55,"value":954},"\"",{"type":49,"tag":153,"props":956,"children":957},{"style":529},[958],{"type":55,"value":626},{"type":49,"tag":153,"props":960,"children":961},{"style":529},[962],{"type":55,"value":963}," [\n",{"type":49,"tag":153,"props":965,"children":966},{"class":155,"line":314},[967],{"type":49,"tag":153,"props":968,"children":969},{"style":529},[970],{"type":55,"value":971},"    {\n",{"type":49,"tag":153,"props":973,"children":974},{"class":155,"line":324},[975,980,984,988,992,997,1002,1006],{"type":49,"tag":153,"props":976,"children":977},{"style":529},[978],{"type":55,"value":979},"      \"",{"type":49,"tag":153,"props":981,"children":982},{"style":160},[983],{"type":55,"value":32},{"type":49,"tag":153,"props":985,"children":986},{"style":529},[987],{"type":55,"value":954},{"type":49,"tag":153,"props":989,"children":990},{"style":529},[991],{"type":55,"value":626},{"type":49,"tag":153,"props":993,"children":994},{"style":529},[995],{"type":55,"value":996}," \"",{"type":49,"tag":153,"props":998,"children":999},{"style":166},[1000],{"type":55,"value":1001},".continue\u002Fagents\u002Fsecurity.md",{"type":49,"tag":153,"props":1003,"children":1004},{"style":529},[1005],{"type":55,"value":954},{"type":49,"tag":153,"props":1007,"children":1008},{"style":529},[1009],{"type":55,"value":1010},",\n",{"type":49,"tag":153,"props":1012,"children":1013},{"class":155,"line":333},[1014,1018,1023,1027,1031,1035,1040,1044],{"type":49,"tag":153,"props":1015,"children":1016},{"style":529},[1017],{"type":55,"value":979},{"type":49,"tag":153,"props":1019,"children":1020},{"style":160},[1021],{"type":55,"value":1022},"name",{"type":49,"tag":153,"props":1024,"children":1025},{"style":529},[1026],{"type":55,"value":954},{"type":49,"tag":153,"props":1028,"children":1029},{"style":529},[1030],{"type":55,"value":626},{"type":49,"tag":153,"props":1032,"children":1033},{"style":529},[1034],{"type":55,"value":996},{"type":49,"tag":153,"props":1036,"children":1037},{"style":166},[1038],{"type":55,"value":1039},"security",{"type":49,"tag":153,"props":1041,"children":1042},{"style":529},[1043],{"type":55,"value":954},{"type":49,"tag":153,"props":1045,"children":1046},{"style":529},[1047],{"type":55,"value":1010},{"type":49,"tag":153,"props":1049,"children":1050},{"class":155,"line":354},[1051,1055,1060,1064,1068,1072,1077,1081],{"type":49,"tag":153,"props":1052,"children":1053},{"style":529},[1054],{"type":55,"value":979},{"type":49,"tag":153,"props":1056,"children":1057},{"style":160},[1058],{"type":55,"value":1059},"status",{"type":49,"tag":153,"props":1061,"children":1062},{"style":529},[1063],{"type":55,"value":954},{"type":49,"tag":153,"props":1065,"children":1066},{"style":529},[1067],{"type":55,"value":626},{"type":49,"tag":153,"props":1069,"children":1070},{"style":529},[1071],{"type":55,"value":996},{"type":49,"tag":153,"props":1073,"children":1074},{"style":166},[1075],{"type":55,"value":1076},"pass",{"type":49,"tag":153,"props":1078,"children":1079},{"style":529},[1080],{"type":55,"value":954},{"type":49,"tag":153,"props":1082,"children":1083},{"style":529},[1084],{"type":55,"value":1010},{"type":49,"tag":153,"props":1086,"children":1087},{"class":155,"line":362},[1088,1092,1097,1101,1105,1110],{"type":49,"tag":153,"props":1089,"children":1090},{"style":529},[1091],{"type":55,"value":979},{"type":49,"tag":153,"props":1093,"children":1094},{"style":160},[1095],{"type":55,"value":1096},"patch",{"type":49,"tag":153,"props":1098,"children":1099},{"style":529},[1100],{"type":55,"value":954},{"type":49,"tag":153,"props":1102,"children":1103},{"style":529},[1104],{"type":55,"value":626},{"type":49,"tag":153,"props":1106,"children":1107},{"style":529},[1108],{"type":55,"value":1109}," \"\"",{"type":49,"tag":153,"props":1111,"children":1112},{"style":529},[1113],{"type":55,"value":1010},{"type":49,"tag":153,"props":1115,"children":1116},{"class":155,"line":371},[1117,1121,1125,1129,1133,1137,1142,1146],{"type":49,"tag":153,"props":1118,"children":1119},{"style":529},[1120],{"type":55,"value":979},{"type":49,"tag":153,"props":1122,"children":1123},{"style":160},[1124],{"type":55,"value":875},{"type":49,"tag":153,"props":1126,"children":1127},{"style":529},[1128],{"type":55,"value":954},{"type":49,"tag":153,"props":1130,"children":1131},{"style":529},[1132],{"type":55,"value":626},{"type":49,"tag":153,"props":1134,"children":1135},{"style":529},[1136],{"type":55,"value":996},{"type":49,"tag":153,"props":1138,"children":1139},{"style":166},[1140],{"type":55,"value":1141},"No security issues found.",{"type":49,"tag":153,"props":1143,"children":1144},{"style":529},[1145],{"type":55,"value":954},{"type":49,"tag":153,"props":1147,"children":1148},{"style":529},[1149],{"type":55,"value":1010},{"type":49,"tag":153,"props":1151,"children":1152},{"class":155,"line":723},[1153,1157,1162,1166,1170],{"type":49,"tag":153,"props":1154,"children":1155},{"style":529},[1156],{"type":55,"value":979},{"type":49,"tag":153,"props":1158,"children":1159},{"style":160},[1160],{"type":55,"value":1161},"duration",{"type":49,"tag":153,"props":1163,"children":1164},{"style":529},[1165],{"type":55,"value":954},{"type":49,"tag":153,"props":1167,"children":1168},{"style":529},[1169],{"type":55,"value":626},{"type":49,"tag":153,"props":1171,"children":1173},{"style":1172},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1174],{"type":55,"value":1175}," 8.2\n",{"type":49,"tag":153,"props":1177,"children":1178},{"class":155,"line":731},[1179],{"type":49,"tag":153,"props":1180,"children":1181},{"style":529},[1182],{"type":55,"value":1183},"    }\n",{"type":49,"tag":153,"props":1185,"children":1187},{"class":155,"line":1186},11,[1188],{"type":49,"tag":153,"props":1189,"children":1190},{"style":529},[1191],{"type":55,"value":1192},"  ],\n",{"type":49,"tag":153,"props":1194,"children":1196},{"class":155,"line":1195},12,[1197,1201,1206,1210,1214],{"type":49,"tag":153,"props":1198,"children":1199},{"style":529},[1200],{"type":55,"value":943},{"type":49,"tag":153,"props":1202,"children":1203},{"style":946},[1204],{"type":55,"value":1205},"summary",{"type":49,"tag":153,"props":1207,"children":1208},{"style":529},[1209],{"type":55,"value":954},{"type":49,"tag":153,"props":1211,"children":1212},{"style":529},[1213],{"type":55,"value":626},{"type":49,"tag":153,"props":1215,"children":1216},{"style":529},[1217],{"type":55,"value":1218}," {\n",{"type":49,"tag":153,"props":1220,"children":1222},{"class":155,"line":1221},13,[1223,1228,1233,1237,1241,1246],{"type":49,"tag":153,"props":1224,"children":1225},{"style":529},[1226],{"type":55,"value":1227},"    \"",{"type":49,"tag":153,"props":1229,"children":1230},{"style":160},[1231],{"type":55,"value":1232},"total",{"type":49,"tag":153,"props":1234,"children":1235},{"style":529},[1236],{"type":55,"value":954},{"type":49,"tag":153,"props":1238,"children":1239},{"style":529},[1240],{"type":55,"value":626},{"type":49,"tag":153,"props":1242,"children":1243},{"style":1172},[1244],{"type":55,"value":1245}," 1",{"type":49,"tag":153,"props":1247,"children":1248},{"style":529},[1249],{"type":55,"value":1010},{"type":49,"tag":153,"props":1251,"children":1253},{"class":155,"line":1252},14,[1254,1258,1263,1267,1271,1275],{"type":49,"tag":153,"props":1255,"children":1256},{"style":529},[1257],{"type":55,"value":1227},{"type":49,"tag":153,"props":1259,"children":1260},{"style":160},[1261],{"type":55,"value":1262},"passed",{"type":49,"tag":153,"props":1264,"children":1265},{"style":529},[1266],{"type":55,"value":954},{"type":49,"tag":153,"props":1268,"children":1269},{"style":529},[1270],{"type":55,"value":626},{"type":49,"tag":153,"props":1272,"children":1273},{"style":1172},[1274],{"type":55,"value":1245},{"type":49,"tag":153,"props":1276,"children":1277},{"style":529},[1278],{"type":55,"value":1010},{"type":49,"tag":153,"props":1280,"children":1282},{"class":155,"line":1281},15,[1283,1287,1292,1296,1300,1305],{"type":49,"tag":153,"props":1284,"children":1285},{"style":529},[1286],{"type":55,"value":1227},{"type":49,"tag":153,"props":1288,"children":1289},{"style":160},[1290],{"type":55,"value":1291},"failed",{"type":49,"tag":153,"props":1293,"children":1294},{"style":529},[1295],{"type":55,"value":954},{"type":49,"tag":153,"props":1297,"children":1298},{"style":529},[1299],{"type":55,"value":626},{"type":49,"tag":153,"props":1301,"children":1302},{"style":1172},[1303],{"type":55,"value":1304}," 0",{"type":49,"tag":153,"props":1306,"children":1307},{"style":529},[1308],{"type":55,"value":1010},{"type":49,"tag":153,"props":1310,"children":1312},{"class":155,"line":1311},16,[1313,1317,1322,1326,1330],{"type":49,"tag":153,"props":1314,"children":1315},{"style":529},[1316],{"type":55,"value":1227},{"type":49,"tag":153,"props":1318,"children":1319},{"style":160},[1320],{"type":55,"value":1321},"errored",{"type":49,"tag":153,"props":1323,"children":1324},{"style":529},[1325],{"type":55,"value":954},{"type":49,"tag":153,"props":1327,"children":1328},{"style":529},[1329],{"type":55,"value":626},{"type":49,"tag":153,"props":1331,"children":1332},{"style":1172},[1333],{"type":55,"value":1334}," 0\n",{"type":49,"tag":153,"props":1336,"children":1338},{"class":155,"line":1337},17,[1339],{"type":49,"tag":153,"props":1340,"children":1341},{"style":529},[1342],{"type":55,"value":1343},"  }\n",{"type":49,"tag":153,"props":1345,"children":1347},{"class":155,"line":1346},18,[1348],{"type":49,"tag":153,"props":1349,"children":1350},{"style":529},[1351],{"type":55,"value":1352},"}\n",{"type":49,"tag":64,"props":1354,"children":1356},{"id":1355},"cli-reference",[1357],{"type":55,"value":1358},"CLI Reference",{"type":49,"tag":142,"props":1360,"children":1363},{"className":1361,"code":1362,"language":55},[893],"cn check [options]\n\nOptions:\n  --base \u003Cbranch>     Base branch for diff (default: auto-detect)\n  --format \u003Cformat>   Output format: text or json (default: text)\n  --fix               Apply suggested fixes to working tree\n  --patch             Output unified patch (pipe to git apply)\n  --fail-fast         Stop after first failing check\n  --agent \u003Cagent>     Agent to run (hub slug or local path, repeatable)\n  --config \u003Cpath>     Path to config file\n  --org \u003Cslug>        Organization slug\n  --verbose           Enable debug logging\n",[1364],{"type":49,"tag":86,"props":1365,"children":1366},{"__ignoreMap":147},[1367],{"type":55,"value":1362},{"type":49,"tag":64,"props":1369,"children":1371},{"id":1370},"troubleshooting",[1372],{"type":55,"value":1373},"Troubleshooting",{"type":49,"tag":1375,"props":1376,"children":1377},"table",{},[1378,1397],{"type":49,"tag":1379,"props":1380,"children":1381},"thead",{},[1382],{"type":49,"tag":1383,"props":1384,"children":1385},"tr",{},[1386,1392],{"type":49,"tag":1387,"props":1388,"children":1389},"th",{},[1390],{"type":55,"value":1391},"Problem",{"type":49,"tag":1387,"props":1393,"children":1394},{},[1395],{"type":55,"value":1396},"Solution",{"type":49,"tag":1398,"props":1399,"children":1400},"tbody",{},[1401,1421,1449,1462,1483],{"type":49,"tag":1383,"props":1402,"children":1403},{},[1404,1410],{"type":49,"tag":1405,"props":1406,"children":1407},"td",{},[1408],{"type":55,"value":1409},"\"No changes detected\"",{"type":49,"tag":1405,"props":1411,"children":1412},{},[1413,1415],{"type":55,"value":1414},"Make sure you have uncommitted changes or specify ",{"type":49,"tag":86,"props":1416,"children":1418},{"className":1417},[],[1419],{"type":55,"value":1420},"--base",{"type":49,"tag":1383,"props":1422,"children":1423},{},[1424,1429],{"type":49,"tag":1405,"props":1425,"children":1426},{},[1427],{"type":55,"value":1428},"\"No checks found\"",{"type":49,"tag":1405,"props":1430,"children":1431},{},[1432,1434,1439,1441,1447],{"type":55,"value":1433},"Create ",{"type":49,"tag":86,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":55,"value":266},{"type":55,"value":1440}," files or run ",{"type":49,"tag":86,"props":1442,"children":1444},{"className":1443},[],[1445],{"type":55,"value":1446},"cn login",{"type":55,"value":1448}," for Hub checks",{"type":49,"tag":1383,"props":1450,"children":1451},{},[1452,1457],{"type":49,"tag":1405,"props":1453,"children":1454},{},[1455],{"type":55,"value":1456},"Check times out (5 min)",{"type":49,"tag":1405,"props":1458,"children":1459},{},[1460],{"type":55,"value":1461},"Reduce diff size or split into focused agents",{"type":49,"tag":1383,"props":1463,"children":1464},{},[1465,1470],{"type":49,"tag":1405,"props":1466,"children":1467},{},[1468],{"type":55,"value":1469},"\"Worker exited with code 1\"",{"type":49,"tag":1405,"props":1471,"children":1472},{},[1473,1475,1481],{"type":55,"value":1474},"Run with ",{"type":49,"tag":86,"props":1476,"children":1478},{"className":1477},[],[1479],{"type":55,"value":1480},"--verbose",{"type":55,"value":1482}," to see worker stderr",{"type":49,"tag":1383,"props":1484,"children":1485},{},[1486,1497],{"type":49,"tag":1405,"props":1487,"children":1488},{},[1489,1491],{"type":55,"value":1490},"Patch conflicts with ",{"type":49,"tag":86,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":55,"value":1496},"--fix",{"type":49,"tag":1405,"props":1498,"children":1499},{},[1500,1502],{"type":55,"value":1501},"Apply patches manually: ",{"type":49,"tag":86,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":55,"value":1507},"cn check --patch > changes.patch && git apply changes.patch",{"type":49,"tag":1509,"props":1510,"children":1511},"style",{},[1512],{"type":55,"value":1513},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1515,"total":291},[1516,1523],{"slug":4,"name":4,"fn":5,"description":6,"org":1517,"tags":1518,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1519,1520,1521,1522],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":24,"slug":25,"type":16},{"slug":1524,"name":1524,"fn":1525,"description":1526,"org":1527,"tags":1528,"stars":731,"repoUrl":1534,"updatedAt":1535},"setup-checks","create automated code quality checks","Analyze this repo and create tailored AI check files in .checks\u002F that run as agents on every PR to enforce code quality standards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1529,1530,1533],{"name":21,"slug":22,"type":16},{"name":1531,"slug":1532,"type":16},"QA","qa",{"name":24,"slug":25,"type":16},"https:\u002F\u002Fgithub.com\u002Fcontinuedev\u002Fchecks","2026-07-12T08:47:35.019831",{"items":1537,"total":156},[1538],{"slug":4,"name":4,"fn":5,"description":6,"org":1539,"tags":1540,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1541,1542,1543,1544],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":24,"slug":25,"type":16}]