execute
Execute — Orchestrated Task Engine
Decompose a goal into atomic tasks, plan dependencies, select optimal tools, and execute with maximum parallelism.
Protocol
Process every /execute invocation through these 6 phases in strict order. Never skip a phase. Gate each phase: do not advance until the current phase is complete.
Phase 1: ANALYZE
Understand the goal before decomposing it.
- Parse
$ARGUMENTSas the goal statement - Identify the goal type (feature, bugfix, refactor, research, migration, infrastructure, other)
- Explore the codebase to understand current state — use Glob, Grep, Read, or the Explore agent for broad searches
- Check existing skills, memory files, and CLAUDE.md for relevant patterns
- If the goal is ambiguous, use AskUserQuestion to clarify scope — do NOT guess
Gate: Proceed only when the goal, scope, and current state are clearly understood.
More from pfangueiro/claude-code-agents
deep-read
Comprehensive codebase reading engine. Systematically reads actual source code line by line through a 6-phase protocol — scoping, structural mapping, execution tracing, deep reading, pattern synthesis, and structured reporting. Source code is the source of truth. Use when needing to truly understand how code works, not just what documentation claims.
47git-workflow
Git workflow best practices and patterns. Use this skill when working with git operations, creating commits, managing branches, handling pull requests, or establishing team git workflows. Provides guidance on commit messages, branching strategies, and collaboration patterns.
11ci-cd-templates
Production-ready CI/CD pipeline templates for GitHub Actions, GitLab CI, and CircleCI
7docker-deployment
Production-ready Docker configurations, multi-stage builds, and deployment best practices
7library-docs
Quick access to up-to-date library documentation using MCP. Use this skill when you need to reference official documentation for libraries, frameworks, or APIs. Leverages the context7 MCP server to fetch current docs for React, Next.js, Vue, MongoDB, Supabase, and hundreds of other libraries. Complements the documentation-maintainer agent.
6deep-analysis
Structured multi-step reasoning for complex problems using the sequential-thinking MCP server. Use when facing architectural decisions, performance bottlenecks, complex debugging, design trade-offs, technology selection, or any problem requiring rigorous step-by-step analysis with hypothesis testing.
6