---
title: "Agent-runners | Netlify Changelog"
description: "Stay updated with the latest features, fixes, and improvements. Realize the speed, agility and performance of a scalable, composable web architecture with Netlify. Explore the composable web platform now!"
source: "https://www.netlify.com/changelog/tag/agent-runners/page/3/"
last_updated: "2026-08-05T03:20:29.000Z"
---
# Posts tagged "Agent-runners"

All Tags Agent-runners AI Ai-gateway Angular Astro AX Build CLI Database Design Devtools Domains E-commerce Extensions Forms Framework Functions Logs Next.js Nuxt.js Remix SDK Security Updates Workflow  [Subscribe to feed](https://www.netlify.com/changelog/tag/agent-runners/feed.xml)

-   [
    
    ## OpenAI GPT-5.4 and GPT-5.4 Pro Now Available in AI Gateway and Agent Runners
    
    ](/changelog/gpt-5-4-ai-gateway-agent-runners/)
    
    March 5, 2026
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    OpenAI’s GPT-5.4 and GPT-5.4 Pro models are now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.
    
    Use the OpenAI SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the GPT-5.4 model:
    
    ```
    import OpenAI from 'openai';
    export default async () => {    const openai = new OpenAI();
        const response = await openai.responses.create({        model: 'gpt-5.4',        input: 'Give a concise explanation of how AI works.',    });
        return Response.json(response);};
    ```
    
    GPT-5.4 and GPT-5.4 Pro are available for all Function types and Agent Runners. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
    
    Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/) and [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to OpenAI GPT-5.4 and GPT-5.4 Pro Now Available in AI Gateway and Agent Runners Permalink](/changelog/gpt-5-4-ai-gateway-agent-runners/)
    
-   [
    
    ## Deploy Preview screenshots in agent runs
    
    ](/changelog/2026-03-03-agent-runs-deploy-preview-screenshot/)
    
    March 3, 2026
    
    -   [agent runners](/changelog/tag/agent-runners/)
    
    Starting today, all completed agent runs show a screenshot of your Deploy Preview. This makes it easier to quickly see the result of an agent run and keep track of agent run sessions without opening the full preview.
    
    ![Screenshot of the agent runs dashboard showing a completed run with a Deploy Preview screenshot](/images/changelog/agent-run-deploy-preview.png)
    
    Test it out today:
    
    1.  Go to your Netlify project dashboard.
    2.  On the left, select **Agent runs**, then choose an existing agent run or start a new one by entering a prompt and selecting **Run task**.
    3.  At the bottom of your agent run sessions, you’ll find a screenshot of your Deploy Preview. The screenshot is taken from the main page of your project.
    
    > **Note:** If you’ve set up private deploys or password protection, the screenshot will show a sign-in page instead. Learn more about [Password protection](https://docs.netlify.com/manage/security/secure-access-to-sites/password-protection/).
    
    Learn more about getting started with [Agent Runners](https://docs.netlify.com/build/build-with-ai/agent-runners/quickstart-for-agent-runners/).
    
    [Permalink to Deploy Preview screenshots in agent runs Permalink](/changelog/2026-03-03-agent-runs-deploy-preview-screenshot/)
    
-   [
    
    ## Use Netlify Agent Runners from Linear
    
    ](/changelog/2026-02-27-agent-runners-linear-integration/)
    
    February 27, 2026
    
    -   [agent runners](/changelog/tag/agent-runners/)
    -   [workflow](/changelog/tag/workflow/)
    
    Linear users can now launch Netlify Agent Runners directly from any Linear issue, allowing you to seamlessly share context with your AI agent of choice. If you have your Linear issue synced with related Slack messages, this context will also be included in your agent run prompt.
    
    Before starting your agent run, you can review and edit your prompt. Next, you can choose which AI agent to use — Claude Code, Google Gemini, or OpenAI Codex. Netlify Agent Runners doesn’t lock you into using a single AI agent so you can pick the agent that fits the task best.
    
    To start an agent run from Linear:
    
    1.  Go to a Linear issue where you want to trigger an agent run.
    2.  In the top right corner, select **Configure coding tools…**. ![Linear issue view showing the Configure coding tools option in the top right corner](/images/changelog/linear-configure-coding-tools.png)
    3.  Toggle **Netlify Agent Runners** on.
    4.  Go back to the issue and in the top right corner, select **Open in Netlify Agent Runners**. ![Linear issue view showing the Open in Netlify Agent Runners option in the top right corner](/images/changelog/linear-open-in-netlify-agent-runners.png)
    5.  Review the prompt and choose your AI agent.
    6.  To start the agent run, select **Run task**.
    
    Once you’ve enabled this integration from your personal Linear preference settings, any Linear issue you open in your workspace will give you the option to open with Netlify Agent Runners.
    
    Now your entire team can save time and seamlessly share context between Linear and Netlify Agent Runners while keeping this work clearly tracked across Linear and Netlify. Learn more about [Agent Runners](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to Use Netlify Agent Runners from Linear Permalink](/changelog/2026-02-27-agent-runners-linear-integration/)
    
-   [
    
    ## Claude Sonnet 4.6 now available in AI Gateway and Agent Runners
    
    ](/changelog/claude-sonnet-4-6-ai-gateway-agent-runners/)
    
    February 17, 2026
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    Anthropic’s Claude Sonnet 4.6 model is now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.
    
    Use the Anthropic SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the Claude Sonnet 4.6 model:
    
    ```
    import Anthropic from '@anthropic-ai/sdk';
    export default async () => {    const anthropic = new Anthropic();
        const response = await anthropic.messages.create({        model: 'claude-sonnet-4-6',        max_tokens: 4096,        messages: [            {                role: 'user',                content: 'How can AI improve my coding?'            }        ]    });
        return Response.json(response);};
    ```
    
    Claude Sonnet 4.6 is available for all Function types and Agent Runners. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
    
    Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/) and [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to Claude Sonnet 4.6 now available in AI Gateway and Agent Runners Permalink](/changelog/claude-sonnet-4-6-ai-gateway-agent-runners/)
    
-   [
    
    ## Sync changes with Agent Runners
    
    ](/changelog/2026-02-13-sync-changes-with-agent-runners/)
    
    February 13, 2026
    
    -   [agent runners](/changelog/tag/agent-runners/)
    
    You can now sync changes from different agent runs in the Netlify dashboard. This is especially helpful if you use Netlify Drop to publish or update your project and don’t use Git workflows to sychronize versions of your project.
    
    Syncing changes helps you and your whole team build and publish faster.
    
    ## How it works
    
    For example, let’s say you used Netlify Drop to publish your project without setting up a Git workflow.
    
    Next, you decide to use Agent Runners to add a new landing page.
    
    You also start an agent run to update your project’s footer and publish the new footer.
    
    Your agent run for the new landing page doesn’t include the footer changes yet. To get these updates, start a **sync run** from the Agent Runners dashboard. This will apply all new updates from the live production version of your project.
    
    Now when you publish your landing page updates, you’ll get the updated footer as well.
    
    Syncing changes with Agent Runners enables smoother shipping with several agent runs and with multiple [team members](https://docs.netlify.com/manage/accounts-and-billing/team-management/manage-team-members/#add-new-team-members) working on the same project.
    
    [Permalink to Sync changes with Agent Runners Permalink](/changelog/2026-02-13-sync-changes-with-agent-runners/)
    
-   [
    
    ## Claude Opus 4.6 now available in AI Gateway and Agent Runners
    
    ](/changelog/claude-opus-4-6-ai-gateway-agent-runners/)
    
    February 5, 2026
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    Anthropic’s Claude Opus 4.6 model is now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.
    
    Use the Anthropic SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the Claude Opus 4.6 model:
    
    ```
    import Anthropic from '@anthropic-ai/sdk';
    export default async () => {    const anthropic = new Anthropic();
        const response = await anthropic.messages.create({        model: 'claude-opus-4-6',        max_tokens: 4096,        messages: [            {                role: 'user',                content: 'How can AI improve my coding?'            }        ]    });
        return new Response(JSON.stringify(response), {        headers: { 'Content-Type': 'application/json' }    });};
    ```
    
    Claude Opus 4.6 is available for all Function types and Agent Runners. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
    
    Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/) and [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to Claude Opus 4.6 now available in AI Gateway and Agent Runners Permalink](/changelog/claude-opus-4-6-ai-gateway-agent-runners/)
    
-   [
    
    ## Agent Runners improvements
    
    ](/changelog/2026-01-29-agent-runners-improvements/)
    
    January 29, 2026
    
    -   [agent runners](/changelog/tag/agent-runners/)
    
    Here are some Agent Runners improvements that all people with [Credit-based pricing plans](https://docs.netlify.com/manage/accounts-and-billing/billing/billing-for-credit-based-plans/credit-based-pricing-plans/) can enjoy:
    
    ### Shareable agent run links
    
    You can now link directly to an agent run to share it with your team or bookmark for later review.
    
    ![Screenshot showing the copy link button in the Agent Runners interface](/images/changelog/copy-link-to-run.png)
    
    ### Agent Runners available no matter how you deploy
    
    Agent Runners now supports static projects without build steps. Previously, projects without a build step couldn’t use Agent Runners.
    
    ### Improved diff view performance
    
    By default, the diff view now loads only the first 50 changed files with an option to load more. This improves performance for large projects.
    
    ## Feedback welcome
    
    Keep sharing your product feedback about Agent Runners in the feedback form at the bottom of our [Agent Runners docs page](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    And don’t forget that while you can run multiple agent runs and do other work while they run, you can also [play a Netlify game](https://www.netlify.com/changelog/2026-01-08-agent-runner-games/) while you wait for the agent to finish.
    
    [Permalink to Agent Runners improvements Permalink](/changelog/2026-01-29-agent-runners-improvements/)
    
-   [
    
    ## GPT-5.2-Codex Now Available in AI Gateway and Agent Runners
    
    ](/changelog/gpt-5-2-codex-ai-gateway/)
    
    January 14, 2026
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    OpenAI’s GPT-5.2-Codex model is now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.
    
    Use the OpenAI SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the GPT-5.2-Codex model:
    
    ```
    import OpenAI from 'openai';
    export default async () => {    const openai = new OpenAI();
        const response = await openai.responses.create({        model: 'gpt-5.2-codex',        input: 'How does AI work?'    });
        return new Response(JSON.stringify(response), {        headers: { 'Content-Type': 'application/json' }    });};
    ```
    
    GPT-5.2-Codex is available across Background Functions, Scheduled Functions, and Agent Runners. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
    
    Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/) and [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to GPT-5.2-Codex Now Available in AI Gateway and Agent Runners Permalink](/changelog/gpt-5-2-codex-ai-gateway/)
    
-   [
    
    ## Play Games While Agent Runners Do the Work
    
    ](/changelog/2026-01-08-agent-runner-games/)
    
    January 8, 2026
    
    -   [agent runners](/changelog/tag/agent-runners/)
    
    While Agent Runners take care of tasks on your site, you can now play games right in the UI. We’ve brought the same beloved build-time games to the Agent Runner page, so you can flip tiles, plan snake, install other games, or even create your own while your agent runs in the background.
    
    A little delight, now everywhere you wait.
    
    ![Play a game while you wait modal showing a Match the Pairs game on the Agent Runner page](/images/changelog/netlify-agent-runners-games.webp)
    
    Learn more about the [Netlify Entertainment System](https://www.netlify.com/blog/netlify-entertainment-system/).
    
    [Permalink to Play Games While Agent Runners Do the Work Permalink](/changelog/2026-01-08-agent-runner-games/)
    

[Previous page](/changelog/tag/agent-runners/page/2) [Next page](/changelog/tag/agent-runners/page/4)