From b59a7852e0c25c79a47bea4de7fb85cd0c64e007 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 14:45:46 -0800 Subject: [PATCH 01/20] Replace /check skill references with check CLI documentation Rewrite running-locally.mdx to document the check CLI (continuedev/check-cli) including install, scan, run, list commands, and output formats. Update quickstart and generating-checks pages to reference the CLI instead of the /check skill. Co-Authored-By: Claude Opus 4.6 --- docs/checks/generating-checks.mdx | 7 +-- docs/checks/quickstart.mdx | 2 +- docs/checks/running-locally.mdx | 77 +++++++++++++++++++++++++------ 3 files changed, 68 insertions(+), 18 deletions(-) diff --git a/docs/checks/generating-checks.mdx b/docs/checks/generating-checks.mdx index eb6b898d961..8348079ed9e 100644 --- a/docs/checks/generating-checks.mdx +++ b/docs/checks/generating-checks.mdx @@ -60,10 +60,11 @@ Write a check that flags PRs where public API or configuration changes aren't re ## Iterate locally -Write the check (or have your agent write it), run it against a real PR branch, read the output, refine. Run `/checks` in your coding agent to test: +Write the check (or have your agent write it), run it against a real PR branch, read the output, refine: -``` -/checks .continue/checks/migration-safety.md +```bash +check scan migration-safety # audit the full codebase +check # run against your current diff ``` See [Run Checks Locally](/checks/running-locally) for the full local testing workflow. diff --git a/docs/checks/quickstart.mdx b/docs/checks/quickstart.mdx index 8154ef24537..fece66cfccf 100644 --- a/docs/checks/quickstart.mdx +++ b/docs/checks/quickstart.mdx @@ -42,7 +42,7 @@ Write concrete pass/fail criteria so the check produces consistent results. See - Verify your checks before pushing by running `/check` in your coding agent. + Verify your checks before pushing with the `check` CLI. Set up GitHub integration so checks run on every pull request. diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 4d5cb550f39..a1a43161bfd 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -2,46 +2,95 @@ title: "Run Checks Locally" --- -Run your checks locally before pushing to CI using the `/check` command in your coding agent (Claude Code, Cursor, or any agent that supports skills). +Run checks locally before pushing to CI with the `check` CLI. It discovers your check files, runs them in parallel, and reports results with caching and live progress. ## Install -Install the [`check`](https://github.com/continuedev/skills?tab=readme-ov-file#check) skill: +```bash +curl -fsSL https://raw.githubusercontent.com/continuedev/check-cli/main/install.sh | sh +``` + +Requires `claude` and `git` on your PATH. The installer downloads the right binary for your OS and architecture. + +## Scan your codebase + +Before running a check continuously on incremental diffs, see what it finds across the whole repo: ```bash -npx skills add continuedev/skills --skill check +check scan security-review ``` -## Run checks +`check scan` audits the full codebase against a single check. Pass a check name (or a substring — it fuzzy-matches). With no argument, it shows an interactive picker. -Type `/check` in your coding agent. It discovers every check file in `.continue/checks/`, runs each one as a subagent against your current branch, and reports the results. To run a single check, pass the file path: `/check .continue/checks/security-review.md`. +On failure, the CLI writes findings to `/tmp/check-scan-results.txt` and prints a command to address them: +```bash +claude "$(cat /tmp/check-scan-results.txt) address this feedback" ``` -/check + +## Run checks on your diff + +```bash +check ``` -![Terminal output showing checks being discovered and launched](/images/checks-local-running.png) +This discovers every check in `.continue/checks/` and `.agents/checks/`, runs each one against your current diff, and reports results. Checks run in parallel and results are cached — re-running after a no-op edit is instant. -![Check results summary showing pass, fail, and warning status for each check](/images/checks-local-results.png) +To check an implementation plan instead of a diff: -## Iterate on a check +```bash +check run --plan ./plan.md +``` -The local feedback loop is: edit the check file, run `/check`, read the output, refine. Because checks run inside your coding agent, you can ask it to fix issues in the same session: +Skip the cache with `--no-cache`. +## List checks + +```bash +check list ``` -The migration safety check is flagging additive-only migrations as failures. Update the check to only flag destructive operations. + +Shows every discovered check, its description, and whether it's skipped (e.g. CI-only checks with `local: false`). Useful when you're not sure what's available. + +## Output formats + +In a terminal, `check` renders a live progress table with color. When piped or scripted, it outputs JSON automatically. + +Force JSON output with `--json`: + +```bash +check run --json +check list --json --fields name,description +check scan --json security-review +``` + +JSON results include `name`, `verdict`, `suggestions`, `duration`, and `cached` for each check. + +## Iterate on a check + +The local workflow is: edit the check file, run it, read the output, refine. + +```bash +# Run a full-repo scan to see what the check catches +check scan migration-safety + +# Edit the check to reduce false positives, then re-scan +check scan migration-safety + +# Once it looks right, run it against your current diff +check ``` ## Run checks automatically -You can add `/check` to your `AGENTS.md` so your coding agent runs checks automatically as part of its workflow — for example, after creating a PR: +Add `check` to your `AGENTS.md` so your coding agent runs checks as part of its workflow: ```markdown AGENTS.md -After creating or updating a pull request, run /check and fix any failures before requesting review. +After creating or updating a pull request, run `check` and fix any failures before requesting review. ``` ## Why local? -Running checks locally uses your existing coding agent and credits (Claude Max, API key, etc.). There's nothing extra to install or configure — if your agent can read your repo, it can run your checks. +Running checks locally gives you fast iteration on check definitions and catches issues before they reach CI. The CLI uses `claude -p` under the hood, so it works with your existing Claude credentials. For running checks automatically on every PR in CI, see [Run Checks in CI](/checks/running-in-ci). From 9cc8ed997e521f9527d2d5ffdd2a34fbafdb93c9 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:11:46 -0800 Subject: [PATCH 02/20] Trim running-locally to walkthrough, not reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove List checks, Output formats, flag details, and extra explanatory text. Keep the core flow: install → scan → run → iterate → automate. Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 50 ++++++--------------------------- 1 file changed, 8 insertions(+), 42 deletions(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index a1a43161bfd..182beae34b2 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -2,7 +2,7 @@ title: "Run Checks Locally" --- -Run checks locally before pushing to CI with the `check` CLI. It discovers your check files, runs them in parallel, and reports results with caching and live progress. +Run checks locally before pushing to CI with the `check` CLI. ## Install @@ -10,19 +10,19 @@ Run checks locally before pushing to CI with the `check` CLI. It discovers your curl -fsSL https://raw.githubusercontent.com/continuedev/check-cli/main/install.sh | sh ``` -Requires `claude` and `git` on your PATH. The installer downloads the right binary for your OS and architecture. +Requires `claude` and `git` on your PATH. ## Scan your codebase -Before running a check continuously on incremental diffs, see what it finds across the whole repo: +Before running a check on incremental diffs, see what it finds across the whole repo: ```bash check scan security-review ``` -`check scan` audits the full codebase against a single check. Pass a check name (or a substring — it fuzzy-matches). With no argument, it shows an interactive picker. +Pass a check name (or a substring — it fuzzy-matches). With no argument, it shows an interactive picker. -On failure, the CLI writes findings to `/tmp/check-scan-results.txt` and prints a command to address them: +On failure, the CLI prints a command to address the findings: ```bash claude "$(cat /tmp/check-scan-results.txt) address this feedback" @@ -34,44 +34,14 @@ claude "$(cat /tmp/check-scan-results.txt) address this feedback" check ``` -This discovers every check in `.continue/checks/` and `.agents/checks/`, runs each one against your current diff, and reports results. Checks run in parallel and results are cached — re-running after a no-op edit is instant. - -To check an implementation plan instead of a diff: - -```bash -check run --plan ./plan.md -``` - -Skip the cache with `--no-cache`. - -## List checks - -```bash -check list -``` - -Shows every discovered check, its description, and whether it's skipped (e.g. CI-only checks with `local: false`). Useful when you're not sure what's available. - -## Output formats - -In a terminal, `check` renders a live progress table with color. When piped or scripted, it outputs JSON automatically. - -Force JSON output with `--json`: - -```bash -check run --json -check list --json --fields name,description -check scan --json security-review -``` - -JSON results include `name`, `verdict`, `suggestions`, `duration`, and `cached` for each check. +This discovers every check in `.continue/checks/` and `.agents/checks/`, runs each one against your current diff, and reports results. ## Iterate on a check -The local workflow is: edit the check file, run it, read the output, refine. +Edit the check file, run it, read the output, refine: ```bash -# Run a full-repo scan to see what the check catches +# Scan the full repo to see what the check catches check scan migration-safety # Edit the check to reduce false positives, then re-scan @@ -89,8 +59,4 @@ Add `check` to your `AGENTS.md` so your coding agent runs checks as part of its After creating or updating a pull request, run `check` and fix any failures before requesting review. ``` -## Why local? - -Running checks locally gives you fast iteration on check definitions and catches issues before they reach CI. The CLI uses `claude -p` under the hood, so it works with your existing Claude credentials. - For running checks automatically on every PR in CI, see [Run Checks in CI](/checks/running-in-ci). From 05932a7cc2a9c3f4556162dec0942796badde6e3 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:13:52 -0800 Subject: [PATCH 03/20] =?UTF-8?q?Fix=20wording:=20"For=20running"=20?= =?UTF-8?q?=E2=86=92=20"To=20run"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 182beae34b2..5ca819f8562 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -59,4 +59,4 @@ Add `check` to your `AGENTS.md` so your coding agent runs checks as part of its After creating or updating a pull request, run `check` and fix any failures before requesting review. ``` -For running checks automatically on every PR in CI, see [Run Checks in CI](/checks/running-in-ci). +To run checks automatically on every PR in CI, see [Run Checks in CI](/checks/running-in-ci). From d2afdd08bdbcfe753a56539cf41728439e4f4598 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:19:00 -0800 Subject: [PATCH 04/20] Remove fuzzy-match implementation detail from scan docs Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 5ca819f8562..3de2cdb6637 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -20,7 +20,7 @@ Before running a check on incremental diffs, see what it finds across the whole check scan security-review ``` -Pass a check name (or a substring — it fuzzy-matches). With no argument, it shows an interactive picker. +Pass a check name, or run it with no argument to pick interactively. On failure, the CLI prints a command to address the findings: From f81b5a70b28396b37d7c98b1e0a2646bc0f90f87 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:19:59 -0800 Subject: [PATCH 05/20] Remove Iterate section, add single-check example to Run section Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 3de2cdb6637..74e492b464c 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -36,19 +36,10 @@ check This discovers every check in `.continue/checks/` and `.agents/checks/`, runs each one against your current diff, and reports results. -## Iterate on a check - -Edit the check file, run it, read the output, refine: +To run a single check: ```bash -# Scan the full repo to see what the check catches -check scan migration-safety - -# Edit the check to reduce false positives, then re-scan -check scan migration-safety - -# Once it looks right, run it against your current diff -check +check run security-review ``` ## Run checks automatically From de0fc3cf4e161a80720d6ef38538978cabcf37df Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:21:55 -0800 Subject: [PATCH 06/20] Remove scan failure command example Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 74e492b464c..d86b9dbdb16 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -21,13 +21,6 @@ check scan security-review ``` Pass a check name, or run it with no argument to pick interactively. - -On failure, the CLI prints a command to address the findings: - -```bash -claude "$(cat /tmp/check-scan-results.txt) address this feedback" -``` - ## Run checks on your diff ```bash From 7f53469ba0a9267e0ed869b9bf0064297af32464 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:22:26 -0800 Subject: [PATCH 07/20] =?UTF-8?q?Rename=20"Run=20checks=20on=20your=20diff?= =?UTF-8?q?"=20=E2=86=92=20"...=20current=20changes"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index d86b9dbdb16..25598bb88dd 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -21,7 +21,7 @@ check scan security-review ``` Pass a check name, or run it with no argument to pick interactively. -## Run checks on your diff +## Run checks on your current changes ```bash check From 893d36c0470c581dd169808c5fe2ecc42207c535 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:24:05 -0800 Subject: [PATCH 08/20] =?UTF-8?q?Rename=20"Scan=20your=20codebase"=20?= =?UTF-8?q?=E2=86=92=20"Check=20your=20entire=20codebase"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 25598bb88dd..4462a0a84d7 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -12,7 +12,7 @@ curl -fsSL https://raw.githubusercontent.com/continuedev/check-cli/main/install. Requires `claude` and `git` on your PATH. -## Scan your codebase +## Check your entire codebase Before running a check on incremental diffs, see what it finds across the whole repo: From 45f073628c5deb44eda2986fe0ed11d14cfbeeca Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:27:42 -0800 Subject: [PATCH 09/20] Add intro paragraph and link to quickstart for new users Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 4462a0a84d7..92b9347f048 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -2,7 +2,9 @@ title: "Run Checks Locally" --- -Run checks locally before pushing to CI with the `check` CLI. +The `check` CLI runs your checks locally — against your current changes or your entire codebase. It discovers check files in your repo, runs them in parallel, and shows results with live progress. + +If you don't have any checks yet, start with [Write Your First Check](/checks/quickstart). ## Install From d7e63411d9c0118f2cf6e473d815166bdc600390 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:29:12 -0800 Subject: [PATCH 10/20] Add motivation paragraph for running checks locally Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 92b9347f048..7d9f4b46649 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -4,6 +4,8 @@ title: "Run Checks Locally" The `check` CLI runs your checks locally — against your current changes or your entire codebase. It discovers check files in your repo, runs them in parallel, and shows results with live progress. +Running checks locally lets you iterate on them before rolling them out to your team in CI. You get fast feedback, full control over what runs, and it works with your existing Claude credentials (Claude Max, API key, etc.) — no extra setup. You can also add `check` to your `AGENTS.md` so your coding agent runs checks as part of its workflow. + If you don't have any checks yet, start with [Write Your First Check](/checks/quickstart). ## Install From 7df101b87d67b94f0a764a51ea123c3172d88caa Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:29:39 -0800 Subject: [PATCH 11/20] Condense intro to single paragraph Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 7d9f4b46649..7744af75dff 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -2,9 +2,7 @@ title: "Run Checks Locally" --- -The `check` CLI runs your checks locally — against your current changes or your entire codebase. It discovers check files in your repo, runs them in parallel, and shows results with live progress. - -Running checks locally lets you iterate on them before rolling them out to your team in CI. You get fast feedback, full control over what runs, and it works with your existing Claude credentials (Claude Max, API key, etc.) — no extra setup. You can also add `check` to your `AGENTS.md` so your coding agent runs checks as part of its workflow. +The `check` CLI runs your checks locally — iterate on them before rolling out to your team in CI, with fast feedback, full control over what runs, and no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. If you don't have any checks yet, start with [Write Your First Check](/checks/quickstart). From 019278f41e27813cbaaf98fe2e5b665f4bbd906d Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:32:25 -0800 Subject: [PATCH 12/20] Remove em dashes Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 7744af75dff..1c433ed2a00 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -2,7 +2,7 @@ title: "Run Checks Locally" --- -The `check` CLI runs your checks locally — iterate on them before rolling out to your team in CI, with fast feedback, full control over what runs, and no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. +The `check` CLI runs your checks locally. Iterate on them before rolling out to your team in CI, with fast feedback, full control over what runs, and no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. If you don't have any checks yet, start with [Write Your First Check](/checks/quickstart). From e3f1ebfdba4fa5fbbf5dd04563486d221771f236 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:32:50 -0800 Subject: [PATCH 13/20] Remove "full control over what runs" from intro Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 1c433ed2a00..e5c66cc333f 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -2,7 +2,7 @@ title: "Run Checks Locally" --- -The `check` CLI runs your checks locally. Iterate on them before rolling out to your team in CI, with fast feedback, full control over what runs, and no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. +The `check` CLI runs your checks locally. Iterate on them before rolling out to your team in CI, with fast feedback and no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. If you don't have any checks yet, start with [Write Your First Check](/checks/quickstart). From 41c7efb042ee68a54e199c3a52163c70fc98a000 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:34:33 -0800 Subject: [PATCH 14/20] Restore concrete nouns to intro paragraph Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index e5c66cc333f..93021ec0134 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -2,7 +2,7 @@ title: "Run Checks Locally" --- -The `check` CLI runs your checks locally. Iterate on them before rolling out to your team in CI, with fast feedback and no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. +The `check` CLI discovers check files in your repo, runs them in parallel, and shows results with live progress. Iterate on checks locally before rolling out to your team in CI, with no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. If you don't have any checks yet, start with [Write Your First Check](/checks/quickstart). From 077be10f062f7180126b7e0395451c70b9a89fed Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:42:04 -0800 Subject: [PATCH 15/20] Use `check security-review` instead of `check run security-review` Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 93021ec0134..0051dc710c6 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -34,7 +34,7 @@ This discovers every check in `.continue/checks/` and `.agents/checks/`, runs ea To run a single check: ```bash -check run security-review +check security-review ``` ## Run checks automatically From ed70720a26fc176958b87e96bf3cf1a7da7532e7 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 15:42:30 -0800 Subject: [PATCH 16/20] Reference check init for users without checks Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 0051dc710c6..8baf0c3a7e4 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -4,7 +4,7 @@ title: "Run Checks Locally" The `check` CLI discovers check files in your repo, runs them in parallel, and shows results with live progress. Iterate on checks locally before rolling out to your team in CI, with no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. -If you don't have any checks yet, start with [Write Your First Check](/checks/quickstart). +If you don't have any checks yet, run `check init` to explore your codebase and generate checks tailored to your project. Or start from scratch with [Write Your First Check](/checks/quickstart). ## Install From 444a57248149d68ce35832766c1d9524546318e2 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 16:19:06 -0800 Subject: [PATCH 17/20] Fix missing blank line before heading Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 8baf0c3a7e4..785d3d8e0b6 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -23,6 +23,7 @@ check scan security-review ``` Pass a check name, or run it with no argument to pick interactively. + ## Run checks on your current changes ```bash From d586d6dd875909380a3a27a0b5b3834d3f31465f Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 16:33:46 -0800 Subject: [PATCH 18/20] Use continue.dev/check/install.sh for cleaner install URL Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 785d3d8e0b6..19953f687e3 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -9,7 +9,7 @@ If you don't have any checks yet, run `check init` to explore your codebase and ## Install ```bash -curl -fsSL https://raw.githubusercontent.com/continuedev/check-cli/main/install.sh | sh +curl -fsSL continue.dev/check/install.sh | sh ``` Requires `claude` and `git` on your PATH. From 20cf6035cf875d6843a73154d78cf6c9d033c721 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 16:34:31 -0800 Subject: [PATCH 19/20] Tighten intro copy, remove prerequisites line Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 19953f687e3..9800bcf4074 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -4,7 +4,7 @@ title: "Run Checks Locally" The `check` CLI discovers check files in your repo, runs them in parallel, and shows results with live progress. Iterate on checks locally before rolling out to your team in CI, with no extra setup beyond your existing Claude credentials. You can run it yourself or add it to `AGENTS.md` so your coding agent runs checks automatically. -If you don't have any checks yet, run `check init` to explore your codebase and generate checks tailored to your project. Or start from scratch with [Write Your First Check](/checks/quickstart). +If you don't have any checks yet, run `check init` to generate checks based on your codebase and review history, or see [Write Your First Check](/checks/quickstart). ## Install @@ -12,8 +12,6 @@ If you don't have any checks yet, run `check init` to explore your codebase and curl -fsSL continue.dev/check/install.sh | sh ``` -Requires `claude` and `git` on your PATH. - ## Check your entire codebase Before running a check on incremental diffs, see what it finds across the whole repo: From 06c88134f3a475e254795bc29dbada4e5c0e6f6b Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 2 Mar 2026 17:16:10 -0800 Subject: [PATCH 20/20] Fix schemeless curl URL in running-locally.mdx Add https:// scheme to continue.dev/check/install.sh URL so curl resolves it correctly. Co-Authored-By: Claude Opus 4.6 --- docs/checks/running-locally.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/checks/running-locally.mdx b/docs/checks/running-locally.mdx index 9800bcf4074..648e72150df 100644 --- a/docs/checks/running-locally.mdx +++ b/docs/checks/running-locally.mdx @@ -9,7 +9,7 @@ If you don't have any checks yet, run `check init` to generate checks based on y ## Install ```bash -curl -fsSL continue.dev/check/install.sh | sh +curl -fsSL https://continue.dev/check/install.sh | sh ``` ## Check your entire codebase