From context-engine
Mid-session drift check. Compare current work against original task. Detect scope creep and context bloat. Use periodically during long sessions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/context-engine:checkpointThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quick drift check: compare current work against the original plan. Keep this analysis SHORT.
Quick drift check: compare current work against the original plan. Keep this analysis SHORT.
Find the plan or original task. Check these locations in order:
.claude/plans/ — use Glob to find any plan files, read the most recent.claude/handoffs/ — if no plan, check for a handoff that may describe the taskGather current work state:
git diff --stat
git log --oneline -10
Compare and analyze (be terse):
Report in this format:
## Checkpoint
**Drift detected:** {Yes/No}
**Planned:** {1-line summary of original task}
**Completed:** {brief list of what's done}
**Unplanned work:** {any scope creep, or "None"}
**Context usage:** {rough estimate — low/medium/high based on session length}
**Recommendation:** {one of:}
- "On track. Keep going."
- "Minor drift. Refocus on: {specific task}."
- "Significant drift. Consider `/compact` to reclaim context."
- "Session is heavy. Create `/handoff` and start fresh."
Keep the entire output under 150 words. This checkpoint should not itself contribute to context bloat.
npx claudepluginhub artmin96/forge-studio --plugin context-engineCompares approved plans against actual implementation to detect unimplemented items, out-of-scope changes, and design drift. Invoked via /drift-check.
Detects scope creep by comparing git changes against task plan, quantifies drift percentage, and classifies into ON_TRACK, MINOR_DRIFT, SIGNIFICANT_DRIFT, OUT_OF_CONTROL tiers. Auto-triggers on file exceedance.
Rebuild context on a project's current state using git diffs, checkpoints, annotations, and prior conversation search.