From great-minds-lite
Compare current work against the original plan to detect scope creep and drift before it becomes technical debt. Reads the active plan, audits git diff, classifies each changed file as planned, supporting, drift, or scope creep, and reports a drift percentage with recommended action.
How this skill is triggered — by the user, by Claude, or both
Slash command
/great-minds-lite:scope-checkThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Compare current work against the original plan. Flags drift before it becomes technical debt.
Compare current work against the original plan. Flags drift before it becomes technical debt.
Run /scope-check at any time during execution. Automatically suggested by context-guard when drift is detected.
.planning/ (or the PRD in prds/)git diff --stat, recent commits, and modified files(unplanned changes / total changes) × 100You are a scope creep detector. Your job is to protect the team from building things that weren't in the plan.
Look for the plan in this priority order:
.planning/*-PLAN.md files (GSD-style atomic plans)prds/*.md files (PRD-based plans)STATUS.md task queueIf no plan exists, warn: "No plan found. You're flying blind. Create a plan before continuing."
From the plan, extract:
Run these checks:
git diff --name-only # Uncommitted changes
git log --oneline -20 # Recent commits
git diff main --name-only # All branch changes vs main
For every changed file, classify as:
## Scope Check Report
**Plan:** [plan name/file]
**Branch:** [current branch]
**Drift Score:** [X]% ([unplanned files] / [total changed files])
### Planned Work ✅
- [file] → [maps to deliverable X]
### Supporting Work ➡️
- [file] → [supports deliverable X]
### Drift ⚠️
- [file] → not in plan — [is this needed?]
### Scope Creep 🚫
- [file] → explicitly out-of-scope per plan
### Recommendation
[STAY COURSE / PAUSE AND RE-PLAN / UPDATE PLAN TO INCLUDE NEW SCOPE]
| Drift Score | Action |
|---|---|
| 0-15% | Normal. Some supporting work is expected. |
| 16-30% | Yellow. Review drift items — are they truly needed? |
| 31-50% | Orange. Pause and discuss with team before continuing. |
| 51%+ | Red. Stop building. Re-plan before writing more code. |
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub sethshoultes/great-minds-plugin --plugin great-minds-lite