Loading...
Loading...
Runs .continue/agents checks locally against the current diff, simulating the GitHub PR checks experience. Use when the user says /check to review their changes before pushing.
npx skill4agent add continuedev/skills check.continue/agents/*.mdgit diff main...HEAD/tmp/check-diff.patchgit diff --cachedgit diff\n... (diff truncated at 3000 lines)git diff main...HEAD | head -3000 > /tmp/check-diff.patchgit log main..HEAD --oneline/tmp/check-log.txt.continue/agents/*.mdcode-conventions.mdsubagent_type: "general-purpose"model: "haiku"run_in_background: trueYou are a code reviewer running an automated check on a pull request.
## Setup
1. Read your check instructions from: {absolute path to .continue/agents/xxx.md}
2. Read the diff from: /tmp/check-diff.patch
3. Read the commit log from: /tmp/check-log.txt
## Your Task
Review the diff according to your check instructions. For each finding:
1. State the severity (Error / Warning / Info)
2. Reference the specific file and line from the diff
3. Explain what's wrong and how to fix it
If everything looks good and you have no findings, say "PASS" and briefly explain why the changes are clean for your check.
If you have findings, say "FAIL" and list them.
Keep your response concise. Do not repeat the diff back. Focus only on actionable findings.
Your final message must start with either "PASS" or "FAIL" on its own line.tail -30 {output_file}| Check | Result |
|-------|--------|
| ✅ Code Conventions | Passed |
| ❌ Security | 2 errors, 1 warning |
| ✅ Test Quality | Passed |
| ⚠️ Mobile Layout | 1 warning |
| ... | ... |