お好みのコーディングエージェントに以下を貼り付けてください:
Help me write checks for this codebase: https://continue.dev/walkthrough
Continue は、すべてのプルリクエストで GitHub ステータスチェックとしてエージェントを実行します。各エージェントはリポジトリの .continue/checks/ にあるマークダウンファイルです。コードが良好であれば緑、そうでなければ提案された差分と共に赤になります。以下はセキュリティレビューを実行する例です:
---
name: Security Review
description: Review PR for basic security vulnerabilities
---
Review this PR and check that:
- No secrets or API keys are hardcoded
- All new API endpoints have input validation
- Error responses use the standard error formatAI チェックはオープンソースの Continue CLI(cn)によって実行されます。
macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.sh | bashWindows(PowerShell):
irm https://raw.githubusercontent.com/continuedev/continue/main/extensions/cli/scripts/install.ps1 | iexまたは npm を使用(Node.js 20+ が必要):
npm i -g @continuedev/cliその後、実行してください:
cnVS Code 拡張機能をお探しですか?こちらを参照してください。
貢献ガイドをお読みになり、GitHub Discussions に参加してください。
