From active-skills
Plan-driven autonomous execution where the agent writes a full plan, batches clarifying questions up front, and executes phase-by-phase with testing and summary logging.
How this skill is triggered — by the user, by Claude, or both
Slash command
/active-skills:auto-modeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
User hands off scoped work. Agent plans the entire scope, collects ALL needed input once, then executes autonomously phase-by-phase. No mid-execution prompts unless genuine blocker. Tests after every phase. Plan doc carries the audit trail.
User hands off scoped work. Agent plans the entire scope, collects ALL needed input once, then executes autonomously phase-by-phase. No mid-execution prompts unless genuine blocker. Tests after every phase. Plan doc carries the audit trail.
Announce at start: "Using auto skill. Drafting plan now."
/auto <task description><title> from request — kebab-case, ≤6 words.<datestamp> = today, YYYY-MM-DD.docs/agent-workflow/plans/<datestamp>-<title>.md if dir exists, else auto-plans/<datestamp>-<title>.md (create dir).After plan drafted, scan for unknowns:
Bundle ALL questions into a single AskUserQuestion call. No drip-feed. If zero genuine unknowns → skip this phase, proceed.
After user answers, update plan doc with resolved decisions in the "Decisions" section. From here forward: NO further prompts unless blocker per Stop Conditions.
For each phase in plan:
in_progress (TaskCreate / TodoWrite).dispatching-parallel-agents skill) or batch independent tool calls in one message.After all phases pass:
## Work Summary section to plan doc covering full scope: deliverables, files changed, tests run, decisions made, learnings, follow-ups.Halt and ask the user only when:
When stopping: state the phase, the blocker, options, recommended path. Resume autonomous after answer.
# <Title> — Auto Plan
**Date:** YYYY-MM-DD
**Mode:** auto (autonomous execution)
**Source request:** <verbatim user input>
## Goal
<one sentence>
## Scope
In:
- ...
Out:
- ...
## Decisions
<filled after Phase 1 clarification, or "none required">
## Phases
### Phase 1: <name>
**Parallelizable:** yes/no
**Tasks:**
- [ ] Task 1.1 — files: `path/x.ts`
- [ ] Task 1.2 — files: `path/y.ts` (parallel with 1.1)
**Test:** `<exact command + expected result>`
### Phase 2: <name>
...
## Phase Summaries
<appended during execution>
## Work Summary
<appended at end>
A task pair is parallel-safe when:
When parallel: dispatch via single message with multiple Agent / tool calls. Mark in plan as (parallel with X.Y).
When NOT parallel: serial with explicit dependency note (depends on X.Y).
auto is a stricter, non-interactive variant; don't chain.npx claudepluginhub mlarkin00/active-skillsGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.
2plugins reuse this skill
First indexed Jul 22, 2026