Custom Agents Amp announced a new feature allowing users to create custom agents via plugins, which can serve as main agents, subagents, or worker agents with custom orb colors. The Plugin API provides primitives for defining agents, registering tools, and managing threads, enabling complex workflows like spawning background review agents. You can now create custom agents in Amp with plugins. You can use these custom agents as your main Amp agent, or as subagents. You can use them as a small part of a tool pipeline that you invoke with amp -x . Or you can spawn 25 custom worker agents, then switch between them. Each custom agent comes with a custom orb color. Here is how you define a custom agent in an Amp plugin: python // .amp/plugins/focused-reviewer-agent.ts import type { PluginAPI } from '@ampcode/plugin' export default function amp: PluginAPI { // Create the agent const reviewer = amp.createAgent { name: 'focused-reviewer', model: 'openai/gpt-5.5', instructions: 'You are a focused code-review subagent.', 'Inspect only the files and concerns named by the caller.', 'Return concise findings with severity, evidence, and suggested fixes.', .join ' ' , tools: 'all', display: { label: 'reviewer', color: ' d97706' }, } // Register a tool. This agent acts as a subagent amp.registerTool { name: 'focused review', description: 'Run a focused code-review subagent.', inputSchema: { type: 'object', properties: { request: { type: 'string' }, }, required: 'request' , }, async execute input, ctx { // Run a one-shot agent turn const result = await reviewer.run input, { parentThreadID: ctx.thread.id, } return result.text }, } // Or register the agent as a selectable main thread mode amp.registerAgentMode { key: 'focused-reviewer', description: 'Code Review Expert', agent: reviewer.definition, } } Once you have defined an agent, you can create threads: js // Spawn a new thread const thread = await reviewer.createThread { // Tell the UI switch to this thread show: true, } // Get an existing thread const thread = amp.threads.get input.threadID The Thread object lets you interact with a thread in many different ways, and is where the real power comes in. Add a new user message to a thread by calling thread.appendUserMessage . The call returns as soon as Amp has accepted the message; it does not wait for inference to complete before returning. await thread.appendUserMessage { type: 'user-message', content: 'Review the auth changes in this branch.', } When you do want to wait, call waitForResponse on the thread. It resolves with the next assistant message after the agent finishes its turn. js const reply = await thread.waitForResponse These are just a few primitives provided by the Plugin API. Together, they compose into unique workflows. An example used on the Amp team: spawn an agent in an asynchronous thread, and give it the tools it needs to respond to the parent when it needs to. amp.registerTool { name: 'start async review', description: 'Start a review in a background thread.', inputSchema: { type: 'object', properties: {} }, async execute input, ctx { const thread = await reviewer.createThread { parentThreadID: ctx.thread.id, } await thread.appendUserMessage { type: 'user-message', content: 'Review the auth changes in this branch.', When you are done, call send to thread with threadID ${ctx.thread.id} , 'and include your review in the message.', .join ' ' , } return Started background review in ${thread.id}. }, } Full documentation is in the manual https://ampcode.com/manual/plugin-api . Happy Hacking.