AI Tools Review
Gemini Conductor: Context-Driven Development Guide

Insights

Gemini Conductor: Context-Driven Development Guide

AI Tools Review Editorial TeamFeb 04, 2026

    Benjamin Franklin said: "Failing to plan is planning to fail". Yet, in the age of AI, we often dive straight into implementation without establishing a clear understanding of what we are building.

    Conductor, a new extension for Gemini CLI, changes this workflow by using context-driven development. Rather than depending on impermanent chat logs, Conductor helps you create formal specs and plans that live alongside your code in persistent Markdown files.

    Conductor was published in preview on 17/12/2025 by Keith Ballinger (VP and GM), Jay Kornder (Group Product Manager) and Sherzat Aitbayev (Senior Software Engineer). It is open source under Apache 2.0, and it has been iterating quickly ever since — enough that the recommended install command carries an auto-update flag. By the time Google published a full Codelab walking through a greenfield build with it in April 2026, the repository had accumulated several thousand stars and a few hundred forks, which is respectable for a developer tool that asks you to change how you work rather than simply adding a button.

    The problem it targets will be familiar to anyone who has spent a week pair-programming with an agent. The first hour is superb. By the third session, the model has forgotten that you chose Postgres over MongoDB, has reintroduced the naming convention you corrected on Tuesday, and is confidently rewriting a module it has no memory of having written. The context was never lost exactly — it was just held in a chat transcript that nobody versioned, nobody reviewed and nobody could share. Conductor's answer is blunt: if the context matters, commit it.

    The Philosophy: Control Your Code

    Instead of diving straight into implementation, Conductor helps you formalise your intent. It unlocks context-driven development by shifting the context of your project out of the chat window and directly into your codebase.

    Key Benefits

    • Plan before you build: Create specs and plans that guide the agent for new and existing codebases.
    • Maintain context: Ensure AI follows style guides, tech stack choices, and product goals.
    • Iterate safely: Review plans before code is written, keeping you firmly in the loop.
    • Work as a team: Give your AI agents the same project and best practices context.

    How Conductor Works

    Conductor is a structured workflow for agentic development which is ideal for tasks more complex than simple code edits. Unlike a standard chat session which is confined to a single session, Conductor uses a set of Markdown files to plan and track progress over time.

    Establish Context

    Define product goals, tech stack, and workflow preferences once.

    Specify & Plan

    Generate detailed specs and actionable to-do lists for every feature.

    Implement

    Agents follow the plan, checking off tasks and inserting checkpoints for review.

    Inside the conductor/ Directory

    Everything Conductor knows lives in one directory that you commit alongside your source. That is the whole trick, and it is worth looking at the shape of it, because the layout tells you a great deal about how the tool expects you to work.

    conductor/
      product.md              # Vision, users, goals, features
      product-guidelines.md   # UI standards, tone, error handling
      tech-stack.md           # Languages, frameworks, databases
      workflow.md             # TDD preferences, commit strategy
      code_styleguides/       # Per-language style guides
        python.md
        typescript.md
      tracks.md               # Registry of all tracks
      tracks/
        dark_mode_20260614/
          spec.md             # Requirements and constraints
          plan.md             # Phased implementation checklist
          metadata.json       # Track metadata

    The split between product.md and product-guidelines.md is deliberate and often misunderstood on first use. The first answers "what are we building and for whom"; the second answers "what does good look like here" — error-handling conventions, tone of interface copy, how empty states behave. Agents are remarkably bad at inferring the second category and remarkably good at following it once written down, which makes product-guidelines.md the single highest-leverage file in the directory.

    tracks.md is a registry rather than a workspace: each unit of work gets a timestamped directory beneath tracks/, so a feature started in June is still legible in November. On a large project this file grows, and the practical advice is to archive completed tracks so the registry stays lean — every command reads these files, so an unmaintained directory quietly makes every subsequent interaction more expensive.

    Because it is all Markdown in Git, the artefacts behave like code. They diff. They go through pull request review. You can blame a line in tech-stack.md and find the conversation where you decided it. Compared with the alternative — a decision that exists only in the scroll history of a terminal session that was closed last Thursday — this is not a small improvement.

    Support for "Brownfield" Projects

    Most development work involves established codebases ("brownfield"). This is often where AI tools struggle, lacking the nuanced understanding of a project's history and architecture.

    Conductor approaches this challenge by initiating an interactive session to help you create a foundational set of documents about your project’s architecture, guidelines, and goals. As you build new features, Conductor updates this shared context, ensuring its knowledge grows alongside your project.

    Mechanically, /conductor:setup scans the codebase to infer what it is working with, respecting your .gitignore patterns as it goes — so vendored dependencies and build output do not pollute the picture. It then interviews you about the parts it cannot infer. This is the stage people rush and later regret: the tool will happily accept a three-line product.md, and every plan it generates afterwards will be exactly as vague as that file was. Treat the setup interview as the actual work, not as onboarding friction.

    One realistic expectation to set: on a genuinely old codebase, the inferred tech-stack.md will describe what the repository contains rather than what you have decided to move towards. If half your services are mid-migration, say so explicitly in workflow.md, otherwise the agent will keep proposing changes in the style of the code it can see rather than the style you are trying to reach.

    Conductor for Teams

    By centralising technical constraints and coding standards, you ensure that every AI-generated contribution adheres to your specific guidelines, regardless of which developer runs the command.

    Shared Foundation

    Teams can define an established testing strategy or coding style that is automatically used by Gemini. This shared configuration accelerates onboarding and ensures consistent output across the entire engineering team.

    The Lifecycle: Context → Spec → Plan → Implement

    Conductor uses a precise sequence of commands to manage the development lifecycle:

    1. Project Setup: /conductor:setup

    Builds the base context in a conductor/ directory. Artifacts include:

    • product.md: Users, goals, and high-level features.
    • tech-stack.md: Languages, databases, and frameworks.
    • workflow.md: Team preferences (e.g., TDD).
    • styleguides/: Detailed coding standards.

    2. New Tracks: /conductor:newTrack

    Initialises a feature or bug fix. Generates a track-specific directory with:

    • spec.md: Detailed requirements for the job.
    • plan.md: Actionable to-do list (Phases, Tasks, Sub-tasks).

    3. Implementation: /conductor:implement

    The agent works through the plan.md, checking off tasks and pausing at checkpoints for human verification.

    The detail that makes this workable in practice is that progress is recorded in the plan file itself. Task checkboxes move from [ ] to [~] while in progress and to [x] on completion, and each finished task produces its own Git commit. The agent pauses at phase boundaries so you can verify before it continues. Because state lives in files rather than in a session, you can stop halfway through on Friday, close the terminal, and resume on Monday from a different machine with nothing lost.

    That same property gives you the most useful habit in the whole workflow: read plan.md before you run implement. Conductor re-reads the plan on every run, so editing it is not a workaround — it is the intended control surface. Delete a task you do not want, reorder a phase, tighten a vague instruction. Five minutes spent editing a plan is consistently cheaper than reviewing the code that a bad plan produces.

    /conductor:revert is the counterpart and is smarter than it first appears: it reverts by logical unit — a phase or a task — rather than by commit hash, and it also unchecks the affected boxes in plan.md so the work is queued for re-execution rather than silently dropped.

    Operational Commands

    /conductor:statusShow track and task progress.
    /conductor:reviewValidate work against guidelines.
    /conductor:revertGit-aware rollback of logical units.
    /conductor:syncSync context after completion.

    Beyond Gemini CLI: Antigravity and Claude Code

    Conductor started life as a Gemini CLI extension, but it did not stay in that lane. The repository now presents itself as a plugin for AI coding agents generally, with documented installation paths for Antigravity and for Claude Code alongside Gemini CLI. That is an unusual move for a first-party Google tool, and a telling one: the value is in the Markdown convention, not in the model that reads it.

    Installing on other agents

    Antigravity:

    agy plugins install https://github.com/gemini-cli-extensions/conductor

    Claude Code:

    /plugin marketplace add gemini-cli-extensions/conductor
    /plugin install conductor

    One thing to watch: command naming differs between distributions. The Gemini CLI extension documents the short forms (/conductor:setup, /conductor:newTrack), while the plugin distribution registers longer names such as /conductor:conductor-setup and /conductor:conductor-new-track. If a command appears to be missing, list the available commands before assuming the install failed.

    The cross-agent story matters for teams more than individuals. If one engineer prefers Gemini CLI, another lives in Antigravity and a third is in Claude Code, they can still share one set of specs, one style guide and one plan format. The convergence on Markdown-in-repo as the interchange layer is arguably the more important trend here, and it is the same instinct behind Claude Skills and the design-system files that agentic design tools now export.

    Costs, Limits and Honest Caveats

    Conductor is genuinely useful, and it is not free of trade-offs. Four are worth knowing before you roll it out.

    Token consumption goes up, sometimes sharply. The project's own documentation flags increased token usage, particularly in larger projects during extensive planning and implementation phases — which is the direct consequence of reading a context directory on every command. On a small repository this is invisible. On a large one with a fat style guide and a long track registry, it is a line item. Monitor it rather than discovering it on an invoice.

    Output quality is bounded by input quality. A vague product.md produces vague specs, which produce vague plans, which produce code you then have to argue with. Conductor does not add rigour; it makes the absence of rigour explicit and durable, which is uncomfortable but useful.

    /conductor:review is not a code review. It checks work against your guidelines and hunts for specification drift and style violations, which catches the obvious failures well. It is a pre-flight check before opening a pull request, not a substitute for the human on the other end of it.

    There is a real process cost. For a one-line fix, running setup, creating a track and generating a plan is absurd overhead, and you should just ask the agent to make the change. Conductor earns its keep on work that spans multiple files, multiple sessions or multiple people. Knowing which side of that line a task falls on is a judgement the tool cannot make for you.

    Get Started

    Three prerequisites before you install: Gemini CLI itself (npm install -g @google/gemini-cli, then confirm with gemini --version), authentication via a Google API key or a Vertex AI setup, and an initialised Git repository. That last one is not optional — Conductor commits per completed task and reverts by logical unit, so a directory without Git is a directory where half the tool does not work. On a brand-new project, git init followed by an empty initial commit is enough.

    gemini extensions install https://github.com/gemini-cli-extensions/conductor

    Adding --auto-update to that command is worth doing, given how frequently the project has shipped since December 2025. From there the loop is short: run /conductor:setup and commit the resulting directory, create your first track with /conductor:newTrack and a one-sentence description, read the generated plan.md and edit it, then run /conductor:implement and verify at each phase boundary. Check in with /conductor:status whenever you lose the thread, and run /conductor:review before you open the pull request.

    Start on something small and real — a feature you would otherwise have done by hand in an afternoon. The point of the first track is not the feature; it is finding out how much of your project's actual context you have never written down.

    Empower Your Engineering Team

    By treating your documentation as the source of truth, you empower Gemini to act as a true extension of your engineering team.

    Frequently Asked Questions

    What is Gemini Conductor?
    Conductor is a new extension for Gemini CLI that enables context-driven development. Rather than depending on impermanent chat logs, it helps you create formal specs and plans that live alongside your code in persistent Markdown files, so agents can plan and track progress over time.
    What is context-driven development?
    Context-driven development shifts the context of your project out of the chat window and directly into your codebase. You formalise your intent before implementation: plan before you build, maintain context so the AI follows style guides and tech stack choices, review plans before code is written, and give every team member's agents the same shared project context.
    How do I install Conductor for Gemini CLI?
    You install it as a Gemini CLI extension by running the command: gemini extensions install https://github.com/gemini-cli-extensions/conductor. Once installed, you can begin with /conductor:setup, which builds the base context for your project in a conductor/ directory.
    What commands does Conductor use to manage the development lifecycle?
    Conductor follows a Context, Spec, Plan, Implement sequence. The /conductor:setup command creates foundational files such as product.md, tech-stack.md, workflow.md and styleguides, /conductor:newTrack generates a spec.md and plan.md for each feature or bug fix, and /conductor:implement works through the plan with checkpoints for human verification. Operational commands include /conductor:status, /conductor:review, /conductor:revert and /conductor:sync.
    Does Conductor work with existing brownfield codebases?
    Yes. Conductor initiates an interactive session to help you create a foundational set of documents about your project's architecture, guidelines and goals. As you build new features, it updates this shared context, so its knowledge grows alongside your project.

    Explore more AI tool comparisons

    In-depth reviews, benchmarks and guides to help you choose the right AI tools.

    Browse all reviews
    AI Tools Review Editorial Team

    AI Tools Review Editorial Team Expert verified

    Our editorial team consists of veteran AI researchers, software engineers, and industry analysts. We spend hundreds of hours benchmarking frontier models natively to provide you with objective, actionable intelligence on agentic AI capabilities and cybersecurity landscapes.