next

A read-only project review that answers what work should be picked up next by examining the project's current status and unfinished features.

In plain words
What is it for?
Starting a work session, choosing the next task across the project, and finding where to resume work.
Why use it?
It gives someone returning to a project a single recommended starting point without changing project files or status.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/swingerman/engineer/next
Any agent
npx skills add swingerman/engineer --skill next
Clone the repo
git clone --depth 1 https://github.com/swingerman/engineer

Made for: Claude Code, Codex.

Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,871 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00064 $0.02871
Opus 5 $0.00032 $0.01435
Sonnet 5 $0.00013 $0.00574
Haiku 4.5 $0.00006 $0.00287

Measured 2d ago against content hash b65bb971e36b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

next scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

engineer/skills/next/SKILL.md · 148 lines

How it starts

The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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). For each in-flight feature, run ${CLAUDE_PLUGIN_ROOT}/scripts/dae_reconcile.py <feature-dir> (read-only): if it reports needs_reconcile: true, the feature's PR is merged but its local state hasn't caught up — this is the authoritative merged-detection (via gh, so it catches squash-merge and git.manual, which the current-branch git-ancestry check below misses). Surface these under NEEDS YOUR DECISION and, at autonomy medium/high, offer /engineer.post-merge to reconcile (which flips the status and propagates). A flag: merged-unverified means it shipped without CP7 — call that out.
  • Consolidation backlog.engineer/consolidation.md if present (coverage backlog + triage order)
  • Roadmap (strategic feature list) — the next unstarted roadmap item(s) via the driver (local = ${CLAUDE_PLUGIN_ROOT}/scripts/dae_roadmap.py next-unstarted; MCP/CLI/API-backed = the connected channel — see references/roadmap.md). This is the "what's next in the roadmap" altitude — candidate features not yet promoted to a feature folder, the forward-looking complement to the consolidation backlog. If manifest.roadmap.type is none, or its host is unreachable (MCP disconnected / CLI gone), skip it with a one-line note — degrade gracefully, never error.
  • Parked ideasfeatures/*/ with status: parked; .engineer/discussions.log
  • Tracker captures (triage queue) — tasks a human added directly to the onboarded tracker: rows with no Slug yet (the reconcile() orphan-as-intake case, see references/tracker.md), or .engineer/inbox.md lines in local mode. These are quick-captured bugs/ideas/tasks awaiting triage — not yet a feature or fix.
  • Pending human actions — recent handoffs/*.md (per-feature and .engineer/handoffs/) flagged human_action_needed: yes
  • Session-log next-tasks — the latest session-log.md entry per active feature ("Next tasks")
  • Dispatched to cloud — features whose latest handoff carries cloud_session_url (running on a cloud agent; PR pending). Surface as DISPATCHED — not actionable until the PR lands.
  • CHARTER.md + manifest — autonomy levels and path overrides, for execution-mode advice
  • Open fixes.engineer/fixes/*.md via ${CLAUDE_PLUGIN_ROOT}/scripts/dae_fix.py list_open_fixes (status != closed)
  • Stale merged branch — if the current branch is not main/master, run git fetch origin --quiet then check git merge-base --is-ancestor HEAD origin/HEAD (fallback origin/main). If true, the branch is merged and lingering — surface it as a STALE BRANCH item. (This git check only catches the current branch and only non-squash merges; the per-feature dae_reconcile.py probe above is the broader, gh-based merged-detection.)

Read the full file on GitHub · 148 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 148 lines · 64 tokens per session scan A b65bb971e36b

Subscribe to this mod's changes

next is a skill published in the GitHub repository swingerman/engineer (144 stars, last pushed 6d ago), licensed MIT. It adds 64 tokens to every session and 2,871 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

writing-tests

Write unit tests, component tests, and integration tests for AiderDesk using Vitest and React Testing Library. Use when creating new tests, adding test coverage, configuring mocks, setting up test files, or debugging failing tests.

hotovo/aider-desk · 48 tokens

release

Cut a sim-use release end-to-end. Use when the user runs /release or asks to "ship a release", "publish a version", "cut a release", or "release to homebrew". Drives scripts/local-release.sh; never reimplement its build/sign/tarball logic.

lycorp-jp/sim-use · 61 tokens

work-summary

Generates a project dashboard from MCP work items. Default is a lean, attention-first view: what's in flight, what's blocked, what to do next, what's queued. Use when the user says: project status, what's active, show me the dashboard, work summary, what should I work on, project health, what's blocked, where did I…

jpicklyk/task-orchestrator · 110 tokens

manage-schemas

Creates, views, edits, deletes, and validates note schemas for the MCP Task Orchestrator in .taskorchestrator/config.yaml — the templates that define which notes agents must fill at each workflow phase. Also recommends schema designs from a library of workflow patterns (autonomous coding loops, spec-driven teams…

jpicklyk/task-orchestrator · 212 tokens

bmad-dev-story

Execute story implementation following a context filled story spec file. Use when the user says "dev this story [story file]" or "implement the next story in the sprint plan".

LarsCowe/bmalph · 40 tokens

bmad-editorial-review-structure

Structural editor that proposes cuts, reorganization, and simplification while preserving comprehension. Use when user requests structural review or editorial review of structure.

LarsCowe/bmalph · 35 tokens