What is OpenAI AgentKit? Features, pricing, and setup

Kenneth Pangan
Written by

Kenneth Pangan

Stanley Nicholas
Reviewed by

Stanley Nicholas

Last edited September 8, 2026

Expert Verified
OpenAI AgentKit explained: What it is and how it works

OpenAI AgentKit brought several parts of agent development together: workflow design, chat interfaces, connections, and evaluation. For a team deciding how to automate support, the useful question is which parts it wants to build and maintain.

There is also an important update to the original launch story. As checked on September 8, 2026, Agent Builder is being deprecated, with shutdown scheduled for November 30, 2026. ChatKit remains available. The Agent Builder documentation explains the transition. An old tutorial that ends at publishing a visual workflow is no longer enough for planning a new deployment.

What is OpenAI AgentKit?

AgentKit is best understood as a collection of building blocks for custom agents, rather than a finished employee for one business role. The original package connected visual workflow design with deployment, chat UI, and evaluation. Those are related responsibilities, but they are not interchangeable products with one availability status.

A visual canvas can make workflow design easier without requiring you to write every step in code. It does not remove the need to decide what the agent may access, which actions it can take, or how to handle failures. Those decisions matter whether the implementation uses a canvas, an Agents SDK, or a ready-made teammate.

For support teams, I would separate two decisions: do you need to build a custom application, or do you need to configure a teammate that can work with your existing helpdesk? eesel CLI is relevant to the second decision. It gives technical users and coding agents a way to do that configuration without moving every step into a browser.

The core components of OpenAI AgentKit

Agent Builder: Visual workflows and the transition

Agent Builder uses connected nodes to define multi-step workflows. Nodes have typed inputs and outputs, and the preview lets you inspect a run. Existing users should now plan beyond that hosted canvas.

OpenAI’s migration guide describes exporting Python or TypeScript Agents SDK code. You can continue in an application you deploy, or use the export to recreate a ChatGPT Workspace Agent where your workspace has access. Neither route guarantees unchanged behavior: tools, authentication, permissions, and control flow need testing.

Agent Builder export dialog with Agents SDK selected, from OpenAI’s migration documentation.
Agent Builder export dialog with Agents SDK selected, from OpenAI’s migration documentation.

If the workflow has strict branching requirements, preserve those requirements as test cases before changing the implementation. A fluent answer is not evidence that the migrated agent took the required steps.

ChatKit: The chat interface

ChatKit supplies an embeddable, customizable chat UI, including widgets and file attachments. It is not the same thing as Agent Builder. OpenAI now directs new apps and migrations toward a custom server integration with a server-side agent implementation.

That distinction also matters when comparing it with eesel. ChatKit is for a chat experience you build into your application. eesel has its own website chat bubble that the CLI can configure and provide an embed snippet for. You still place that snippet on your website; a terminal command does not automatically edit or deploy your site.

Evals: Checking what the agent actually did

OpenAI’s evaluation tools help inspect traces and measure behavior against defined criteria. Trace grading is useful for questions such as whether the agent selected the right tool or handed off at the right point. Datasets and repeatable eval runs help compare changes over time.

For a support workflow, include cases with missing information, conflicting policies, and requests that need human approval. The business outcome and the technical trace belong in the same review. An answer can sound helpful while using the wrong source or taking an unauthorized action.

Connections and safety

An agent needs more than access to data. Someone must decide which sources are appropriate, which credentials it uses, and which actions require a person. Moving from a visual builder to code does not transfer those decisions automatically.

The same responsibility applies when configuring eesel. Connecting a helpdesk, downloading selected knowledge, and defining standing instructions are distinct tasks. Treat access and approval settings as part of the setup to review, not as proof that every future answer will be correct.

Operate a support teammate through eesel CLI

If your AgentKit project was primarily about answering support questions from company knowledge, it is worth considering whether you need a custom application at all. eesel’s helpdesk teammate provides the support-focused product; eesel CLI gives you terminal access to its setup and ongoing work.

The CLI operates the same agent and workspace as the dashboard. A support manager can review the setup in the dashboard while a developer, script, or coding agent such as Claude Code, Cursor, or Codex works through commands. There is no separate copy of the teammate to keep in sync.

For an existing eesel workspace, start by logging in and checking which account and agents you are using. These examples require Node.js 18.17 or newer:

Bash
npx @eesel/cli login
npx @eesel/cli whoami
npx @eesel/cli agents

Then replace AGENT_ID with the intended agent’s ID. Inspect its setup before changing it:

Bash
npx @eesel/cli status --agent AGENT_ID
npx @eesel/cli integrations --agent AGENT_ID
npx @eesel/cli instructions --agent AGENT_ID

The distinction is useful during a handover from a custom prototype. status reports connections and whether connected content has downloaded. integrations shows which integrations the agent uses. instructions lets you inspect its standing rules. None of these checks alone proves that it will answer a difficult customer question correctly.

For example, suppose the prototype answered returns questions from a policy PDF. You can upload that approved document to the eesel teammate:

Bash
npx @eesel/cli files upload ./returns-policy.pdf --agent AGENT_ID

Uploading the PDF adds knowledge; it does not rewrite the standing instructions. Separately review the rules for exceptions and escalation. Then use a test agent with appropriately restricted actions to ask representative questions, compare answers with the policy, and inspect its activity. Chat can invoke actions, so do not assume that every test message is read-only.

Let a coding agent handle the setup, with clear limits

The CLI prints JSON results and structured errors, so a coding agent can inspect the result of a command and decide what to do next. This makes it useful for a bounded task such as “check which sources are connected, identify missing setup, and ask before making changes.” That request is an instruction to the coding agent, not a CLI-enforced approval gate for its commands.

You can then use automations to inspect event, scheduled, and webhook automations, approvals to review held actions, and activity to see what the teammate has been doing. Use --help for the specific command’s options. For write operations, --dry-run prints the proposed server call without sending it; it does not simulate a customer conversation or validate its outcome.

For unattended scripts, the CLI supports EESEL_API_URL and EESEL_API_TOKEN, with EESEL_AGENT_ID or an explicit agent flag for scope. Keep tokens out of source control. Your OpenAI application credentials and eesel workspace credentials are separate.

This is a way to configure and operate a support teammate, not an Agent Builder workflow importer. If you choose eesel, recreate the support job’s sources, instructions, integrations, and approval requirements, then test them against the outcomes your original workflow was meant to deliver.

Which approach fits your project?

Your requirementWhat to evaluate
Preserve a custom Agent Builder applicationExport the workflow, choose an OpenAI migration path, and test tools, permissions, and behavior
Keep a custom chat interfaceChatKit with a server-side agent implementation you maintain
Operate a support teammate in an existing helpdeskeesel’s helpdesk teammate, configured through the dashboard or eesel CLI
Let a coding agent assist with support setupeesel CLI’s commands, JSON output, and explicit agent selection; set change limits in the coding agent’s instructions

The choice is not “code is bad, no-code is good.” A custom application may be necessary when your product depends on a specific workflow or interface. eesel CLI fits when the job is configuring a support teammate and you want that work accessible from the terminal as well as the dashboard.

Understanding pricing and availability

Check the current OpenAI API pricing for the models and tools your application uses. Include hosting and maintenance in a custom implementation’s budget. A launch-era statement that tools were bundled with API usage is not a complete quote for your deployment.

For eesel, check the current pricing page and workspace billing rather than assuming the older interaction-based plans still apply. The CLI’s billing command reads the workspace’s billing state; using eesel CLI does not move its charges onto your OpenAI API account.

Choose the job before rebuilding the workflow

If you need to preserve a custom AgentKit application, use OpenAI’s migration guidance and verify the exported behavior. If the actual requirement is a teammate that answers support questions and works with your helpdesk, evaluate that outcome directly.

eesel AI helpdesk dashboard overview. CLI changes apply to the same teammate accessible through the dashboard.
eesel AI helpdesk dashboard overview. CLI changes apply to the same teammate accessible through the dashboard.

Try eesel, then use the CLI setup guide to connect the relevant knowledge and inspect the teammate’s instructions. Start with one support scenario and review the answer and actions before expanding its responsibilities.

Frequently asked questions

What is OpenAI AgentKit?
AgentKit brought together tools for building, connecting, evaluating, and presenting custom AI agents. Its components have different lifecycles: Agent Builder is being deprecated, while ChatKit remains available.
Is OpenAI Agent Builder still available?
As checked on September 8, 2026, existing users can use Agent Builder during its transition window. OpenAI schedules shutdown for November 30, 2026. Follow the official migration guide rather than an older beta tutorial.
Do I need to stop using ChatKit?
No. OpenAI says ChatKit remains available. For new apps and migration, its documentation points to a custom server integration with your own server-side agent implementation.
How do I migrate an Agent Builder workflow?
OpenAI documents exporting Python or TypeScript Agents SDK code. You can run it in your application or use the export to recreate a ChatGPT Workspace Agent if your workspace has access. Tools, permissions, and behavior need review; conversion is not guaranteed to preserve everything.
How should I budget for an AgentKit project?
Check current OpenAI API rates for the models and tools you use, plus application hosting and maintenance. Avoid treating a launch-era bundle description as a complete current quote.
How does eesel CLI compare with OpenAI AgentKit?
OpenAI’s tools help you build a custom agent application. eesel CLI lets you operate an eesel teammate: connect sources, upload knowledge, inspect instructions, chat, and review activity. People, scripts, and coding agents can use it. It operates the same agent as the eesel dashboard.
Can eesel CLI import my Agent Builder workflow?
This guide does not describe a workflow importer. Moving a support job to eesel means configuring that job’s knowledge, instructions, integrations, and approvals, then testing the expected behavior. It is a separate setup, not a one-command conversion.

Share this article

Kenneth Pangan

Article by

Kenneth Pangan

Writer and marketer for over ten years, Kenneth Pangan splits his time between history, politics, and art with plenty of interruptions from his dogs demanding attention.

Related Posts

All posts →
A support agent beside a secured web chat interface
Guides

OpenAI ChatKit Sessions API: current setup and migration choices

Understand OpenAI ChatKit Sessions, client-secret handling, the Agent Builder transition, and when a ready-to-work eesel support teammate is a better fit than building a custom chat stack.

Rama Adi NugrahaRama Adi NugrahaOct 10, 2025
Comparing agent development tools and support operations
Guides

OpenAI AgentKit vs Anthropic API: What to compare in 2026

Separate Agent Builder, Anthropic’s API, and Claude Agent SDK, then decide whether to build an agent application or operate a support teammate through eesel CLI.

Kenneth PanganKenneth PanganOct 19, 2025
OpenAI AgentKit pricing: A complete 2025 guide
Guides

OpenAI AgentKit pricing 2026: Hidden costs you should know

Thinking about using OpenAI AgentKit? Our 2025 guide unpacks the confusing OpenAI AgentKit pricing model, its powerful features, and critical limitations for teams.

Stevia PutriStevia PutriOct 8, 2025
OpenAI AgentKit reviews: A practical guide for support teams
Guides

OpenAI AgentKit reviews: A practical guide for support teams

OpenAI's AgentKit promises to revolutionize AI agent building, but is it the right tool for your support team? Our 2025 review covers its visual builder, chat UI, and key limitations you need to know before choosing.

Kenneth PanganKenneth PanganOct 8, 2025
Abstract yellow and blue gradient with a central square and black connected-nodes icon
Guides

AgentKit vs Claude: choosing an agent-building approach in 2026

Compare OpenAI’s transitioning Agent Builder, the OpenAI Agents SDK, and Anthropic’s Claude Agent SDK. Learn which layer you are choosing and what production ownership remains.

Kenneth PanganKenneth PanganOct 19, 2025
Illustration of a presenter pointing to a flip chart
Guides

Amazon Bedrock Claude Code: setup, model access, and limits

How to configure Claude Code through Amazon Bedrock, choose a current inference profile, manage IAM access, and validate the setup.

Kenneth PanganKenneth PanganSep 30, 2025
Two illustrated people examining the former Azure AI Studio logo
Guides

Azure OpenAI models: selection, deployment, and costs in 2026

Choose Azure OpenAI models by capability, deployment geography, lifecycle, and cost. Then separate model evaluation from operating a support teammate.

Kenneth PanganKenneth PanganAug 31, 2025
Illustrated woman holding an e speech bubble beside a trophy
Guides

Azure OpenAI Service changes that affect support tooling

Plan Azure OpenAI API and model changes safely: separate migration work, deployment choices, and support-runbook testing before a customer-facing change.

Kenneth PanganKenneth PanganOct 27, 2025
Illustration of two people considering software options.
Guides

Is there a ChatGPT affiliate program? What OpenAI offers today

OpenAI’s reviewed sources document limited referral promotions, not a standard public affiliate commission. Learn how to verify an offer and its operator.

Kenneth PanganKenneth PanganAug 27, 2025

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free