| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815 |
- import path from "path"
- import os from "os"
- import fs from "fs/promises"
- import z from "zod"
- 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 { type Tool as AITool, tool, jsonSchema, type ToolCallOptions } 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 MAX_STEPS from "../session/prompt/max-steps.txt"
- import { defer } from "../util/defer"
- import { clone } from "remeda"
- import { ToolRegistry } from "../tool/registry"
- import { MCP } from "../mcp"
- import { LSP } from "../lsp"
- import { ReadTool } from "../tool/read"
- import { ListTool } from "../tool/ls"
- import { FileTime } from "../file/time"
- import { Flag } from "../flag/flag"
- import { ulid } from "ulid"
- import { spawn } from "child_process"
- import { Command } from "../command"
- import { $, fileURLToPath } from "bun"
- import { ConfigMarkdown } from "../config/markdown"
- import { SessionSummary } from "./summary"
- import { NamedError } from "@opencode-ai/util/error"
- import { fn } from "@/util/fn"
- import { SessionProcessor } from "./processor"
- import { TaskTool } from "@/tool/task"
- import { Tool } from "@/tool/tool"
- import { PermissionNext } from "@/permission/next"
- import { SessionStatus } from "./status"
- import { LLM } from "./llm"
- import { iife } from "@/util/iife"
- import { Shell } from "@/shell/shell"
- import { Truncate } from "@/tool/truncation"
- // @ts-ignore
- globalThis.AI_SDK_LOG_WARNINGS = false
- export namespace SessionPrompt {
- const log = Log.create({ service: "session.prompt" })
- export const OUTPUT_TOKEN_MAX = Flag.OPENCODE_EXPERIMENTAL_OUTPUT_TOKEN_MAX || 32_000
- const state = Instance.state(
- () => {
- const data: Record<
- string,
- {
- abort: AbortController
- callbacks: {
- resolve(input: MessageV2.WithParts): void
- reject(): void
- }[]
- }
- > = {}
- return data
- },
- async (current) => {
- for (const item of Object.values(current)) {
- item.abort.abort()
- for (const callback of item.callbacks) {
- callback.reject()
- }
- }
- },
- )
- export function assertNotBusy(sessionID: string) {
- const match = state()[sessionID]
- if (match) throw new Session.BusyError(sessionID)
- }
- 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(),
- noReply: z.boolean().optional(),
- tools: z
- .record(z.string(), z.boolean())
- .optional()
- .describe(
- "@deprecated tools and permissions have been merged, you can set permissions on the session itself now",
- ),
- system: z.string().optional(),
- variant: z.string().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",
- }),
- MessageV2.SubtaskPart.omit({
- messageID: true,
- sessionID: true,
- })
- .partial({
- id: true,
- })
- .meta({
- ref: "SubtaskPartInput",
- }),
- ]),
- ),
- })
- export type PromptInput = z.infer<typeof PromptInput>
- export const prompt = fn(PromptInput, async (input) => {
- const session = await Session.get(input.sessionID)
- await SessionRevert.cleanup(session)
- const message = await createUserMessage(input)
- await Session.touch(input.sessionID)
- // this is backwards compatibility for allowing `tools` to be specified when
- // prompting
- const permissions: PermissionNext.Ruleset = []
- for (const [tool, enabled] of Object.entries(input.tools ?? {})) {
- permissions.push({
- permission: tool,
- action: enabled ? "allow" : "deny",
- pattern: "*",
- })
- }
- if (permissions.length > 0) {
- session.permission = permissions
- await Session.update(session.id, (draft) => {
- draft.permission = permissions
- })
- }
- if (input.noReply === true) {
- return message
- }
- return loop(input.sessionID)
- })
- export async function resolvePromptParts(template: string): Promise<PromptInput["parts"]> {
- const parts: PromptInput["parts"] = [
- {
- type: "text",
- text: template,
- },
- ]
- const files = ConfigMarkdown.files(template)
- const seen = new Set<string>()
- await Promise.all(
- files.map(async (match) => {
- const name = match[1]
- if (seen.has(name)) return
- seen.add(name)
- 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",
- })
- }),
- )
- return parts
- }
- function start(sessionID: string) {
- const s = state()
- if (s[sessionID]) return
- const controller = new AbortController()
- s[sessionID] = {
- abort: controller,
- callbacks: [],
- }
- return controller.signal
- }
- export function cancel(sessionID: string) {
- log.info("cancel", { sessionID })
- const s = state()
- const match = s[sessionID]
- if (!match) return
- match.abort.abort()
- for (const item of match.callbacks) {
- item.reject()
- }
- delete s[sessionID]
- SessionStatus.set(sessionID, { type: "idle" })
- return
- }
- export const loop = fn(Identifier.schema("session"), async (sessionID) => {
- const abort = start(sessionID)
- if (!abort) {
- return new Promise<MessageV2.WithParts>((resolve, reject) => {
- const callbacks = state()[sessionID].callbacks
- callbacks.push({ resolve, reject })
- })
- }
- using _ = defer(() => cancel(sessionID))
- let step = 0
- const session = await Session.get(sessionID)
- while (true) {
- SessionStatus.set(sessionID, { type: "busy" })
- log.info("loop", { step, sessionID })
- if (abort.aborted) break
- let msgs = await MessageV2.filterCompacted(MessageV2.stream(sessionID))
- let lastUser: MessageV2.User | undefined
- let lastAssistant: MessageV2.Assistant | undefined
- let lastFinished: MessageV2.Assistant | undefined
- let tasks: (MessageV2.CompactionPart | MessageV2.SubtaskPart)[] = []
- for (let i = msgs.length - 1; i >= 0; i--) {
- const msg = msgs[i]
- if (!lastUser && msg.info.role === "user") lastUser = msg.info as MessageV2.User
- if (!lastAssistant && msg.info.role === "assistant") lastAssistant = msg.info as MessageV2.Assistant
- if (!lastFinished && msg.info.role === "assistant" && msg.info.finish)
- lastFinished = msg.info as MessageV2.Assistant
- if (lastUser && lastFinished) break
- const task = msg.parts.filter((part) => part.type === "compaction" || part.type === "subtask")
- if (task && !lastFinished) {
- tasks.push(...task)
- }
- }
- if (!lastUser) throw new Error("No user message found in stream. This should never happen.")
- if (
- lastAssistant?.finish &&
- !["tool-calls", "unknown"].includes(lastAssistant.finish) &&
- lastUser.id < lastAssistant.id
- ) {
- log.info("exiting loop", { sessionID })
- break
- }
- step++
- if (step === 1)
- ensureTitle({
- session,
- modelID: lastUser.model.modelID,
- providerID: lastUser.model.providerID,
- history: msgs,
- })
- const model = await Provider.getModel(lastUser.model.providerID, lastUser.model.modelID)
- const task = tasks.pop()
- // pending subtask
- // TODO: centralize "invoke tool" logic
- if (task?.type === "subtask") {
- const taskTool = await TaskTool.init()
- const taskModel = task.model ? await Provider.getModel(task.model.providerID, task.model.modelID) : model
- const assistantMessage = (await Session.updateMessage({
- id: Identifier.ascending("message"),
- role: "assistant",
- parentID: lastUser.id,
- sessionID,
- mode: task.agent,
- agent: task.agent,
- path: {
- cwd: Instance.directory,
- root: Instance.worktree,
- },
- cost: 0,
- tokens: {
- input: 0,
- output: 0,
- reasoning: 0,
- cache: { read: 0, write: 0 },
- },
- modelID: taskModel.id,
- providerID: taskModel.providerID,
- time: {
- created: Date.now(),
- },
- })) as MessageV2.Assistant
- let part = (await Session.updatePart({
- id: Identifier.ascending("part"),
- messageID: assistantMessage.id,
- sessionID: assistantMessage.sessionID,
- type: "tool",
- callID: ulid(),
- tool: TaskTool.id,
- state: {
- status: "running",
- input: {
- prompt: task.prompt,
- description: task.description,
- subagent_type: task.agent,
- command: task.command,
- },
- time: {
- start: Date.now(),
- },
- },
- })) as MessageV2.ToolPart
- const taskArgs = {
- prompt: task.prompt,
- description: task.description,
- subagent_type: task.agent,
- command: task.command,
- }
- await Plugin.trigger(
- "tool.execute.before",
- {
- tool: "task",
- sessionID,
- callID: part.id,
- },
- { args: taskArgs },
- )
- let executionError: Error | undefined
- const taskAgent = await Agent.get(task.agent)
- const taskCtx: Tool.Context = {
- agent: task.agent,
- messageID: assistantMessage.id,
- sessionID: sessionID,
- abort,
- callID: part.callID,
- extra: { bypassAgentCheck: true },
- async metadata(input) {
- await Session.updatePart({
- ...part,
- type: "tool",
- state: {
- ...part.state,
- ...input,
- },
- } satisfies MessageV2.ToolPart)
- },
- async ask(req) {
- await PermissionNext.ask({
- ...req,
- sessionID: sessionID,
- ruleset: PermissionNext.merge(taskAgent.permission, session.permission ?? []),
- })
- },
- }
- const result = await taskTool.execute(taskArgs, taskCtx).catch((error) => {
- executionError = error
- log.error("subtask execution failed", { error, agent: task.agent, description: task.description })
- return undefined
- })
- await Plugin.trigger(
- "tool.execute.after",
- {
- tool: "task",
- sessionID,
- callID: part.id,
- },
- result,
- )
- assistantMessage.finish = "tool-calls"
- assistantMessage.time.completed = Date.now()
- await Session.updateMessage(assistantMessage)
- if (result && part.state.status === "running") {
- await Session.updatePart({
- ...part,
- state: {
- status: "completed",
- input: part.state.input,
- title: result.title,
- metadata: result.metadata,
- output: result.output,
- attachments: result.attachments,
- time: {
- ...part.state.time,
- end: Date.now(),
- },
- },
- } satisfies MessageV2.ToolPart)
- }
- if (!result) {
- await Session.updatePart({
- ...part,
- state: {
- status: "error",
- error: executionError ? `Tool execution failed: ${executionError.message}` : "Tool execution failed",
- time: {
- start: part.state.status === "running" ? part.state.time.start : Date.now(),
- end: Date.now(),
- },
- metadata: part.metadata,
- input: part.state.input,
- },
- } satisfies MessageV2.ToolPart)
- }
- if (task.command) {
- // Add synthetic user message to prevent certain reasoning models from erroring
- // If we create assistant messages w/ out user ones following mid loop thinking signatures
- // will be missing and it can cause errors for models like gemini for example
- const summaryUserMsg: MessageV2.User = {
- id: Identifier.ascending("message"),
- sessionID,
- role: "user",
- time: {
- created: Date.now(),
- },
- agent: lastUser.agent,
- model: lastUser.model,
- }
- await Session.updateMessage(summaryUserMsg)
- await Session.updatePart({
- id: Identifier.ascending("part"),
- messageID: summaryUserMsg.id,
- sessionID,
- type: "text",
- text: "Summarize the task tool output above and continue with your task.",
- synthetic: true,
- } satisfies MessageV2.TextPart)
- }
- continue
- }
- // pending compaction
- if (task?.type === "compaction") {
- const result = await SessionCompaction.process({
- messages: msgs,
- parentID: lastUser.id,
- abort,
- sessionID,
- auto: task.auto,
- })
- if (result === "stop") break
- continue
- }
- // context overflow, needs compaction
- if (
- lastFinished &&
- lastFinished.summary !== true &&
- (await SessionCompaction.isOverflow({ tokens: lastFinished.tokens, model }))
- ) {
- await SessionCompaction.create({
- sessionID,
- agent: lastUser.agent,
- model: lastUser.model,
- auto: true,
- })
- continue
- }
- // normal processing
- const agent = await Agent.get(lastUser.agent)
- const maxSteps = agent.steps ?? Infinity
- const isLastStep = step >= maxSteps
- msgs = await insertReminders({
- messages: msgs,
- agent,
- session,
- })
- const processor = SessionProcessor.create({
- assistantMessage: (await Session.updateMessage({
- id: Identifier.ascending("message"),
- parentID: lastUser.id,
- role: "assistant",
- mode: agent.name,
- agent: agent.name,
- path: {
- cwd: Instance.directory,
- root: Instance.worktree,
- },
- cost: 0,
- tokens: {
- input: 0,
- output: 0,
- reasoning: 0,
- cache: { read: 0, write: 0 },
- },
- modelID: model.id,
- providerID: model.providerID,
- time: {
- created: Date.now(),
- },
- sessionID,
- })) as MessageV2.Assistant,
- sessionID: sessionID,
- model,
- abort,
- })
- // Check if user explicitly invoked an agent via @ in this turn
- const lastUserMsg = msgs.findLast((m) => m.info.role === "user")
- const bypassAgentCheck = lastUserMsg?.parts.some((p) => p.type === "agent") ?? false
- const tools = await resolveTools({
- agent,
- session,
- model,
- tools: lastUser.tools,
- processor,
- bypassAgentCheck,
- })
- if (step === 1) {
- SessionSummary.summarize({
- sessionID: sessionID,
- messageID: lastUser.id,
- })
- }
- const sessionMessages = clone(msgs)
- // Ephemerally wrap queued user messages with a reminder to stay on track
- if (step > 1 && lastFinished) {
- for (const msg of sessionMessages) {
- if (msg.info.role !== "user" || msg.info.id <= lastFinished.id) continue
- for (const part of msg.parts) {
- if (part.type !== "text" || part.ignored || part.synthetic) continue
- if (!part.text.trim()) continue
- part.text = [
- "<system-reminder>",
- "The user sent the following message:",
- part.text,
- "",
- "Please address this message and continue with your tasks.",
- "</system-reminder>",
- ].join("\n")
- }
- }
- }
- await Plugin.trigger("experimental.chat.messages.transform", {}, { messages: sessionMessages })
- const result = await processor.process({
- user: lastUser,
- agent,
- abort,
- sessionID,
- system: [...(await SystemPrompt.environment(model)), ...(await SystemPrompt.custom())],
- messages: [
- ...MessageV2.toModelMessages(sessionMessages, model),
- ...(isLastStep
- ? [
- {
- role: "assistant" as const,
- content: MAX_STEPS,
- },
- ]
- : []),
- ],
- tools,
- model,
- })
- if (result === "stop") break
- if (result === "compact") {
- await SessionCompaction.create({
- sessionID,
- agent: lastUser.agent,
- model: lastUser.model,
- auto: true,
- })
- }
- continue
- }
- SessionCompaction.prune({ sessionID })
- for await (const item of MessageV2.stream(sessionID)) {
- if (item.info.role === "user") continue
- const queued = state()[sessionID]?.callbacks ?? []
- for (const q of queued) {
- q.resolve(item)
- }
- return item
- }
- throw new Error("Impossible")
- })
- async function lastModel(sessionID: string) {
- for await (const item of MessageV2.stream(sessionID)) {
- if (item.info.role === "user" && item.info.model) return item.info.model
- }
- return Provider.defaultModel()
- }
- async function resolveTools(input: {
- agent: Agent.Info
- model: Provider.Model
- session: Session.Info
- tools?: Record<string, boolean>
- processor: SessionProcessor.Info
- bypassAgentCheck: boolean
- }) {
- using _ = log.time("resolveTools")
- const tools: Record<string, AITool> = {}
- const context = (args: any, options: ToolCallOptions): Tool.Context => ({
- sessionID: input.session.id,
- abort: options.abortSignal!,
- messageID: input.processor.message.id,
- callID: options.toolCallId,
- extra: { model: input.model, bypassAgentCheck: input.bypassAgentCheck },
- agent: input.agent.name,
- metadata: async (val: { title?: string; metadata?: any }) => {
- 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(),
- },
- },
- })
- }
- },
- async ask(req) {
- await PermissionNext.ask({
- ...req,
- sessionID: input.session.id,
- tool: { messageID: input.processor.message.id, callID: options.toolCallId },
- ruleset: PermissionNext.merge(input.agent.permission, input.session.permission ?? []),
- })
- },
- })
- for (const item of await ToolRegistry.tools(
- { modelID: input.model.api.id, providerID: input.model.providerID },
- input.agent,
- )) {
- const schema = ProviderTransform.schema(input.model, 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) {
- const ctx = context(args, options)
- await Plugin.trigger(
- "tool.execute.before",
- {
- tool: item.id,
- sessionID: ctx.sessionID,
- callID: ctx.callID,
- },
- {
- args,
- },
- )
- const result = await item.execute(args, ctx)
- await Plugin.trigger(
- "tool.execute.after",
- {
- tool: item.id,
- sessionID: ctx.sessionID,
- callID: ctx.callID,
- },
- result,
- )
- return result
- },
- })
- }
- for (const [key, item] of Object.entries(await MCP.tools())) {
- const execute = item.execute
- if (!execute) continue
- // Wrap execute to add plugin hooks and format output
- item.execute = async (args, opts) => {
- const ctx = context(args, opts)
- await Plugin.trigger(
- "tool.execute.before",
- {
- tool: key,
- sessionID: ctx.sessionID,
- callID: opts.toolCallId,
- },
- {
- args,
- },
- )
- await ctx.ask({
- permission: key,
- metadata: {},
- patterns: ["*"],
- always: ["*"],
- })
- const result = await execute(args, opts)
- await Plugin.trigger(
- "tool.execute.after",
- {
- tool: key,
- sessionID: ctx.sessionID,
- callID: opts.toolCallId,
- },
- result,
- )
- const textParts: string[] = []
- const attachments: MessageV2.FilePart[] = []
- for (const contentItem of result.content) {
- if (contentItem.type === "text") {
- textParts.push(contentItem.text)
- } else if (contentItem.type === "image") {
- attachments.push({
- id: Identifier.ascending("part"),
- sessionID: input.session.id,
- messageID: input.processor.message.id,
- type: "file",
- mime: contentItem.mimeType,
- url: `data:${contentItem.mimeType};base64,${contentItem.data}`,
- })
- } else if (contentItem.type === "resource") {
- const { resource } = contentItem
- if (resource.text) {
- textParts.push(resource.text)
- }
- if (resource.blob) {
- attachments.push({
- id: Identifier.ascending("part"),
- sessionID: input.session.id,
- messageID: input.processor.message.id,
- type: "file",
- mime: resource.mimeType ?? "application/octet-stream",
- url: `data:${resource.mimeType ?? "application/octet-stream"};base64,${resource.blob}`,
- filename: resource.uri,
- })
- }
- }
- }
- const truncated = await Truncate.output(textParts.join("\n\n"), {}, input.agent)
- const metadata = {
- ...(result.metadata ?? {}),
- truncated: truncated.truncated,
- ...(truncated.truncated && { outputPath: truncated.outputPath }),
- }
- return {
- title: "",
- metadata,
- output: truncated.content,
- attachments,
- content: result.content, // directly return content to preserve ordering when outputting to model
- }
- }
- tools[key] = item
- }
- return tools
- }
- async function createUserMessage(input: PromptInput) {
- const agent = await Agent.get(input.agent ?? (await Agent.defaultAgent()))
- const info: MessageV2.Info = {
- id: input.messageID ?? Identifier.ascending("message"),
- role: "user",
- sessionID: input.sessionID,
- time: {
- created: Date.now(),
- },
- tools: input.tools,
- agent: agent.name,
- model: input.model ?? agent.model ?? (await lastModel(input.sessionID)),
- system: input.system,
- variant: input.variant,
- }
- const parts = await Promise.all(
- input.parts.map(async (part): Promise<MessageV2.Part[]> => {
- if (part.type === "file") {
- // before checking the protocol we check if this is an mcp resource because it needs special handling
- if (part.source?.type === "resource") {
- const { clientName, uri } = part.source
- log.info("mcp resource", { clientName, uri, mime: part.mime })
- const pieces: MessageV2.Part[] = [
- {
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: `Reading MCP resource: ${part.filename} (${uri})`,
- },
- ]
- try {
- const resourceContent = await MCP.readResource(clientName, uri)
- if (!resourceContent) {
- throw new Error(`Resource not found: ${clientName}/${uri}`)
- }
- // Handle different content types
- const contents = Array.isArray(resourceContent.contents)
- ? resourceContent.contents
- : [resourceContent.contents]
- for (const content of contents) {
- if ("text" in content && content.text) {
- pieces.push({
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: content.text as string,
- })
- } else if ("blob" in content && content.blob) {
- // Handle binary content if needed
- const mimeType = "mimeType" in content ? content.mimeType : part.mime
- pieces.push({
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: `[Binary content: ${mimeType}]`,
- })
- }
- }
- pieces.push({
- ...part,
- id: part.id ?? Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- })
- } catch (error: unknown) {
- log.error("failed to read MCP resource", { error, clientName, uri })
- const message = error instanceof Error ? error.message : String(error)
- pieces.push({
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: `Failed to read MCP resource ${part.filename}: ${message}`,
- })
- }
- return pieces
- }
- 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 = fileURLToPath(part.url)
- 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 filePathURI = 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(filePathURI)
- 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 pieces: MessageV2.Part[] = [
- {
- 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)}`,
- },
- ]
- await ReadTool.init()
- .then(async (t) => {
- const model = await Provider.getModel(info.model.providerID, info.model.modelID)
- const readCtx: Tool.Context = {
- sessionID: input.sessionID,
- abort: new AbortController().signal,
- agent: input.agent!,
- messageID: info.id,
- extra: { bypassCwdCheck: true, model },
- metadata: async () => {},
- ask: async () => {},
- }
- const result = await t.execute(args, readCtx)
- pieces.push({
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: result.output,
- })
- if (result.attachments?.length) {
- pieces.push(
- ...result.attachments.map((attachment) => ({
- ...attachment,
- synthetic: true,
- filename: attachment.filename ?? part.filename,
- messageID: info.id,
- sessionID: input.sessionID,
- })),
- )
- } else {
- pieces.push({
- ...part,
- id: part.id ?? Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- })
- }
- })
- .catch((error) => {
- log.error("failed to read file", { error })
- const message = error instanceof Error ? error.message : error.toString()
- Bus.publish(Session.Event.Error, {
- sessionID: input.sessionID,
- error: new NamedError.Unknown({
- message,
- }).toObject(),
- })
- pieces.push({
- id: Identifier.ascending("part"),
- messageID: info.id,
- sessionID: input.sessionID,
- type: "text",
- synthetic: true,
- text: `Read tool failed to read ${filepath} with the following error: ${message}`,
- })
- })
- return pieces
- }
- if (part.mime === "application/x-directory") {
- const args = { path: filepath }
- const listCtx: Tool.Context = {
- sessionID: input.sessionID,
- abort: new AbortController().signal,
- agent: input.agent!,
- messageID: info.id,
- extra: { bypassCwdCheck: true },
- metadata: async () => {},
- ask: async () => {},
- }
- const result = await ListTool.init().then((t) => t.execute(args, listCtx))
- 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") {
- // Check if this agent would be denied by task permission
- const perm = PermissionNext.evaluate("task", part.name, agent.permission)
- const hint = perm.action === "deny" ? " . Invoked by user; guaranteed to exist." : ""
- 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,
- // An extra space is added here. Otherwise the 'Use' gets appended
- // to user's last word; making a combined word
- text:
- " Use the above message and context to generate a prompt and call the task tool with subagent: " +
- part.name +
- hint,
- },
- ]
- }
- return [
- {
- id: Identifier.ascending("part"),
- ...part,
- messageID: info.id,
- sessionID: input.sessionID,
- },
- ]
- }),
- ).then((x) => x.flat())
- await Plugin.trigger(
- "chat.message",
- {
- sessionID: input.sessionID,
- agent: input.agent,
- model: input.model,
- messageID: input.messageID,
- variant: input.variant,
- },
- {
- message: info,
- parts,
- },
- )
- await Session.updateMessage(info)
- for (const part of parts) {
- await Session.updatePart(part)
- }
- return {
- info,
- parts,
- }
- }
- async function insertReminders(input: { messages: MessageV2.WithParts[]; agent: Agent.Info; session: Session.Info }) {
- const userMessage = input.messages.findLast((msg) => msg.info.role === "user")
- if (!userMessage) return input.messages
- // Original logic when experimental plan mode is disabled
- if (!Flag.OPENCODE_EXPERIMENTAL_PLAN_MODE) {
- 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.agent === "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
- }
- // New plan mode logic when flag is enabled
- const assistantMessage = input.messages.findLast((msg) => msg.info.role === "assistant")
- // Switching from plan mode to build mode
- if (input.agent.name !== "plan" && assistantMessage?.info.agent === "plan") {
- const plan = Session.plan(input.session)
- const exists = await Bun.file(plan).exists()
- if (exists) {
- const part = await Session.updatePart({
- id: Identifier.ascending("part"),
- messageID: userMessage.info.id,
- sessionID: userMessage.info.sessionID,
- type: "text",
- text:
- BUILD_SWITCH + "\n\n" + `A plan file exists at ${plan}. You should execute on the plan defined within it`,
- synthetic: true,
- })
- userMessage.parts.push(part)
- }
- return input.messages
- }
- // Entering plan mode
- if (input.agent.name === "plan" && assistantMessage?.info.agent !== "plan") {
- const plan = Session.plan(input.session)
- const exists = await Bun.file(plan).exists()
- if (!exists) await fs.mkdir(path.dirname(plan), { recursive: true })
- const part = await Session.updatePart({
- id: Identifier.ascending("part"),
- messageID: userMessage.info.id,
- sessionID: userMessage.info.sessionID,
- type: "text",
- text: `<system-reminder>
- Plan mode is active. The user indicated that they do not want you to execute yet -- you MUST NOT make any edits (with the exception of the plan file mentioned below), run any non-readonly tools (including changing configs or making commits), or otherwise make any changes to the system. This supersedes any other instructions you have received.
- ## Plan File Info:
- ${exists ? `A plan file already exists at ${plan}. You can read it and make incremental edits using the edit tool.` : `No plan file exists yet. You should create your plan at ${plan} using the write tool.`}
- You should build your plan incrementally by writing to or editing this file. NOTE that this is the only file you are allowed to edit - other than this you are only allowed to take READ-ONLY actions.
- ## Plan Workflow
- ### Phase 1: Initial Understanding
- Goal: Gain a comprehensive understanding of the user's request by reading through code and asking them questions. Critical: In this phase you should only use the explore subagent type.
- 1. Focus on understanding the user's request and the code associated with their request
- 2. **Launch up to 3 explore agents IN PARALLEL** (single message, multiple tool calls) to efficiently explore the codebase.
- - Use 1 agent when the task is isolated to known files, the user provided specific file paths, or you're making a small targeted change.
- - Use multiple agents when: the scope is uncertain, multiple areas of the codebase are involved, or you need to understand existing patterns before planning.
- - Quality over quantity - 3 agents maximum, but you should try to use the minimum number of agents necessary (usually just 1)
- - If using multiple agents: Provide each agent with a specific search focus or area to explore. Example: One agent searches for existing implementations, another explores related components, a third investigates testing patterns
- 3. After exploring the code, use the question tool to clarify ambiguities in the user request up front.
- ### Phase 2: Design
- Goal: Design an implementation approach.
- Launch general agent(s) to design the implementation based on the user's intent and your exploration results from Phase 1.
- You can launch up to 1 agent(s) in parallel.
- **Guidelines:**
- - **Default**: Launch at least 1 Plan agent for most tasks - it helps validate your understanding and consider alternatives
- - **Skip agents**: Only for truly trivial tasks (typo fixes, single-line changes, simple renames)
- Examples of when to use multiple agents:
- - The task touches multiple parts of the codebase
- - It's a large refactor or architectural change
- - There are many edge cases to consider
- - You'd benefit from exploring different approaches
- Example perspectives by task type:
- - New feature: simplicity vs performance vs maintainability
- - Bug fix: root cause vs workaround vs prevention
- - Refactoring: minimal change vs clean architecture
- In the agent prompt:
- - Provide comprehensive background context from Phase 1 exploration including filenames and code path traces
- - Describe requirements and constraints
- - Request a detailed implementation plan
- ### Phase 3: Review
- Goal: Review the plan(s) from Phase 2 and ensure alignment with the user's intentions.
- 1. Read the critical files identified by agents to deepen your understanding
- 2. Ensure that the plans align with the user's original request
- 3. Use question tool to clarify any remaining questions with the user
- ### Phase 4: Final Plan
- Goal: Write your final plan to the plan file (the only file you can edit).
- - Include only your recommended approach, not all alternatives
- - Ensure that the plan file is concise enough to scan quickly, but detailed enough to execute effectively
- - Include the paths of critical files to be modified
- - Include a verification section describing how to test the changes end-to-end (run the code, use MCP tools, run tests)
- ### Phase 5: Call plan_exit tool
- At the very end of your turn, once you have asked the user questions and are happy with your final plan file - you should always call plan_exit to indicate to the user that you are done planning.
- This is critical - your turn should only end with either asking the user a question or calling plan_exit. Do not stop unless it's for these 2 reasons.
- **Important:** Use question tool to clarify requirements/approach, use plan_exit to request plan approval. Do NOT use question tool to ask "Is this plan okay?" - that's what plan_exit does.
- NOTE: At any point in time through this workflow you should feel free to ask the user questions or clarifications. Don't make large assumptions about user intent. The goal is to present a well researched plan to the user, and tie any loose ends before implementation begins.
- </system-reminder>`,
- synthetic: true,
- })
- userMessage.parts.push(part)
- return input.messages
- }
- return input.messages
- }
- export const ShellInput = z.object({
- sessionID: Identifier.schema("session"),
- agent: z.string(),
- model: z
- .object({
- providerID: z.string(),
- modelID: z.string(),
- })
- .optional(),
- command: z.string(),
- })
- export type ShellInput = z.infer<typeof ShellInput>
- export async function shell(input: ShellInput) {
- const abort = start(input.sessionID)
- if (!abort) {
- throw new Session.BusyError(input.sessionID)
- }
- using _ = defer(() => cancel(input.sessionID))
- const session = await Session.get(input.sessionID)
- if (session.revert) {
- await SessionRevert.cleanup(session)
- }
- const agent = await Agent.get(input.agent)
- const model = input.model ?? agent.model ?? (await lastModel(input.sessionID))
- const userMsg: MessageV2.User = {
- id: Identifier.ascending("message"),
- sessionID: input.sessionID,
- time: {
- created: Date.now(),
- },
- role: "user",
- agent: input.agent,
- model: {
- providerID: model.providerID,
- modelID: model.modelID,
- },
- }
- 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,
- parentID: userMsg.id,
- mode: input.agent,
- agent: 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: model.modelID,
- providerID: model.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 = Shell.preferred()
- const shellName = (
- process.platform === "win32" ? path.win32.basename(shell, ".exe") : path.basename(shell)
- ).toLowerCase()
- const invocations: Record<string, { args: string[] }> = {
- nu: {
- args: ["-c", input.command],
- },
- fish: {
- args: ["-c", input.command],
- },
- zsh: {
- args: [
- "-c",
- "-l",
- `
- [[ -f ~/.zshenv ]] && source ~/.zshenv >/dev/null 2>&1 || true
- [[ -f "\${ZDOTDIR:-$HOME}/.zshrc" ]] && source "\${ZDOTDIR:-$HOME}/.zshrc" >/dev/null 2>&1 || true
- eval ${JSON.stringify(input.command)}
- `,
- ],
- },
- bash: {
- args: [
- "-c",
- "-l",
- `
- shopt -s expand_aliases
- [[ -f ~/.bashrc ]] && source ~/.bashrc >/dev/null 2>&1 || true
- eval ${JSON.stringify(input.command)}
- `,
- ],
- },
- // Windows cmd
- cmd: {
- args: ["/c", input.command],
- },
- // Windows PowerShell
- powershell: {
- args: ["-NoProfile", "-Command", input.command],
- },
- pwsh: {
- args: ["-NoProfile", "-Command", input.command],
- },
- // Fallback: any shell that doesn't match those above
- // - No -l, for max compatibility
- "": {
- args: ["-c", `${input.command}`],
- },
- }
- const matchingInvocation = invocations[shellName] ?? invocations[""]
- const args = matchingInvocation?.args
- const proc = spawn(shell, args, {
- cwd: Instance.directory,
- detached: process.platform !== "win32",
- stdio: ["ignore", "pipe", "pipe"],
- env: {
- ...process.env,
- TERM: "dumb",
- },
- })
- 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)
- }
- })
- let aborted = false
- let exited = false
- const kill = () => Shell.killTree(proc, { exited: () => exited })
- if (abort.aborted) {
- aborted = true
- await kill()
- }
- const abortHandler = () => {
- aborted = true
- void kill()
- }
- abort.addEventListener("abort", abortHandler, { once: true })
- await new Promise<void>((resolve) => {
- proc.on("close", () => {
- exited = true
- abort.removeEventListener("abort", abortHandler)
- resolve()
- })
- })
- if (aborted) {
- output += "\n\n" + ["<metadata>", "User aborted the command", "</metadata>"].join("\n")
- }
- 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(),
- variant: z.string().optional(),
- parts: z
- .array(
- z.discriminatedUnion("type", [
- MessageV2.FilePart.omit({
- messageID: true,
- sessionID: true,
- }).partial({
- id: true,
- }),
- ]),
- )
- .optional(),
- })
- export type CommandInput = z.infer<typeof CommandInput>
- const bashRegex = /!`([^`]+)`/g
- // Match [Image N] as single token, quoted strings, or non-space sequences
- const argsRegex = /(?:\[Image\s+\d+\]|"[^"]*"|'[^']*'|[^\s"']+)/gi
- const placeholderRegex = /\$(\d+)/g
- const quoteTrimRegex = /^["']|["']$/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 ?? (await Agent.defaultAgent())
- const raw = input.arguments.match(argsRegex) ?? []
- const args = raw.map((arg) => arg.replace(quoteTrimRegex, ""))
- const templateCommand = await command.template
- const placeholders = templateCommand.match(placeholderRegex) ?? []
- let last = 0
- for (const item of placeholders) {
- const value = Number(item.slice(1))
- if (value > last) last = value
- }
- // Let the final placeholder swallow any extra arguments so prompts read naturally
- const withArgs = templateCommand.replaceAll(placeholderRegex, (_, index) => {
- const position = Number(index)
- const argIndex = position - 1
- if (argIndex >= args.length) return ""
- if (position === last) return args.slice(argIndex).join(" ")
- return args[argIndex]
- })
- const usesArgumentsPlaceholder = templateCommand.includes("$ARGUMENTS")
- let template = withArgs.replaceAll("$ARGUMENTS", input.arguments)
- // If command doesn't explicitly handle arguments (no $N or $ARGUMENTS placeholders)
- // but user provided arguments, append them to the template
- if (placeholders.length === 0 && !usesArgumentsPlaceholder && input.arguments.trim()) {
- template = template + "\n\n" + 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 }}`.quiet().nothrow().text()
- } catch (error) {
- return `Error executing command: ${error instanceof Error ? error.message : String(error)}`
- }
- }),
- )
- let index = 0
- template = template.replace(bashRegex, () => results[index++])
- }
- template = template.trim()
- const taskModel = 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 lastModel(input.sessionID)
- })()
- try {
- await Provider.getModel(taskModel.providerID, taskModel.modelID)
- } catch (e) {
- if (Provider.ModelNotFoundError.isInstance(e)) {
- const { providerID, modelID, suggestions } = e.data
- const hint = suggestions?.length ? ` Did you mean: ${suggestions.join(", ")}?` : ""
- Bus.publish(Session.Event.Error, {
- sessionID: input.sessionID,
- error: new NamedError.Unknown({ message: `Model not found: ${providerID}/${modelID}.${hint}` }).toObject(),
- })
- }
- throw e
- }
- const agent = await Agent.get(agentName)
- if (!agent) {
- const available = await Agent.list().then((agents) => agents.filter((a) => !a.hidden).map((a) => a.name))
- const hint = available.length ? ` Available agents: ${available.join(", ")}` : ""
- const error = new NamedError.Unknown({ message: `Agent not found: "${agentName}".${hint}` })
- Bus.publish(Session.Event.Error, {
- sessionID: input.sessionID,
- error: error.toObject(),
- })
- throw error
- }
- const templateParts = await resolvePromptParts(template)
- const isSubtask = (agent.mode === "subagent" && command.subtask !== false) || command.subtask === true
- const parts = isSubtask
- ? [
- {
- type: "subtask" as const,
- agent: agent.name,
- description: command.description ?? "",
- command: input.command,
- model: {
- providerID: taskModel.providerID,
- modelID: taskModel.modelID,
- },
- // TODO: how can we make task tool accept a more complex input?
- prompt: templateParts.find((y) => y.type === "text")?.text ?? "",
- },
- ]
- : [...templateParts, ...(input.parts ?? [])]
- const userAgent = isSubtask ? (input.agent ?? (await Agent.defaultAgent())) : agentName
- const userModel = isSubtask
- ? input.model
- ? Provider.parseModel(input.model)
- : await lastModel(input.sessionID)
- : taskModel
- await Plugin.trigger(
- "command.execute.before",
- {
- command: input.command,
- sessionID: input.sessionID,
- arguments: input.arguments,
- },
- { parts },
- )
- const result = (await prompt({
- sessionID: input.sessionID,
- messageID: input.messageID,
- model: userModel,
- agent: userAgent,
- parts,
- variant: input.variant,
- })) as MessageV2.WithParts
- Bus.publish(Command.Event.Executed, {
- name: input.command,
- sessionID: input.sessionID,
- arguments: input.arguments,
- messageID: result.info.id,
- })
- return result
- }
- async function ensureTitle(input: {
- session: Session.Info
- history: MessageV2.WithParts[]
- providerID: string
- modelID: string
- }) {
- if (input.session.parentID) return
- if (!Session.isDefaultTitle(input.session.title)) return
- // Find first non-synthetic user message
- const firstRealUserIdx = input.history.findIndex(
- (m) => m.info.role === "user" && !m.parts.every((p) => "synthetic" in p && p.synthetic),
- )
- if (firstRealUserIdx === -1) 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
- // Gather all messages up to and including the first real user message for context
- // This includes any shell/subtask executions that preceded the user's first prompt
- const contextMessages = input.history.slice(0, firstRealUserIdx + 1)
- const firstRealUser = contextMessages[firstRealUserIdx]
- // For subtask-only messages (from command invocations), extract the prompt directly
- // since toModelMessage converts subtask parts to generic "The following tool was executed by the user"
- const subtaskParts = firstRealUser.parts.filter((p) => p.type === "subtask") as MessageV2.SubtaskPart[]
- const hasOnlySubtaskParts = subtaskParts.length > 0 && firstRealUser.parts.every((p) => p.type === "subtask")
- const agent = await Agent.get("title")
- if (!agent) return
- const model = await iife(async () => {
- if (agent.model) return await Provider.getModel(agent.model.providerID, agent.model.modelID)
- return (
- (await Provider.getSmallModel(input.providerID)) ?? (await Provider.getModel(input.providerID, input.modelID))
- )
- })
- const result = await LLM.stream({
- agent,
- user: firstRealUser.info as MessageV2.User,
- system: [],
- small: true,
- tools: {},
- model,
- abort: new AbortController().signal,
- sessionID: input.session.id,
- retries: 2,
- messages: [
- {
- role: "user",
- content: "Generate a title for this conversation:\n",
- },
- ...(hasOnlySubtaskParts
- ? [{ role: "user" as const, content: subtaskParts.map((p) => p.prompt).join("\n") }]
- : MessageV2.toModelMessages(contextMessages, model)),
- ],
- })
- const text = await result.text.catch((err) => log.error("failed to generate title", { error: err }))
- if (text)
- return Session.update(
- input.session.id,
- (draft) => {
- const cleaned = text
- .replace(/<think>[\s\S]*?<\/think>\s*/g, "")
- .split("\n")
- .map((line) => line.trim())
- .find((line) => line.length > 0)
- if (!cleaned) return
- const title = cleaned.length > 100 ? cleaned.substring(0, 97) + "..." : cleaned
- draft.title = title
- },
- { touch: false },
- )
- }
- }
|