| name | scope-check |
| description | Assess whether a proposed change fits the current work context or represents scope creep |
| argument-hint | ["description of proposed change"] |
Scope Check Assessment
Evaluate whether the following proposed change aligns with the current work context.
Proposed Change: $ARGUMENTS
Assessment Steps
-
Read recent CHANGELOG entries — Check CHANGELOG.md for the [Unreleased] section and last 2-3 dated sections.
-
Review recent commit history — git log --oneline -15
-
Check in-progress work — git diff --name-only and git diff --staged --name-only
-
Identify current work theme — Which feature area, which project component (mod/launcher/server/devops)?
-
Assess the proposed change:
Natural Extension (GREEN): Directly relates to current files, fixes a discovered bug, completes incomplete work, small improvement in same area.
Adjacent Work (YELLOW): Related but different feature area, could be deferred, requires context-switching.
Scope Creep (RED): Unrelated feature area, requires new infrastructure, would interrupt incomplete work.
-
Recommendation — GREEN/YELLOW/RED with reasoning. If YELLOW/RED: defer, create GitHub issue, or suggest minimal version.
Important
READ-ONLY assessment. Do not make code changes.