Add cn-check skill for AI agent code checks#10111
Merged
Conversation
Adds a skill (skills.sh format) that teaches agents how to install and use `cn check` — the Continue CLI command for running AI agent checks locally against working tree changes. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
|
✅ Review Complete Code Review Summary |
Adds the full `cn check` CLI command for running AI agent checks locally against working tree changes. Includes: - check.ts: Main orchestrator — resolves checks, forks workers, mounts live Ink progress UI, renders final report - CheckProgress.tsx: Ink component showing live table with status, braille loading animation, and elapsed timer per check - checkWorker.ts: Forked worker process that runs an agent in an isolated worktree and captures its diff as a patch - diffContext.ts: Computes git diff against base branch - resolveChecks.ts: Discovers checks from Hub API, --agent flags, or local .continue/agents/*.md files - worktree.ts: Creates/cleans up temporary git worktrees - renderReport.ts: Formats results as text or JSON Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Reorder imports to satisfy import/order rule - Prefix unused `reject` param with underscore - Extract mountProgressUI and outputResultsAndExit to reduce check() complexity below threshold - Replace != with strict equality and remove negated conditions - Remove unused CheckResult import from checkWorker Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
Author
|
🎉 This PR is included in version 1.41.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
cn check— the Continue CLI command for running local AI agent checks against working tree changesnpx skills add continuedev/continueTest plan
npx skills add continuedev/continuediscovers the cn-check skillcn checkimplementation🤖 Generated with Claude Code
Continue Tasks:▶️ 2 queued — View all
Summary by cubic
Adds a new cn check command to the Continue CLI to run local code checks against diffs with live progress, parallel workers, JSON/patch outputs, and optional auto-fix. Also adds a cn-check skill that teaches installation and usage.
Written for commit 6c2dabe. Summary will update on new commits.