Fast 5-point context quality check before shipping an AI feature. Catches problems before users do.
Validates AI context quality with 5-point check to catch issues before shipping features.
/plugin marketplace add breethomas/pm-thought-partner/plugin install pm-thought-partner@pm-thought-partnerQuick validation of context quality before shipping or during review.
5 checks. 5 minutes. Use before launch or during code review.
/context-check # Check a prompt/feature
/context-check --prompt # Paste a prompt/payload to analyze
/context-check LIN-123 # Check context for Linear issue
Is everything here necessary?
More context ≠ better. Irrelevant context confuses the model, increases cost, and slows responses.
Is the data current enough?
Stale context = stale outputs. A model reasoning about yesterday's data will give yesterday's answers.
Does the model have enough to reason?
Missing context forces the model to guess. Guessing = hallucinating.
Is context organized clearly?
Dumping raw text forces the model to parse meaning. Structured, labeled sections reduce ambiguity.
Are the rules explicit?
Prompts are suggestions. The model will eventually ignore them. Hard rules must be enforced outside the prompt or stated as non-negotiable.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
CONTEXT QUALITY CHECK
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
┌─────────────┬────────────┐
│ Check │ Result │
├─────────────┼────────────┤
│ Relevance │ ✓ PASS │
│ Freshness │ ✓ PASS │
│ Sufficiency │ ⚠ NEEDS WORK │
│ Structure │ ✓ PASS │
│ Constraints │ ⚠ NEEDS WORK │
└─────────────┴────────────┘
Overall: 3/5 PASSING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ISSUES TO FIX:
• Sufficiency: Missing user's role/permissions - model may suggest
actions user can't take
• Constraints: No explicit list of prohibited topics - model may
drift into off-topic responses
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Before shipping:
During review:
When debugging:
/ai-debug auditWorkflow:
For each check, ask:
Key insight: All hallucinations are context failures before they're model failures. This checklist catches problems before users do.
Framework: Context Quality Checklist (4D Context Canvas) Best for: Pre-ship validation, code review, quick context audits