File size: 8,082 Bytes
1f21206 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | /**
* Agents REST API
*
* GET /api/agents β θ·ε Agent ε葨
* GET /api/agents/:name β θ·ε Agent θ―¦ζ
* POST /api/agents β εε»Ί Agent
* PUT /api/agents/:name β ζ΄ζ° Agent
* DELETE /api/agents/:name β ε ι€ Agent
*
* GET /api/tasks β θ·εεε°δ»»ε‘ε葨
* GET /api/tasks/:id β θ·εδ»»ε‘θ―¦ζ
*/
import { AgentService } from '../services/agentService.js'
import { taskService } from '../services/taskService.js'
import { ApiError, errorResponse } from '../middleware/errorHandler.js'
import { resetTaskList } from '../../utils/tasks.js'
import {
resolveAgentModelDisplay,
resolveAgentOverrides,
type ResolvedAgent,
} from '../../tools/AgentTool/agentDisplay.js'
import {
clearAgentDefinitionsCache,
getAgentDefinitionsWithOverrides,
type AgentDefinition as SharedAgentDefinition,
} from '../../tools/AgentTool/loadAgentsDir.js'
import { getCwd } from '../../utils/cwd.js'
const agentService = new AgentService()
export async function handleAgentsApi(
req: Request,
url: URL,
segments: string[],
): Promise<Response> {
try {
const resource = segments[1] // 'agents' | 'tasks'
if (resource === 'tasks') {
return await handleTasksApi(req, segments)
}
return await handleAgents(req, url, segments)
} catch (error) {
return errorResponse(error)
}
}
// βββ Agent CRUD βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async function handleAgents(
req: Request,
url: URL,
segments: string[],
): Promise<Response> {
const method = req.method
const agentName = segments[2] ? decodeURIComponent(segments[2]) : undefined
// ββ GET /api/agents ββββββββββββββββββββββββββββββββββββββββββββββββββ
if (method === 'GET' && !agentName) {
const cwd = url.searchParams.get('cwd') || getCwd()
const { activeAgents, allAgents } = await getAgentDefinitionsWithOverrides(cwd)
const resolvedAgents = resolveAgentOverrides(allAgents, activeAgents)
return Response.json({
activeAgents: activeAgents.map(agent => serializeActiveAgent(agent, true)),
allAgents: resolvedAgents.map(serializeResolvedAgent),
})
}
// ββ GET /api/agents/:name ββββββββββββββββββββββββββββββββββββββββββββ
if (method === 'GET' && agentName) {
const agent = await agentService.getAgent(agentName)
if (!agent) {
throw ApiError.notFound(`Agent not found: ${agentName}`)
}
return Response.json({ agent })
}
// ββ POST /api/agents βββββββββββββββββββββββββββββββββββββββββββββββββ
if (method === 'POST' && !agentName) {
const body = await parseJsonBody(req)
if (!body.name || typeof body.name !== 'string') {
throw ApiError.badRequest('Missing or invalid "name" in request body')
}
await agentService.createAgent({
name: body.name as string,
description: body.description as string | undefined,
model: body.model as string | undefined,
tools: body.tools as string[] | undefined,
systemPrompt: body.systemPrompt as string | undefined,
color: body.color as string | undefined,
})
clearAgentDefinitionsCache()
return Response.json({ ok: true }, { status: 201 })
}
// ββ PUT /api/agents/:name ββββββββββββββββββββββββββββββββββββββββββββ
if (method === 'PUT' && agentName) {
const body = await parseJsonBody(req)
await agentService.updateAgent(agentName, body as Record<string, unknown>)
clearAgentDefinitionsCache()
const updated = await agentService.getAgent(agentName)
return Response.json({ agent: updated })
}
// ββ DELETE /api/agents/:name βββββββββββββββββββββββββββββββββββββββββ
if (method === 'DELETE' && agentName) {
await agentService.deleteAgent(agentName)
clearAgentDefinitionsCache()
return Response.json({ ok: true })
}
throw new ApiError(
405,
`Method ${method} not allowed on /api/agents${agentName ? `/${agentName}` : ''}`,
'METHOD_NOT_ALLOWED',
)
}
// βββ Tasks API βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
//
// GET /api/tasks β list all tasks (across all task lists)
// GET /api/tasks/lists β list all task lists with summaries
// GET /api/tasks/lists/:taskListId β get all tasks for a specific task list
// GET /api/tasks/lists/:taskListId/:id β get a single task
// POST /api/tasks/lists/:taskListId/reset β clear a completed task list
async function handleTasksApi(
req: Request,
segments: string[],
): Promise<Response> {
const sub = segments[2] // 'lists' or undefined
if (sub === 'lists') {
const taskListId = segments[3]
const taskId = segments[4]
if (req.method === 'POST' && taskListId && taskId === 'reset') {
await resetTaskList(taskListId)
return Response.json({ ok: true })
}
if (req.method !== 'GET') {
throw new ApiError(
405,
`Method ${req.method} not allowed on /api/tasks/lists`,
'METHOD_NOT_ALLOWED',
)
}
if (taskListId && taskId) {
// GET /api/tasks/lists/:taskListId/:taskId
const task = await taskService.getTask(taskListId, taskId)
if (!task) throw ApiError.notFound(`Task not found: ${taskListId}/${taskId}`)
return Response.json({ task })
}
if (taskListId) {
// GET /api/tasks/lists/:taskListId
const tasks = await taskService.getTasksForList(taskListId)
return Response.json({ tasks })
}
// GET /api/tasks/lists
const lists = await taskService.listTaskLists()
return Response.json({ lists })
}
if (req.method !== 'GET') {
throw new ApiError(
405,
`Method ${req.method} not allowed on /api/tasks`,
'METHOD_NOT_ALLOWED',
)
}
// GET /api/tasks β list all tasks
const tasks = await taskService.listTasks()
return Response.json({ tasks })
}
// βββ Helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async function parseJsonBody(req: Request): Promise<Record<string, unknown>> {
try {
return (await req.json()) as Record<string, unknown>
} catch {
throw ApiError.badRequest('Invalid JSON body')
}
}
type ApiAgentDefinition = {
agentType: string
description?: string
model?: string
modelDisplay?: string
tools?: string[]
systemPrompt?: string
color?: string
source: SharedAgentDefinition['source']
baseDir?: string
isActive: boolean
}
type ApiResolvedAgentDefinition = ApiAgentDefinition & {
overriddenBy?: SharedAgentDefinition['source']
}
function serializeActiveAgent(
agent: SharedAgentDefinition,
isActive: boolean,
): ApiAgentDefinition {
return {
agentType: agent.agentType,
description: agent.whenToUse,
model: agent.model,
modelDisplay: resolveAgentModelDisplay(agent),
tools: agent.tools,
systemPrompt: agent.getSystemPrompt.length === 0 ? agent.getSystemPrompt() : undefined,
color: agent.color,
source: agent.source,
baseDir: agent.baseDir,
isActive,
}
}
function serializeResolvedAgent(agent: ResolvedAgent): ApiResolvedAgentDefinition {
return {
...serializeActiveAgent(agent, !agent.overriddenBy),
overriddenBy: agent.overriddenBy,
}
}
|