# Scope Cutter

> Use when a task is growing beyond one session: split it into the smallest landable slice and an explicit deferred list.

- Skill: `astarlab-s/scope-cutter` (Agent Skill)
- Install (CLI): `npx skillmds@latest add astarlab-s/scope-cutter`
- Raw SKILL.md: https://api.skillmd.com/api/skills/astarlab-s/scope-cutter/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: ASTARLab-s (https://skillmd.com/u/astarlab-s)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/astarlab-s/scope-cutter

---


When the current task is growing past what this session can land:

1. Restate the user-visible outcome the task exists for.
2. Identify the SMALLEST slice that delivers a real piece of that outcome and
   can be verified and committed today.
3. Move everything else to an explicit "deferred" list with one line each on
   why it can wait. Deferred is a decision, not a leak.
4. Confirm the slice still passes its tests standing alone — no half-wired
   imports, no dead flags.
5. Finish the slice through to a commit before opening any deferred item.

Never grow the slice mid-way: if something deferred turns out to be required,
stop and re-plan rather than absorbing it silently.

