| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646 |
- import path from "path"
- import os from "os"
- import fs from "fs/promises"
- import z from "zod/v4"
- import { Identifier } from "../id/id"
- import { MessageV2 } from "./message-v2"
- import { Log } from "../util/log"
- import { SessionRevert } from "./revert"
- import { Session } from "."
- import { Agent } from "../agent/agent"
- import { Provider } from "../provider/provider"
- import {
- generateText,
- streamText,
- type ModelMessage,
- type Tool as AITool,
- tool,
- wrapLanguageModel,
- type StreamTextResult,
- LoadAPIKeyError,
- stepCountIs,
- jsonSchema,
- } from "ai"
- import { SessionCompaction } from "./compaction"
- import { Instance } from "../project/instance"
- import { Bus } from "../bus"
- import { ProviderTransform } from "../provider/transform"
- import { SystemPrompt } from "./system"
- import { Plugin } from "../plugin"
- import PROMPT_PLAN from "../session/prompt/plan.txt"
- import BUILD_SWITCH from "../session/prompt/build-switch.txt"
- import { ModelsDev } from "../provider/models"
- import { defer } from "../util/defer"
- import { mergeDeep, pipe } from "remeda"
- import { ToolRegistry } from "../tool/registry"
- import { Wildcard } from "../util/wildcard"
- import { MCP } from "../mcp"
- import { LSP } from "../lsp"
- import { ReadTool } from "../tool/read"
- import { ListTool } from "../tool/ls"
- import { TaskTool } from "../tool/task"
- import { FileTime } from "../file/time"
- import { Permission } from "../permission"
- import { Snapshot } from "../snapshot"
- import { NamedError } from "../util/error"
- import { ulid } from "ulid"
- import { spawn } from "child_process"
- import { Command } from "../command"
- import { $ } from "bun"
- import { ConfigMarkdown } from "../config/markdown"
- export namespace SessionPrompt {
- const log = Log.create({ service: "session.prompt" })
- export const OUTPUT_TOKEN_MAX = 32_000
- export const Event = {
- Idle: Bus.event(
- "session.idle",
- z.object({
- sessionID: z.string(),
- }),
- ),
- }
- const state = Instance.state(
- () => {
- const pending = new Map<string, AbortController>()
- const queued = new Map<
- string,
- {
- messageID: string
- callback: (input: MessageV2.WithParts) => void
- }[]
- >()
- return {
- pending,
- queued,
- }
- },
- async (state) => {
- for (const [_, controller] of state.pending) {
- controller.abort()
- }
- },
- )
- export const PromptInput = z.object({
- sessionID: Identifier.schema("session"),
- messageID: Identifier.schema("message").optional(),
- model: z
- .object({
- providerID: z.string(),
- modelID: z.string(),
- })
- .optional(),
- agent: z.string().optional(),
- system: z.string().optional(),
- tools: z.record(z.string(), z.boolean()).optional(),
- parts: z.array(
- z.discriminatedUnion("type", [
- MessageV2.TextPart.omit({
- messageID: true,
- sessionID: true,
- })
- .partial({
- id: true,
- })
- .meta({
- ref: "TextPartInput",
- }),
- MessageV2.FilePart.omit({
- messageID: true,
- sessionID: true,
- })
- .partial({
- id: true,
- })
- .meta({
- ref: "FilePartInput",
- }),
- MessageV2.AgentPart.omit({
- messageID: true,
- sessionID: true,
- })
- .partial({
- id: true,
- })
- .meta({
- ref: "AgentPartInput",
- }),
- ]),
- ),
- })
- export type PromptInput = z.infer<typeof PromptInput>
- export async function prompt(input: PromptInput): Promise<MessageV2.WithParts> {
- const l = log.clone().tag("session", input.sessionID)
- l.info("prompt")
- const session = await Session.get(input.sessionID)
- await SessionRevert.cleanup(session)
- const userMsg = await createUserMessage(input)
- await Session.touch(input.sessionID)
- if (isBusy(input.sessionID)) {
- return new Promise((resolve) => {
- const queue = state().queued.get(input.sessionID) ?? []
- queue.push({
- messageID: userMsg.info.id,
- callback: resolve,
- })
- state().queued.set(input.sessionID, queue)
- })
- }
- const agent = await Agent.get(input.agent ?? "build")
- const model = await resolveModel({
- agent,
- model: input.model,
- }).then((x) => Provider.getModel(x.providerID, x.modelID))
- const outputLimit = Math.min(model.info.limit.output, OUTPUT_TOKEN_MAX) || OUTPUT_TOKEN_MAX
- using abort = lock(input.sessionID)
- const system = await resolveSystemPrompt({
- providerID: model.providerID,
- modelID: model.info.id,
- agent,
- system: input.system,
- })
- const processor = await createProcessor({
- sessionID: input.sessionID,
- model: model.info,
- providerID: model.providerID,
- agent: agent.name,
- system,
- abort: abort.signal,
- })
- const tools = await resolveTools({
- agent,
- sessionID: input.sessionID,
- modelID: model.modelID,
- providerID: model.providerID,
- tools: input.tools,
- processor,
- })
- const params = await Plugin.trigger(
- "chat.params",
- {
- model: model.info,
- provider: await Provider.getProvider(model.providerID),
- message: userMsg,
- },
- {
- temperature: model.info.temperature
- ? (agent.temperature ?? ProviderTransform.temperature(model.providerID, model.modelID))
- : undefined,
- topP: agent.topP ?? ProviderTransform.topP(model.providerID, model.modelID),
- options: {
- ...ProviderTransform.options(model.providerID, model.modelID, input.sessionID),
- ...model.info.options,
- ...agent.options,
- },
- },
- )
- let step = 0
- while (true) {
- const msgs: MessageV2.WithParts[] = pipe(
- await getMessages({
- sessionID: input.sessionID,
- model: model.info,
- providerID: model.providerID,
- }),
- (messages) => insertReminders({ messages, agent }),
- )
- if (step === 0)
- ensureTitle({
- session,
- history: msgs,
- message: userMsg,
- providerID: model.providerID,
- modelID: model.info.id,
- })
- step++
- await processor.next()
- await using _ = defer(async () => {
- await processor.end()
- })
- const stream = streamText({
- onError(error) {
- log.error("stream error", {
- error,
- })
- },
- async experimental_repairToolCall(input) {
- const lower = input.toolCall.toolName.toLowerCase()
- if (lower !== input.toolCall.toolName && tools[lower]) {
- log.info("repairing tool call", {
- tool: input.toolCall.toolName,
- repaired: lower,
- })
- return {
- ...input.toolCall,
- toolName: lower,
- }
- }
- return {
- ...input.toolCall,
- input: JSON.stringify({
- tool: input.toolCall.toolName,
- error: input.error.message,
- }),
- toolName: "invalid",
- }
- },
- headers:
- model.providerID === "opencode"
- ? {
- "x-opencode-session": input.sessionID,
- "x-opencode-request": userMsg.info.id,
- }
- : undefined,
- maxRetries: 10,
- activeTools: Object.keys(tools).filter((x) => x !== "invalid"),
- maxOutputTokens: ProviderTransform.maxOutputTokens(model.providerID, outputLimit, params.options),
- abortSignal: abort.signal,
- providerOptions: {
- [model.npm === "@ai-sdk/openai" ? "openai" : model.providerID]: params.options,
- },
- stopWhen: stepCountIs(1),
- temperature: params.temperature,
- topP: params.topP,
- messages: [
- ...system.map(
- (x): ModelMessage => ({
- role: "system",
- content: x,
- }),
- ),
- ...MessageV2.toModelMessage(
- msgs.filter((m) => {
- if (m.info.role !== "assistant" || m.info.error === undefined) {
- return true
- }
- if (
- MessageV2.AbortedError.isInstance(m.info.error) &&
- m.parts.some((part) => part.type !== "step-start" && part.type !== "reasoning")
- ) {
- return true
- }
- return false
- }),
- ),
- ],
- tools: model.info.tool_call === false ? undefined : tools,
- model: wrapLanguageModel({
- model: model.language,
- middleware: [
- {
- async transformParams(args) {
- if (args.type === "stream") {
- // @ts-expect-error
- args.params.prompt = ProviderTransform.message(args.params.prompt, model.providerID, model.modelID)
- }
- return args.params
- },
- },
- ],
- }),
- })
- const result = await processor.process(stream)
- await processor.end()
- const queued = state().queued.get(input.sessionID) ?? []
- if (!result.blocked && !result.info.error) {
- if ((await stream.finishReason) === "tool-calls") {
- continue
- }
- const unprocessed = queued.filter((x) => x.messageID > result.info.id)
- if (unprocessed.length) {
- continue
- }
- }
- for (const item of queued) {
- item.callback(result)
- }
- state().queued.delete(input.sessionID)
- SessionCompaction.prune(input)
- return result
- }
- }
- async function getMessages(input: { sessionID: string; model: ModelsDev.Model; providerID: string }) {
- let msgs = await Session.messages(input.sessionID).then(MessageV2.filterSummarized)
- const lastAssistant = msgs.findLast((msg) => msg.info.role === "assistant")
- if (
- lastAssistant?.info.role === "assistant" &&
- SessionCompaction.isOverflow({
- tokens: lastAssistant.info.tokens,
- model: input.model,
- })
- ) {
- const summaryMsg = await SessionCompaction.run({
- sessionID: input.sessionID,
- providerID: input.providerID,
- modelID: input.model.id,
- })
- const resumeMsgID = Identifier.ascending("message")
- const resumeMsg = {
- info: await Session.updateMessage({
- id: resumeMsgID,
- role: "user",
- sessionID: input.sessionID,
- time: {
- created: Date.now(),
- },
- }),
- parts: [
- await Session.updatePart({
- type: "text",
- sessionID: input.sessionID,
- messageID: resumeMsgID,
- id: Identifier.ascending("part"),
- text: "Use the above summary generated from your last session to resume from where you left off.",
- time: {
- start: Date.now(),
- end: Date.now(),
- },
- synthetic: true,
- }),
- ],
- }
- msgs = [summaryMsg, resumeMsg]
- }
- return msgs
- }
- async function resolveModel(input: { model: PromptInput["model"]; agent: Agent.Info }) {
- if (input.model) {
- return input.model
- }
- if (input.agent.model) {
- return input.agent.model
- }
- return Provider.defaultModel()
- }
- async function resolveSystemPrompt(input: {
- system?: string
- agent: Agent.Info
- providerID: string
- modelID: string
- }) {
- let system = SystemPrompt.header(input.providerID)
- system.push(
- ...(() => {
- if (input.system) return [input.system]
- if (input.agent.prompt) return [input.agent.prompt]
- return SystemPrompt.provider(input.modelID)
- })(),
- )
- system.push(...(await SystemPrompt.environment()))
- system.push(...(await SystemPrompt.custom()))
- // max 2 system prompt messages for caching purposes
- const [first, ...rest] = system
- system = [first, rest.join("\n")]
- return system
- }
- async function resolveTools(input: {
- agent: Agent.Info
- sessionID: string
- modelID: string
- providerID: string
- tools?: Record<string, boolean>
- processor: Processor
- }) {
- const tools: Record<string, AITool> = {}
- const enabledTools = pipe(
- input.agent.tools,
- mergeDeep(await ToolRegistry.enabled(input.providerID, input.modelID, input.agent)),
- mergeDeep(input.tools ?? {}),
- )
- for (const item of await ToolRegistry.tools(input.providerID, input.modelID)) {
- if (Wildcard.all(item.id, enabledTools) === false) continue
- const schema = ProviderTransform.schema(input.providerID, input.modelID, z.toJSONSchema(item.parameters))
- tools[item.id] = tool({
- id: item.id as any,
- description: item.description,
- inputSchema: jsonSchema(schema as any),
- async execute(args, options) {
- await Plugin.trigger(
- "tool.execute.before",
- {
- tool: item.id,
- sessionID: input.sessionID,
- callID: options.toolCallId,
- },
- {
- args,
- },
- )
- const result = await item.execute(args, {
- sessionID: input.sessionID,
- abort: options.abortSignal!,
- messageID: input.processor.message.id,
- callID: options.toolCallId,
- agent: input.agent.name,
- metadata: async (val) => {
- const match = input.processor.partFromToolCall(options.toolCallId)
- if (match && match.state.status === "running") {
- await Session.updatePart({
- ...match,
- state: {
- title: val.title,
- metadata: val.metadata,
- status: "running",
- input: args,
- time: {
- start: Date.now(),
- },
- },
- })
- }
- },
- })
- await Plugin.trigger(
- "tool.execute.after",
- {
- tool: item.id,
- sessionID: input.sessionID,
- callID: options.toolCallId,
- },
- result,
- )
- return result
- },
- toModelOutput(result) {
- return {
- type: "text",
- value: result.output,
- }
- },
- })
- }
- for (const [key, item] of Object.entries(await MCP.tools())) {
- if (Wildcard.all(key, enabledTools) === false) continue
- const execute = item.execute
- if (!execute) continue
- item.execute = async (args, opts) => {
- await Plugin.trigger(
- "tool.execute.before",
- {
- tool: key,
- sessionID: input.sessionID,
- callID: opts.toolCallId,
- },
- {
- args,
- },
- )
- const result = await execute(args, opts)
- const output = result.content
- .filter((x: any) => x.type === "text")
- .map((x: any) => x.text)
- .join("\n\n")
- await Plugin.trigger(
- "tool.execute.after",
- {
- tool: key,
- sessionID: input.sessionID,
- callID: opts.toolCallId,
- },
- result,
- )
- return {
- output,
- }
- }
- item.toModelOutput = (result) => {
- return {
- type: "text",
- value: result.output,
- }
- }
- tools[key] = item
- }
- return tools
- }
- async function createUserMessage(input: PromptInput) {
- const info: MessageV2.Info = {
- id: input.messageID ?? Identifier.ascending("message"),
- role: "user",
- sessionID: input.sessionID,
- time: {
- created: Date.now(),
- },
- }
- const parts = await Promise.all(
- input.parts.map(async (part): Promise<MessageV2.Part[]> => {
- if (part.type === "file") {
- const url = new URL(part.url)
- switch (url.protocol) {
- case "data:":
- if (part.mime === "text/plain") {
- return [
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: `Called the Read tool with the following input: ${JSON.stringify({ filePath: part.filename })}`,
- },
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: Buffer.from(part.url, "base64url").toString(),
- },
- {
- ...part,
- id: part.id ?? Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- },
- ]
- }
- break
- case "file:":
- log.info("file", { mime: part.mime })
- // have to normalize, symbol search returns absolute paths
- // Decode the pathname since URL constructor doesn't automatically decode it
- const filepath = decodeURIComponent(url.pathname)
- const stat = await Bun.file(filepath).stat()
- if (stat.isDirectory()) {
- part.mime = "application/x-directory"
- }
- if (part.mime === "text/plain") {
- let offset: number | undefined = undefined
- let limit: number | undefined = undefined
- const range = {
- start: url.searchParams.get("start"),
- end: url.searchParams.get("end"),
- }
- if (range.start != null) {
- const filePath = part.url.split("?")[0]
- let start = parseInt(range.start)
- let end = range.end ? parseInt(range.end) : undefined
- // some LSP servers (eg, gopls) don't give full range in
- // workspace/symbol searches, so we'll try to find the
- // symbol in the document to get the full range
- if (start === end) {
- const symbols = await LSP.documentSymbol(filePath)
- for (const symbol of symbols) {
- let range: LSP.Range | undefined
- if ("range" in symbol) {
- range = symbol.range
- } else if ("location" in symbol) {
- range = symbol.location.range
- }
- if (range?.start?.line && range?.start?.line === start) {
- start = range.start.line
- end = range?.end?.line ?? start
- break
- }
- }
- }
- offset = Math.max(start - 1, 0)
- if (end) {
- limit = end - offset
- }
- }
- const args = { filePath: filepath, offset, limit }
- const result = await ReadTool.init().then((t) =>
- t.execute(args, {
- sessionID: input.sessionID,
- abort: new AbortController().signal,
- agent: input.agent!,
- messageID: info.id,
- extra: { bypassCwdCheck: true },
- metadata: async () => {},
- }),
- )
- return [
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: `Called the Read tool with the following input: ${JSON.stringify(args)}`,
- },
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: result.output,
- },
- {
- ...part,
- id: part.id ?? Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- },
- ]
- }
- if (part.mime === "application/x-directory") {
- const args = { path: filepath }
- const result = await ListTool.init().then((t) =>
- t.execute(args, {
- sessionID: input.sessionID,
- abort: new AbortController().signal,
- agent: input.agent!,
- messageID: info.id,
- extra: { bypassCwdCheck: true },
- metadata: async () => {},
- }),
- )
- return [
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: `Called the list tool with the following input: ${JSON.stringify(args)}`,
- },
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: result.output,
- },
- {
- ...part,
- id: part.id ?? Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- },
- ]
- }
- const file = Bun.file(filepath)
- FileTime.read(input.sessionID, filepath)
- return [
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- text: `Called the Read tool with the following input: {\"filePath\":\"${filepath}\"}`,
- synthetic: true,
- },
- {
- id: part.id ?? Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "file",
- url: `data:${part.mime};base64,` + Buffer.from(await file.bytes()).toString("base64"),
- mime: part.mime,
- filename: part.filename!,
- source: part.source,
- },
- ]
- }
- }
- if (part.type === "agent") {
- return [
- {
- id: Identifier.ascending("part"),
- ...part,
- messageID: info.id,
- sessionID: input.sessionID,
- },
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text:
- "Use the above message and context to generate a prompt and call the task tool with subagent: " +
- part.name,
- },
- ]
- }
- return [
- {
- id: Identifier.ascending("part"),
- ...part,
- messageID: info.id,
- sessionID: input.sessionID,
- },
- ]
- }),
- ).then((x) => x.flat())
- await Plugin.trigger(
- "chat.message",
- {},
- {
- message: info,
- parts,
- },
- )
- await Session.updateMessage(info)
- for (const part of parts) {
- await Session.updatePart(part)
- }
- return {
- info,
- parts,
- }
- }
- function insertReminders(input: { messages: MessageV2.WithParts[]; agent: Agent.Info }) {
- const userMessage = input.messages.findLast((msg) => msg.info.role === "user")
- if (!userMessage) return input.messages
- if (input.agent.name === "plan") {
- userMessage.parts.push({
- id: Identifier.ascending("part"),
- messageID: userMessage.info.id,
- sessionID: userMessage.info.sessionID,
- type: "text",
- text: PROMPT_PLAN,
- synthetic: true,
- })
- }
- const wasPlan = input.messages.some((msg) => msg.info.role === "assistant" && msg.info.mode === "plan")
- if (wasPlan && input.agent.name === "build") {
- userMessage.parts.push({
- id: Identifier.ascending("part"),
- messageID: userMessage.info.id,
- sessionID: userMessage.info.sessionID,
- type: "text",
- text: BUILD_SWITCH,
- synthetic: true,
- })
- }
- return input.messages
- }
- export type Processor = Awaited<ReturnType<typeof createProcessor>>
- async function createProcessor(input: {
- sessionID: string
- providerID: string
- model: ModelsDev.Model
- system: string[]
- agent: string
- abort: AbortSignal
- }) {
- const toolcalls: Record<string, MessageV2.ToolPart> = {}
- let snapshot: string | undefined
- let blocked = false
- async function createMessage() {
- const msg: MessageV2.Info = {
- id: Identifier.ascending("message"),
- role: "assistant",
- system: input.system,
- mode: input.agent,
- path: {
- cwd: Instance.directory,
- root: Instance.worktree,
- },
- cost: 0,
- tokens: {
- input: 0,
- output: 0,
- reasoning: 0,
- cache: { read: 0, write: 0 },
- },
- modelID: input.model.id,
- providerID: input.providerID,
- time: {
- created: Date.now(),
- },
- sessionID: input.sessionID,
- }
- await Session.updateMessage(msg)
- return msg
- }
- let assistantMsg: MessageV2.Assistant | undefined
- const result = {
- async end() {
- if (assistantMsg) {
- assistantMsg.time.completed = Date.now()
- await Session.updateMessage(assistantMsg)
- assistantMsg = undefined
- }
- },
- async next() {
- if (assistantMsg) {
- throw new Error("end previous assistant message first")
- }
- assistantMsg = await createMessage()
- return assistantMsg
- },
- get message() {
- if (!assistantMsg) throw new Error("call next() first before accessing message")
- return assistantMsg
- },
- partFromToolCall(toolCallID: string) {
- return toolcalls[toolCallID]
- },
- async process(stream: StreamTextResult<Record<string, AITool>, never>) {
- log.info("process")
- if (!assistantMsg) throw new Error("call next() first before processing")
- try {
- let currentText: MessageV2.TextPart | undefined
- let reasoningMap: Record<string, MessageV2.ReasoningPart> = {}
- for await (const value of stream.fullStream) {
- input.abort.throwIfAborted()
- log.info("part", {
- type: value.type,
- })
- switch (value.type) {
- case "start":
- break
- case "reasoning-start":
- if (value.id in reasoningMap) {
- continue
- }
- reasoningMap[value.id] = {
- id: Identifier.ascending("part"),
- messageID: assistantMsg.id,
- sessionID: assistantMsg.sessionID,
- type: "reasoning",
- text: "",
- time: {
- start: Date.now(),
- },
- metadata: value.providerMetadata,
- }
- break
- case "reasoning-delta":
- if (value.id in reasoningMap) {
- const part = reasoningMap[value.id]
- part.text += value.text
- if (value.providerMetadata) part.metadata = value.providerMetadata
- if (part.text) await Session.updatePart(part)
- }
- break
- case "reasoning-end":
- if (value.id in reasoningMap) {
- const part = reasoningMap[value.id]
- part.text = part.text.trimEnd()
- part.time = {
- ...part.time,
- end: Date.now(),
- }
- if (value.providerMetadata) part.metadata = value.providerMetadata
- await Session.updatePart(part)
- delete reasoningMap[value.id]
- }
- break
- case "tool-input-start":
- const part = await Session.updatePart({
- id: toolcalls[value.id]?.id ?? Identifier.ascending("part"),
- messageID: assistantMsg.id,
- sessionID: assistantMsg.sessionID,
- type: "tool",
- tool: value.toolName,
- callID: value.id,
- state: {
- status: "pending",
- },
- })
- toolcalls[value.id] = part as MessageV2.ToolPart
- break
- case "tool-input-delta":
- break
- case "tool-input-end":
- break
- case "tool-call": {
- const match = toolcalls[value.toolCallId]
- if (match) {
- const part = await Session.updatePart({
- ...match,
- tool: value.toolName,
- state: {
- status: "running",
- input: value.input,
- time: {
- start: Date.now(),
- },
- },
- metadata: value.providerMetadata,
- })
- toolcalls[value.toolCallId] = part as MessageV2.ToolPart
- }
- break
- }
- case "tool-result": {
- const match = toolcalls[value.toolCallId]
- if (match && match.state.status === "running") {
- await Session.updatePart({
- ...match,
- state: {
- status: "completed",
- input: value.input,
- output: value.output.output,
- metadata: value.output.metadata,
- title: value.output.title,
- time: {
- start: match.state.time.start,
- end: Date.now(),
- },
- },
- })
- delete toolcalls[value.toolCallId]
- }
- break
- }
- case "tool-error": {
- const match = toolcalls[value.toolCallId]
- if (match && match.state.status === "running") {
- await Session.updatePart({
- ...match,
- state: {
- status: "error",
- input: value.input,
- error: (value.error as any).toString(),
- metadata: value.error instanceof Permission.RejectedError ? value.error.metadata : undefined,
- time: {
- start: match.state.time.start,
- end: Date.now(),
- },
- },
- })
- if (value.error instanceof Permission.RejectedError) {
- blocked = true
- }
- delete toolcalls[value.toolCallId]
- }
- break
- }
- case "error":
- throw value.error
- case "start-step":
- await Session.updatePart({
- id: Identifier.ascending("part"),
- messageID: assistantMsg.id,
- sessionID: assistantMsg.sessionID,
- type: "step-start",
- })
- snapshot = await Snapshot.track()
- break
- case "finish-step":
- const usage = Session.getUsage(input.model, value.usage, value.providerMetadata)
- assistantMsg.cost += usage.cost
- assistantMsg.tokens = usage.tokens
- await Session.updatePart({
- id: Identifier.ascending("part"),
- messageID: assistantMsg.id,
- sessionID: assistantMsg.sessionID,
- type: "step-finish",
- tokens: usage.tokens,
- cost: usage.cost,
- })
- await Session.updateMessage(assistantMsg)
- if (snapshot) {
- const patch = await Snapshot.patch(snapshot)
- if (patch.files.length) {
- await Session.updatePart({
- id: Identifier.ascending("part"),
- messageID: assistantMsg.id,
- sessionID: assistantMsg.sessionID,
- type: "patch",
- hash: patch.hash,
- files: patch.files,
- })
- }
- snapshot = undefined
- }
- break
- case "text-start":
- currentText = {
- id: Identifier.ascending("part"),
- messageID: assistantMsg.id,
- sessionID: assistantMsg.sessionID,
- type: "text",
- text: "",
- time: {
- start: Date.now(),
- },
- metadata: value.providerMetadata,
- }
- break
- case "text-delta":
- if (currentText) {
- currentText.text += value.text
- if (value.providerMetadata) currentText.metadata = value.providerMetadata
- if (currentText.text) await Session.updatePart(currentText)
- }
- break
- case "text-end":
- if (currentText) {
- currentText.text = currentText.text.trimEnd()
- currentText.time = {
- start: Date.now(),
- end: Date.now(),
- }
- if (value.providerMetadata) currentText.metadata = value.providerMetadata
- await Session.updatePart(currentText)
- }
- currentText = undefined
- break
- case "finish":
- assistantMsg.time.completed = Date.now()
- await Session.updateMessage(assistantMsg)
- break
- default:
- log.info("unhandled", {
- ...value,
- })
- continue
- }
- }
- } catch (e) {
- log.error("process", {
- error: e,
- })
- switch (true) {
- case e instanceof DOMException && e.name === "AbortError":
- assistantMsg.error = new MessageV2.AbortedError(
- { message: e.message },
- {
- cause: e,
- },
- ).toObject()
- break
- case MessageV2.OutputLengthError.isInstance(e):
- assistantMsg.error = e
- break
- case LoadAPIKeyError.isInstance(e):
- assistantMsg.error = new MessageV2.AuthError(
- {
- providerID: input.providerID,
- message: e.message,
- },
- { cause: e },
- ).toObject()
- break
- case e instanceof Error:
- assistantMsg.error = new NamedError.Unknown({ message: e.toString() }, { cause: e }).toObject()
- break
- default:
- assistantMsg.error = new NamedError.Unknown({ message: JSON.stringify(e) }, { cause: e })
- }
- Bus.publish(Session.Event.Error, {
- sessionID: assistantMsg.sessionID,
- error: assistantMsg.error,
- })
- }
- const p = await Session.getParts(assistantMsg.id)
- for (const part of p) {
- if (part.type === "tool" && part.state.status !== "completed" && part.state.status !== "error") {
- Session.updatePart({
- ...part,
- state: {
- status: "error",
- error: "Tool execution aborted",
- time: {
- start: Date.now(),
- end: Date.now(),
- },
- input: {},
- },
- })
- }
- }
- assistantMsg.time.completed = Date.now()
- await Session.updateMessage(assistantMsg)
- return { info: assistantMsg, parts: p, blocked }
- },
- }
- return result
- }
- function isBusy(sessionID: string) {
- return state().pending.has(sessionID)
- }
- export function abort(sessionID: string) {
- const controller = state().pending.get(sessionID)
- if (!controller) return false
- log.info("aborting", {
- sessionID,
- })
- controller.abort()
- state().pending.delete(sessionID)
- return true
- }
- function lock(sessionID: string) {
- log.info("locking", { sessionID })
- if (state().pending.has(sessionID)) throw new Error("TODO")
- const controller = new AbortController()
- state().pending.set(sessionID, controller)
- return {
- signal: controller.signal,
- async [Symbol.dispose]() {
- log.info("unlocking", { sessionID })
- state().pending.delete(sessionID)
- const session = await Session.get(sessionID)
- if (session.parentID) return
- Bus.publish(Event.Idle, {
- sessionID,
- })
- },
- }
- }
- export const ShellInput = z.object({
- sessionID: Identifier.schema("session"),
- agent: z.string(),
- command: z.string(),
- })
- export type ShellInput = z.infer<typeof ShellInput>
- export async function shell(input: ShellInput) {
- using abort = lock(input.sessionID)
- const session = await Session.get(input.sessionID)
- if (session.revert) {
- SessionRevert.cleanup(session)
- }
- const userMsg: MessageV2.User = {
- id: Identifier.ascending("message"),
- sessionID: input.sessionID,
- time: {
- created: Date.now(),
- },
- role: "user",
- }
- await Session.updateMessage(userMsg)
- const userPart: MessageV2.Part = {
- type: "text",
- id: Identifier.ascending("part"),
- messageID: userMsg.id,
- sessionID: input.sessionID,
- text: "The following tool was executed by the user",
- synthetic: true,
- }
- await Session.updatePart(userPart)
- const msg: MessageV2.Assistant = {
- id: Identifier.ascending("message"),
- sessionID: input.sessionID,
- system: [],
- mode: input.agent,
- cost: 0,
- path: {
- cwd: Instance.directory,
- root: Instance.worktree,
- },
- time: {
- created: Date.now(),
- },
- role: "assistant",
- tokens: {
- input: 0,
- output: 0,
- reasoning: 0,
- cache: { read: 0, write: 0 },
- },
- modelID: "",
- providerID: "",
- }
- await Session.updateMessage(msg)
- const part: MessageV2.Part = {
- type: "tool",
- id: Identifier.ascending("part"),
- messageID: msg.id,
- sessionID: input.sessionID,
- tool: "bash",
- callID: ulid(),
- state: {
- status: "running",
- time: {
- start: Date.now(),
- },
- input: {
- command: input.command,
- },
- },
- }
- await Session.updatePart(part)
- const shell = process.env["SHELL"] ?? "bash"
- const shellName = path.basename(shell)
- const scripts: Record<string, string> = {
- nu: input.command,
- fish: `eval "${input.command}"`,
- }
- const script =
- scripts[shellName] ??
- `[[ -f ~/.zshenv ]] && source ~/.zshenv >/dev/null 2>&1 || true
- [[ -f "\${ZDOTDIR:-$HOME}/.zshrc" ]] && source "\${ZDOTDIR:-$HOME}/.zshrc" >/dev/null 2>&1 || true
- [[ -f ~/.bashrc ]] && source ~/.bashrc >/dev/null 2>&1 || true
- eval "${input.command}"`
- const isFishOrNu = shellName === "fish" || shellName === "nu"
- const args = isFishOrNu ? ["-c", script] : ["-c", "-l", script]
- const proc = spawn(shell, args, {
- cwd: Instance.directory,
- signal: abort.signal,
- detached: true,
- stdio: ["ignore", "pipe", "pipe"],
- env: {
- ...process.env,
- TERM: "dumb",
- },
- })
- abort.signal.addEventListener("abort", () => {
- if (!proc.pid) return
- process.kill(-proc.pid)
- })
- let output = ""
- proc.stdout?.on("data", (chunk) => {
- output += chunk.toString()
- if (part.state.status === "running") {
- part.state.metadata = {
- output: output,
- description: "",
- }
- Session.updatePart(part)
- }
- })
- proc.stderr?.on("data", (chunk) => {
- output += chunk.toString()
- if (part.state.status === "running") {
- part.state.metadata = {
- output: output,
- description: "",
- }
- Session.updatePart(part)
- }
- })
- await new Promise<void>((resolve) => {
- proc.on("close", () => {
- resolve()
- })
- })
- msg.time.completed = Date.now()
- await Session.updateMessage(msg)
- if (part.state.status === "running") {
- part.state = {
- status: "completed",
- time: {
- ...part.state.time,
- end: Date.now(),
- },
- input: part.state.input,
- title: "",
- metadata: {
- output,
- description: "",
- },
- output,
- }
- await Session.updatePart(part)
- }
- return { info: msg, parts: [part] }
- }
- export const CommandInput = z.object({
- messageID: Identifier.schema("message").optional(),
- sessionID: Identifier.schema("session"),
- agent: z.string().optional(),
- model: z.string().optional(),
- arguments: z.string(),
- command: z.string(),
- })
- export type CommandInput = z.infer<typeof CommandInput>
- const bashRegex = /!`([^`]+)`/g
- /**
- * Regular expression to match @ file references in text
- * Matches @ followed by file paths, excluding commas, periods at end of sentences, and backticks
- * Does not match when preceded by word characters or backticks (to avoid email addresses and quoted references)
- */
- export async function command(input: CommandInput) {
- log.info("command", input)
- const command = await Command.get(input.command)
- const agentName = command.agent ?? input.agent ?? "build"
- let template = command.template.replace("$ARGUMENTS", input.arguments)
- const shell = ConfigMarkdown.shell(template)
- if (shell.length > 0) {
- const results = await Promise.all(
- shell.map(async ([, cmd]) => {
- try {
- return await $`${{ raw: cmd }}`.nothrow().text()
- } catch (error) {
- return `Error executing command: ${error instanceof Error ? error.message : String(error)}`
- }
- }),
- )
- let index = 0
- template = template.replace(bashRegex, () => results[index++])
- }
- const parts = [
- {
- type: "text",
- text: template,
- },
- ] as PromptInput["parts"]
- const files = ConfigMarkdown.files(template)
- await Promise.all(
- files.map(async (match) => {
- const name = match[1]
- const filepath = name.startsWith("~/")
- ? path.join(os.homedir(), name.slice(2))
- : path.resolve(Instance.worktree, name)
- const stats = await fs.stat(filepath).catch(() => undefined)
- if (!stats) {
- const agent = await Agent.get(name)
- if (agent) {
- parts.push({
- type: "agent",
- name: agent.name,
- })
- }
- return
- }
- if (stats.isDirectory()) {
- parts.push({
- type: "file",
- url: `file://${filepath}`,
- filename: name,
- mime: "application/x-directory",
- })
- return
- }
- parts.push({
- type: "file",
- url: `file://${filepath}`,
- filename: name,
- mime: "text/plain",
- })
- }),
- )
- const model = await (async () => {
- if (command.model) {
- return Provider.parseModel(command.model)
- }
- if (command.agent) {
- const cmdAgent = await Agent.get(command.agent)
- if (cmdAgent.model) {
- return cmdAgent.model
- }
- }
- if (input.model) {
- return Provider.parseModel(input.model)
- }
- return await Provider.defaultModel()
- })()
- const agent = await Agent.get(agentName)
- if ((agent.mode === "subagent" && command.subtask !== false) || command.subtask === true) {
- using abort = lock(input.sessionID)
- const userMsg: MessageV2.User = {
- id: Identifier.ascending("message"),
- sessionID: input.sessionID,
- time: {
- created: Date.now(),
- },
- role: "user",
- }
- await Session.updateMessage(userMsg)
- const userPart: MessageV2.Part = {
- type: "text",
- id: Identifier.ascending("part"),
- messageID: userMsg.id,
- sessionID: input.sessionID,
- text: "The following tool was executed by the user",
- synthetic: true,
- }
- await Session.updatePart(userPart)
- const assistantMsg: MessageV2.Assistant = {
- id: Identifier.ascending("message"),
- sessionID: input.sessionID,
- system: [],
- mode: agentName,
- cost: 0,
- path: {
- cwd: Instance.directory,
- root: Instance.worktree,
- },
- time: {
- created: Date.now(),
- },
- role: "assistant",
- tokens: {
- input: 0,
- output: 0,
- reasoning: 0,
- cache: { read: 0, write: 0 },
- },
- modelID: model.modelID,
- providerID: model.providerID,
- }
- await Session.updateMessage(assistantMsg)
- const args = {
- description: "Consulting " + agent.name,
- subagent_type: agent.name,
- prompt: template,
- }
- const toolPart: MessageV2.ToolPart = {
- type: "tool",
- id: Identifier.ascending("part"),
- messageID: assistantMsg.id,
- sessionID: input.sessionID,
- tool: "task",
- callID: ulid(),
- state: {
- status: "running",
- time: {
- start: Date.now(),
- },
- input: {
- description: args.description,
- subagent_type: args.subagent_type,
- // truncate prompt to preserve context
- prompt: args.prompt.length > 100 ? args.prompt.substring(0, 97) + "..." : args.prompt,
- },
- },
- }
- await Session.updatePart(toolPart)
- const result = await TaskTool.init().then((t) =>
- t.execute(args, {
- sessionID: input.sessionID,
- abort: abort.signal,
- agent: agent.name,
- messageID: assistantMsg.id,
- extra: {},
- metadata: async (metadata) => {
- if (toolPart.state.status === "running") {
- toolPart.state.metadata = metadata.metadata
- toolPart.state.title = metadata.title
- await Session.updatePart(toolPart)
- }
- },
- }),
- )
- assistantMsg.time.completed = Date.now()
- await Session.updateMessage(assistantMsg)
- if (toolPart.state.status === "running") {
- toolPart.state = {
- status: "completed",
- time: {
- ...toolPart.state.time,
- end: Date.now(),
- },
- input: toolPart.state.input,
- title: "",
- metadata: result.metadata,
- output: result.output,
- }
- await Session.updatePart(toolPart)
- }
- return { info: assistantMsg, parts: [toolPart] }
- }
- return prompt({
- sessionID: input.sessionID,
- messageID: input.messageID,
- model,
- agent: agentName,
- parts,
- })
- }
- async function ensureTitle(input: {
- session: Session.Info
- message: MessageV2.WithParts
- history: MessageV2.WithParts[]
- providerID: string
- modelID: string
- }) {
- if (input.session.parentID) return
- const isFirst =
- input.history.filter((m) => m.info.role === "user" && !m.parts.every((p) => "synthetic" in p && p.synthetic))
- .length === 1
- if (!isFirst) return
- const small =
- (await Provider.getSmallModel(input.providerID)) ?? (await Provider.getModel(input.providerID, input.modelID))
- const options = {
- ...ProviderTransform.options(small.providerID, small.modelID, input.session.id),
- ...small.info.options,
- }
- if (small.providerID === "openai" || small.modelID.includes("gpt-5")) {
- options["reasoningEffort"] = "minimal"
- }
- if (small.providerID === "google") {
- options["thinkingConfig"] = {
- thinkingBudget: 0,
- }
- }
- generateText({
- maxOutputTokens: small.info.reasoning ? 1500 : 20,
- providerOptions: {
- [small.providerID]: options,
- },
- messages: [
- ...SystemPrompt.title(small.providerID).map(
- (x): ModelMessage => ({
- role: "system",
- content: x,
- }),
- ),
- ...MessageV2.toModelMessage([
- {
- info: {
- id: Identifier.ascending("message"),
- role: "user",
- sessionID: input.session.id,
- time: {
- created: Date.now(),
- },
- },
- parts: input.message.parts,
- },
- ]),
- ],
- model: small.language,
- })
- .then((result) => {
- if (result.text)
- return Session.update(input.session.id, (draft) => {
- const cleaned = result.text.replace(/<think>[\s\S]*?<\/think>\s*/g, "")
- const title = cleaned.length > 100 ? cleaned.substring(0, 97) + "..." : cleaned
- draft.title = title.trim()
- })
- })
- .catch((error) => {
- log.error("failed to generate title", { error, model: small.info.id })
- })
- }
- }
|