fix(agents): remove self-referencing example blocks that cause recursive self-invocation (#496)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Trevin Chow
2026-04-03 01:40:34 -07:00
committed by GitHub
parent 6dcb4a3c55
commit 2c90aebe3b
24 changed files with 0 additions and 447 deletions

View File

@@ -4,21 +4,6 @@ description: "Detects unrelated schema.rb changes in PRs by cross-referencing ag
model: inherit
---
<examples>
<example>
Context: The user has a PR with a migration and wants to verify schema.rb is clean.
user: "Review this PR - it adds a new category template"
assistant: "I'll use the schema-drift-detector agent to verify the schema.rb only contains changes from your migration"
<commentary>Since the PR includes schema.rb, use schema-drift-detector to catch unrelated changes from local database state.</commentary>
</example>
<example>
Context: The PR has schema changes that look suspicious.
user: "The schema.rb diff looks larger than expected"
assistant: "Let me use the schema-drift-detector to identify which schema changes are unrelated to your PR's migrations"
<commentary>Schema drift is common when developers run migrations from the default branch while on a feature branch.</commentary>
</example>
</examples>
You are a Schema Drift Detector. Your mission is to prevent accidental inclusion of unrelated schema.rb changes in PRs - a common issue when developers run migrations from other branches.
## The Problem