From 6c5ff596be2a57b1ade0b8aeb04e0b1399a3d00b Mon Sep 17 00:00:00 2001 From: Nate Date: Tue, 10 Feb 2026 15:48:11 -0800 Subject: [PATCH 1/2] docs: add .continue/agents demo instructions Co-Authored-By: Claude Opus 4.6 --- .continue/README.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .continue/README.md diff --git a/.continue/README.md b/.continue/README.md new file mode 100644 index 0000000..065ffc5 --- /dev/null +++ b/.continue/README.md @@ -0,0 +1,37 @@ +# Agent Checks Demo + +This repo has four [Continue Agent Checks](https://docs.continue.dev/agent-checks) configured in `.continue/agents/`. Here's how to demo them. + +## Agents + +| Agent | Trigger | What it does | +|-------|---------|-------------| +| **Fix CI** | CI failure | Auto-fixes formatting, clippy, and compilation errors. Comments on test/audit failures instead of guessing. | +| **PR Quality Gate** | Every PR | Reviews diff for `Result<_, String>` anti-pattern — suggests `anyhow::Result` or custom error types. | +| **Issue Solver** | Issue labeled `autosolve` | Opens a fix PR from `fix/autosolve-{issue-number}`. | +| **Sentry Triage** | High/critical Sentry alert | Opens a fix PR if clear, otherwise files a GitHub issue with analysis. | + +## How to Demo + +### 1. Fix CI (easiest — start here) + +1. Open any `.rs` file and break formatting (e.g. remove a space, add an extra blank line) +2. Push to a branch and open a PR +3. CI fails on `cargo fmt --check` +4. The **Fix CI** agent picks up the failure, pushes a fix commit, and CI goes green + +### 2. PR Quality Gate + +1. Add a function that returns `Result<(), String>` anywhere in `src/` +2. Open a PR +3. The **PR Quality Gate** agent posts a review comment pointing out the bad error type + +### 3. Issue Solver + +1. Create a GitHub issue describing a small bug or improvement +2. Add the `autosolve` label +3. The **Issue Solver** agent opens a PR referencing the issue + +### 4. Sentry Triage + +Requires a Sentry integration. When a high/critical issue fires, the agent either opens a fix PR or files a GitHub issue with root-cause analysis. From aa93ceb6a95b54c9718d9545619fbe131097fddd Mon Sep 17 00:00:00 2001 From: Nate Sesti <33237525+sestinj@users.noreply.github.com> Date: Tue, 10 Feb 2026 15:49:52 -0800 Subject: [PATCH 2/2] Fix typo in README regarding Continue Agents --- .continue/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.continue/README.md b/.continue/README.md index 065ffc5..c7d75bd 100644 --- a/.continue/README.md +++ b/.continue/README.md @@ -1,6 +1,6 @@ # Agent Checks Demo -This repo has four [Continue Agent Checks](https://docs.continue.dev/agent-checks) configured in `.continue/agents/`. Here's how to demo them. +This repo has four [Continue Agents](https://docs.continue.dev/agent-checks) configured in `.continue/agents/`. Here's how to demo them. ## Agents