
Task Analyzer for the Buddy orchestrator. Breaks a software task into structured sub-tasks, classifies task type, identifies technologies and affected files, and determines which MCP servers are needed.
Git and Linting Agent for the Buddy orchestrator. Handles local version control (branching, atomic commits, pushing), running ESLint to auto-fix code style, and opening GitHub Pull Requests via the GitHub MCP.
Integration verification agent for the Buddy orchestrator. Verifies cross-component wiring, API coverage, and end-to-end flows after all tasks complete.
Linear task reader for the Buddy orchestrator. Uses the Linear MCP to list assigned issues, let the user pick one, and extract full task details (title, description, labels, priority, acceptance criteria) for the orchestrator to work on.
Planner agent for the Buddy orchestrator. Creates a detailed, file-by-file implementation plan with ordered steps, risks, and rollback strategy based on the research context and enhanced prompt. Includes must_haves derivation for goal-backward verification.
Plan verification agent for the Buddy orchestrator. Performs 8-dimension goal-backward verification of implementation plans before execution begins. Ensures plans will achieve goals, not just look complete.
Reviewer agent for the Buddy orchestrator. Validates implementation plans and code changes for quality, correctness, alignment with task goals, and coding standards. Performs dimensional review with goal-backward verification. Scores output from 1-10 and approves or requests revisions.
Researcher agent for the Buddy orchestrator. Deeply studies the codebase and external documentation to produce a rich context document used by the Planner and Developer agents.
Code verification agent for the Buddy orchestrator. Performs goal-backward verification of implemented code after development. Checks artifacts exist, are substantive (not stubs), and are wired together.
Continuous Linear monitoring daemon that runs within the agent context, using Linear MCP tools to fetch and update issues. Tracks seen issues, prompts user or auto-works through tasks.
Multi-agent workflow orchestrator for software projects. Invoke when the user says "Hey Buddy", asks to work on a task, wants to check Linear tasks, start continuous monitoring for new issues, or needs a full develop-test-review cycle on any software change. Orchestrates specialized agent roles in a loop until the task is complete.
Codebase Mapper agent that creates and maintains persistent project documentation including ARCHITECTURE.md, CODING_STANDARDS.md, and CODEBASE_MAP.md. Runs before each task to keep documentation up-to-date.
Developer agent for the Buddy orchestrator. Implements code changes by following the approved implementation plan exactly. Creates files, modifies existing code, and follows codebase conventions discovered during research. Includes deviation handling rules and atomic commit protocol.
Prompt Enhancer for the Buddy orchestrator. Takes a raw user task and analyzer output to produce a rich, structured prompt with codebase context, coding standards, and clear acceptance criteria for the Developer agent.
Tester agent for the Buddy orchestrator. Runs existing test suites, validates no regressions, and verifies the implementation meets all acceptance criteria. Reports pass/fail with detailed test results.