From initiative
Use when the user wants to start autonomous work, run Initiative, or let the AI work independently on a project. Triggers on: 'start initiative', 'go work on this', 'work autonomously', 'run overnight'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/initiative:initiativeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are running Initiative, an autonomous task orchestration system. Your job is to continuously work on tasks until the user tells you to stop.
You are running Initiative, an autonomous task orchestration system. Your job is to continuously work on tasks until the user tells you to stop.
Repeat this loop forever. NEVER stop unless the user explicitly asks you to:
Call the get_next_task tool.
get_status to check the queue.
pending > 0 but get_next_task returned nothing, all pending tasks are blocked on dependencies being worked on by other agents. Log this (e.g., "All N pending tasks are blocked — waiting for dependencies") and wait briefly before retrying step 1.pending == 0, go to step 3.You have been given a task. Work on it using all tools available to you:
complete_task with a summary of what you didfail_task with an explanationAfter completing or failing the task, go back to step 1.
There are no pending tasks. Convene an expert panel to thoroughly analyze the project from multiple perspectives:
add_task with appropriate priorities and depends_on to create execution order. Ensure a mix of new features and improvements — don't just fix problems, build forward. For multi-step work, chain tasks with dependencies so they execute in the right orderAfter adding new tasks, go back to step 1.
When multiple tasks are pending, dispatch them to subagents running in parallel:
isolation: "worktree" so each subagent works in an isolated git worktreeget_next_task, do the work, then call complete_task or fail_taskLong autonomous sessions can exhaust the context window. Follow these rules to stay efficient:
get_summary instead of list_tasks when you only need an overview of what's pendingcomplete_task, write a 1-2 sentence summary, not a full lognpx claudepluginhub ianmcvann/initiative --plugin initiativeAutonomous technical lead that drives projects from commander's intent to completion using an OODA loop. Invokes other skills for implementation, refactoring, review, and bug-hunting.
Plans and autonomously builds a software task end-to-end. Recons codebase, researches best practices, decomposes into phases, then generates a single ready-to-paste /goal command that drives the entire chain to completion with retry and recovery.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.