Skip to main content
Custom Agent is an AI Agent in Qoder designed to handle specific tasks. You can create custom agents to extend Qoder’s capabilities, with each agent having its own independent context window, tool permissions, and system prompt. Currently, the scheduling method for custom agents is through the subagent approach.

Create a Custom Agent

Qoder provides a built-in create-agent skill that helps you quickly create custom agents through interactive guidance. Usage:
create-agent will guide you through the following steps:
  • Define the agent’s name and description
  • Select required tool permissions
  • Automatically generate system prompt template
  • Save the agent file to the correct location
If this is your first time creating a custom agent, we recommend using /create-agent to automatically generate the configuration file, ensuring correct formatting and all necessary fields.

Method 2: Manual Creation

You can also manually create a .md file in one of the following locations: The file should contain a frontmatter block defining basic information, followed by the system prompt content:

MCP servers

Custom agents support configuring MCP (Model Context Protocol) servers, enabling agents to invoke external tools and services. Add the mcpServers field in the agent configuration to associate MCP servers, extending the agent’s capabilities.

Model configuration

Custom agents support specifying which model to use. In the Quest view, go to Setting → Agents, select the target agent and click Change Model to assign the most suitable model for each agent’s role.

Tools List

Using in IDE

There are two ways to invoke custom agents:

Method 1: Automatic Trigger

In the Chat panel, describe the task in natural language, and the model will automatically recognize the intent and select the appropriate custom agent based on description:
The model will automatically identify and invoke the code-review agent.

Method 2: Manual Trigger

Use /agent-name to manually trigger a specific agent:

Detailed Documentation

For a complete guide on Custom Agents, including automatic creation and CLI usage, see CLI Usage Documentation.