Skip to content
For the complete Netlify documentation index, see llms.txt. Markdown versions of any documentation page are available by appending .md to its URL.

More flexibility and credits now available for Pro plans 🎉

Make changes with Agent Runners

Learn how to make changes and iterate on an existing project with your preferred AI agent using Agent Runners in your Netlify project dashboard.

If you want to create a new project with an AI agent, check out our Agent Runners quickstart for new projects.

Before you begin, you must have the following:

When you start an agent run, you select a mode that determines what the agent does with your prompt. Both modes are available for all supported AI agents.

Build mode is the default. The agent makes changes to your project's files and code based on your prompt and creates a Deploy Preview so you can review the results before you ship them. Use Build mode when you want the agent to fix, update, or add code, such as fixing a bug, updating content, or creating a new landing page.

In Ask mode, the agent answers questions about your project without making any changes to your code or creating a Deploy Preview. Use Ask mode to explore or understand a project before you make changes, such as learning how a feature works or planning an approach before you switch to Build mode.

Ask mode is read-only: the agent can read your whole project but can't edit files, run commands, deploy, or configure settings for you. Get the most out of Ask mode with prompts that investigate, explain, diagnose, or produce a plan:

  • Scope the question: choose a specific feature, file, or symptom instead of the whole project.
  • Name the output you want: a list of files, a root cause, or a step-by-step plan.
  • Ask for understanding or a plan: To change code, switch to Build mode.
  • Understand how authentication works:

    Walk me through how authentication is implemented in this project. Which files handle it, and where is the token stored?

  • Inventory work before a migration:

    Plan out how we can migrate to the latest version of Astro.

  • Generate a spec to hand to a Build mode run:

    Describe in detail how our main site handles builds that require a build step, so I can instruct another agent run to implement the same flow on our marketing site.

  • Think through an architecture or design decision:

    How would you architect a system for configuring MCP servers that works across multiple AI agents?

  • Ask questions about your database:

    Which data fields are required to add a new entry to the users list?

To start an agent run to make changes to your project, follow these steps:

  1. Go to your Netlify project dashboard. Under Build with an AI agent, select your preferred AI agent, such as Claude Code, Google Gemini, OpenAI Codex, or OpenCode. To set the model and reasoning effort the agent runs with, choose Configure... in the same dropdown. For details, see Agent configuration. Empty prompt field on Project overview page
  2. Add your prompt. For examples of prompts, check out our prompt examples. You can optionally add more context as a file or image. Or you can add project context that applies to all agent runs, such as project-specific prompt guidelines or a link to a publicly available design system or style guide.
  3. Select a mode from the mode dropdown. To make changes, use the default Build mode so your agent can make code or file changes. To get answers or make plans without changing your project, use Ask mode. For details, see Agent run modes.
  4. Choose Run task.
  5. Your chosen AI agent will complete the task asynchronously and notify you when it's done. At this point, you can wait or take care of other tasks. If your agent needs a decision from you before it can continue, it will pause and ask you a question. For details, see Respond to any questions from your agent.

When your prompt leaves open a decision that would change the result, your agent can pause and ask you a few questions instead of guessing. This usually happens early in the run, as your agent first assesses your prompt.

If your agent asks you a question, you can answer it, or skip it and let your agent decide for itself. When your agent asks more than one question, you can skip a single question or all of them, and you can always add extra context in your own words. If you'd rather send your agent in a different direction, enter a new prompt instead of answering and your agent follows that instruction.

There's no need to hurry. Your agent run waits until you respond, and it doesn't use any credits while it waits.

To check the status of your agent run, go to the Agent Runs tab in your Netlify project dashboard. Then choose your agent run and check the log for the current status.

You can expand an individual agent run to view its credit usage. Note that credit usage for a run may take a brief moment to appear after the run begins. Learn more in how pricing works.

If you change your mind about a run that’s still going, you can stop it and take a different approach. For details, see Stop an agent run.

To preview your agent run’s proposed updates, check out the Files changed tab, which shows you the changes that the agent made.

You can also preview your agent run’s proposed updates in a preview environment by choosing Open preview, which opens a Deploy Preview of your changes. The Deploy Preview URL for agent runs uses the format https://agent-[run-id]--my-site.netlify.app.

Open preview button highlighted for agent run

If your project is connected to a GitHub repository, then you can optionally open up a pull request or update an existing pull request with your updates from your agent run.

To ship your agent run updates, you have two options:

  • For projects using Git & GitHub: Open a pull request or update an existing pull request with your updates from your agent run. When you merge your pull request into your production branch, Netlify publishes your changes to your production site for you.
  • For projects without Git: If you have publishing permission, you’ll find a Publish button on your Netlify project’s Agent Runs dashboard. Select Publish to make your agent run updates go live in the latest production version of your project.

You can stop an agent run that’s still in progress.

Stop a run when any of the following applies:

  • you change your mind about the prompt you sent
  • you want to take a different approach
  • your team has hit the limit for how many agent runs can be active at once and you want to start a new agent run or continue a different one

To stop an agent run:

  1. From your Netlify project dashboard, go to your project’s Agent runs page.
  1. Choose the active agent run you want to stop. Agent runs labeled In progress or New are still active.
  2. In the prompt box, choose Stop to immediately stop the agent run. Prompt box for an agent run in progress with the Stop button

While a run is in progress, Stop replaces the Run task button in the prompt box on the run detail page.

A stopped run moves to the Cancelled state and shows a Cancelled badge in the runs list and in the run detail header.

The run, its logs, its sessions, and any file changes the agent already made all remain available to you. A cancelled run can’t be published or used to open or update a pull request, since the Publish to production, Create pull request, and Update pull request or Update existing branch actions are offered for runs that finished as Done or Failed.

You can continue with another follow-up prompt in the same agent run. That starts a new session on the run, and the publish and pull request actions are available again once the new session completes.

You can also stop a run with the Netlify CLI. To find the ID of a run that’s still active:

Terminal window
netlify agents:list --status running

Then stop that run by ID:

Terminal window
netlify agents:stop <run-id>

The run moves to the cancelled state, the same as stopping it from the dashboard.

Netlify limits how many agent runs your team can have active at the same time, across all of your team’s projects.

The limit depends on your plan:

PlanConcurrent agent runs
Free1
Personal3
Pro10
Enterprise50

When you try to start a run beyond your limit, Netlify shows an error on the prompt box:

Concurrent agent limit (1) reached. To start a new task, wait for one to finish or stop one.

The number in parentheses is your plan’s limit. You get this same error whether you start a run on an existing project or in the flow to create a new project with an AI agent.

To free up a slot, you can do one of the following:

  1. Wait for the active run to finish.
  2. Open the active run and choose Stop.

A run started by any team member on any project counts toward the same team limit for active agent runs, so check both of the following:

  • the Agent runs tab for the project you’re working on
  • your team’s Agent runs page, which lists runs across all of your team’s projects

Runs labeled In progress or New are active and hold a slot. Runs labeled Done, Failed, Cancelled, or Archived don’t. With the CLI, netlify agents:list --status running lists the active runs for a project.

If your team runs out of credits, active agent runs are cancelled. A cancelled run will show a Cancelled (out of credits) status.

Once your team has more credits, you can continue your cancelled agent run. You’ll find a Continue option on the cancelled agent run that will resume your agent run’s task.

When you stop an agent run yourself, you won’t find a Continue option. Instead, send a new prompt in the same agent run to pick the work back up, as described in What happens when you stop a run.

When your team has no credits available you will not be able to start a new run. To learn how agent runs consume credits, see pricing for AI features.