Codebolt Agent Development
SDK Version 2 - This documentation covers Codebolt SDK v2.
⚠️ IMPORTANT: Do NOT use
codebolt.waitForConnection()In SDK v2,
waitForConnection()has been removed. Connection handling is now automatically managed insidecodebolt.onMessage(). If you're migrating from v1 or see old examples usingwaitForConnection(), simply remove those calls.typescript// ❌ OLD (SDK v1) - Do NOT use await codebolt.waitForConnection(); codebolt.onMessage(async (msg:FlatUserMessage) => { ... }); // ✅ NEW (SDK v2) - Use this codebolt.onMessage(async (msg:FlatUserMessage) => { ... });
⚠️ IMPORTANT: Use Strict Typings & Always Check for Errors
Always use strict TypeScript typings when developing agents. You do NOT need to create custom typings — types for most Codebolt functionality are already provided by the packages (
@codebolt/codeboltjs,@codebolt/agent,@codebolt/types). Just use the existing types.After writing any agent code, always run type checking and linting to catch errors before running the agent.
bash# Always run after writing code npx tsc --noEmit # Check for type errors npx eslint src/ # Check for code quality issues
Getting Started: Codebolt CLI
Use the codebolt-cli command-line tool to generate templates for agents and MCP tools. This is the recommended starting point for creating new agents or tools.
Create an Agent Template
# Interactive mode (recommended) npx codebolt-cli createagent # Quick mode with name npx codebolt-cli createagent -n "MyAgent" --quick
This generates a complete agent project structure with:
- •
codeboltagent.yaml- Agent configuration - •
package.json- Dependencies - •
src/index.ts- Entry point with boilerplate code
Create an MCP Tool Template
# Interactive mode npx codebolt-cli createtool # With options npx codebolt-cli createtool -n "MyTool" -i "my-tool-id" -d "Tool description"
This generates an MCP tool project with:
- •
codebolttool.yaml- Tool configuration - •
package.json- Dependencies - •
src/index.ts- MCP server boilerplate
Other Useful CLI Commands
| Command | Description |
|---|---|
npx codebolt-cli login | Authenticate with Codebolt platform |
npx codebolt-cli publishagent [path] | Publish agent to registry |
npx codebolt-cli publishtool [path] | Publish MCP tool to registry |
npx codebolt-cli listagents | List your published agents |
npx codebolt-cli listtools | List your published MCP tools |
npx codebolt-cli startagent [path] | Start agent locally for testing |
npx codebolt-cli cloneagent <id> [path] | Clone an existing agent |
npx codebolt-cli inspecttool <file> | Debug tool with MCP inspector |
Project Structure
my-agent/ ├── codeboltagent.yaml # Agent configuration (required) ├── package.json # Dependencies ├── src/ │ └── index.ts # Agent entry point └── dist/ # Compiled output
Building the Agent
IMPORTANT: After creating or modifying an agent, you MUST build it before running.
# Install dependencies first npm install # Build the agent (compiles TypeScript to JavaScript) npm run build # Or use webpack directly if configured npx webpack
The build process:
- •Compiles TypeScript files from
src/to JavaScript indist/ - •Bundles all dependencies (usually via webpack)
- •Creates the entry point specified in
codeboltagent.yaml(typicallydist/index.js)
Always run these commands after creating an agent:
# Complete setup flow npm install && npm run build # Verify the build succeeded ls -la dist/
Common build issues:
- •Missing dependencies: Run
npm installfirst - •Type errors: Run
npx tsc --noEmitto check - •Webpack errors: Check
webpack.config.jsexists and is valid
Package.json scripts should include:
{
"scripts": {
"build": "npx webpack",
"dev": "npx tsx src/index.ts",
"typecheck": "npx tsc --noEmit",
"lint": "npx eslint src/"
}
}
Architecture Overview
Codebolt provides a 4-tier architecture for building AI agents:
┌─────────────────────────────────────────────────────────────────┐
│ REMIX AGENTS: No-Code Configuration │
│ Markdown files with YAML frontmatter + custom instructions │
│ → Use when: You want agents without writing any code │
├─────────────────────────────────────────────────────────────────┤
│ LEVEL 3: High-Level Abstractions │
│ CodeboltAgent, Agent, Workflow, Tools │
│ → Use when: You want a ready-to-use agent with minimal setup │
├─────────────────────────────────────────────────────────────────┤
│ LEVEL 2: Base Components │
│ InitialPromptGenerator, AgentStep, ResponseExecutor │
│ → Use when: You need control over the agent loop │
├─────────────────────────────────────────────────────────────────┤
│ LEVEL 1: Direct APIs │
│ codebolt.llm, codebolt.fs, codebolt.terminal, etc. │
│ → Use when: You want to build everything from scratch │
└─────────────────────────────────────────────────────────────────┘
↑↓ Mix & Match ↑↓
┌─────────────────────────────────────────────────────────────────┐
│ ActionBlocks: Reusable logic units invoked from any level │
└─────────────────────────────────────────────────────────────────┘
Remix Agents (No-Code)
Remix Agents let you create agents without writing any code. They're stored as markdown files with YAML frontmatter in .codebolt/agents/remix/.
File Format
--- name: my-code-reviewer description: A specialized code review agent model: claude-sonnet-4-20250514 provider: anthropic tools: - codebolt--readFile - codebolt--writeFile - codebolt--search maxSteps: 100 reasoningEffort: medium skills: - code-review remixedFromId: base-coding-agent remixedFromTitle: Base Coding Agent version: 1.0.0 --- # Custom Instructions You are a code review specialist. When reviewing code: 1. Check for security vulnerabilities 2. Identify performance issues 3. Suggest improvements 4. Note style inconsistencies Always provide constructive feedback with examples.
MarkdownAgent Fields
| Field | Type | Description |
|---|---|---|
name | string | Agent identifier (becomes filename) |
description | string | Brief description |
model | string | Model to use (e.g., "claude-sonnet-4-20250514") |
provider | string | Provider name (e.g., "anthropic", "openai") |
tools | string[] | Tools available to the agent |
maxSteps | number | Max agentic iterations |
reasoningEffort | 'low' | 'medium' | 'high' | For reasoning models |
skills | string[] | Skills to auto-load |
remixedFromId | string | Original agent ID (when remixing) |
additionalSubAgent | SubAgentConfig[] | Sub-agents to include |
When to Use Remix Agents
- •Quick customization of existing agents
- •Non-developers creating agents
- •Prototyping before building full code agents
- •Sharing agents as portable markdown files
- •Compatible with external tools (OpenCode, Factory.ai, Claude Code)
See: references/remix-agents.md
Mixing and Matching Levels
Levels are NOT exclusive. You can combine them based on your needs:
// Example: Level 3 agent + Level 1 direct API calls outside the loop
import { CodeboltAgent } from '@codebolt/agent/unified';
import codebolt from '@codebolt/codeboltjs';
import { FlatUserMessage } from "@codebolt/types/sdk";
codebolt.onMessage(async (msg:FlatUserMessage) => {
// Level 1: Send initial status message
codebolt.chat.sendMessage('Starting analysis...');
// Level 1: Do pre-processing with direct APIs
const files = await codebolt.fs.listFile('./src', true);
// Level 3: Use high-level agent for the main work
const agent = new CodeboltAgent({ instructions: 'You are a code reviewer.' });
const result = await agent.processMessage(msg);
// Level 1: Post-processing with direct APIs
await codebolt.memory.json.save({ review: result, files: files.data });
codebolt.chat.sendMessage('Review complete and saved!');
});
Common mixing patterns:
| Pattern | Description |
|---|---|
| Level 3 + Level 1 outside loop | Use CodeboltAgent but add direct API calls before/after |
| Level 2 + custom loop logic | Use base components but add custom iteration control |
| Level 3 + ActionBlocks | Use CodeboltAgent with ActionBlocks for reusable subtasks |
| Workflow + ActionBlocks | Workflow steps that invoke ActionBlocks |
The Agent Loop Pattern
Codebolt agents follow a standard execution pattern:
┌────────────────────────────────────────────────────────────────┐ │ 1. onMessage() receives user message │ │ 2. Process into initial prompt (attach context, tools, etc.) │ │ 3. AGENT LOOP: │ │ ├─► Send prompt to LLM │ │ ├─► Get response (may include tool_calls) │ │ ├─► If tool_calls: execute tools, add results to prompt │ │ ├─► Check for async events (child agents, completions) │ │ └─► Repeat until no tool_calls AND no pending events │ │ 4. Return final response │ └────────────────────────────────────────────────────────────────┘
Basic Pattern
import type { ProcessedMessage, AgentStepOutput, ResponseExecutorResult } from '@codebolt/types/agent';
codebolt.onMessage(async (reqMessage: FlatUserMessage): Promise<void> => {
// 1. Process message into prompt
let prompt: ProcessedMessage = await promptGenerator.processMessage(reqMessage);
// 2. Agent loop
let completed: boolean = false;
let execResult: ResponseExecutorResult;
while (!completed) {
const stepResult: AgentStepOutput = await agentStep.executeStep(reqMessage, prompt);
execResult = await responseExecutor.executeResponse({
initialUserMessage: reqMessage,
actualMessageSentToLLM: stepResult.actualMessageSentToLLM,
rawLLMOutput: stepResult.rawLLMResponse,
nextMessage: stepResult.nextMessage
});
completed = execResult.completed;
prompt = execResult.nextMessage;
}
return execResult!.finalMessage;
});
With Async Event Handling (Orchestrator Pattern)
const eventQueue = codebolt.agentEventQueue;
const agentTracker = codebolt.backgroundChildThreads;
codebolt.onMessage(async (reqMessage:FlatUserMessage) => {
let prompt = await promptGenerator.processMessage(reqMessage);
let continueLoop = true;
do {
// Run agent loop until no tool calls
const result = await runAgentLoop(reqMessage, prompt);
prompt = result.prompt;
// Check for events from child agents
if (agentTracker.getRunningAgentCount() > 0 ||
eventQueue.getPendingExternalEventCount() > 0) {
const events = await eventQueue.getPendingQueueEvents();
// Process events, add to prompt
continueLoop = true;
} else {
continueLoop = false;
}
} while (continueLoop);
});
Long-Running Orchestrator (Never Exits)
// For orchestrators that wait for child agents indefinitely
while (true) {
const event = await eventQueue.waitForAnyExternalEvent();
// Process event...
}
See: references/level2-base-components.md for full details.
ActionBlocks
ActionBlocks are reusable, independently executable units of logic that can be invoked from agents, workflows, or other ActionBlocks.
⚠️ CRITICAL: Do NOT Write Inline Action Block Logic in Agents
When generating agent code, NEVER write action block logic inline within the agent code. ActionBlocks are designed as separate, reusable components that exist independently in the
/action-blocks/directory.typescriptimport type { FlatUserMessage } from '@codebolt/types/sdk'; // ❌ WRONG - Do NOT write inline action block logic in agents codebolt.onMessage(async (msg: FlatUserMessage): Promise<void> => { // Don't implement planning logic directly here const plan = await createPlanInline(msg); // BAD! const jobs = await breakIntoJobsInline(plan); // BAD! // ...inline implementation... }); // ✅ CORRECT - Invoke existing ActionBlocks by name codebolt.onMessage(async (msg: FlatUserMessage): Promise<void> => { // Call the reusable ActionBlock const planResult = await codebolt.actionBlock.start('create-plan-for-given-task', { userMessage: msg }); if (planResult.success) { const jobsResult = await codebolt.actionBlock.start('break-task-into-jobs', { plan: planResult.result }); } });Why? ActionBlocks are:
- •Reusable across multiple agents and workflows
- •Independently testable and deployable
- •Discoverable via
codebolt.actionBlock.list()- •Documented with typed inputs/outputs in
actionblock.yml
When to Use ActionBlocks
- •Extract complex logic into reusable components
- •Share functionality across multiple agents
- •Create modular, testable units of work
- •Build orchestration pipelines with Workflows
- •Always invoke existing ActionBlocks instead of reimplementing their logic inline
Quick Start
// Invoke an ActionBlock
const result = await codebolt.actionBlock.start('create-plan-for-given-task', {
userMessage: reqMessage
});
if (result.success) {
console.log('Plan created:', result.result.planId);
}
Creating an ActionBlock
// src/index.ts
import codebolt from '@codebolt/codeboltjs';
// Define types for ActionBlock invocation (see references/action-blocks.md for full definitions)
interface ThreadContext {
params?: Record<string, unknown>;
[key: string]: unknown;
}
interface ActionBlockInvocationMetadata {
sideExecutionId: string;
threadId: string;
parentAgentId: string;
parentAgentInstanceId: string;
timestamp: string;
}
codebolt.onActionBlockInvocation(async (threadContext: ThreadContext, metadata: ActionBlockInvocationMetadata) => {
const params = threadContext?.params || {};
const { task, options } = params;
// Validate
if (!task) {
return { success: false, error: 'task is required' };
}
// Send status
codebolt.chat.sendMessage(`Processing: ${task.name}`);
// Do work
const result = await processTask(task, options);
// Return structured result
return { success: true, data: result };
});
ActionBlocks + Workflows
import { Workflow } from '@codebolt/agent/unified';
import codebolt from '@codebolt/codeboltjs';
import type { FlatUserMessage } from '@codebolt/types/sdk';
import type { WorkflowStepResult, WorkflowContext } from '@codebolt/types/agent';
interface OrchestrationContext extends WorkflowContext {
userMessage: FlatUserMessage;
planId?: string;
jobs?: Array<{ id: string; name: string }>;
}
const orchestrationWorkflow: Workflow = new Workflow({
name: 'Task Orchestration',
steps: [
{
id: 'create-plan',
execute: async (ctx: OrchestrationContext): Promise<WorkflowStepResult<{ planId: string }>> => {
const result = await codebolt.actionBlock.start('create-plan-for-given-task', {
userMessage: ctx.userMessage
});
return { success: result.success, data: { planId: result.result?.planId } };
}
},
{
id: 'create-jobs',
execute: async (ctx: OrchestrationContext): Promise<WorkflowStepResult<{ jobs: Array<{ id: string; name: string }> }>> => {
const result = await codebolt.actionBlock.start('create-jobs-from-plan', {
planId: ctx.planId
});
return { success: result.success, data: { jobs: result.result?.jobs } };
}
}
]
});
See: references/action-blocks.md
Choosing the Right Level
| Need | Level | What to Use |
|---|---|---|
| No-code agent creation | Remix | Markdown file with YAML frontmatter |
| Quick agent with defaults | Level 3 | CodeboltAgent |
| Custom agent loop logic | Level 2 | InitialPromptGenerator + AgentStep + ResponseExecutor |
| Full manual control | Level 1 | Direct codebolt.* APIs |
| Multi-step orchestration | Level 3 | Workflow with steps |
| Orchestrator with child agents | Level 2 | Agent loop + agentEventQueue |
| Long-running orchestrator | Level 2 | waitForAnyExternalEvent() loop |
| Reusable logic units | ActionBlocks | codebolt.actionBlock.start() (invoke, don't inline!) |
| Tools for single agent | Level 3 | createTool() with Zod schemas |
| Shared tools across agents | MCP | MCPServer from @codebolt/mcp |
| Custom context injection | Any | Extend BaseMessageModifier |
Remember: When an ActionBlock exists for a task (planning, job creation, etc.), always invoke it via
codebolt.actionBlock.start('action-block-name', params)rather than implementing the logic inline in your agent.
Tool Execution Architecture
ResponseExecutor automatically handles tool execution from LLM responses. You should use it instead of manually parsing and executing tools.
Built-in Tool Routes
The ResponseExecutor routes tools based on naming conventions:
| Tool Pattern | Route | Execution |
|---|---|---|
toolbox--toolname | MCP | codebolt.mcp.executeTool(toolbox, toolname, args) |
subagent--agentname | Subagent | codebolt.agent.startAgent(agentname, task) |
codebolt--thread_management | Thread | codebolt.thread.createThreadInBackground(options) |
attempt_completion | Completion | Marks task as complete |
When to Use What
| Need | Approach |
|---|---|
| Standard MCP tools | Just use ResponseExecutor - it handles them automatically |
| Custom local tools | Add a PreToolCallProcessor to intercept and handle |
| Enhance tool results | Add a PostToolCallProcessor to modify results |
| Manual control | Level 1 direct APIs (not recommended for production) |
Adding Custom/Local Tools
Use PreToolCallProcessor to intercept tool calls and execute custom logic:
import { BasePreToolCallProcessor } from '@codebolt/agent/processor-pieces';
import type { PreToolCallProcessorInput, ProcessedMessage } from '@codebolt/types/agent';
class MyLocalToolProcessor extends BasePreToolCallProcessor {
async modify(input: PreToolCallProcessorInput): Promise<{
nextPrompt: ProcessedMessage;
shouldExit: boolean;
}> {
const toolCalls = input.rawLLMResponseMessage.choices?.[0]?.message?.tool_calls || [];
for (const toolCall of toolCalls) {
if (toolCall.function.name === 'my_local_tool') {
// Execute your custom tool
const args = JSON.parse(toolCall.function.arguments);
const result = await myLocalHandler(args);
// Add result to message history
input.nextPrompt.message.messages.push({
role: 'tool',
tool_call_id: toolCall.id,
content: JSON.stringify(result)
});
}
}
return { nextPrompt: input.nextPrompt, shouldExit: false };
}
}
// Register with ResponseExecutor
const responseExecutor = new ResponseExecutor({
preToolCallProcessors: [new MyLocalToolProcessor()],
postToolCallProcessors: []
});
See: references/level2-base-components.md for complete examples, references/processors.md for processor details.
Agent Configuration (codeboltagent.yaml)
Every code-based agent requires a codeboltagent.yaml file that defines how Codebolt reads and presents the agent.
Basic Structure
title: My Agent
unique_id: my-agent
version: 1.0.0
author: your-name
initial_message: Hello! How can I help you today?
description: Short description of the agent
longDescription: >
A longer description explaining what this agent does,
its capabilities, and use cases.
tags:
- coding
- review
avatarSrc: https://example.com/avatar.png
avatarFallback: MA
metadata:
agent_routing:
worksonblankcode: true
worksonexistingcode: true
supportedlanguages:
- typescript
- javascript
supportedframeworks:
- react
- node
supportRemix: true
defaultagentllm:
strict: true
modelorder:
- claude-sonnet-4-20250514
- gpt-4-turbo
llm_role:
- name: documentationllm
description: LLM for documentation tasks
strict: false
modelorder:
- gpt-4-turbo
- claude-sonnet-4-20250514
actions:
- name: Review
description: Review code for issues
detailDescription: Performs comprehensive code review
actionPrompt: Please review this code
- name: Refactor
description: Refactor selected code
detailDescription: Improves code structure
actionPrompt: Please refactor this code
Key Fields
| Field | Type | Description |
|---|---|---|
title | string | Display name of the agent |
unique_id | string | Unique identifier (used internally) |
version | string | Semantic version (e.g., "1.0.0") |
initial_message | string | First message shown to user |
description | string | Short description (shown in agent list) |
longDescription | string | Detailed description |
tags | string[] | Categorization tags |
avatarSrc | string | URL to agent avatar image |
avatarFallback | string | Fallback text for avatar |
author | string | Agent author/creator |
Metadata Fields
| Field | Description |
|---|---|
agent_routing.worksonblankcode | Can work on new projects |
agent_routing.worksonexistingcode | Can work on existing projects |
agent_routing.supportedlanguages | List of supported languages |
agent_routing.supportedframeworks | List of supported frameworks |
agent_routing.supportRemix | Allow users to remix this agent |
defaultagentllm.strict | Require exact model match |
defaultagentllm.modelorder | Preferred models in order |
llm_role | Role-specific LLM configurations |
Actions
Actions are quick commands users can trigger:
actions:
- name: ActionName
description: Short description shown in UI
detailDescription: Longer explanation
actionPrompt: The prompt sent to the agent
See: references/agent-yaml.md for full reference.
Level 1: Direct APIs
For building agents manually without any framework.
Use the existing skills:
- •
codebolt-api-access- TypeScript SDK calls (codebolt.fs,codebolt.llm, etc.) - •
codebolt-mcp-access- MCP tool execution (codebolt.tools.executeTool)
See: references/level1-direct-apis.md
Level 2: Base Components
For custom agent loop with helper functions.
import { InitialPromptGenerator, AgentStep, ResponseExecutor } from '@codebolt/agent/unified';
import { ChatHistoryMessageModifier, CoreSystemPromptModifier } from '@codebolt/agent/processor-pieces';
import type { FlatUserMessage } from '@codebolt/types/sdk';
import type { ProcessedMessage, AgentStepOutput, ResponseExecutorResult } from '@codebolt/types/agent';
const promptGenerator: InitialPromptGenerator = new InitialPromptGenerator({
processors: [new ChatHistoryMessageModifier(), new CoreSystemPromptModifier()]
});
const agentStep: AgentStep = new AgentStep({});
const responseExecutor: ResponseExecutor = new ResponseExecutor({});
let prompt: ProcessedMessage = await promptGenerator.processMessage(userMessage);
let completed: boolean = false;
while (!completed) {
const stepResult: AgentStepOutput = await agentStep.executeStep(userMessage, prompt);
const execResult: ResponseExecutorResult = await responseExecutor.executeResponse({
initialUserMessage: userMessage,
actualMessageSentToLLM: stepResult.actualMessageSentToLLM,
rawLLMOutput: stepResult.rawLLMResponse,
nextMessage: stepResult.nextMessage
});
completed = execResult.completed;
prompt = execResult.nextMessage;
}
See: references/level2-base-components.md
Level 3: High-Level Abstractions
For production-ready agents with minimal setup.
import { CodeboltAgent } from '@codebolt/agent/unified';
import type { AgentResult } from '@codebolt/types/agent';
const agent: CodeboltAgent = new CodeboltAgent({
instructions: 'You are a coding assistant.',
enableLogging: true
});
const result: AgentResult = await agent.processMessage({
userMessage: 'Help me write a function',
threadId: 'thread-123',
messageId: 'msg-456'
});
if (result.success) {
console.log('Result:', result.result);
} else {
console.error('Error:', result.error);
}
See: references/level3-high-level.md
Creating Custom Tools
Two approaches for adding custom tools:
| Approach | Package | Use Case |
|---|---|---|
| Local Tools | @codebolt/agent | Tools used within your agent code |
| MCP Servers | @codebolt/mcp | Standalone tool servers, shared across agents |
Local Tools (Quick)
import { createTool } from '@codebolt/agent/unified';
import { z } from 'zod';
const searchTool = createTool({
id: 'search-files',
description: 'Search for files matching a pattern',
inputSchema: z.object({ pattern: z.string(), directory: z.string().optional() }),
execute: async ({ input }) => ({ files: ['file1.ts', 'file2.ts'] })
});
Custom MCP Servers (Shared)
import { MCPServer } from '@codebolt/mcp';
import { z } from 'zod';
interface GreetArgs {
name: string;
}
const server: MCPServer = new MCPServer({ name: 'my-tools', version: '1.0.0' });
server.addTool({
name: 'greet',
description: 'Greet someone',
parameters: z.object({ name: z.string() }),
execute: async (args: GreetArgs): Promise<string> => {
return 'Hello, ' + args.name + '!';
}
});
await server.start({ transportType: 'stdio' });
See: references/tools.md
Creating Custom Modifiers & Processors
import { BaseMessageModifier } from '@codebolt/agent/processor-pieces';
import type { FlatUserMessage } from '@codebolt/types/sdk';
import type { ProcessedMessage } from '@codebolt/types/agent';
class MyModifier extends BaseMessageModifier {
async modify(
originalRequest: FlatUserMessage,
createdMessage: ProcessedMessage
): Promise<ProcessedMessage> {
createdMessage.message.messages.push({ role: 'system', content: 'Custom context' });
return createdMessage;
}
}
Building Workflows
import { Workflow } from '@codebolt/agent/unified';
import type { WorkflowStepResult, WorkflowContext } from '@codebolt/types/agent';
const workflow: Workflow = new Workflow({
name: 'Code Review',
steps: [
{ id: 'lint', execute: async (ctx: WorkflowContext): Promise<WorkflowStepResult<object>> => ({ success: true, data: {} }) },
{ id: 'test', execute: async (ctx: WorkflowContext): Promise<WorkflowStepResult<object>> => ({ success: true, data: {} }) }
]
});
const result = await workflow.executeAsync();
Key Imports
// Level 3 - High-level
import { CodeboltAgent, Agent, Workflow, createTool } from '@codebolt/agent/unified';
// Level 2 - Base components
import { InitialPromptGenerator, AgentStep, ResponseExecutor } from '@codebolt/agent/unified';
// Processors & Modifiers
import {
BaseMessageModifier, CoreSystemPromptModifier, ChatHistoryMessageModifier,
ToolInjectionModifier, EnvironmentContextModifier, DirectoryContextModifier,
IdeContextModifier, BasePreInferenceProcessor, BasePostInferenceProcessor,
BasePreToolCallProcessor, BasePostToolCallProcessor
} from '@codebolt/agent/processor-pieces';
// Custom MCP Servers
import { MCPServer } from '@codebolt/mcp';
// Level 1 - Direct APIs, ActionBlocks & Event Queue
import codebolt from '@codebolt/codeboltjs';
// codebolt.actionBlock.start(), codebolt.actionBlock.list()
// codebolt.agentEventQueue.getPendingQueueEvents()
// codebolt.agentEventQueue.waitForAnyExternalEvent()
// codebolt.backgroundChildThreads.getRunningAgentCount()
// SDK Types (from @codebolt/types/sdk)
import type {
FlatUserMessage, // User message input
LLMCompletion, // Raw LLM response
ChatMessage, // Message in conversation
ToolCall, // Tool call from LLM
MessageObject // Generic message object
} from '@codebolt/types/sdk';
// Agent Types (from @codebolt/types/agent)
import type {
ProcessedMessage, // Output from InitialPromptGenerator
AgentStepOutput, // Output from AgentStep.executeStep()
ResponseExecutorResult, // Output from ResponseExecutor.executeResponse()
AgentResult, // Output from CodeboltAgent.processMessage()
WorkflowStepResult, // Result from workflow step execute()
WorkflowContext, // Workflow execution context
PreToolCallProcessorInput, // Input to pre-tool call processor
PostToolCallProcessorInput // Input to post-tool call processor
} from '@codebolt/types/agent';
References
| Topic | File |
|---|---|
| Agent YAML Configuration | references/agent-yaml.md |
| Remix Agents (No-Code) | references/remix-agents.md |
| Mixing & Matching Levels | This file (above) |
| Level 1: Direct APIs | references/level1-direct-apis.md |
| Level 2: Base Components | references/level2-base-components.md |
| Level 3: High-Level | references/level3-high-level.md |
| ActionBlocks | references/action-blocks.md |
| Tools | references/tools.md |
| Processors & Modifiers | references/processors.md |
| Workflows | references/workflows.md |
| Examples | references/examples.md |
Code Quality: Linting & Error Checking
IMPORTANT: After writing or modifying agent code, ALWAYS lint and check for errors before running. This is a critical step that should never be skipped.
Use Strict Typings
You do NOT need to create custom typings. Types for most Codebolt functionality are already provided by the packages:
- •
@codebolt/codeboltjs- Types for direct SDK APIs - •
@codebolt/agent- Types for agent components, workflows, tools - •
@codebolt/types- Shared type definitions
Simply use the existing types — they are automatically available when you import from these packages:
// Types are included with the packages - no separate install needed
import codebolt from '@codebolt/codeboltjs';
import { CodeboltAgent, Workflow, createTool } from '@codebolt/agent/unified';
// Common SDK types
import type { FlatUserMessage, MessageObject, LLMCompletion } from '@codebolt/types/sdk';
import type { ProcessedMessage, AgentConfig } from '@codebolt/types/agent';
Run Error Checks
# Run TypeScript compiler to check for type errors npx tsc --noEmit # Run ESLint to check for code quality issues npx eslint src/ # Or if the project has npm scripts configured npm run lint npm run typecheck
Common Checks to Perform
- •Type errors - Ensure all TypeScript types are correct (use
@codebolt/types) - •Import errors - Verify all imports resolve correctly
- •Unused variables - Remove or use declared variables
- •Missing dependencies - Install required packages
- •Schema validation - Validate
codeboltagent.yamlstructure - •Async/await errors - Ensure proper handling of promises
Tip: Configure your IDE to show errors inline, or run npx tsc --watch during development for real-time feedback.
Best Practices for Agent Development
1. Always Invoke ActionBlocks, Never Inline Their Logic
This is the most important rule when generating agent code:
// ✅ DO: Invoke existing ActionBlocks by name
const result = await codebolt.actionBlock.start('create-plan-for-given-task', {
userMessage: msg
});
// ❌ DON'T: Implement action block logic inline in your agent
// const prompt = new InitialPromptGenerator({...});
// const plan = await generatePlanInline(msg); // BAD!
2. Discover Before Implementing
Before writing any complex logic, check if an ActionBlock already exists:
// List available ActionBlocks
const blocks = await codebolt.actionBlock.list();
// Check if there's one for your use case
const planningBlock = blocks.data.find(b => b.name.includes('plan'));
if (planningBlock) {
// Use it instead of writing inline logic
const result = await codebolt.actionBlock.start(planningBlock.name, params);
}
3. Keep Agents Thin
Agents should be orchestrators, not implementors:
- •Use ActionBlocks for complex logic (planning, job creation, task decomposition)
- •Use Workflows for multi-step orchestration
- •Keep agent code focused on flow control and user interaction
4. Type-Safe ActionBlock Calls
// Define expected response type
interface PlanResult {
planId: string;
tasks: Array<{ id: string; name: string }>;
}
// Use typed response
const result = await codebolt.actionBlock.start<PlanResult>('create-plan-for-given-task', {
userMessage: msg
});
if (result.success && result.result) {
const planId = result.result.planId; // TypeScript knows this exists
}
Related Skills
Use these skills to get detailed information about Codebolt APIs and MCP tools:
- •
codebolt_api_access - Access detailed documentation for all direct TypeScript SDK APIs (
codebolt.fs,codebolt.llm,codebolt.terminal,codebolt.chat, etc.). Use this skill when you need to understand the exact method signatures, parameters, and return types for Level 1 direct API calls. - •
codebolt-mcp-access - Access documentation for MCP (Model Context Protocol) functions and tool execution (
codebolt.tools.executeTool,codebolt.tools.getTools, etc.). Use this skill when you need to understand how to execute MCP tools, list available tools, or build custom MCP servers.