From great-minds
Compare current work against the original plan to detect scope creep. Reads .planning/*-PLAN.md or prds/*.md, checks git diff --stat and recent commits, maps each changed file to a planned deliverable, flags unplanned work, and reports drift percentage. Use during execution when context-guard signals drift, or run manually to keep a project on-spec.
How this skill is triggered — by the user, by Claude, or both
Slash command
/great-minds: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. |
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
npx claudepluginhub sethshoultes/great-minds-plugin --plugin great-minds