opencode_offline/packages/opencode/src/server/server.ts

1585 lines
43 KiB
TypeScript
Raw Normal View History

2025-06-01 02:41:00 +08:00
import { Log } from "../util/log"
import { Bus } from "../bus"
2025-10-24 04:04:58 +08:00
import { describeRoute, generateSpecs, validator, resolver, openAPIRouteHandler } from "hono-openapi"
2025-06-01 02:41:00 +08:00
import { Hono } from "hono"
import { cors } from "hono/cors"
2025-06-01 02:41:00 +08:00
import { streamSSE } from "hono/streaming"
import { Session } from "../session"
import z from "zod/v4"
2025-06-01 02:41:00 +08:00
import { Provider } from "../provider/provider"
2025-06-20 20:48:42 +08:00
import { mapValues } from "remeda"
2025-06-10 02:01:11 +08:00
import { NamedError } from "../util/error"
import { ModelsDev } from "../provider/models"
import { Ripgrep } from "../file/ripgrep"
2025-06-19 10:20:03 +08:00
import { Config } from "../config/config"
import { File } from "../file"
import { LSP } from "../lsp"
import { MessageV2 } from "../session/message-v2"
2025-07-22 07:53:22 +08:00
import { callTui, TuiRoute } from "./tui"
2025-07-31 22:34:43 +08:00
import { Permission } from "../permission"
import { Instance } from "../project/instance"
import { Agent } from "../agent/agent"
import { Auth } from "../auth"
import { Command } from "../command"
import { Global } from "../global"
import { ProjectRoute } from "./project"
import { ToolRegistry } from "../tool/registry"
import { zodToJsonSchema } from "zod-to-json-schema"
import { SessionLock } from "../session/lock"
import { SessionPrompt } from "../session/prompt"
import { SessionCompaction } from "../session/compaction"
import { SessionRevert } from "../session/revert"
2025-09-17 13:16:49 +08:00
import { lazy } from "../util/lazy"
import { Todo } from "../session/todo"
import { InstanceBootstrap } from "../project/bootstrap"
import { MCP } from "../mcp"
2025-10-15 23:53:09 +08:00
import { Storage } from "../storage/storage"
import type { ContentfulStatusCode } from "hono/utils/http-status"
import { Snapshot } from "@/snapshot"
2025-10-24 04:04:58 +08:00
import { MessageSummary } from "@/session/summary"
2025-06-10 02:01:11 +08:00
const ERRORS = {
400: {
description: "Bad request",
content: {
"application/json": {
schema: resolver(
z
.object({
2025-10-15 23:53:09 +08:00
data: z.any().nullable(),
errors: z.array(z.record(z.string(), z.any())),
success: z.literal(false),
2025-06-10 02:01:11 +08:00
})
.meta({
2025-10-15 23:53:09 +08:00
ref: "BadRequestError",
2025-06-10 02:01:11 +08:00
}),
),
},
},
},
2025-10-15 23:53:09 +08:00
404: {
description: "Not found",
content: {
"application/json": {
2025-10-19 00:49:29 +08:00
schema: resolver(Storage.NotFoundError.Schema),
2025-10-15 23:53:09 +08:00
},
},
},
2025-06-10 02:01:11 +08:00
} as const
2025-05-19 02:13:04 +08:00
2025-10-15 23:53:09 +08:00
function errors(...codes: number[]) {
2025-10-24 04:04:58 +08:00
return Object.fromEntries(codes.map((code) => [code, ERRORS[code as keyof typeof ERRORS]]))
2025-10-15 23:53:09 +08:00
}
2025-05-19 02:13:04 +08:00
export namespace Server {
2025-06-01 02:41:00 +08:00
const log = Log.create({ service: "server" })
2025-05-19 02:13:04 +08:00
export const Event = {
Connected: Bus.event("server.connected", z.object({})),
}
const app = new Hono()
2025-09-17 13:16:49 +08:00
export const App = lazy(() =>
app
.onError((err, c) => {
log.error("failed", {
error: err,
})
if (err instanceof NamedError) {
2025-10-15 23:53:09 +08:00
let status: ContentfulStatusCode
2025-10-19 00:49:29 +08:00
if (err instanceof Storage.NotFoundError) status = 404
else if (err instanceof Provider.ModelNotFoundError) status = 400
else status = 500
2025-10-15 23:53:09 +08:00
return c.json(err.toObject(), { status })
2025-09-17 13:16:49 +08:00
}
2025-10-24 04:04:58 +08:00
const message = err instanceof Error && err.stack ? err.stack : err.toString()
return c.json(new NamedError.Unknown({ message }).toObject(), {
2025-10-15 23:53:09 +08:00
status: 500,
})
2025-06-05 08:49:28 +08:00
})
2025-09-17 13:16:49 +08:00
.use(async (c, next) => {
const skipLogging = c.req.path === "/log"
if (!skipLogging) {
log.info("request", {
method: c.req.method,
path: c.req.path,
})
}
const start = Date.now()
await next()
if (!skipLogging) {
log.info("response", {
duration: Date.now() - start,
})
}
})
.use(async (c, next) => {
const directory = c.req.query("directory") ?? process.cwd()
return Instance.provide({
directory,
init: InstanceBootstrap,
async fn() {
return next()
},
})
2025-06-04 01:00:27 +08:00
})
2025-09-17 13:16:49 +08:00
.use(cors())
.get(
"/doc",
openAPIRouteHandler(app, {
documentation: {
info: {
title: "opencode",
version: "0.0.3",
description: "opencode api",
2025-05-29 23:32:55 +08:00
},
2025-09-17 13:16:49 +08:00
openapi: "3.1.1",
2025-05-29 23:32:55 +08:00
},
2025-09-17 13:16:49 +08:00
}),
)
.use(validator("query", z.object({ directory: z.string().optional() })))
.route("/project", ProjectRoute)
.get(
"/config",
describeRoute({
description: "Get config info",
operationId: "config.get",
responses: {
200: {
description: "Get config info",
content: {
"application/json": {
schema: resolver(Config.Info),
},
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
return c.json(await Config.get())
},
2025-09-17 13:16:49 +08:00
)
.patch(
"/config",
describeRoute({
description: "Update config",
operationId: "config.update",
responses: {
200: {
description: "Successfully updated config",
content: {
"application/json": {
schema: resolver(Config.Info),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400),
},
}),
validator("json", Config.Info),
async (c) => {
const config = c.req.valid("json")
await Config.update(config)
return c.json(config)
},
)
2025-09-17 13:16:49 +08:00
.get(
"/experimental/tool/ids",
describeRoute({
2025-10-24 04:04:58 +08:00
description: "List all tool IDs (including built-in and dynamically registered)",
2025-09-17 13:16:49 +08:00
operationId: "tool.ids",
responses: {
200: {
description: "Tool IDs",
content: {
"application/json": {
2025-10-24 04:04:58 +08:00
schema: resolver(z.array(z.string()).meta({ ref: "ToolIDs" })),
2025-09-17 13:16:49 +08:00
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400),
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
2025-09-18 15:58:21 +08:00
return c.json(await ToolRegistry.ids())
},
2025-09-17 13:16:49 +08:00
)
.get(
"/experimental/tool",
describeRoute({
2025-10-24 04:04:58 +08:00
description: "List tools with JSON schema parameters for a provider/model",
2025-09-17 13:16:49 +08:00
operationId: "tool.list",
responses: {
200: {
description: "Tools",
content: {
"application/json": {
schema: resolver(
z
.array(
z
.object({
id: z.string(),
description: z.string(),
parameters: z.any(),
})
.meta({ ref: "ToolListItem" }),
)
.meta({ ref: "ToolList" }),
),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"query",
z.object({
provider: z.string(),
model: z.string(),
}),
),
async (c) => {
const { provider, model } = c.req.valid("query")
const tools = await ToolRegistry.tools(provider, model)
return c.json(
tools.map((t) => ({
id: t.id,
description: t.description,
// Handle both Zod schemas and plain JSON schemas
2025-10-24 04:04:58 +08:00
parameters: (t.parameters as any)?._def ? zodToJsonSchema(t.parameters as any) : t.parameters,
2025-09-17 13:16:49 +08:00
})),
)
},
)
.get(
"/path",
describeRoute({
description: "Get the current path",
operationId: "path.get",
responses: {
200: {
description: "Path",
content: {
"application/json": {
schema: resolver(
z
.object({
state: z.string(),
config: z.string(),
worktree: z.string(),
directory: z.string(),
})
.meta({
ref: "Path",
}),
),
},
2025-06-04 02:24:45 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
return c.json({
state: Global.Path.state,
config: Global.Path.config,
worktree: Instance.worktree,
directory: Instance.directory,
})
2025-06-04 02:24:45 +08:00
},
2025-09-17 13:16:49 +08:00
)
.get(
"/session",
describeRoute({
description: "List all sessions",
operationId: "session.list",
responses: {
200: {
description: "List of sessions",
content: {
"application/json": {
schema: resolver(Session.Info.array()),
},
2025-06-04 00:38:48 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
const sessions = await Array.fromAsync(Session.list())
sessions.sort((a, b) => b.time.updated - a.time.updated)
return c.json(sessions)
2025-06-04 00:38:48 +08:00
},
2025-09-17 13:16:49 +08:00
)
.get(
"/session/:id",
describeRoute({
description: "Get session",
operationId: "session.get",
responses: {
200: {
description: "Get session",
content: {
"application/json": {
schema: resolver(Session.Info),
},
2025-06-02 03:01:57 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-06-02 03:01:57 +08:00
},
2025-08-07 08:24:36 +08:00
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: Session.get.schema,
2025-09-17 13:16:49 +08:00
}),
),
async (c) => {
const sessionID = c.req.valid("param").id
const session = await Session.get(sessionID)
return c.json(session)
},
)
.get(
"/session/:id/children",
describeRoute({
description: "Get a session's children",
operationId: "session.children",
responses: {
200: {
description: "List of children",
content: {
"application/json": {
schema: resolver(Session.Info.array()),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: Session.children.schema,
2025-09-17 13:16:49 +08:00
}),
),
async (c) => {
const sessionID = c.req.valid("param").id
const session = await Session.children(sessionID)
return c.json(session)
},
)
.get(
"/session/:id/todo",
describeRoute({
description: "Get the todo list for a session",
operationId: "session.todo",
responses: {
200: {
description: "Todo list",
content: {
"application/json": {
schema: resolver(Todo.Info.array()),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
}),
),
async (c) => {
const sessionID = c.req.valid("param").id
const todos = await Todo.get(sessionID)
return c.json(todos)
},
)
2025-09-17 13:16:49 +08:00
.post(
"/session",
describeRoute({
description: "Create a new session",
operationId: "session.create",
responses: {
2025-10-15 23:53:09 +08:00
...errors(400),
2025-09-17 13:16:49 +08:00
200: {
description: "Successfully created session",
content: {
"application/json": {
schema: resolver(Session.Info),
},
2025-05-20 23:11:06 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
validator("json", Session.create.schema.optional()),
2025-09-17 13:16:49 +08:00
async (c) => {
const body = c.req.valid("json") ?? {}
const session = await Session.create(body)
2025-09-17 13:16:49 +08:00
return c.json(session)
2025-05-20 23:11:06 +08:00
},
2025-09-17 13:16:49 +08:00
)
.delete(
"/session/:id",
describeRoute({
description: "Delete a session and all its data",
operationId: "session.delete",
responses: {
200: {
description: "Successfully deleted session",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-05-27 06:06:41 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-05-27 06:06:41 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: Session.remove.schema,
2025-09-17 13:16:49 +08:00
}),
),
async (c) => {
await Session.remove(c.req.valid("param").id)
return c.json(true)
},
)
.patch(
"/session/:id",
describeRoute({
description: "Update session properties",
operationId: "session.update",
responses: {
200: {
description: "Successfully updated session",
content: {
"application/json": {
schema: resolver(Session.Info),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string(),
}),
),
validator(
"json",
z.object({
title: z.string().optional(),
}),
),
async (c) => {
const sessionID = c.req.valid("param").id
const updates = c.req.valid("json")
2025-09-17 13:16:49 +08:00
const updatedSession = await Session.update(sessionID, (session) => {
if (updates.title !== undefined) {
session.title = updates.title
}
})
2025-09-17 13:16:49 +08:00
return c.json(updatedSession)
},
)
.post(
"/session/:id/init",
describeRoute({
description: "Analyze the app and create an AGENTS.md file",
operationId: "session.init",
responses: {
200: {
description: "200",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-06-21 03:22:41 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-06-21 03:22:41 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
}),
),
validator("json", Session.initialize.schema.omit({ sessionID: true })),
2025-09-17 13:16:49 +08:00
async (c) => {
const sessionID = c.req.valid("param").id
const body = c.req.valid("json")
await Session.initialize({ ...body, sessionID })
return c.json(true)
},
)
.post(
"/session/:id/fork",
describeRoute({
description: "Fork an existing session at a specific message",
operationId: "session.fork",
responses: {
200: {
description: "200",
content: {
"application/json": {
schema: resolver(Session.Info),
},
},
},
},
}),
validator(
"param",
z.object({
id: Session.fork.schema.shape.sessionID,
}),
),
validator("json", Session.fork.schema.omit({ sessionID: true })),
async (c) => {
const sessionID = c.req.valid("param").id
const body = c.req.valid("json")
const result = await Session.fork({ ...body, sessionID })
return c.json(result)
},
)
2025-09-17 13:16:49 +08:00
.post(
"/session/:id/abort",
describeRoute({
description: "Abort a session",
operationId: "session.abort",
responses: {
200: {
description: "Aborted session",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-05-28 03:34:46 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-05-28 03:34:46 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string(),
}),
),
async (c) => {
return c.json(SessionLock.abort(c.req.valid("param").id))
2025-09-17 13:16:49 +08:00
},
)
.post(
"/session/:id/share",
describeRoute({
description: "Share a session",
operationId: "session.share",
responses: {
200: {
description: "Successfully shared session",
content: {
"application/json": {
schema: resolver(Session.Info),
},
2025-05-29 03:07:51 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-05-29 03:07:51 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string(),
}),
),
async (c) => {
const id = c.req.valid("param").id
await Session.share(id)
const session = await Session.get(id)
return c.json(session)
},
)
.get(
"/session/:id/diff",
describeRoute({
description: "Get the diff that resulted from this user message",
operationId: "session.diff",
responses: {
200: {
description: "Successfully retrieved diff",
content: {
"application/json": {
schema: resolver(Snapshot.FileDiff.array()),
},
},
},
},
}),
validator(
"param",
z.object({
2025-10-24 04:04:58 +08:00
id: MessageSummary.diff.schema.shape.sessionID,
}),
),
validator(
"query",
z.object({
2025-10-24 04:04:58 +08:00
messageID: MessageSummary.diff.schema.shape.messageID,
}),
),
async (c) => {
const query = c.req.valid("query")
const params = c.req.valid("param")
2025-10-24 04:04:58 +08:00
const result = await MessageSummary.diff({
sessionID: params.id,
messageID: query.messageID,
})
return c.json(result)
},
)
2025-09-17 13:16:49 +08:00
.delete(
"/session/:id/share",
describeRoute({
description: "Unshare the session",
operationId: "session.unshare",
responses: {
200: {
description: "Successfully unshared session",
content: {
"application/json": {
schema: resolver(Session.Info),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: Session.unshare.schema,
2025-09-17 13:16:49 +08:00
}),
),
async (c) => {
const id = c.req.valid("param").id
await Session.unshare(id)
const session = await Session.get(id)
return c.json(session)
},
)
.post(
"/session/:id/summarize",
describeRoute({
description: "Summarize the session",
operationId: "session.summarize",
responses: {
200: {
description: "Summarized session",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-05-30 01:17:56 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-05-30 01:17:56 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
}),
),
validator(
"json",
z.object({
providerID: z.string(),
modelID: z.string(),
}),
),
async (c) => {
const id = c.req.valid("param").id
const body = c.req.valid("json")
await SessionCompaction.run({ ...body, sessionID: id })
return c.json(true)
},
)
.get(
"/session/:id/message",
describeRoute({
description: "List messages for a session",
operationId: "session.messages",
responses: {
200: {
description: "List of messages",
content: {
"application/json": {
schema: resolver(MessageV2.WithParts.array()),
},
2025-07-31 22:34:43 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-07-31 22:34:43 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
}),
),
async (c) => {
const messages = await Session.messages(c.req.valid("param").id)
return c.json(messages)
},
)
.get(
"/session/:id/message/:messageID",
describeRoute({
description: "Get a message from a session",
operationId: "session.message",
responses: {
200: {
description: "Message",
content: {
"application/json": {
schema: resolver(
z.object({
info: MessageV2.Info,
parts: MessageV2.Part.array(),
}),
),
},
2025-05-29 03:07:51 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-05-29 03:07:51 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
messageID: z.string().meta({ description: "Message ID" }),
}),
),
async (c) => {
const params = c.req.valid("param")
const message = await Session.getMessage({
sessionID: params.id,
messageID: params.messageID,
})
2025-09-17 13:16:49 +08:00
return c.json(message)
},
)
.post(
"/session/:id/message",
describeRoute({
description: "Create and send a new message to a session",
operationId: "session.prompt",
responses: {
200: {
description: "Created message",
content: {
"application/json": {
schema: resolver(
z.object({
info: MessageV2.Assistant,
parts: MessageV2.Part.array(),
}),
),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
}),
),
validator("json", SessionPrompt.PromptInput.omit({ sessionID: true })),
async (c) => {
const sessionID = c.req.valid("param").id
const body = c.req.valid("json")
const msg = await SessionPrompt.prompt({ ...body, sessionID })
return c.json(msg)
},
)
.post(
"/session/:id/command",
describeRoute({
description: "Send a new command to a session",
operationId: "session.command",
responses: {
200: {
description: "Created message",
content: {
"application/json": {
schema: resolver(
z.object({
info: MessageV2.Assistant,
parts: MessageV2.Part.array(),
}),
),
},
2025-08-14 01:28:51 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-08-14 01:28:51 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
}),
),
validator("json", SessionPrompt.CommandInput.omit({ sessionID: true })),
async (c) => {
const sessionID = c.req.valid("param").id
const body = c.req.valid("json")
const msg = await SessionPrompt.command({ ...body, sessionID })
return c.json(msg)
},
)
.post(
"/session/:id/shell",
describeRoute({
description: "Run a shell command",
operationId: "session.shell",
responses: {
200: {
description: "Created message",
content: {
"application/json": {
schema: resolver(MessageV2.Assistant),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string().meta({ description: "Session ID" }),
}),
),
validator("json", SessionPrompt.ShellInput.omit({ sessionID: true })),
async (c) => {
const sessionID = c.req.valid("param").id
const body = c.req.valid("json")
const msg = await SessionPrompt.shell({ ...body, sessionID })
return c.json(msg)
},
)
.post(
"/session/:id/revert",
describeRoute({
description: "Revert a message",
operationId: "session.revert",
responses: {
200: {
description: "Updated session",
content: {
"application/json": {
schema: resolver(Session.Info),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string(),
}),
),
validator("json", SessionRevert.RevertInput.omit({ sessionID: true })),
async (c) => {
const id = c.req.valid("param").id
log.info("revert", c.req.valid("json"))
const session = await SessionRevert.revert({
sessionID: id,
...c.req.valid("json"),
})
2025-09-17 13:16:49 +08:00
return c.json(session)
},
)
.post(
"/session/:id/unrevert",
describeRoute({
description: "Restore all reverted messages",
operationId: "session.unrevert",
responses: {
200: {
description: "Updated session",
content: {
"application/json": {
schema: resolver(Session.Info),
},
2025-07-31 22:34:43 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
2025-07-31 22:34:43 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string(),
}),
),
async (c) => {
const id = c.req.valid("param").id
const session = await SessionRevert.unrevert({ sessionID: id })
return c.json(session)
},
)
.post(
"/session/:id/permissions/:permissionID",
describeRoute({
description: "Respond to a permission request",
responses: {
200: {
description: "Permission processed successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400, 404),
},
}),
2025-09-17 13:16:49 +08:00
validator(
"param",
z.object({
id: z.string(),
permissionID: z.string(),
}),
),
validator("json", z.object({ response: Permission.Response })),
async (c) => {
const params = c.req.valid("param")
const id = params.id
const permissionID = params.permissionID
Permission.respond({
sessionID: id,
permissionID,
response: c.req.valid("json").response,
})
2025-09-17 13:16:49 +08:00
return c.json(true)
},
)
.get(
"/command",
describeRoute({
description: "List all commands",
operationId: "command.list",
responses: {
200: {
description: "List of commands",
content: {
"application/json": {
schema: resolver(Command.Info.array()),
},
2025-05-29 00:53:22 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
const commands = await Command.list()
return c.json(commands)
2025-05-29 00:53:22 +08:00
},
2025-09-17 13:16:49 +08:00
)
.get(
"/config/providers",
describeRoute({
description: "List all providers",
operationId: "config.providers",
responses: {
200: {
description: "List of providers",
content: {
"application/json": {
schema: resolver(
z.object({
providers: ModelsDev.Provider.array(),
default: z.record(z.string(), z.string()),
}),
),
},
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
2025-10-24 04:04:58 +08:00
const providers = await Provider.list().then((x) => mapValues(x, (item) => item.info))
2025-09-17 13:16:49 +08:00
return c.json({
providers: Object.values(providers),
2025-10-24 04:04:58 +08:00
default: mapValues(providers, (item) => Provider.sort(Object.values(item.models))[0].id),
2025-09-17 13:16:49 +08:00
})
},
2025-09-17 13:16:49 +08:00
)
.get(
"/find",
describeRoute({
description: "Find text in files",
operationId: "find.text",
responses: {
200: {
description: "Matches",
content: {
"application/json": {
schema: resolver(Ripgrep.Match.shape.data.array()),
},
},
},
},
}),
2025-09-17 13:16:49 +08:00
validator(
"query",
z.object({
pattern: z.string(),
}),
),
async (c) => {
const pattern = c.req.valid("query").pattern
const result = await Ripgrep.search({
cwd: Instance.directory,
pattern,
limit: 10,
})
return c.json(result)
},
)
.get(
"/find/file",
describeRoute({
description: "Find files",
operationId: "find.files",
responses: {
200: {
description: "File paths",
content: {
"application/json": {
schema: resolver(z.string().array()),
},
},
},
},
}),
2025-09-17 13:16:49 +08:00
validator(
"query",
z.object({
query: z.string(),
}),
),
async (c) => {
const query = c.req.valid("query").query
const results = await File.search({
2025-09-17 13:16:49 +08:00
query,
limit: 10,
})
return c.json(results)
2025-09-17 13:16:49 +08:00
},
)
.get(
"/find/symbol",
describeRoute({
description: "Find workspace symbols",
operationId: "find.symbols",
responses: {
200: {
description: "Symbols",
content: {
"application/json": {
schema: resolver(LSP.Symbol.array()),
},
2025-08-28 04:27:49 +08:00
},
},
},
}),
2025-09-17 13:16:49 +08:00
validator(
"query",
z.object({
query: z.string(),
}),
),
async (c) => {
/*
2025-09-17 13:16:49 +08:00
const query = c.req.valid("query").query
const result = await LSP.workspaceSymbol(query)
return c.json(result)
*/
return c.json([])
2025-09-17 13:16:49 +08:00
},
)
.get(
"/file",
describeRoute({
description: "List files and directories",
operationId: "file.list",
responses: {
200: {
description: "Files and directories",
content: {
"application/json": {
schema: resolver(File.Node.array()),
},
},
},
},
}),
2025-09-17 13:16:49 +08:00
validator(
"query",
z.object({
path: z.string(),
}),
),
async (c) => {
const path = c.req.valid("query").path
const content = await File.list(path)
return c.json(content)
},
)
.get(
"/file/content",
describeRoute({
description: "Read a file",
operationId: "file.read",
responses: {
200: {
description: "File content",
content: {
"application/json": {
schema: resolver(File.Content),
},
},
},
},
}),
2025-09-17 13:16:49 +08:00
validator(
"query",
z.object({
path: z.string(),
}),
),
async (c) => {
const path = c.req.valid("query").path
const content = await File.read(path)
return c.json(content)
},
)
.get(
"/file/status",
describeRoute({
description: "Get file status",
operationId: "file.status",
responses: {
200: {
description: "File status",
content: {
"application/json": {
schema: resolver(File.Info.array()),
},
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
const content = await File.status()
return c.json(content)
},
2025-09-17 13:16:49 +08:00
)
.post(
"/log",
describeRoute({
description: "Write a log entry to the server logs",
operationId: "app.log",
responses: {
200: {
description: "Log entry written successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-07-09 21:16:10 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400),
2025-07-09 21:16:10 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"json",
z.object({
2025-10-24 04:04:58 +08:00
service: z.string().meta({ description: "Service name for the log entry" }),
level: z.enum(["debug", "info", "error", "warn"]).meta({ description: "Log level" }),
2025-09-17 13:16:49 +08:00
message: z.string().meta({ description: "Log message" }),
extra: z
.record(z.string(), z.any())
.optional()
.meta({ description: "Additional metadata for the log entry" }),
}),
),
async (c) => {
const { service, level, message, extra } = c.req.valid("json")
const logger = Log.create({ service })
2025-07-09 21:16:10 +08:00
2025-09-17 13:16:49 +08:00
switch (level) {
case "debug":
logger.debug(message, extra)
break
case "info":
logger.info(message, extra)
break
case "error":
logger.error(message, extra)
break
case "warn":
logger.warn(message, extra)
break
}
2025-07-09 21:16:10 +08:00
2025-09-17 13:16:49 +08:00
return c.json(true)
},
)
.get(
"/agent",
describeRoute({
description: "List all agents",
operationId: "app.agents",
responses: {
200: {
description: "List of agents",
content: {
"application/json": {
schema: resolver(Agent.Info.array()),
},
2025-07-10 03:44:59 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => {
const modes = await Agent.list()
return c.json(modes)
2025-07-10 03:44:59 +08:00
},
2025-09-17 13:16:49 +08:00
)
.get(
"/mcp",
describeRoute({
description: "Get MCP server status",
operationId: "mcp.status",
responses: {
200: {
description: "MCP server status",
content: {
"application/json": {
schema: resolver(z.any()),
},
},
},
},
}),
async (c) => {
return c.json(await MCP.status())
},
)
2025-09-17 13:16:49 +08:00
.post(
"/tui/append-prompt",
describeRoute({
description: "Append prompt to the TUI",
operationId: "tui.appendPrompt",
responses: {
200: {
description: "Prompt processed successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-07-22 07:53:22 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400),
2025-07-22 07:53:22 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"json",
z.object({
text: z.string(),
}),
),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/open-help",
describeRoute({
description: "Open the help dialog",
operationId: "tui.openHelp",
responses: {
200: {
description: "Help dialog opened successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-07-22 07:53:22 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/open-sessions",
describeRoute({
description: "Open the session dialog",
operationId: "tui.openSessions",
responses: {
200: {
description: "Session dialog opened successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-08-01 00:24:23 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/open-themes",
describeRoute({
description: "Open the theme dialog",
operationId: "tui.openThemes",
responses: {
200: {
description: "Theme dialog opened successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-08-01 00:24:23 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/open-models",
describeRoute({
description: "Open the model dialog",
operationId: "tui.openModels",
responses: {
200: {
description: "Model dialog opened successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-08-01 00:24:23 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/submit-prompt",
describeRoute({
description: "Submit the prompt",
operationId: "tui.submitPrompt",
responses: {
200: {
description: "Prompt submitted successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-08-01 00:24:23 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/clear-prompt",
describeRoute({
description: "Clear the prompt",
operationId: "tui.clearPrompt",
responses: {
200: {
description: "Prompt cleared successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-08-01 00:24:23 +08:00
},
},
},
2025-09-17 13:16:49 +08:00
}),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/execute-command",
describeRoute({
description: "Execute a TUI command (e.g. agent_cycle)",
operationId: "tui.executeCommand",
responses: {
200: {
description: "Command executed successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-08-01 00:24:23 +08:00
},
},
2025-10-15 23:53:09 +08:00
...errors(400),
2025-08-01 00:24:23 +08:00
},
}),
2025-09-17 13:16:49 +08:00
validator(
"json",
z.object({
command: z.string(),
}),
),
async (c) => c.json(await callTui(c)),
)
.post(
"/tui/show-toast",
describeRoute({
description: "Show a toast notification in the TUI",
operationId: "tui.showToast",
responses: {
200: {
description: "Toast notification shown successfully",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
2025-08-15 21:39:58 +08:00
},
},
},
}),
2025-09-17 13:16:49 +08:00
validator(
"json",
z.object({
title: z.string().optional(),
message: z.string(),
variant: z.enum(["info", "success", "warning", "error"]),
}),
),
async (c) => c.json(await callTui(c)),
)
.route("/tui/control", TuiRoute)
.put(
"/auth/:id",
describeRoute({
description: "Set authentication credentials",
operationId: "auth.set",
responses: {
200: {
description: "Successfully set authentication credentials",
content: {
"application/json": {
schema: resolver(z.boolean()),
},
},
},
2025-10-15 23:53:09 +08:00
...errors(400),
},
2025-09-17 13:16:49 +08:00
}),
validator(
"param",
z.object({
id: z.string(),
}),
),
validator("json", Auth.Info),
async (c) => {
const id = c.req.valid("param").id
const info = c.req.valid("json")
await Auth.set(id, info)
return c.json(true)
},
2025-09-17 13:16:49 +08:00
)
.get(
"/event",
describeRoute({
description: "Get events",
operationId: "event.subscribe",
responses: {
200: {
description: "Event stream",
content: {
"text/event-stream": {
schema: resolver(
Bus.payloads().meta({
ref: "Event",
}),
),
},
},
},
},
}),
2025-09-17 13:16:49 +08:00
async (c) => {
log.info("event connected")
return streamSSE(c, async (stream) => {
stream.writeSSE({
data: JSON.stringify({
type: "server.connected",
properties: {},
}),
})
const unsub = Bus.subscribeAll(async (event) => {
await stream.writeSSE({
data: JSON.stringify(event),
})
})
await new Promise<void>((resolve) => {
stream.onAbort(() => {
unsub()
resolve()
log.info("event disconnected")
})
})
})
},
),
2025-09-17 13:16:49 +08:00
)
2025-05-19 10:30:41 +08:00
export async function openapi() {
2025-09-17 13:16:49 +08:00
const result = await generateSpecs(App(), {
2025-05-19 10:30:41 +08:00
documentation: {
info: {
title: "opencode",
version: "1.0.0",
description: "opencode api",
},
openapi: "3.1.1",
2025-05-19 10:30:41 +08:00
},
2025-06-01 02:41:00 +08:00
})
return result
2025-05-19 02:28:08 +08:00
}
2025-05-19 02:13:04 +08:00
2025-06-25 08:52:09 +08:00
export function listen(opts: { port: number; hostname: string }) {
2025-05-19 02:28:08 +08:00
const server = Bun.serve({
2025-06-25 08:52:09 +08:00
port: opts.port,
hostname: opts.hostname,
2025-05-19 02:13:04 +08:00
idleTimeout: 0,
2025-09-17 13:16:49 +08:00
fetch: App().fetch,
2025-06-01 02:41:00 +08:00
})
return server
2025-05-18 09:31:42 +08:00
}
}