From dev
Gather context for a task and propose what to work on. Either picks the next item from the project plan, or scopes a user-provided task. Use when the user asks what to work on next, wants to pick a task, or hands you a specific task description.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev:investigate [optional task description][optional task description]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Gather context and propose a task. Two modes depending on whether an argument is given.
Gather context and propose a task. Two modes depending on whether an argument is given.
Before either mode, check whether the project keeps a backlog of "by the way" ideas
that surfaced mid-task and have not yet been triaged. Convention: a BACKLOG.md
file sitting next to the project plan (the project plan's location is declared in
CLAUDE.md). If the file exists and contains entries under a "## Open" or "## Open
entries" heading:
AskUserQuestion to ask whether to triage them now — promote one or more
into the project plan as new tasks, defer (leave in the backlog), or proceed
with the originally intended next task without triaging.BACKLOG.md and PROJECT_PLAN.md as decided. Then resume the
regular investigate flow below.If BACKLOG.md does not exist, or has no open entries, skip this section silently.
This check is generic — it should not assume any particular project structure
beyond "project plan and backlog live in the same directory".
/dev:next makes next, not
here). Present:
The argument is a task description (e.g. "add a button to clear filters", "refactor the auth module", "fix the off-by-one in pagination").
Present the proposal clearly and concisely. Do not start planning until the user agrees.
The size/risk and workflow tier are decided in the next skill's sizing prompt after this investigation completes. Don't pre-judge size here — your job is to surface enough context that the sizing decision is informed.
npx claudepluginhub balduinlandolt/dev-claude-plugin --plugin devGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.