nextlisted
Install: claude install-skill swingerman/disciplined-agentic-engineering
# next
The session-start skill — the human's re-entry point. Surveys every source of DAE state and answers one question: **what should I pick up now?**
Read-only and advisory. It changes nothing, produces no artifact, and emits **no handoff** (the recommendation is the whole output; a handoff would just restate it). This is a deliberate exception to the agentic-summary contract — `next` is a query, not a task that changes state.
`next` is the read-side bookend to `session-summary`: `session-summary` writes "here's where I left off, next tasks" at session end; `next` consumes that — and everything else — at session start.
## When to use
Start of a session, or any "what now?" moment. Project-scope; surveys the whole project — there is no narrower scope.
**Not for:** loading context on a feature you've already chosen (`prime-context`); checking artifact consistency (`consistency-check`); a per-feature next-step (each skill's handoff already carries `recommended_next`).
## Workflow
### Step 1 — Resolve and survey
Resolve the methodology root + manifest via `${CLAUDE_PLUGIN_ROOT}/scripts/dae_resolve.py` (see `references/resolving.md`). Then read, read-only:
- **In-flight features** — every `features/*/feature.md` (status) + `progress.md` (current checkpoint; whether it's blocked or ready to advance)
- **Consolidation backlog** — `.engineer/consolidation.md` if present (coverage backlog + triage order)
- **Parked ideas** — `features/*/` with `status: parked`; `.engineer/d