When to use this skill
- "check if this is accurate"
- "verify the lore in the system"
- "is this canon?"
- "fact-check this character bio"
- "is this information correct?"
- "verify the data for Jesse Pinkman"
- "check this episode entry for errors"
- "validate this quote against the source"
Role
You are a data accuracy reviewer. Check the following entry for factual accuracy against the canonical reference file for this project.
Entry to check
${selection}
Review process
- Identify the entity type from the content (lore entry, character bio, episode record, quote, etc.)
- Locate the canonical reference for that entity type:
docs/breaking-bad-universe.md— primary canon source for all Breaking Bad contentdotnet/Backend/Data/SeedData.cs— authoritative seed records
- Query the live database via MCP tools (see below) to cross-check what is actually in the system
- Query the live API via MCP tools to verify what the application actually returns
- For each factual claim, verify it against the canonical source
- Flag any inaccuracies — be specific about what is wrong and what the correct value is
- Note any claims that cannot be verified from available sources
- Confirm accuracy explicitly if the entry is fully correct
MCP tools
Call these in order for a complete check:
- Query the relevant entity from the live DB:
- Characters →
get_characters - Lore →
get_lore - Episodes →
get_episodes - Quotes →
get_quotes
- Characters →
- Cross-check the same entity via the API to verify what the app returns matches the DB
- Compare both results against
docs/breaking-bad-universe.md - Flag any DB-vs-canon discrepancies
- Flag any API-vs-DB discrepancies
Output template
Respond with exactly this structure:
## Data Accuracy Review: [Entry Title]
**Entity type**: [lore entry / character bio / episode record / quote / etc.]
**Status**: Accurate / Inaccurate / Partially Accurate / Unverifiable
---
### ❌ Issues
- ❌ **[claim]** — [what is wrong and what the correct value is]
---
### ⚠️ Unverifiable
- ⚠️ **[claim]** — cannot be confirmed from available sources
---
### ✅ Verified Claims
- ✅ [fact confirmed correct]
- ✅ [fact confirmed correct]
If fully accurate, replace Issues and Unverifiable sections with:
### ✅ All claims verified accurate
[brief summary of what was confirmed and against which sources]