@robota-sdk/agent-framework 3.0.0-beta.72 → 3.0.0-beta.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/index.cjs +37 -37
- package/dist/node/index.d.ts +131 -702
- package/dist/node/index.d.ts.map +1 -1
- package/dist/node/index.js +41 -41
- package/dist/node/index.js.map +1 -1
- package/package.json +11 -11
package/dist/node/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import{AuthenticationError as e,NetworkError as t,ProviderError as n,RateLimitError as r,collectAssistantUsageMetadata as i,createAssistantMessage as a,createSystemMessage as o,createUserMessage as s,findProviderDefinition as c,formatEnvReference as l,formatEnvReference as u,getProviderCredentialRequirement as d,hasUsableSecretReference as f,hasUsableSecretReference as p,isEnvReference as m,messageToHistoryEntry as h,resolveEnvReference as ee,runHooks as te}from"@robota-sdk/agent-core";import{BackgroundTaskManager as ne,SubagentManager as re,createDefaultBackgroundTaskRunners as ie,createProviderFromConfig as ae,isTerminalBackgroundTaskStatus as oe,normalizeProviderConfig as se}from"@robota-sdk/agent-executor";import{applyWorkspaceManifest as ce,createBashTool as le,createEditTool as ue,createReadTool as de,createWriteTool as fe,createZodFunctionTool as pe,globTool as me,grepTool as he,webFetchTool as ge,webSearchTool as _e}from"@robota-sdk/agent-tools";import{z as g}from"zod";import{AUTO_COMPACT_THRESHOLD as ve,FileSessionLogger as ye,Session as be,SessionStore as xe,loadSessionLogEntries as Se,replaySessionLogEntries as Ce,validateSessionReplayLogEntries as we}from"@robota-sdk/agent-session";import{createHash as Te,randomUUID as _}from"node:crypto";import{constants as Ee,cpSync as De,existsSync as v,lstatSync as Oe,mkdirSync as ke,readFileSync as y,readdirSync as Ae,renameSync as je,rmSync as Me,statSync as Ne,unlinkSync as Pe,writeFileSync as Fe}from"node:fs";import{access as Ie,copyFile as Le,mkdir as Re,readFile as ze,readdir as Be,realpath as Ve,rename as He,rm as Ue,stat as We,writeFile as Ge}from"node:fs/promises";import b,{basename as Ke,dirname as x,isAbsolute as qe,join as S,relative as C,resolve as w,sep as Je}from"node:path";import{homedir as T}from"node:os";import{appendFileSync as Ye,existsSync as E,mkdirSync as Xe,readFileSync as D,readdirSync as Ze,writeFileSync as Qe}from"fs";import{basename as $e,dirname as et,join as O,resolve as tt}from"path";import{fileURLToPath as nt}from"node:url";const rt=1e3;var it=class{manager;now;idFactory;unsubscribeManager;listeners=new Set;groups=new Map;sequence=0;constructor(e){this.manager=e.manager,this.now=e.now??(()=>new Date().toISOString()),this.idFactory=e.idFactory??(()=>this.nextGroupId()),this.sequence=e.initialGroups?.length??0;for(let t of e.initialGroups??[])this.restoreGroup(t);this.unsubscribeManager=this.manager.subscribe(e=>this.handleTaskEvent(e))}createGroup(e){let t=this.now(),n={id:this.idFactory(e),parentSessionId:e.parentSessionId,waitPolicy:e.waitPolicy,taskIds:[...e.taskIds],status:`running`,createdAt:t,updatedAt:t,results:[],...e.label?{label:e.label}:{}},r=this.createRecord(n);return this.groups.set(n.id,r),this.captureExistingTerminalTasks(r),this.emit({type:`background_job_group_created`,group:k(r.state)}),this.evaluateCompletion(r),k(r.state)}listGroups(){return[...this.groups.values()].map(e=>k(e.state))}getGroup(e){let t=this.groups.get(e);return t?k(t.state):void 0}waitGroup(e){let t=this.groups.get(e);return t?t.completion:Promise.reject(Error(`Unknown background job group: ${e}`))}subscribe(e){return this.listeners.add(e),()=>{this.listeners.delete(e)}}dispose(){this.unsubscribeManager(),this.listeners.clear()}nextGroupId(){return this.sequence+=1,`group_${this.sequence}`}restoreGroup(e){let t=this.createRecord(k(e));this.groups.set(e.id,t),e.status===`completed`&&t.resolve(k(e))}createRecord(e){let t=()=>{};return{state:e,completion:new Promise(e=>{t=e}),resolve:t}}captureExistingTerminalTasks(e){for(let t of e.state.taskIds){let n=this.manager.get(t);n&&oe(n.status)&&this.captureTask(e,n)}}handleTaskEvent(e){let t=at(e);if(t)for(let e of this.groups.values())e.state.taskIds.includes(t.id)&&this.captureTask(e,t)&&(e.state.status===`running`?this.evaluateCompletion(e):this.emit({type:`background_job_group_updated`,group:k(e.state)}))}captureTask(e,t){return e.state.results.some(e=>e.taskId===t.id)?!1:(e.state.results=[...e.state.results,st(t)],e.state.updatedAt=this.now(),!0)}evaluateCompletion(e){if(e.state.status===`completed`)return;if(!ot(e.state)){this.emit({type:`background_job_group_updated`,group:k(e.state)});return}let t=this.now();e.state.status=`completed`,e.state.completedAt=t,e.state.updatedAt=t;let n=k(e.state);e.resolve(n),this.emit({type:`background_job_group_completed`,group:n})}emit(e){for(let t of this.listeners)t(e)}};function at(e){if(e.type===`background_task_completed`||e.type===`background_task_failed`||e.type===`background_task_cancelled`)return e.task}function ot(e){return e.waitPolicy===`manual`?!1:e.waitPolicy===`wait_any`?e.results.length>0:e.taskIds.every(t=>e.results.some(e=>e.taskId===t))}function st(e){return{taskId:e.id,label:e.label,status:e.status,...e.result?.output?{summary:ct(e.result.output)}:{},...e.transcriptPath||e.logPath?{outputRef:e.transcriptPath??e.logPath}:{},...e.error?{error:{...e.error}}:{},...e.startedAt?{startedAt:e.startedAt}:{},...e.completedAt?{completedAt:e.completedAt}:{}}}function ct(e){let t=e.trim();return t.length<=rt?t:`${t.slice(0,rt)}...`}function lt(e){let t=ut(e,`completed`),n=ut(e,`failed`),r=ut(e,`cancelled`);return{groupId:e.id,status:e.status,total:e.taskIds.length,completed:t,failed:n,cancelled:r,pending:Math.max(e.taskIds.length-e.results.length,0),lines:e.results.map(e=>dt(e))}}function ut(e,t){return e.results.filter(e=>e.status===t).length}function dt(e){let t=ft(e),n=e.outputRef&&e.summary?` (output: ${e.outputRef})`:``;return`[${e.status}] ${e.label} ${e.taskId}: ${t}${n}`}function ft(e){let t=(e.error?.message??e.summary??``).replace(/\s+/g,` `).trim();return t.length>0?t:`(no summary)`}function k(e){return{...e,taskIds:[...e.taskIds],results:e.results.map(e=>({...e,...e.error?{error:{...e.error}}:{}}))}}const A={kind:`executionOriginKind`,sessionId:`executionOriginSessionId`,turnId:`executionOriginTurnId`,commandName:`executionOriginCommandName`,toolCallId:`executionOriginToolCallId`,skillId:`executionOriginSkillId`,label:`executionOriginLabel`};function j(e){return[`main`,e].join(`:`)}function M(e){return[`task`,e].join(`:`)}function pt(e){return[`group`,e].join(`:`)}function mt(e){let[t,n]=e.split(`:`,2);if(n){if(t===`main`)return{kind:`main_thread`,sourceId:n};if(t===`task`)return{kind:`background_task`,sourceId:n};if(t===`group`)return{kind:`background_group`,sourceId:n}}}function N(e){return{[A.kind]:e.kind,[A.sessionId]:e.sessionId,...e.turnId?{[A.turnId]:e.turnId}:{},...e.commandName?{[A.commandName]:e.commandName}:{},...e.toolCallId?{[A.toolCallId]:e.toolCallId}:{},...e.skillId?{[A.skillId]:e.skillId}:{},...e.label?{[A.label]:e.label}:{}}}function ht(e){let t=bt(e.groups),n=[gt(e.mainThread),...At(e.groups).map(e=>vt(e)),...kt(e.tasks).map(e=>_t(e,t.get(e.id)))].filter(t=>Ot(t,e.filter));return{sessionId:e.sessionId,selectedEntryId:e.selectedEntryId??n.find(e=>e.kind===`main_thread`)?.id??j(e.sessionId),updatedAt:n[0]?.updatedAt??e.mainThread.updatedAt,entries:n}}function gt(e){return{id:j(e.sessionId),sourceId:e.sessionId,kind:`main_thread`,origin:{kind:`user_prompt`,sessionId:e.sessionId},status:e.isExecuting?`active`:`idle`,title:`Main thread`,subtitle:e.hasPendingPrompt?`prompt queued`:`${e.historyLength} history entries`,preview:P(e.preview),unread:!1,attention:`none`,visibility:`default`,updatedAt:e.updatedAt,controls:[`select`]}}function _t(e,t){return{id:M(e.id),sourceId:e.id,kind:`background_task`,parentId:e.parentTaskId?M(e.parentTaskId):j(e.parentSessionId),...t?{groupId:pt(t)}:{},origin:yt(e.metadata,{kind:`system`,sessionId:e.parentSessionId}),taskKind:e.kind,status:e.status,title:e.label,subtitle:St(e),preview:wt(e),currentAction:e.currentAction,unread:e.unread,attention:Tt(e),visibility:Et(e),updatedAt:e.lastActivityAt??e.updatedAt,controls:xt(e)}}function vt(e){let t=P(e.results.map(e=>e.summary??e.error?.message).join(` `));return{id:pt(e.id),sourceId:e.id,kind:`background_group`,parentId:j(e.parentSessionId),origin:{kind:`system`,sessionId:e.parentSessionId,label:e.label},status:e.status,title:e.label??e.id,subtitle:`${e.results.length}/${e.taskIds.length} tasks`,preview:t,unread:!1,attention:Dt(e),visibility:e.status===`completed`?`collapsed`:`default`,updatedAt:e.updatedAt,controls:e.status===`running`?[`select`,`wait`]:[`select`]}}function yt(e,t){let n=jt(e?.[A.kind]),r=F(e?.[A.sessionId]);return{kind:n??t.kind,sessionId:r??t.sessionId,turnId:F(e?.[A.turnId])??t.turnId,commandName:F(e?.[A.commandName])??t.commandName,toolCallId:F(e?.[A.toolCallId])??t.toolCallId,skillId:F(e?.[A.skillId])??t.skillId,label:F(e?.[A.label])??t.label}}function bt(e){return new Map(e.flatMap(e=>e.taskIds.map(t=>[t,e.id])))}function xt(e){let t=[`select`];return oe(e.status)?t.push(`close`):t.push(`cancel`),e.kind===`agent`&&e.status===`running`&&t.push(`send`),(e.logPath||e.transcriptPath)&&t.push(`read_log`),t}function St(e){return e.kind===`agent`?e.agentType??e.cwd:e.status===`sleeping`&&e.nextFireAt!==void 0?`next: ${Ct(e.nextFireAt)}`:e.cwd}function Ct(e){let t=new Date(e),n=new Date,r=t.getTime()-n.getTime();if(r<=0)return`now`;let i=Math.round(r/1e3);if(i<60)return`${i}s`;let a=Math.round(i/60);return a<60?`${a}m`:`${Math.round(a/60)}h`}function wt(e){return e.status===`failed`?P(e.error?.message):e.status===`completed`?P(e.result?.output):P(e.promptPreview??e.commandPreview)}function Tt(e){return e.status===`failed`?`failed`:e.status===`waiting_permission`?`permission`:e.unread?`unread`:e.status===`completed`?`completed`:`none`}function Et(e){return e.status===`completed`&&!e.unread&&!e.error&&(e.result?.exitCode??0)===0&&!e.result?.signalCode&&!e.worktreePath&&!e.branchName?`collapsed`:`default`}function Dt(e){return e.results.some(e=>e.status===`failed`)?`failed`:e.status===`completed`?`completed`:`none`}function Ot(e,t){return t?!(t.includeMainThread===!1&&e.kind===`main_thread`||t.kinds&&!t.kinds.includes(e.kind)||t.visibility&&!t.visibility.includes(e.visibility)):!0}function kt(e){return[...e].sort((e,t)=>(t.lastActivityAt??t.updatedAt).localeCompare(e.lastActivityAt??e.updatedAt))}function At(e){return[...e].sort((e,t)=>t.updatedAt.localeCompare(e.updatedAt))}function P(e){let t=e?.trim().replace(/\s+/g,` `);if(t)return t.length>120?`${t.slice(0,120)}...`:t}function F(e){return typeof e==`string`?e:void 0}function jt(e){if(e===`user_prompt`||e===`slash_command`||e===`model_command`||e===`tool_call`||e===`skill`||e===`transport`||e===`system`)return e}function Mt(e){let t=Pt(e.cursor?.offset),n=e.history.slice(t,t+80),r=n.map(e=>({id:e.id,kind:e.category===`chat`?`message`:`progress`,text:Ft(e),timestamp:e.timestamp.toISOString(),sourceId:e.type}));return{entryId:e.entryId,...e.cursor?{cursor:e.cursor}:{},...t+n.length<e.history.length?{nextCursor:{offset:t+n.length}}:{},records:r}}function Nt(e){let t=e.cursor?.offset??0,n=e.lines.map((n,r)=>({id:`${e.entryId}:${t}:${r}`,kind:e.kind??`process_output`,text:n}));return{entryId:e.entryId,...e.cursor?{cursor:e.cursor}:{},...e.nextCursor?{nextCursor:e.nextCursor}:{},records:n}}function Pt(e){return typeof e==`number`&&Number.isFinite(e)&&e>0?Math.floor(e):0}function Ft(e){return typeof e.data==`string`?e.data:e.type}function It(e){return{spawnAgent:t=>e.manager.spawn(Lt(e,t)),spawnProcess:t=>e.manager.spawn(Rt(e,t)),createGroup:t=>e.groupOrchestrator.createGroup({parentSessionId:e.sessionId,waitPolicy:t.waitPolicy,taskIds:[...t.taskIds],label:t.label})}}function Lt(e,t){return{kind:`agent`,label:t.label,mode:t.mode??`background`,parentSessionId:e.sessionId,parentTaskId:t.parentTaskId,depth:t.depth??1,cwd:t.cwd??e.cwd,agentType:t.agentType,prompt:t.prompt,model:t.model,isolation:t.isolation,allowedTools:t.allowedTools?[...t.allowedTools]:void 0,disallowedTools:t.disallowedTools?[...t.disallowedTools]:void 0,permissionPolicy:t.permissionPolicy??`inherit-allowlist`,timeoutMs:t.timeoutMs,idleTimeoutMs:t.idleTimeoutMs,maxRuntimeMs:t.maxRuntimeMs,outputLimitBytes:t.outputLimitBytes,maxTextDeltas:t.maxTextDeltas,repetitionWindow:t.repetitionWindow,repetitionThreshold:t.repetitionThreshold,metadata:N(e.origin)}}function Rt(e,t){return{kind:`process`,label:t.label??t.command,mode:t.mode??`background`,parentSessionId:e.sessionId,parentTaskId:t.parentTaskId,depth:t.depth??0,cwd:t.cwd??e.cwd,command:t.command,shell:t.shell,env:t.env,stdin:t.stdin,timeoutMs:t.timeoutMs,idleTimeoutMs:t.idleTimeoutMs,maxRuntimeMs:t.maxRuntimeMs,outputLimitBytes:t.outputLimitBytes,metadata:N(e.origin)}}const zt=new WeakMap;function Bt(e,t){zt.set(e,t)}function Vt(e){return zt.get(e)}function Ht(e){let t=e.jobs.filter(e=>e.success),n=e.jobs.map(e=>e.agentId).filter(e=>typeof e==`string`&&e.length>0),r=e.jobs.filter(e=>!e.success).length;return JSON.stringify({success:e.jobs.every(e=>e.success),mode:`batch`,output:t.map(e=>e.output??``).filter(Boolean).join(`
|
|
1
|
+
import{AuthenticationError as e,ENV_REFERENCE_PREFIX as t,NetworkError as n,ProviderError as r,RateLimitError as i,TRUST_TO_MODE as a,collectAssistantUsageMetadata as o,createAssistantMessage as s,createSystemMessage as c,createUserMessage as l,findProviderDefinition as u,formatEnvReference as d,formatEnvReference as f,formatSupportedProviderTypes as p,getProviderCredentialRequirement as m,hasUsableSecretReference as ee,hasUsableSecretReference as h,isEnvReference as g,isEnvReference as te,messageToHistoryEntry as _,resolveEnvReference as ne,runHooks as re}from"@robota-sdk/agent-core";import{BackgroundTaskManager as ie,SubagentManager as ae,createDefaultBackgroundTaskRunners as oe,createProviderFromConfig as se,isTerminalBackgroundTaskStatus as ce,normalizeProviderConfig as le}from"@robota-sdk/agent-executor";import{applyWorkspaceManifest as ue,createBashTool as de,createEditTool as fe,createReadTool as pe,createWriteTool as me,createZodFunctionTool as he,globTool as ge,grepTool as _e,webFetchTool as ve,webSearchTool as ye}from"@robota-sdk/agent-tools";import{z as v}from"zod";import{AUTO_COMPACT_THRESHOLD as be,FileSessionLogger as xe,Session as Se,SessionStore as Ce,loadSessionLogEntries as we,replaySessionLogEntries as Te,validateSessionReplayLogEntries as Ee}from"@robota-sdk/agent-session";import{createHash as De,randomUUID as y}from"node:crypto";import{constants as Oe,cpSync as ke,existsSync as b,lstatSync as Ae,mkdirSync as je,readFileSync as x,readdirSync as Me,renameSync as Ne,rmSync as Pe,statSync as Fe,unlinkSync as Ie,writeFileSync as Le}from"node:fs";import{access as Re,copyFile as ze,mkdir as Be,readFile as Ve,readdir as He,realpath as Ue,rename as We,rm as Ge,stat as Ke,writeFile as qe}from"node:fs/promises";import S,{basename as Je,dirname as C,isAbsolute as Ye,join as w,relative as T,resolve as E,sep as Xe}from"node:path";import{homedir as D}from"node:os";import{appendFileSync as Ze,existsSync as O,mkdirSync as Qe,readFileSync as $e,readdirSync as et,writeFileSync as tt}from"fs";import{basename as nt,dirname as rt,join as k,resolve as it}from"path";import{fileURLToPath as at}from"node:url";const ot=1e3;var st=class{manager;now;idFactory;unsubscribeManager;listeners=new Set;groups=new Map;sequence=0;constructor(e){this.manager=e.manager,this.now=e.now??(()=>new Date().toISOString()),this.idFactory=e.idFactory??(()=>this.nextGroupId()),this.sequence=e.initialGroups?.length??0;for(let t of e.initialGroups??[])this.restoreGroup(t);this.unsubscribeManager=this.manager.subscribe(e=>this.handleTaskEvent(e))}createGroup(e){let t=this.now(),n={id:this.idFactory(e),parentSessionId:e.parentSessionId,waitPolicy:e.waitPolicy,taskIds:[...e.taskIds],status:`running`,createdAt:t,updatedAt:t,results:[],...e.label?{label:e.label}:{}},r=this.createRecord(n);return this.groups.set(n.id,r),this.captureExistingTerminalTasks(r),this.emit({type:`background_job_group_created`,group:A(r.state)}),this.evaluateCompletion(r),A(r.state)}listGroups(){return[...this.groups.values()].map(e=>A(e.state))}getGroup(e){let t=this.groups.get(e);return t?A(t.state):void 0}waitGroup(e){let t=this.groups.get(e);return t?t.completion:Promise.reject(Error(`Unknown background job group: ${e}`))}subscribe(e){return this.listeners.add(e),()=>{this.listeners.delete(e)}}dispose(){this.unsubscribeManager(),this.listeners.clear()}nextGroupId(){return this.sequence+=1,`group_${this.sequence}`}restoreGroup(e){let t=this.createRecord(A(e));this.groups.set(e.id,t),e.status===`completed`&&t.resolve(A(e))}createRecord(e){let t=()=>{};return{state:e,completion:new Promise(e=>{t=e}),resolve:t}}captureExistingTerminalTasks(e){for(let t of e.state.taskIds){let n=this.manager.get(t);n&&ce(n.status)&&this.captureTask(e,n)}}handleTaskEvent(e){let t=ct(e);if(t)for(let e of this.groups.values())e.state.taskIds.includes(t.id)&&this.captureTask(e,t)&&(e.state.status===`running`?this.evaluateCompletion(e):this.emit({type:`background_job_group_updated`,group:A(e.state)}))}captureTask(e,t){return e.state.results.some(e=>e.taskId===t.id)?!1:(e.state.results=[...e.state.results,ut(t)],e.state.updatedAt=this.now(),!0)}evaluateCompletion(e){if(e.state.status===`completed`)return;if(!lt(e.state)){this.emit({type:`background_job_group_updated`,group:A(e.state)});return}let t=this.now();e.state.status=`completed`,e.state.completedAt=t,e.state.updatedAt=t;let n=A(e.state);e.resolve(n),this.emit({type:`background_job_group_completed`,group:n})}emit(e){for(let t of this.listeners)t(e)}};function ct(e){if(e.type===`background_task_completed`||e.type===`background_task_failed`||e.type===`background_task_cancelled`)return e.task}function lt(e){return e.waitPolicy===`manual`?!1:e.waitPolicy===`wait_any`?e.results.length>0:e.taskIds.every(t=>e.results.some(e=>e.taskId===t))}function ut(e){return{taskId:e.id,label:e.label,status:e.status,...e.result?.output?{summary:dt(e.result.output)}:{},...e.transcriptPath||e.logPath?{outputRef:e.transcriptPath??e.logPath}:{},...e.error?{error:{...e.error}}:{},...e.startedAt?{startedAt:e.startedAt}:{},...e.completedAt?{completedAt:e.completedAt}:{}}}function dt(e){let t=e.trim();return t.length<=ot?t:`${t.slice(0,ot)}...`}function ft(e){let t=pt(e,`completed`),n=pt(e,`failed`),r=pt(e,`cancelled`);return{groupId:e.id,status:e.status,total:e.taskIds.length,completed:t,failed:n,cancelled:r,pending:Math.max(e.taskIds.length-e.results.length,0),lines:e.results.map(e=>mt(e))}}function pt(e,t){return e.results.filter(e=>e.status===t).length}function mt(e){let t=ht(e),n=e.outputRef&&e.summary?` (output: ${e.outputRef})`:``;return`[${e.status}] ${e.label} ${e.taskId}: ${t}${n}`}function ht(e){let t=(e.error?.message??e.summary??``).replace(/\s+/g,` `).trim();return t.length>0?t:`(no summary)`}function A(e){return{...e,taskIds:[...e.taskIds],results:e.results.map(e=>({...e,...e.error?{error:{...e.error}}:{}}))}}const j={kind:`executionOriginKind`,sessionId:`executionOriginSessionId`,turnId:`executionOriginTurnId`,commandName:`executionOriginCommandName`,toolCallId:`executionOriginToolCallId`,skillId:`executionOriginSkillId`,label:`executionOriginLabel`};function gt(e){return[`main`,e].join(`:`)}function _t(e){return[`task`,e].join(`:`)}function vt(e){return[`group`,e].join(`:`)}function yt(e){let[t,n]=e.split(`:`,2);if(n){if(t===`main`)return{kind:`main_thread`,sourceId:n};if(t===`task`)return{kind:`background_task`,sourceId:n};if(t===`group`)return{kind:`background_group`,sourceId:n}}}function M(e){return{[j.kind]:e.kind,[j.sessionId]:e.sessionId,...e.turnId?{[j.turnId]:e.turnId}:{},...e.commandName?{[j.commandName]:e.commandName}:{},...e.toolCallId?{[j.toolCallId]:e.toolCallId}:{},...e.skillId?{[j.skillId]:e.skillId}:{},...e.label?{[j.label]:e.label}:{}}}function bt(e){let t=Tt(e.groups),n=[xt(e.mainThread),...It(e.groups).map(e=>Ct(e)),...Ft(e.tasks).map(e=>St(e,t.get(e.id)))].filter(t=>Pt(t,e.filter));return{sessionId:e.sessionId,selectedEntryId:e.selectedEntryId??n.find(e=>e.kind===`main_thread`)?.id??gt(e.sessionId),updatedAt:n[0]?.updatedAt??e.mainThread.updatedAt,entries:n}}function xt(e){return{id:gt(e.sessionId),sourceId:e.sessionId,kind:`main_thread`,origin:{kind:`user_prompt`,sessionId:e.sessionId},status:e.isExecuting?`active`:`idle`,title:`Main thread`,subtitle:e.hasPendingPrompt?`prompt queued`:`${e.historyLength} history entries`,preview:N(e.preview),unread:!1,attention:`none`,visibility:`default`,updatedAt:e.updatedAt,controls:[`select`]}}function St(e,t){return{id:_t(e.id),sourceId:e.id,kind:`background_task`,parentId:e.parentTaskId?_t(e.parentTaskId):gt(e.parentSessionId),...t?{groupId:vt(t)}:{},origin:wt(e.metadata,{kind:`system`,sessionId:e.parentSessionId}),taskKind:e.kind,status:e.status,title:e.label,subtitle:Dt(e),preview:At(e),currentAction:e.currentAction,unread:e.unread,attention:jt(e),visibility:Mt(e),updatedAt:e.lastActivityAt??e.updatedAt,controls:Et(e)}}function Ct(e){let t=N(e.results.map(e=>e.summary??e.error?.message).join(` `));return{id:vt(e.id),sourceId:e.id,kind:`background_group`,parentId:gt(e.parentSessionId),origin:{kind:`system`,sessionId:e.parentSessionId,label:e.label},status:e.status,title:e.label??e.id,subtitle:`${e.results.length}/${e.taskIds.length} tasks`,preview:t,unread:!1,attention:Nt(e),visibility:e.status===`completed`?`collapsed`:`default`,updatedAt:e.updatedAt,controls:e.status===`running`?[`select`,`wait`]:[`select`]}}function wt(e,t){let n=Lt(e?.[j.kind]),r=P(e?.[j.sessionId]);return{kind:n??t.kind,sessionId:r??t.sessionId,turnId:P(e?.[j.turnId])??t.turnId,commandName:P(e?.[j.commandName])??t.commandName,toolCallId:P(e?.[j.toolCallId])??t.toolCallId,skillId:P(e?.[j.skillId])??t.skillId,label:P(e?.[j.label])??t.label}}function Tt(e){return new Map(e.flatMap(e=>e.taskIds.map(t=>[t,e.id])))}function Et(e){let t=[`select`];return ce(e.status)?t.push(`close`):t.push(`cancel`),e.kind===`agent`&&e.status===`running`&&t.push(`send`),(e.logPath||e.transcriptPath)&&t.push(`read_log`),t}function Dt(e){if(e.kind===`agent`)return e.agentType??e.cwd;let t=e.schedule?.agentInstruction;if(e.status===`sleeping`&&e.nextFireAt!==void 0){let n=`next: ${kt(e.nextFireAt)}`;return t===void 0?n:`↻ wake "${Ot(t)}" · ${n}`}return e.cwd}function Ot(e){let t=e.trim();return t.length>32?`${t.slice(0,32)}…`:t}function kt(e){let t=new Date(e),n=new Date,r=t.getTime()-n.getTime();if(r<=0)return`now`;let i=Math.round(r/1e3);if(i<60)return`${i}s`;let a=Math.round(i/60);return a<60?`${a}m`:`${Math.round(a/60)}h`}function At(e){return e.status===`failed`?N(e.error?.message):e.status===`completed`?N(e.result?.output):N(e.promptPreview??e.commandPreview)}function jt(e){return e.status===`failed`?`failed`:e.status===`waiting_permission`?`permission`:e.unread?`unread`:e.status===`completed`?`completed`:`none`}function Mt(e){return e.status===`completed`&&!e.unread&&!e.error&&(e.result?.exitCode??0)===0&&!e.result?.signalCode&&!e.worktreePath&&!e.branchName?`collapsed`:`default`}function Nt(e){return e.results.some(e=>e.status===`failed`)?`failed`:e.status===`completed`?`completed`:`none`}function Pt(e,t){return t?!(t.includeMainThread===!1&&e.kind===`main_thread`||t.kinds&&!t.kinds.includes(e.kind)||t.visibility&&!t.visibility.includes(e.visibility)):!0}function Ft(e){return[...e].sort((e,t)=>(t.lastActivityAt??t.updatedAt).localeCompare(e.lastActivityAt??e.updatedAt))}function It(e){return[...e].sort((e,t)=>t.updatedAt.localeCompare(e.updatedAt))}function N(e){let t=e?.trim().replace(/\s+/g,` `);if(t)return t.length>120?`${t.slice(0,120)}...`:t}function P(e){return typeof e==`string`?e:void 0}function Lt(e){if(e===`user_prompt`||e===`slash_command`||e===`model_command`||e===`tool_call`||e===`skill`||e===`transport`||e===`system`)return e}function Rt(e){let t=Bt(e.cursor?.offset),n=e.history.slice(t,t+80),r=n.map(e=>({id:e.id,kind:e.category===`chat`?`message`:`progress`,text:Vt(e),timestamp:e.timestamp.toISOString(),sourceId:e.type}));return{entryId:e.entryId,...e.cursor?{cursor:e.cursor}:{},...t+n.length<e.history.length?{nextCursor:{offset:t+n.length}}:{},records:r}}function zt(e){let t=e.cursor?.offset??0,n=e.lines.map((n,r)=>({id:`${e.entryId}:${t}:${r}`,kind:e.kind??`process_output`,text:n}));return{entryId:e.entryId,...e.cursor?{cursor:e.cursor}:{},...e.nextCursor?{nextCursor:e.nextCursor}:{},records:n}}function Bt(e){return typeof e==`number`&&Number.isFinite(e)&&e>0?Math.floor(e):0}function Vt(e){return typeof e.data==`string`?e.data:e.type}function Ht(e){return{spawnAgent:t=>e.manager.spawn(Ut(e,t)),spawnProcess:t=>e.manager.spawn(Wt(e,t)),createGroup:t=>e.groupOrchestrator.createGroup({parentSessionId:e.sessionId,waitPolicy:t.waitPolicy,taskIds:[...t.taskIds],label:t.label})}}function Ut(e,t){return{kind:`agent`,label:t.label,mode:t.mode??`background`,parentSessionId:e.sessionId,parentTaskId:t.parentTaskId,depth:t.depth??1,cwd:t.cwd??e.cwd,agentType:t.agentType,prompt:t.prompt,model:t.model,isolation:t.isolation,allowedTools:t.allowedTools?[...t.allowedTools]:void 0,disallowedTools:t.disallowedTools?[...t.disallowedTools]:void 0,permissionPolicy:t.permissionPolicy??`inherit-allowlist`,timeoutMs:t.timeoutMs,idleTimeoutMs:t.idleTimeoutMs,maxRuntimeMs:t.maxRuntimeMs,outputLimitBytes:t.outputLimitBytes,maxTextDeltas:t.maxTextDeltas,repetitionWindow:t.repetitionWindow,repetitionThreshold:t.repetitionThreshold,metadata:M(e.origin)}}function Wt(e,t){return{kind:`process`,label:t.label??t.command,mode:t.mode??`background`,parentSessionId:e.sessionId,parentTaskId:t.parentTaskId,depth:t.depth??0,cwd:t.cwd??e.cwd,command:t.command,shell:t.shell,env:t.env,stdin:t.stdin,timeoutMs:t.timeoutMs,idleTimeoutMs:t.idleTimeoutMs,maxRuntimeMs:t.maxRuntimeMs,outputLimitBytes:t.outputLimitBytes,metadata:M(e.origin)}}const Gt=new WeakMap;function Kt(e,t){Gt.set(e,t)}function qt(e){return Gt.get(e)}function Jt(e){let t=e.jobs.filter(e=>e.success),n=e.jobs.map(e=>e.agentId).filter(e=>typeof e==`string`&&e.length>0),r=e.jobs.filter(e=>!e.success).length;return JSON.stringify({success:e.jobs.every(e=>e.success),mode:`batch`,output:t.map(e=>e.output??``).filter(Boolean).join(`
|
|
2
2
|
|
|
3
|
-
`),groupId:e.groupId,requestedJobCount:e.requestedJobCount,startedJobCount:n.length,failedJobCount:r,agentIds:n,jobs:e.jobs,provenance:{source:`agent-tool-batch`,groupId:e.groupId,requestedJobCount:e.requestedJobCount,startedJobCount:n.length,failedJobCount:r}})}function
|
|
3
|
+
`),groupId:e.groupId,requestedJobCount:e.requestedJobCount,startedJobCount:n.length,failedJobCount:r,agentIds:n,jobs:e.jobs,provenance:{source:`agent-tool-batch`,groupId:e.groupId,requestedJobCount:e.requestedJobCount,startedJobCount:n.length,failedJobCount:r}})}function Yt(){return`agent_group_${Date.now()}_${Math.random().toString(36).slice(2,10)}`}function Xt(e,t){let n=e?.trim();return n&&n.length>0?n:t}function Zt(e,t,n){let r=e.subagent_type??`general-purpose`,i=n.resolveAgentDefinition(r,n.deps.customAgentRegistry);return{index:t,job:e,agentType:r,agentDef:i,label:Xt(e.label,i?.name??r)}}function Qt(e){return e.agentDef!==void 0}function $t(e,t){return{index:e.index,success:!1,groupId:t,label:e.label,subagent_type:e.agentType,prompt:e.job.prompt,error:`Unknown agent type: ${e.agentType}`}}async function en(e,t){try{let n=await t.manager.spawn(t.createSpawnRequest(e.job,e.agentType,e.agentDef,t.deps,e.label,t.toolCallId));return{...e,agentId:n.id}}catch(t){let n=t instanceof Error?t.message:String(t);return{...e,spawnError:n}}}function tn(e,t){return{index:e.index,success:!1,groupId:t,label:e.label,subagent_type:e.agentType,prompt:e.job.prompt,error:`Sub-agent error: ${e.spawnError??`missing agent id`}`}}function nn(e,t,n){return{index:e.index,success:!0,groupId:t,label:e.label,agentId:n.jobId,subagent_type:e.agentType,prompt:e.job.prompt,output:n.output,metadata:n.metadata}}function rn(e,t,n){return{index:e.index,success:!1,groupId:t,label:e.label,agentId:e.agentId,subagent_type:e.agentType,prompt:e.job.prompt,error:`Sub-agent error: ${n}`}}async function an(e,t,n){if(e.agentId===void 0)return tn(e,t);try{let r=await n.wait(e.agentId);return nn({...e,agentId:e.agentId},t,r)}catch(n){let r=n instanceof Error?n.message:String(n);return rn({...e,agentId:e.agentId},t,r)}}async function on(e){let t=Yt(),n=e.jobs.map((t,n)=>Zt(t,n,e)),r=n.filter(e=>!Qt(e)).map(e=>$t(e,t)),i=await Promise.all(n.filter(Qt).map(t=>en(t,e))),a=await Promise.all(i.map(n=>an(n,t,e.manager))),o=[...r,...a].sort((e,t)=>e.index-t.index);return Jt({groupId:t,requestedJobCount:e.jobs.length,jobs:o})}function sn(e){return JSON.stringify({success:!1,mode:`single`,requestedJobCount:1,startedJobCount:0,failedJobCount:1,output:``,error:`Unknown agent type: ${e}`,provenance:{source:`agent-tool-single`,requestedJobCount:1,startedJobCount:0,failedJobCount:1}})}function cn(e){let t=e.metadata?.worktreePath,n=e.metadata?.branchName,r=e.metadata?.worktreeStatus,i=e.metadata?.worktreeNextAction;return JSON.stringify({success:!0,mode:`single`,requestedJobCount:1,startedJobCount:1,failedJobCount:0,output:e.output,agentId:e.jobId,agentIds:[e.jobId],provenance:{source:`agent-tool-single`,requestedJobCount:1,startedJobCount:1,failedJobCount:0},metadata:e.metadata,...typeof t==`string`?{worktreePath:t}:{},...typeof n==`string`?{branchName:n}:{},...typeof r==`string`?{worktreeStatus:r}:{},...typeof i==`string`?{worktreeNextAction:i}:{}})}function ln(e,t){let n=t===void 0?0:1;return JSON.stringify({success:!1,mode:`single`,requestedJobCount:1,startedJobCount:n,failedJobCount:1,output:``,error:`Sub-agent error: ${e}`,agentId:t,...t===void 0?{}:{agentIds:[t]},provenance:{source:`agent-tool-single`,requestedJobCount:1,startedJobCount:n,failedJobCount:1}})}const un=[{name:`general-purpose`,description:`General-purpose task execution agent with full tool access.`,systemPrompt:`You are a general-purpose task execution agent. You have access to all tools available in the parent session and can perform any task delegated to you.
|
|
4
4
|
|
|
5
5
|
Your role is to complete the assigned task thoroughly and accurately. Follow these guidelines:
|
|
6
6
|
|
|
@@ -33,71 +33,71 @@ Your role is to:
|
|
|
33
33
|
- Produce a structured implementation plan with clear steps, file lists, and ordering.
|
|
34
34
|
- Consider edge cases, error handling, and test coverage requirements.
|
|
35
35
|
|
|
36
|
-
Output your plan in a structured format with numbered steps. For each step, specify which files are involved and what changes are needed. Flag any decisions that require human judgment or clarification.`,disallowedTools:[`Write`,`Edit`]}];function
|
|
36
|
+
Output your plan in a structured format with numbered steps. For each step, specify which files are involved and what changes are needed. Flag any decisions that require human judgment or clarification.`,disallowedTools:[`Write`,`Edit`]}];function dn(e){return un.find(t=>t.name===e)}function fn(){return`When you complete the task, respond with a concise report covering what was done and any key findings — the caller will relay this to the user, so it only needs the essentials.
|
|
37
37
|
|
|
38
38
|
In your final response, share file paths (always absolute, never relative) that are relevant to the task. Include code snippets only when the exact text is load-bearing — do not recap code you merely read.
|
|
39
39
|
|
|
40
|
-
Do not use emojis.`}function
|
|
40
|
+
Do not use emojis.`}function pn(){return`You are a worker subagent executing a specific task. Do NOT spawn sub-agents; execute directly. Keep your report under 500 words. Use this structure:
|
|
41
41
|
- Scope: What was requested
|
|
42
42
|
- Result: What was done
|
|
43
43
|
- Key files: Relevant file paths (absolute)
|
|
44
44
|
- Files changed: List of modifications
|
|
45
|
-
- Issues: Any problems encountered`}function
|
|
45
|
+
- Issues: Any problems encountered`}function mn(e){let t=[e.agentBody];e.claudeMd&&t.push(e.claudeMd),e.agentsMd&&t.push(e.agentsMd);let n=e.isForkWorker?pn():fn();return t.push(n),t.join(`
|
|
46
46
|
|
|
47
|
-
`)}const
|
|
47
|
+
`)}const hn=`robota_command_`,gn=/^[A-Za-z0-9_-]{1,64}$/;function _n(e){return e}function F(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function vn(e){let t=F(e);if(!t)throw Error(`Model command descriptor name must not be empty.`);let n=t.replace(/[^A-Za-z0-9_-]/g,`_`).replace(/_+/g,`_`).replace(/^_+|_+$/g,``);if(!n)throw Error(`Model command descriptor name cannot be projected safely: ${e}`);let r=`${hn}${n}`;if(gn.test(r))return r;let i=De(`sha256`).update(t).digest(`hex`).slice(0,8),a=`${hn}${n.slice(0,40).replace(/[_-]+$/g,``)||`command`}_${i}`;if(!gn.test(a))throw Error(`Projected model command tool name is not provider-safe: ${a}`);return a}function yn(e){let t=new Set,n=new Map,r=new Map,i=[];for(let a of e){let e=F(a.name);if(!e)throw Error(`Model command descriptor name must not be empty.`);if(t.has(e))throw Error(`Duplicate model command descriptor: ${e}`);t.add(e);let o=vn(e),s=n.get(o);if(s!==void 0)throw Error(`Model command projection collision: ${s} and ${e} both map to ${o}`);n.set(o,e),r.set(e,o),i.push({commandName:e,toolName:o,description:wn(e,a),descriptor:a,requiresPermission:a.requiresPermission!==!1})}return{commandTools:i,toolNameToCommandName:n,commandNameToToolName:r}}function bn(e){return`${e.toolName} — ${e.descriptor.description}`}function xn(e,t){return JSON.stringify(t?{success:t.success,command:e,message:t.message,data:t.data}:{success:!1,command:e,error:`Unknown command: ${e}`})}function Sn(e){return yn(e.commandDescriptors).commandTools.map(t=>{let n=Cn(t.descriptor);return he(t.toolName,t.description,_n(n),async r=>{let i=n.parse(r);return e.isModelInvocable(t.commandName)?xn(t.commandName,await e.execute(t.commandName,i.args??``)):JSON.stringify({success:!1,command:t.commandName,error:`Command is not model-invocable: ${t.commandName}`})})})}function Cn(e){let t=e.argumentHint?`Arguments for the command. Expected grammar: ${e.argumentHint}`:`Arguments for the command as a single string.`;return v.object({args:v.string().optional().describe(t)})}function wn(e,t){let n=[t.description.trim(),`Robota command id: ${e}.`];return t.argumentHint&&n.push(`Argument grammar: ${t.argumentHint}`),n.filter(e=>e.length>0).join(`
|
|
48
48
|
|
|
49
|
-
`)}const yn={sonnet:`claude-sonnet-4-6`,haiku:`claude-haiku-4-5`,opus:`claude-opus-4-6`},bn=fn(`agent`);function xn(e,t){return yn[e]??e}function Sn(e,t){let n=[...e];if(t.disallowedTools){let e=new Set(t.disallowedTools);n=n.filter(t=>!e.has(t.getName()))}if(t.tools){let e=new Set(t.tools);n=n.filter(t=>e.has(t.getName()))}return n=n.filter(e=>e.getName()!==`Agent`&&e.getName()!==bn),n}function Cn(e){let{agentDefinition:t,parentConfig:n,parentContext:r,parentTools:i,terminal:a}=e,o=Sn(i,t),s=t.model?xn(t.model,n.provider.model):n.provider.model,c=cn({agentBody:t.systemPrompt,claudeMd:r.claudeMd,agentsMd:r.agentsMd,isForkWorker:e.isForkWorker??!1}),l=e.provider;return new be({tools:o,provider:l,systemMessage:c,terminal:a,...e.sessionId===void 0?{}:{sessionId:e.sessionId},...e.sessionLogger===void 0?{}:{sessionLogger:e.sessionLogger},model:s,maxTurns:t.maxTurns,permissions:n.permissions,permissionMode:e.permissionMode,defaultTrustLevel:n.defaultTrustLevel,permissionHandler:e.permissionHandler,hooks:e.hooks,hookTypeExecutors:e.hookTypeExecutors,onTextDelta:e.onTextDelta,onToolExecution:e.onToolExecution})}function wn(e,t){let n=t?.(e)??an(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function Tn(e,t){return{...e,...t.request.model?{model:t.request.model}:{},...t.request.allowedTools?{tools:t.request.allowedTools}:{},...t.request.disallowedTools?{disallowedTools:t.request.disallowedTools}:{}}}function En(e){if(!e)return;let t=Object.values(e)[0];if(t!==void 0)return typeof t==`object`?JSON.stringify(t):String(t)}function Dn(e){if(e.request.isolation===`worktree`)throw Error(`Worktree isolation requires a runtime shell subagent runner`)}function On(e,t){if(t.type===`start`){e.emit?.({type:`background_task_tool_start`,toolName:t.toolName,firstArg:En(t.toolArgs)});return}e.emit?.({type:`background_task_tool_end`,toolName:t.toolName,success:t.success??!0})}function kn(e){return{start(t){Dn(t);let n=Cn({agentDefinition:Tn(wn(t.request.type,e.customAgentRegistry),t),parentConfig:e.config,parentContext:e.context,parentTools:e.tools,provider:e.provider,terminal:e.terminal,permissionMode:e.permissionMode,permissionHandler:e.permissionHandler,hooks:e.hooks,hookTypeExecutors:e.hookTypeExecutors,onTextDelta:n=>{t.emit?.({type:`background_task_text_delta`,delta:n}),e.onTextDelta?.(n)},onToolExecution:n=>{On(t,n),e.onToolExecution?.(n)}});return{jobId:t.jobId,result:n.run(t.request.prompt).then(e=>({jobId:t.jobId,output:e})),cancel:()=>(n.abort(),Promise.resolve())}}}}const An=[`Creates delegated subagent jobs in isolated contexts.`,`Without jobs, one tool call creates one subagent job from prompt.`,`For explicit multi-agent or parallel-agent requests, use one Agent tool call with jobs containing one entry per requested role and a stable label for each role.`,`When the user explicitly asks to create, run, spawn, delegate to, or use agents/subagents, start the requested subagent job immediately.`,`Do not ask a follow-up question unless execution is impossible or unsafe.`,`Subagent jobs run as background tasks by default.`,`The tool waits for a terminal result and returns completed, failed, or timed-out outcome data with structured requested/started job counts.`,`After the tool returns, base user-facing claims on returned mode and counts; do not say parallel or multiple jobs started unless the result proves those jobs started.`,`Execution is represented by a real tool call and runtime background task event.`].join(` `);function jn(e){return e}const Mn=g.object({prompt:g.string().optional().describe(`The task for a single subagent to perform. Required when jobs is omitted.`),subagent_type:g.string().optional().describe(`Agent type: "general-purpose", "Explore", "Plan", or a custom agent name`),model:g.string().optional().describe(`Optional model override`),isolation:g.enum([`none`,`worktree`]).optional().describe(`Optional runtime isolation mode. "worktree" runs in a Git worktree.`),jobs:g.array(g.object({label:g.string().optional().describe(`Stable role label for this batch job`),prompt:g.string().describe(`The task for this subagent to perform`),subagent_type:g.string().optional().describe(`Agent type for this job`),model:g.string().optional().describe(`Optional model override for this job`),isolation:g.enum([`none`,`worktree`]).optional().describe(`Isolation for this job`)}).passthrough()).optional().describe(`Batch of subagent jobs to start in one Agent tool call`)}).passthrough(),Nn=new WeakMap;function Pn(e,t){Nn.set(e,t)}function L(e){return Nn.get(e)}function Fn(e,t){if(t){let n=t(e);if(n)return n}let n=an(e);if(n)return n}function In(e){return e.subagentManager??new re({runner:kn(e)})}function Ln(e,t,n,r,i=n.name,a){return{type:t,label:i,parentSessionId:r.parentSessionId??`unknown-session`,mode:`background`,depth:r.subagentDepth??1,cwd:r.cwd??process.cwd(),prompt:e.prompt,model:e.model,isolation:e.isolation,metadata:N({kind:`tool_call`,sessionId:r.parentSessionId??`unknown-session`,label:i,...a?{toolCallId:a}:{}})}}async function Rn(e,t,n,r){if(typeof e.prompt!=`string`||e.prompt.length===0)return nn(`prompt is required when jobs is omitted`);let i={...e,prompt:e.prompt},a=e.subagent_type??`general-purpose`,o=Fn(a,t.customAgentRegistry);if(!o)return en(a);let s;try{let e=await n.spawn(Ln(i,a,o,t,void 0,r));return s=e.id,tn(await n.wait(e.id))}catch(e){return nn(e instanceof Error?e.message:String(e),s)}}function zn(e){let t=In(e);return pe(`Agent`,An,jn(Mn),async(n,r)=>{let i=n,a=r?.executionId;return Array.isArray(i.jobs)&&i.jobs.length>0?$t({jobs:i.jobs,deps:e,manager:t,resolveAgentDefinition:Fn,createSpawnRequest:Ln,toolCallId:a}):Rn({prompt:i.prompt,...i.subagent_type===void 0?{}:{subagent_type:i.subagent_type},...i.model===void 0?{}:{model:i.model},...i.isolation===void 0?{}:{isolation:i.isolation}},e,t,a)})}var Bn=class{getManager;onChanged;emitTaskEvent;emitGroupEvent;persistSession;backgroundTasks=[];backgroundTaskEvents=[];backgroundJobGroups=[];backgroundJobGroupEvents=[];backgroundTaskUnsubscribe=null;backgroundJobUnsubscribe=null;backgroundJobOrchestrator=null;constructor(e,t,n,r,i){this.getManager=e,this.onChanged=t,this.emitTaskEvent=n,this.emitGroupEvent=r,this.persistSession=i}subscribe(e){if(this.backgroundTaskUnsubscribe)return;let t=Vt(e)??L(e)?.backgroundTaskManager;t&&(this.backgroundTaskUnsubscribe=t.subscribe(e=>{this.recordTaskEvent(e),this.emitTaskEvent(e)}))}dispose(){this.backgroundTaskUnsubscribe?.(),this.backgroundTaskUnsubscribe=null,this.backgroundJobUnsubscribe?.(),this.backgroundJobUnsubscribe=null,this.backgroundJobOrchestrator?.dispose(),this.backgroundJobOrchestrator=null}restoreState(e){this.backgroundTasks=e.tasks,this.backgroundTaskEvents=e.taskEvents,this.backgroundJobGroups=e.groups,this.backgroundJobGroupEvents=e.groupEvents}getState(){return{tasks:this.getTaskSnapshots(),taskEvents:this.backgroundTaskEvents,groups:this.getGroupSnapshots(),groupEvents:this.backgroundJobGroupEvents}}getManagerOrThrow(){let e=this.getManager();if(!e)throw Error(`Background task manager is not available for this session.`);return e}getOrchestratorOrThrow(e){if(this.backgroundJobOrchestrator)return this.backgroundJobOrchestrator;let t=this.getManagerOrThrow();return this.backgroundJobOrchestrator=new it({manager:t,initialGroups:this.backgroundJobGroups}),this.subscribeGroupEvents(e),this.backgroundJobOrchestrator}async cancelTask(e,t){await this.getManagerOrThrow().cancel(e,t)}async closeTask(e){await this.getManagerOrThrow().close(e)}async sendTask(e,t){await this.getManagerOrThrow().send(e,t)}async readTaskLog(e,t){return this.getManagerOrThrow().readLog(e,t)}listTasks(e){return this.getManagerOrThrow().list(e)}getTask(e){return this.getManagerOrThrow().get(e)}createGroup(e,t){return this.getOrchestratorOrThrow(t).createGroup({...e,parentSessionId:t})}listGroups(e){return this.getOrchestratorOrThrow(e).listGroups()}getGroup(e,t){return this.getOrchestratorOrThrow(t).getGroup(e)}async waitGroup(e,t){return this.getOrchestratorOrThrow(t).waitGroup(e)}async readTaskDetail(e,t,n){let r=this.getManagerOrThrow().get(t);if(!r)throw Error(`Unknown background task: ${t}`);if(r.logPath||r.transcriptPath){let i=await this.getManagerOrThrow().readLog(t,n);return Nt({entryId:e,lines:i.lines,cursor:i.cursor,nextCursor:i.nextCursor,kind:r.kind===`process`?`process_output`:`progress`})}let i=r.status===`failed`?`error`:r.status===`completed`?`result`:`progress`;return Nt({entryId:e,lines:[r.error?.message??r.result?.output??r.currentAction??r.promptPreview??r.commandPreview??r.status],cursor:n,kind:i})}readGroupDetail(e,t,n){let r=this.getOrchestratorOrThrow(n).getGroup(t);if(!r)throw Error(`Unknown background job group: ${t}`);return Nt({entryId:e,lines:lt(r).lines,kind:`group_summary`})}getTaskSnapshots(){try{return this.getManagerOrThrow().list()}catch{return this.backgroundTasks}}getGroupSnapshots(){try{return this.backgroundJobOrchestrator?.listGroups()??this.backgroundJobGroups}catch{return this.backgroundJobGroups}}subscribeGroupEvents(e){this.backgroundJobUnsubscribe||!this.backgroundJobOrchestrator||(this.backgroundJobUnsubscribe=this.backgroundJobOrchestrator.subscribe(t=>{this.recordGroupEvent(t,e),this.emitGroupEvent(t)}))}recordTaskEvent(e){this.backgroundTasks=this.getTaskSnapshots(),this.backgroundTaskEvents.push(e),this.persistSession(),this.onChanged(`background_task`,Vn(e))}recordGroupEvent(e,t){this.backgroundJobGroups=this.getGroupSnapshots(),this.backgroundJobGroupEvents.push(e),this.persistSession(),this.onChanged(`background_group`,pt(e.group.id))}};function Vn(e){if(`task`in e)return M(e.task.id);if(`taskId`in e)return M(e.taskId)}function Hn(e){let t=L(e);if(!t)throw Error(`Agent runtime dependencies are not available for this session.`);if(!t.backgroundTaskManager)throw Error(`Background task manager is not available for this session.`);return t}function R(e){let t=Hn(e);if(!t.subagentManager)throw Error(`Subagent manager is not available for this session.`);return t.subagentManager}function Un(e,t){let n=t.customAgentRegistry?.(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function Wn(e){return(L(e)?.agentDefinitions??[]).map(e=>({name:e.name,description:e.description}))}async function Gn(e,t,n,r){let i=Hn(e),a=Un(t.agentType,i),o=e.getSessionId();return R(e).spawn({type:t.agentType,label:t.label,parentSessionId:o,mode:t.mode,depth:(i.subagentDepth??0)+1,cwd:i.cwd??n??process.cwd(),prompt:t.prompt,model:t.model??a.model,isolation:t.isolation,allowedTools:a.tools,disallowedTools:a.disallowedTools,metadata:N({kind:r===`model`?`model_command`:`slash_command`,sessionId:o,commandName:`agent`,label:t.label})})}async function Kn(e,t){return R(e).wait(t)}async function qn(e,t,n){await R(e).send(t,n)}async function Jn(e,t,n){await R(e).cancel(t,n)}async function Yn(e,t){await R(e).close(t)}function Xn(e){return R(e).list()}function Zn(e,t={}){let{sessionId:n,execCtrl:r,histTracker:i,bgTracker:a}=e,o=i.getHistory();return ht({sessionId:n,mainThread:{sessionId:n,isExecuting:r.executing,hasPendingPrompt:r.pendingPrompt!==null,historyLength:o.length,updatedAt:o.at(-1)?.timestamp.toISOString()??new Date(0).toISOString(),preview:r.streamingText.trim().length>0?r.streamingText:o.at(-1)?.type},tasks:a.getTaskSnapshots(),groups:a.getGroupSnapshots(),selectedEntryId:t.selectedEntryId,filter:t.filter})}async function Qn(e,t,n,r,i){let a=mt(e);if(!a)throw Error(`Unknown execution workspace entry: ${e}`);return a.kind===`main_thread`?Mt({entryId:e,history:t(),cursor:i}):a.kind===`background_group`?n.readGroupDetail(e,a.sourceId,r):n.readTaskDetail(e,a.sourceId,i)}function $n(e,t,n,r){return It({manager:e.getManagerOrThrow(),groupOrchestrator:e.getOrchestratorOrThrow(t),sessionId:t,cwd:n,origin:{...r,sessionId:r.sessionId||t}})}var er=class{isExecuting(){return this.execCtrl.executing}getPendingPrompt(){return this.execCtrl.pendingPrompt}getStreamingText(){return this.execCtrl.streamingText}getActiveTools(){return this.execCtrl.activeTools}cancelQueue(){this.execCtrl.clearPendingQueue()}async executeCommand(e,t){return await this.ensureInitialized(),this.execCtrl.executing?{success:!1,message:`Another prompt or command is already running. Wait for it to finish.`}:this.skillRouter.executeCommand(e,t)}async executeModelCommand(e,t){return await this.ensureInitialized(),this.skillRouter.executeModelCommand(e,t)}getCommandInvocationSource(){return this.skillRouter.getCommandInvocationSource()}async executeSkillCommandByName(e,t,n){return await this.ensureInitialized(),this.skillRouter.executeSkillCommandByName(e,t,n)}listCommands(){return this.skillRouter.listCommands()}listSkills(){return this.skillRouter.listSkills()}listModelInvocableCommands(){return this.skillRouter.listModelInvocableCommands()}getCommandHostAdapters(){return this.skillRouter.getCommandHostAdapters()}getSkillActivationEvents(){return this.histTracker.getSkillActivationEvents()}getContextState(){return this.getSessionOrThrow().getContextState()}async compactContext(e){await this.getSessionOrThrow().compact(e)}getFullHistory(){return this.histTracker.getHistory()}getMessages(){return this.histTracker.getHistory().filter(e=>e.category===`chat`).map(e=>e.data)}listEditCheckpoints(){return this.histTracker.listEditCheckpoints()}inspectEditCheckpoint(e){return this.histTracker.inspectEditCheckpoint(e)}async restoreEditCheckpoint(e){return await this.ensureInitialized(),this.histTracker.restoreEditCheckpoint(e)}async rollbackEditCheckpoint(e){return await this.ensureInitialized(),this.histTracker.rollbackEditCheckpoint(e)}getUsedMemoryReferences(){return this.histTracker.getUsedMemoryReferences()}recordMemoryEvent(e){this.histTracker.recordMemoryEvent(e)}listContextReferences(){return this.histTracker.listContextReferences()}async addContextReference(e){return this.histTracker.addContextReference(e)}removeContextReference(e){return this.histTracker.removeContextReference(e)}clearContextReferences(){return this.histTracker.clearContextReferences()}listBackgroundTasks(e){return this.bgTracker.listTasks(e)}getBackgroundTask(e){return this.bgTracker.getTask(e)}async cancelBackgroundTask(e,t){await this.ensureInitialized(),await this.bgTracker.cancelTask(e,t)}async closeBackgroundTask(e){await this.ensureInitialized(),await this.bgTracker.closeTask(e)}async sendBackgroundTask(e,t){await this.ensureInitialized(),await this.bgTracker.sendTask(e,t)}async readBackgroundTaskLog(e,t){return await this.ensureInitialized(),this.bgTracker.readTaskLog(e,t)}createBackgroundJobGroup(e){return this.bgTracker.createGroup(e,this.getSessionOrThrow().getSessionId())}listBackgroundJobGroups(){return this.bgTracker.listGroups(this.getSessionOrThrow().getSessionId())}getBackgroundJobGroup(e){return this.bgTracker.getGroup(e,this.getSessionOrThrow().getSessionId())}async waitBackgroundJobGroup(e){return await this.ensureInitialized(),this.bgTracker.waitGroup(e,this.getSessionOrThrow().getSessionId())}getExecutionWorkspaceSnapshot(e={}){return Zn({sessionId:this.getSessionOrThrow().getSessionId(),execCtrl:this.execCtrl,histTracker:this.histTracker,bgTracker:this.bgTracker},e)}listExecutionWorkspaceEntries(e){return[...this.getExecutionWorkspaceSnapshot({filter:e}).entries]}getExecutionWorkspaceEntry(e){return this.getExecutionWorkspaceSnapshot().entries.find(t=>t.id===e)}async readExecutionWorkspaceDetail(e,t){return await this.ensureInitialized(),Qn(e,()=>this.histTracker.getHistory(),this.bgTracker,this.getSessionOrThrow().getSessionId(),t)}createExecutionWorkspaceTaskSpawner(e){return $n(this.bgTracker,this.getSessionOrThrow().getSessionId(),this.getCwd(),e)}listAgentDefinitions(){return Wn(this.getSessionOrThrow())}listAgentJobs(){return Xn(this.getSessionOrThrow())}async spawnAgentJob(e){return await this.ensureInitialized(),Gn(this.getSessionOrThrow(),e,this.getCwd(),this.skillRouter.getCommandInvocationSource())}async waitAgentJob(e){return await this.ensureInitialized(),Kn(this.getSessionOrThrow(),e)}async sendAgentJob(e,t){await this.ensureInitialized(),await qn(this.getSessionOrThrow(),e,t)}async cancelAgentJob(e,t){await this.ensureInitialized(),await Jn(this.getSessionOrThrow(),e,t)}async closeAgentJob(e){await this.ensureInitialized(),await Yn(this.getSessionOrThrow(),e)}},z=class{existsSync(e){return v(e)}readFileSync(e,t){return y(e,t)}writeFileSync(e,t,n){Fe(e,t,n??`utf8`)}mkdirSync(e,t){ke(e,t)}readdirSync(e,t){return t?.withFileTypes?Ae(e,{withFileTypes:!0}):Ae(e)}statSync(e){return Ne(e)}rmSync(e,t){Me(e,t)}cpSync(e,t,n){De(e,t,n)}renameSync(e,t){je(e,t)}get constants(){return Ee}},B=class{async access(e,t){await Ie(e,t)}async copyFile(e,t,n){await Le(e,t,n)}async mkdir(e,t){await Re(e,t)}async readFile(e,t){return ze(e,t)}async readdir(e,t){return t?.withFileTypes?await Be(e,{withFileTypes:!0}):Be(e)}async realpath(e){return Ve(e)}async rename(e,t){await He(e,t)}async rm(e,t){await Ue(e,t)}async stat(e){return We(e)}async writeFile(e,t,n){await Ge(e,t,n??`utf8`)}};function tr(e){return Te(`sha256`).update(e,`utf-8`).digest(`hex`)}function nr(e,t=new z){let n=t.readFileSync(e,`utf-8`);return{filePath:e,content:n,contentHash:tr(n)}}async function rr(e,t=new z){let n=[],r=[];for(let i of e){if(!t.existsSync(i.filePath)){r.push(i);continue}tr(t.readFileSync(i.filePath,`utf-8`))===i.contentHash?r.push(i):n.push(i)}return{stale:n,fresh:r}}async function ir(e,t=new z){let{stale:n}=await rr(e,t),r=new Set(n.map(e=>e.filePath)),i=[];return{updated:e.map(e=>{if(!r.has(e.filePath))return e;let n=t.readFileSync(e.filePath,`utf-8`);return i.push(e.filePath),{filePath:e.filePath,content:n,contentHash:tr(n)}}),refreshed:i}}async function ar(e,t,n,r,i,a){if(!n)return;let o=[...e,...t];if(o.length===0)return;let s=e.length,{updated:c,refreshed:l}=await ir(o);if(l.length===0)return;let u=c.slice(0,s),d=c.slice(s);r(u,d);let f=n(u.map(e=>e.content).join(`
|
|
49
|
+
`)}const Tn={sonnet:`claude-sonnet-4-6`,haiku:`claude-haiku-4-5`,opus:`claude-opus-4-6`},En=vn(`agent`);function Dn(e,t){return Tn[e]??e}function On(e,t){let n=[...e];if(t.disallowedTools){let e=new Set(t.disallowedTools);n=n.filter(t=>!e.has(t.getName()))}if(t.tools){let e=new Set(t.tools);n=n.filter(t=>e.has(t.getName()))}return n=n.filter(e=>e.getName()!==`Agent`&&e.getName()!==En),n}function kn(e){let{agentDefinition:t,parentConfig:n,parentContext:r,parentTools:i,terminal:a}=e,o=On(i,t),s=t.model?Dn(t.model,n.provider.model):n.provider.model,c=mn({agentBody:t.systemPrompt,claudeMd:r.claudeMd,agentsMd:r.agentsMd,isForkWorker:e.isForkWorker??!1}),l=e.provider;return new Se({tools:o,provider:l,systemMessage:c,terminal:a,...e.sessionId===void 0?{}:{sessionId:e.sessionId},...e.sessionLogger===void 0?{}:{sessionLogger:e.sessionLogger},model:s,maxTurns:t.maxTurns,permissions:n.permissions,permissionMode:e.permissionMode,defaultTrustLevel:n.defaultTrustLevel,permissionHandler:e.permissionHandler,hooks:e.hooks,hookTypeExecutors:e.hookTypeExecutors,onTextDelta:e.onTextDelta,onToolExecution:e.onToolExecution})}function An(e,t){let n=t?.(e)??dn(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function jn(e,t){return{...e,...t.request.model?{model:t.request.model}:{},...t.request.allowedTools?{tools:t.request.allowedTools}:{},...t.request.disallowedTools?{disallowedTools:t.request.disallowedTools}:{}}}function Mn(e){if(!e)return;let t=Object.values(e)[0];if(t!==void 0)return typeof t==`object`?JSON.stringify(t):String(t)}function Nn(e){if(e.request.isolation===`worktree`)throw Error(`Worktree isolation requires a runtime shell subagent runner`)}function Pn(e,t){if(t.type===`start`){e.emit?.({type:`background_task_tool_start`,toolName:t.toolName,firstArg:Mn(t.toolArgs)});return}e.emit?.({type:`background_task_tool_end`,toolName:t.toolName,success:t.success??!0})}function Fn(e){return{start(t){Nn(t);let n=kn({agentDefinition:jn(An(t.request.type,e.customAgentRegistry),t),parentConfig:e.config,parentContext:e.context,parentTools:e.tools,provider:e.provider,terminal:e.terminal,permissionMode:e.permissionMode,permissionHandler:e.permissionHandler,hooks:e.hooks,hookTypeExecutors:e.hookTypeExecutors,onTextDelta:n=>{t.emit?.({type:`background_task_text_delta`,delta:n}),e.onTextDelta?.(n)},onToolExecution:n=>{Pn(t,n),e.onToolExecution?.(n)}});return{jobId:t.jobId,result:n.run(t.request.prompt).then(e=>({jobId:t.jobId,output:e})),cancel:()=>(n.abort(),Promise.resolve())}}}}const In=[`Creates delegated subagent jobs in isolated contexts.`,`Without jobs, one tool call creates one subagent job from prompt.`,`For explicit multi-agent or parallel-agent requests, use one Agent tool call with jobs containing one entry per requested role and a stable label for each role.`,`When the user explicitly asks to create, run, spawn, delegate to, or use agents/subagents, start the requested subagent job immediately.`,`Do not ask a follow-up question unless execution is impossible or unsafe.`,`Subagent jobs run as background tasks by default.`,`The tool waits for a terminal result and returns completed, failed, or timed-out outcome data with structured requested/started job counts.`,`After the tool returns, base user-facing claims on returned mode and counts; do not say parallel or multiple jobs started unless the result proves those jobs started.`,`Execution is represented by a real tool call and runtime background task event.`].join(` `);function Ln(e){return e}const Rn=v.object({prompt:v.string().optional().describe(`The task for a single subagent to perform. Required when jobs is omitted.`),subagent_type:v.string().optional().describe(`Agent type: "general-purpose", "Explore", "Plan", or a custom agent name`),model:v.string().optional().describe(`Optional model override`),isolation:v.enum([`none`,`worktree`]).optional().describe(`Optional runtime isolation mode. "worktree" runs in a Git worktree.`),jobs:v.array(v.object({label:v.string().optional().describe(`Stable role label for this batch job`),prompt:v.string().describe(`The task for this subagent to perform`),subagent_type:v.string().optional().describe(`Agent type for this job`),model:v.string().optional().describe(`Optional model override for this job`),isolation:v.enum([`none`,`worktree`]).optional().describe(`Isolation for this job`)}).passthrough()).optional().describe(`Batch of subagent jobs to start in one Agent tool call`)}).passthrough(),zn=new WeakMap;function Bn(e,t){zn.set(e,t)}function I(e){return zn.get(e)}function Vn(e,t){if(t){let n=t(e);if(n)return n}let n=dn(e);if(n)return n}function Hn(e){return e.subagentManager??new ae({runner:Fn(e)})}function Un(e,t,n,r,i=n.name,a){return{type:t,label:i,parentSessionId:r.parentSessionId??`unknown-session`,mode:`background`,depth:r.subagentDepth??1,cwd:r.cwd??process.cwd(),prompt:e.prompt,model:e.model,isolation:e.isolation,metadata:M({kind:`tool_call`,sessionId:r.parentSessionId??`unknown-session`,label:i,...a?{toolCallId:a}:{}})}}async function Wn(e,t,n,r){if(typeof e.prompt!=`string`||e.prompt.length===0)return ln(`prompt is required when jobs is omitted`);let i={...e,prompt:e.prompt},a=e.subagent_type??`general-purpose`,o=Vn(a,t.customAgentRegistry);if(!o)return sn(a);let s;try{let e=await n.spawn(Un(i,a,o,t,void 0,r));return s=e.id,cn(await n.wait(e.id))}catch(e){return ln(e instanceof Error?e.message:String(e),s)}}function Gn(e){let t=Hn(e);return he(`Agent`,In,Ln(Rn),async(n,r)=>{let i=n,a=r?.executionId;return Array.isArray(i.jobs)&&i.jobs.length>0?on({jobs:i.jobs,deps:e,manager:t,resolveAgentDefinition:Vn,createSpawnRequest:Un,toolCallId:a}):Wn({prompt:i.prompt,...i.subagent_type===void 0?{}:{subagent_type:i.subagent_type},...i.model===void 0?{}:{model:i.model},...i.isolation===void 0?{}:{isolation:i.isolation}},e,t,a)})}var Kn=class{getManager;onChanged;emitTaskEvent;emitGroupEvent;persistSession;onWake;appendSystemNote;backgroundTasks=[];backgroundTaskEvents=[];backgroundJobGroups=[];backgroundJobGroupEvents=[];backgroundTaskUnsubscribe=null;backgroundJobUnsubscribe=null;backgroundJobOrchestrator=null;constructor(e,t,n,r,i,a,o){this.getManager=e,this.onChanged=t,this.emitTaskEvent=n,this.emitGroupEvent=r,this.persistSession=i,this.onWake=a,this.appendSystemNote=o}subscribe(e){if(this.backgroundTaskUnsubscribe)return;let t=qt(e)??I(e)?.backgroundTaskManager;t&&(this.backgroundTaskUnsubscribe=t.subscribe(e=>{this.recordTaskEvent(e),this.emitTaskEvent(e),e.type===`background_task_waking`&&e.instruction!==void 0&&this.onWake?.(e.instruction,e.taskId)}),this.reArmRestoredSchedules(t))}reArmRestoredSchedules(e){let t=Date.now();for(let n of this.backgroundTasks)n.kind!==`scheduled`||n.status!==`sleeping`||!n.schedule||(n.nextFireAt!==void 0&&new Date(n.nextFireAt).getTime()<t&&this.appendSystemNote?.(`Missed scheduled wake "${n.label}" (was due ${n.nextFireAt} while the session was closed); re-arming.`),e.spawn({kind:`scheduled`,cronExpression:n.schedule.cronExpression,label:n.label,mode:n.mode,parentSessionId:n.parentSessionId,depth:n.depth,cwd:n.cwd,...n.schedule.agentInstruction===void 0?{}:{agentInstruction:n.schedule.agentInstruction},...n.schedule.command===void 0?{}:{command:n.schedule.command},...n.schedule.shell===void 0?{}:{shell:n.schedule.shell},...n.schedule.env===void 0?{}:{env:{...n.schedule.env}}}))}dispose(){this.backgroundTaskUnsubscribe?.(),this.backgroundTaskUnsubscribe=null,this.backgroundJobUnsubscribe?.(),this.backgroundJobUnsubscribe=null,this.backgroundJobOrchestrator?.dispose(),this.backgroundJobOrchestrator=null}restoreState(e){this.backgroundTasks=e.tasks,this.backgroundTaskEvents=e.taskEvents,this.backgroundJobGroups=e.groups,this.backgroundJobGroupEvents=e.groupEvents}getState(){return{tasks:this.getTaskSnapshots(),taskEvents:this.backgroundTaskEvents,groups:this.getGroupSnapshots(),groupEvents:this.backgroundJobGroupEvents}}getManagerOrThrow(){let e=this.getManager();if(!e)throw Error(`Background task manager is not available for this session.`);return e}getOrchestratorOrThrow(e){if(this.backgroundJobOrchestrator)return this.backgroundJobOrchestrator;let t=this.getManagerOrThrow();return this.backgroundJobOrchestrator=new st({manager:t,initialGroups:this.backgroundJobGroups}),this.subscribeGroupEvents(e),this.backgroundJobOrchestrator}async cancelTask(e,t){await this.getManagerOrThrow().cancel(e,t)}async closeTask(e){await this.getManagerOrThrow().close(e)}async sendTask(e,t){await this.getManagerOrThrow().send(e,t)}async readTaskLog(e,t){return this.getManagerOrThrow().readLog(e,t)}listTasks(e){return this.getManagerOrThrow().list(e)}getTask(e){return this.getManagerOrThrow().get(e)}createGroup(e,t){return this.getOrchestratorOrThrow(t).createGroup({...e,parentSessionId:t})}listGroups(e){return this.getOrchestratorOrThrow(e).listGroups()}getGroup(e,t){return this.getOrchestratorOrThrow(t).getGroup(e)}async waitGroup(e,t){return this.getOrchestratorOrThrow(t).waitGroup(e)}async readTaskDetail(e,t,n){let r=this.getManagerOrThrow().get(t);if(!r)throw Error(`Unknown background task: ${t}`);if(r.logPath||r.transcriptPath){let i=await this.getManagerOrThrow().readLog(t,n);return zt({entryId:e,lines:i.lines,cursor:i.cursor,nextCursor:i.nextCursor,kind:r.kind===`process`?`process_output`:`progress`})}let i=r.status===`failed`?`error`:r.status===`completed`?`result`:`progress`;return zt({entryId:e,lines:[r.error?.message??r.result?.output??r.currentAction??r.promptPreview??r.commandPreview??r.status],cursor:n,kind:i})}readGroupDetail(e,t,n){let r=this.getOrchestratorOrThrow(n).getGroup(t);if(!r)throw Error(`Unknown background job group: ${t}`);return zt({entryId:e,lines:ft(r).lines,kind:`group_summary`})}getTaskSnapshots(){try{return this.getManagerOrThrow().list()}catch{return this.backgroundTasks}}getGroupSnapshots(){try{return this.backgroundJobOrchestrator?.listGroups()??this.backgroundJobGroups}catch{return this.backgroundJobGroups}}subscribeGroupEvents(e){this.backgroundJobUnsubscribe||!this.backgroundJobOrchestrator||(this.backgroundJobUnsubscribe=this.backgroundJobOrchestrator.subscribe(t=>{this.recordGroupEvent(t,e),this.emitGroupEvent(t)}))}recordTaskEvent(e){this.backgroundTasks=this.getTaskSnapshots(),this.backgroundTaskEvents.push(e),this.persistSession(),this.onChanged(`background_task`,qn(e))}recordGroupEvent(e,t){this.backgroundJobGroups=this.getGroupSnapshots(),this.backgroundJobGroupEvents.push(e),this.persistSession(),this.onChanged(`background_group`,vt(e.group.id))}};function qn(e){if(`task`in e)return _t(e.task.id);if(`taskId`in e)return _t(e.taskId)}function Jn(e){let t=I(e);if(!t)throw Error(`Agent runtime dependencies are not available for this session.`);if(!t.backgroundTaskManager)throw Error(`Background task manager is not available for this session.`);return t}function L(e){let t=Jn(e);if(!t.subagentManager)throw Error(`Subagent manager is not available for this session.`);return t.subagentManager}function Yn(e,t){let n=t.customAgentRegistry?.(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function Xn(e){return(I(e)?.agentDefinitions??[]).map(e=>({name:e.name,description:e.description}))}async function Zn(e,t,n,r){let i=Jn(e),a=Yn(t.agentType,i),o=e.getSessionId();return L(e).spawn({type:t.agentType,label:t.label,parentSessionId:o,mode:t.mode,depth:(i.subagentDepth??0)+1,cwd:i.cwd??n??process.cwd(),prompt:t.prompt,model:t.model??a.model,isolation:t.isolation,allowedTools:a.tools,disallowedTools:a.disallowedTools,metadata:M({kind:r===`model`?`model_command`:`slash_command`,sessionId:o,commandName:`agent`,label:t.label})})}async function Qn(e,t){return L(e).wait(t)}async function $n(e,t,n){await L(e).send(t,n)}async function er(e,t,n){await L(e).cancel(t,n)}async function tr(e,t){await L(e).close(t)}function nr(e){return L(e).list()}function rr(e,t={}){let{sessionId:n,execCtrl:r,histTracker:i,bgTracker:a}=e,o=i.getHistory();return bt({sessionId:n,mainThread:{sessionId:n,isExecuting:r.executing,hasPendingPrompt:r.pendingPrompt!==null,historyLength:o.length,updatedAt:o.at(-1)?.timestamp.toISOString()??new Date(0).toISOString(),preview:r.streamingText.trim().length>0?r.streamingText:o.at(-1)?.type},tasks:a.getTaskSnapshots(),groups:a.getGroupSnapshots(),selectedEntryId:t.selectedEntryId,filter:t.filter})}async function ir(e,t,n,r,i){let a=yt(e);if(!a)throw Error(`Unknown execution workspace entry: ${e}`);return a.kind===`main_thread`?Rt({entryId:e,history:t(),cursor:i}):a.kind===`background_group`?n.readGroupDetail(e,a.sourceId,r):n.readTaskDetail(e,a.sourceId,i)}function ar(e,t,n,r){return Ht({manager:e.getManagerOrThrow(),groupOrchestrator:e.getOrchestratorOrThrow(t),sessionId:t,cwd:n,origin:{...r,sessionId:r.sessionId||t}})}var or=class{isExecuting(){return this.execCtrl.executing}getPendingPrompt(){return this.execCtrl.pendingPrompt}getStreamingText(){return this.execCtrl.streamingText}getActiveTools(){return this.execCtrl.activeTools}cancelQueue(){this.execCtrl.clearPendingQueue()}async executeCommand(e,t){return await this.ensureInitialized(),this.execCtrl.executing?{success:!1,message:`Another prompt or command is already running. Wait for it to finish.`}:this.skillRouter.executeCommand(e,t)}async executeModelCommand(e,t){return await this.ensureInitialized(),this.skillRouter.executeModelCommand(e,t)}getCommandInvocationSource(){return this.skillRouter.getCommandInvocationSource()}async executeSkillCommandByName(e,t,n){return await this.ensureInitialized(),this.skillRouter.executeSkillCommandByName(e,t,n)}listCommands(){return this.skillRouter.listCommands()}listSkills(){return this.skillRouter.listSkills()}listModelInvocableCommands(){return this.skillRouter.listModelInvocableCommands()}getCommandHostAdapters(){return this.skillRouter.getCommandHostAdapters()}getSkillActivationEvents(){return this.histTracker.getSkillActivationEvents()}getContextState(){return this.getSessionOrThrow().getContextState()}async compactContext(e){await this.getSessionOrThrow().compact(e)}getFullHistory(){return this.histTracker.getHistory()}getMessages(){return this.histTracker.getHistory().filter(e=>e.category===`chat`).map(e=>e.data)}listEditCheckpoints(){return this.histTracker.listEditCheckpoints()}inspectEditCheckpoint(e){return this.histTracker.inspectEditCheckpoint(e)}async restoreEditCheckpoint(e){return await this.ensureInitialized(),this.histTracker.restoreEditCheckpoint(e)}async rollbackEditCheckpoint(e){return await this.ensureInitialized(),this.histTracker.rollbackEditCheckpoint(e)}getUsedMemoryReferences(){return this.histTracker.getUsedMemoryReferences()}recordMemoryEvent(e){this.histTracker.recordMemoryEvent(e)}listContextReferences(){return this.histTracker.listContextReferences()}async addContextReference(e){return this.histTracker.addContextReference(e)}removeContextReference(e){return this.histTracker.removeContextReference(e)}clearContextReferences(){return this.histTracker.clearContextReferences()}listBackgroundTasks(e){return this.bgTracker.listTasks(e)}getBackgroundTask(e){return this.bgTracker.getTask(e)}async cancelBackgroundTask(e,t){await this.ensureInitialized(),await this.bgTracker.cancelTask(e,t)}async closeBackgroundTask(e){await this.ensureInitialized(),await this.bgTracker.closeTask(e)}async sendBackgroundTask(e,t){await this.ensureInitialized(),await this.bgTracker.sendTask(e,t)}async readBackgroundTaskLog(e,t){return await this.ensureInitialized(),this.bgTracker.readTaskLog(e,t)}createBackgroundJobGroup(e){return this.bgTracker.createGroup(e,this.getSessionOrThrow().getSessionId())}listBackgroundJobGroups(){return this.bgTracker.listGroups(this.getSessionOrThrow().getSessionId())}getBackgroundJobGroup(e){return this.bgTracker.getGroup(e,this.getSessionOrThrow().getSessionId())}async waitBackgroundJobGroup(e){return await this.ensureInitialized(),this.bgTracker.waitGroup(e,this.getSessionOrThrow().getSessionId())}getExecutionWorkspaceSnapshot(e={}){return rr({sessionId:this.getSessionOrThrow().getSessionId(),execCtrl:this.execCtrl,histTracker:this.histTracker,bgTracker:this.bgTracker},e)}listExecutionWorkspaceEntries(e){return[...this.getExecutionWorkspaceSnapshot({filter:e}).entries]}getExecutionWorkspaceEntry(e){return this.getExecutionWorkspaceSnapshot().entries.find(t=>t.id===e)}async readExecutionWorkspaceDetail(e,t){return await this.ensureInitialized(),ir(e,()=>this.histTracker.getHistory(),this.bgTracker,this.getSessionOrThrow().getSessionId(),t)}createExecutionWorkspaceTaskSpawner(e){return ar(this.bgTracker,this.getSessionOrThrow().getSessionId(),this.getCwd(),e)}listAgentDefinitions(){return Xn(this.getSessionOrThrow())}listAgentJobs(){return nr(this.getSessionOrThrow())}async spawnAgentJob(e){return await this.ensureInitialized(),Zn(this.getSessionOrThrow(),e,this.getCwd(),this.skillRouter.getCommandInvocationSource())}async waitAgentJob(e){return await this.ensureInitialized(),Qn(this.getSessionOrThrow(),e)}async sendAgentJob(e,t){await this.ensureInitialized(),await $n(this.getSessionOrThrow(),e,t)}async cancelAgentJob(e,t){await this.ensureInitialized(),await er(this.getSessionOrThrow(),e,t)}async closeAgentJob(e){await this.ensureInitialized(),await tr(this.getSessionOrThrow(),e)}async spawnScheduledWake(e){return await this.ensureInitialized(),this.bgTracker.getManagerOrThrow().spawn({kind:`scheduled`,label:e.label,mode:`background`,parentSessionId:this.getSessionOrThrow().getSessionId(),depth:0,cwd:this.getCwd(),cronExpression:e.cronExpression,agentInstruction:e.agentInstruction})}async spawnMonitorWake(e){return await this.ensureInitialized(),this.bgTracker.getManagerOrThrow().spawn({kind:`process`,label:e.label,mode:`background`,parentSessionId:this.getSessionOrThrow().getSessionId(),depth:0,cwd:this.getCwd(),command:e.command,matchPattern:e.matchPattern,agentInstruction:e.agentInstruction})}},R=class{existsSync(e){return b(e)}readFileSync(e,t){return x(e,t)}writeFileSync(e,t,n){Le(e,t,n??`utf8`)}mkdirSync(e,t){je(e,t)}readdirSync(e,t){return t?.withFileTypes?Me(e,{withFileTypes:!0}):Me(e)}statSync(e){return Fe(e)}rmSync(e,t){Pe(e,t)}cpSync(e,t,n){ke(e,t,n)}renameSync(e,t){Ne(e,t)}get constants(){return Oe}},z=class{async access(e,t){await Re(e,t)}async copyFile(e,t,n){await ze(e,t,n)}async mkdir(e,t){await Be(e,t)}async readFile(e,t){return Ve(e,t)}async readdir(e,t){return t?.withFileTypes?await He(e,{withFileTypes:!0}):He(e)}async realpath(e){return Ue(e)}async rename(e,t){await We(e,t)}async rm(e,t){await Ge(e,t)}async stat(e){return Ke(e)}async writeFile(e,t,n){await qe(e,t,n??`utf8`)}};function sr(e){return De(`sha256`).update(e,`utf-8`).digest(`hex`)}function cr(e,t=new R){let n=t.readFileSync(e,`utf-8`);return{filePath:e,content:n,contentHash:sr(n)}}async function lr(e,t=new R){let n=[],r=[];for(let i of e){if(!t.existsSync(i.filePath)){r.push(i);continue}sr(t.readFileSync(i.filePath,`utf-8`))===i.contentHash?r.push(i):n.push(i)}return{stale:n,fresh:r}}async function ur(e,t=new R){let{stale:n}=await lr(e,t),r=new Set(n.map(e=>e.filePath)),i=[];return{updated:e.map(e=>{if(!r.has(e.filePath))return e;let n=t.readFileSync(e.filePath,`utf-8`);return i.push(e.filePath),{filePath:e.filePath,content:n,contentHash:sr(n)}}),refreshed:i}}async function dr(e,t,n,r,i,a){if(!n)return;let o=[...e,...t];if(o.length===0)return;let s=e.length,{updated:c,refreshed:l}=await ur(o);if(l.length===0)return;let u=c.slice(0,s),d=c.slice(s);r(u,d);let f=n(u.map(e=>e.content).join(`
|
|
50
50
|
|
|
51
51
|
`),d.map(e=>e.content).join(`
|
|
52
52
|
|
|
53
|
-
`));i().updateSystemMessage(f);for(let e of l)a(`context_file_refreshed`,{filePath:e})}function
|
|
53
|
+
`));i().updateSystemMessage(f);for(let e of l)a(`context_file_refreshed`,{filePath:e})}function fr(e,t,n,r=new Date().toISOString()){return{id:`${t}:${e.relativePath}`,sourcePath:e.sourcePath,relativePath:e.relativePath,originalReference:e.originalReference,loadType:t,status:n,byteLength:e.byteLength,loadedAt:r,lastUsedAt:r}}function pr(e,t,n){let r=e.find(e=>e.sourcePath===t.sourcePath),i=e.filter(e=>e.sourcePath!==t.sourcePath),a=r?vr(r,t):t;return yr([...i,a],n)}function mr(e,t){let n=Sr(t),r=e.find(e=>Cr(e,n));return r?{references:e.filter(e=>e.sourcePath!==r.sourcePath),result:{removed:r}}:{references:[...e],result:{}}}function hr(e){return{removed:[...e]}}function gr(e){return e.filter(e=>e.status===`active`)}function _r(e){return e.filter(e=>e.loadType!==`system`).map(e=>({originalReference:e.originalReference,sourcePath:e.sourcePath,relativePath:e.relativePath,reason:e.loadType,depth:0,byteLength:e.byteLength}))}function vr(e,t){return t.status===`active`?{...t,loadedAt:e.loadedAt}:{...e,byteLength:t.byteLength,originalReference:t.originalReference,lastUsedAt:t.lastUsedAt}}function yr(e,t){let n=t?.maxActiveReferences??8,r=t?.maxActiveBytes??262144,i=t?.maxObservedReferences??32,a=[],o=[...e];for(;br(o)>n||xr(o)>r;){let e=o.find(e=>e.status===`active`);if(!e)break;a.push(e),o=o.filter(t=>t.sourcePath!==e.sourcePath)}let s=o.filter(e=>e.status===`observed`);if(s.length>i){let e=s.slice(0,s.length-i);a.push(...e),o=o.filter(t=>t.status!==`observed`||!e.some(e=>e.sourcePath===t.sourcePath))}return{references:o,evicted:a}}function br(e){return e.filter(e=>e.status===`active`).length}function xr(e){return e.reduce((e,t)=>e+(t.status===`active`?t.byteLength:0),0)}function Sr(e){return e.startsWith(`@`)?e.slice(1):e}function Cr(e,t){return e.relativePath===t||e.sourcePath===t||e.originalReference===t||e.originalReference===`@${t}`}function wr(e,t){return t.length===0?e:[e,`<robota_file_references>`,...t.map(e=>{let t=e.content.replaceAll(`</file>`,`<\\/file>`);return[`<file path="${Or(e.relativePath)}" bytes="${e.byteLength}" reason="${e.reason}">`,t,`</file>`].join(`
|
|
54
54
|
`)}),`</robota_file_references>`].join(`
|
|
55
55
|
|
|
56
|
-
`)}function
|
|
57
|
-
`)}function
|
|
56
|
+
`)}function Tr(e){return e.some(e=>e.severity===`error`)}function Er(e){return e.length===0?``:[`File reference error:`,...e.map(e=>`- ${e.reference}: ${e.message}`)].join(`
|
|
57
|
+
`)}function B(e){return e.map(({content:e,...t})=>t)}function Dr(e){let t=B(e);return{id:`prompt_file_reference_${y()}`,timestamp:new Date,category:`event`,type:`prompt-file-reference`,data:{message:kr(t),references:t}}}function Or(e){return e.replaceAll(`&`,`&`).replaceAll(`"`,`"`).replaceAll(`<`,`<`).replaceAll(`>`,`>`)}function kr(e){return`Loaded file references: ${e.map(e=>`${e.relativePath} (${e.byteLength} B)`).join(`, `)}`}const Ar=/(^|[\s([{])@([^\s)\]}>,;"'`]+)/g;function jr(e){let t=[];for(let n of e.matchAll(Ar)){let e=Mr(n[2]??``);Nr(e)&&t.push({original:`@${e}`,path:e,index:n.index??0})}return t}function Mr(e){let t=e.length;for(;t>0&&/[.,:;!?]/.test(e[t-1]??``);)--t;return e.slice(0,t)}function Nr(e){return e.length===0||e.includes(`://`)?!1:e.startsWith(`./`)||e.startsWith(`../`)||e.startsWith(`/`)||e.startsWith(`~/`)||e.startsWith(`.`)||e.includes(`.`)}function Pr(e,t){return e.startsWith(`~/`)?E(D(),e.slice(2)):Ye(e)?E(e):E(t,e)}function Fr(e,t){let n=T(t,e);return n===``||!n.startsWith(`..`)&&!Ye(n)}function Ir(e,t){return T(e,t).split(Xe).join(`/`)}async function Lr(e,t){let n=await zr(t);for(let t of jr(e))await Ur(t,0,[],n);return Br(n)}async function Rr(e,t){let n=await zr(t);for(let t of e)await Ur({original:`@${t}`,path:t,index:0},0,[],n);return Br(n)}async function zr(e){let t=e.fsAsync??new z;return{rootPath:await Hr(e.cwd,t),limits:Vr(e.limits),reason:e.reason??`prompt-reference`,references:[],diagnostics:[],loadedPaths:new Set,totalBytes:0,fsAsync:t}}function Br(e){return{references:e.references,diagnostics:e.diagnostics}}function Vr(e){return{maxDepth:e?.maxDepth??2,maxReferences:e?.maxReferences??8,maxFileBytes:e?.maxFileBytes??65536,maxTotalBytes:e?.maxTotalBytes??262144}}async function Hr(e,t){try{return await t.realpath(e)}catch{return E(e)}}async function Ur(e,t,n,r){if(!Wr(e,t,r))return;let i=await Gr(e,r);if(i===void 0||!Kr(e,i,n,r))return;let a=await qr(e,i,r);if(a===void 0)return;let o=await Jr(e,i,r);o!==void 0&&(r.loadedPaths.add(i),r.totalBytes+=a.byteLength,r.references.push(Yr(e,a,t,o,r)),await Xr(o,t,[...n,i],r))}function Wr(e,t,n){return n.references.length>=n.limits.maxReferences?(V(n,`too-many-references`,e,`Too many file references.`),!1):t>n.limits.maxDepth?(V(n,`max-depth`,e,`File reference nesting is too deep.`),!1):!0}async function Gr(e,t){let n=Pr(e.path,t.rootPath);if(!Fr(n,t.rootPath)){V(t,`outside-root`,e,`Referenced path is outside the workspace.`);return}try{let r=await t.fsAsync.realpath(n);if(Fr(r,t.rootPath))return r;V(t,`outside-root`,e,`Referenced path resolves outside the workspace.`)}catch{V(t,`not-found`,e,`Referenced file was not found.`)}}function Kr(e,t,n,r){return n.includes(t)?(V(r,`circular-reference`,e,`Circular file reference detected.`),!1):!r.loadedPaths.has(t)}async function qr(e,t,n){try{let r=await n.fsAsync.stat(t);if(r.isDirectory()){V(n,`directory-not-supported`,e,`Directory references are not supported.`);return}if(r.size>n.limits.maxFileBytes){V(n,`file-too-large`,e,`Referenced file exceeds the per-file size limit.`);return}if(n.totalBytes+r.size>n.limits.maxTotalBytes){V(n,`total-too-large`,e,`Referenced files exceed the total size limit.`);return}return{sourcePath:t,byteLength:r.size}}catch{V(n,`unreadable`,e,`Referenced file could not be inspected.`);return}}async function Jr(e,t,n){try{return await n.fsAsync.readFile(t,`utf8`)}catch{V(n,`unreadable`,e,`Referenced file could not be read.`);return}}function Yr(e,t,n,r,i){return{originalReference:e.original,sourcePath:t.sourcePath,relativePath:Ir(i.rootPath,t.sourcePath),reason:i.reason,depth:n,byteLength:t.byteLength,content:r}}async function Xr(e,t,n,r){for(let i of jr(e))await Ur(i,t+1,n,r)}function V(e,t,n,r){e.diagnostics.push({code:t,severity:`error`,reference:n.original,message:r,path:n.path})}function Zr(e){return e instanceof DOMException&&e.name===`AbortError`||e instanceof Error&&(e.message.includes(`aborted`)||e.message.includes(`abort`))}function Qr(e,t){let n=[];for(let r=t;r<e.length;r++){let t=e[r];if(t?.role===`assistant`&&t.toolCalls)for(let e of t.toolCalls)n.push({name:e.function.name,args:e.function.arguments})}return n}function $r(e,t,n,r,i,a){let o=Qr(t,r),s=ii(t,r,i);return{response:e,history:n,toolSummaries:o,contextState:i,...s&&{usage:s},...a&&a.length>0?{promptFileReferences:[...a]}:{}}}function ei(e,t,n,r){let i=Qr(e,n),a=[];for(let t=n;t<e.length;t++){let n=e[t];n?.role===`assistant`&&n.content&&a.push(n.content)}let o=ii(e,n,r);return{response:a.join(`
|
|
58
58
|
|
|
59
|
-
`),history:t,toolSummaries:i,contextState:r,...o&&{usage:o}}}function
|
|
59
|
+
`),history:t,toolSummaries:i,contextState:r,...o&&{usage:o}}}function ti(e){return{id:`usage_${y()}`,timestamp:new Date,category:`event`,type:`usage-summary`,data:e}}async function ni(e,t,n,r=[]){let i=await Rr(gr(r).map(e=>e.sourcePath),{cwd:t,reason:`manual`}),a=await Lr(e,{cwd:t}),o=[...i.diagnostics,...a.diagnostics];if(Tr(o))throw Error(Er(o));let s=wr(e,ri([...i.references,...a.references])),c=n??(s===e?void 0:e),l=B(i.references),u=B(a.references),d=a.references.length>0?Dr(a.references):void 0;return{modelInput:s,...c===void 0?{}:{hookInput:c},activeContextReferenceRecords:l,promptFileReferenceRecords:u,...d===void 0?{}:{promptFileReferenceEntry:d}}}function ri(e){return[...new Map(e.map(e=>[e.sourcePath,e])).values()]}function ii(e,t,n){let r=e.slice(t),i=0,a=0,s=!1;for(let e of r){if(e.role!==`assistant`)continue;let t=o(e);t&&(s=!0,i+=t.inputTokens,a+=t.outputTokens)}if(s)return{kind:`exact`,scope:`turn`,promptTokens:i,completionTokens:a,totalTokens:i+a,contextUsedTokens:n.usedTokens,contextMaxTokens:n.maxTokens,contextUsedPercentage:n.usedPercentage,costStatus:`unknown`}}const ai={write:()=>{},writeLine:()=>{},writeMarkdown:()=>{},writeError:()=>{},prompt:()=>Promise.resolve(``),select:()=>Promise.resolve(0),spinner:()=>({stop:()=>{},update:()=>{}})};function oi(e){if(!e)return``;let t=Object.values(e)[0],n=typeof t==`string`?t:JSON.stringify(t??``);return n.length>80?n.slice(0,47)+`...`+n.slice(-30):n}function si(e,t,n){let r=e?.[t]??e?.[n];return typeof r==`string`?r:null}function ci(e){if(!e)return 1;try{let t=JSON.parse(e);return typeof t.startLine==`number`&&Number.isFinite(t.startLine)?t.startLine:1}catch{return 1}}function li(e){if(e.toolName!==`Edit`)return{};let t=si(e.toolArgs,`file_path`,`filePath`),n=si(e.toolArgs,`old_string`,`oldString`),r=si(e.toolArgs,`new_string`,`newString`);return!t||n===null||r===null||n===r?{}:{diffFile:t,diffLines:di(n,r,ci(e.toolResultData),t)}}function ui(e,t,n){return[...e.split(`
|
|
60
60
|
`).map((e,t)=>({type:`remove`,text:e,lineNumber:n+t})),...t.split(`
|
|
61
|
-
`).map((e,t)=>({type:`add`,text:e,lineNumber:n+t}))]}function
|
|
61
|
+
`).map((e,t)=>({type:`add`,text:e,lineNumber:n+t}))]}function di(e,t,n,r,i=new R){let a=ui(e,t,n),o;try{o=i.readFileSync(r,`utf8`).split(`
|
|
62
62
|
`)}catch{return a}let s=[],c=Math.max(0,n-1-3);for(let e=c;e<n-1;e++)e<o.length&&s.push({type:`context`,text:o[e],lineNumber:e+1});let l=[],u=n-1+t.split(`
|
|
63
63
|
`).length;for(let e=u;e<u+3;e++)e<o.length&&l.push({type:`context`,text:o[e],lineNumber:e+1});let d=s[0]?.lineNumber??a[0]?.lineNumber??l[0]?.lineNumber??n,f=e.split(`
|
|
64
64
|
`).length,p=t.split(`
|
|
65
|
-
`).length;return[{type:`hunk`,text:`@@ -${d},${s.length+f+l.length} +${d},${s.length+p+l.length} @@`,lineNumber:d},...s,...a,...l]}function
|
|
66
|
-
`);e.history.push({id:_(),timestamp:new Date,category:`event`,type:`tool-summary`,data:{tools:e.activeTools.map(e=>({toolName:e.toolName,firstArg:e.firstArg,isRunning:e.isRunning,result:e.result,diffFile:e.diffFile,diffLines:e.diffLines,toolResultData:e.toolResultData})),summary:t}})}function ci(e){let t=e.filter(e=>!e.isRunning);if(t.length<=50)return e;let n=t.length-50,r=0;return e.filter(e=>!e.isRunning&&r<n?(r++,!1):!0)}function li(e,t){let n=ti(t.toolArgs),r={toolName:t.toolName,firstArg:n,isRunning:!0,...t.executionId?{executionId:t.executionId}:{}};return e.activeTools.push(r),e.history.push({id:_(),timestamp:new Date,category:`event`,type:`tool-start`,data:{toolName:t.toolName,firstArg:n,isRunning:!0}}),r}function ui(e,t){let n=t.denied?`denied`:t.success===!1?`error`:`success`,r=e.activeTools.findIndex(e=>e.toolName===t.toolName&&e.isRunning);if(r===-1)return null;let i={...e.activeTools[r],...ii(t),isRunning:!1,result:n,toolResultData:t.toolResultData};return e.activeTools[r]=i,e.activeTools=ci(e.activeTools),e.history.push({id:_(),timestamp:new Date,category:`event`,type:`tool-end`,data:{toolName:i.toolName,firstArg:i.firstArg,isRunning:!1,result:n,toolResultData:t.toolResultData}}),i}const di=[{pattern:/\b401\b|invalid.*api.?key|authentication.*fail|unauthorized/i,message:"Invalid API key. Run `/provider` to reconfigure, or check your settings file (~/.robota/settings.json)."},{pattern:/\b403\b|permission.*denied|forbidden/i,message:"Access denied. Your API key may lack permission for this model. Check your provider plan or run `/provider` to switch accounts."},{pattern:/\b429\b|rate.?limit|too many requests|quota.*exceeded/i,message:"Rate limit reached. Wait a moment and try again. Consider switching to a different model with `/model`."},{pattern:/\b500\b|internal server error/i,message:`The AI provider returned an internal error. This is usually temporary — try again.`},{pattern:/\b503\b|service.*unavailable|overloaded/i,message:`The AI provider is temporarily unavailable or overloaded. Try again in a few seconds.`},{pattern:/\b502\b|bad gateway/i,message:`The AI provider gateway is unreachable. Check your network or try again shortly.`},{pattern:/\btimeout\b|timed.?out|ETIMEDOUT/i,message:`The request timed out. Check your internet connection, or try a shorter prompt to reduce response time.`},{pattern:/ENOTFOUND|ECONNREFUSED|ECONNRESET|network.*error|fetch.*fail/i,message:`Network connection failed. Check your internet connection and verify your provider URL in settings.`}];function fi(i){if(i instanceof e)return"Invalid API key. Run `/provider` to reconfigure, or check your settings file (~/.robota/settings.json).";if(i instanceof r)return`Rate limit reached${i.retryAfter?` (retry after ${i.retryAfter}s)`:``}. Wait a moment and try again. Consider switching to a different model with \`/model\`.`;if(i instanceof t)return`Network connection failed. Check your internet connection and verify your provider URL in settings.`;if(i instanceof n&&i.originalError)return fi(i.originalError);let a=i.message;for(let{pattern:e,message:t}of di)if(e.test(a))return t;return a}async function pi(e,t,n,r){let i=r.getHistory();i.push(h(s(t??e))),r.onWorkspaceUpdated();let c=r.getSession().getHistory().length;r.resetUsedMemoryReferences();try{let o=await Zr(e,r.getCwd(),n,r.getContextReferences());o.promptFileReferenceEntry&&i.push(o.promptFileReferenceEntry),r.recordContextReferenceUsage(o.activeContextReferenceRecords),r.recordPromptContextReferences(o.promptFileReferenceRecords),await r.beginEditCheckpointTurn(t??e);let s=await r.getSession().run(o.modelInput,o.hookInput);r.flushStreaming(),si({activeTools:r.getActiveTools(),history:i}),r.clearStreaming();let l=Jr(s||`(empty response)`,r.getSession().getHistory(),i,c,r.getSession().getContextState(),o.promptFileReferenceRecords);i.push(h(a(l.response))),l.usage&&i.push(Xr(l.usage)),r.onComplete(l),r.onContextUpdate()}catch(e){if(r.flushStreaming(),Kr(e)){let e=Yr(r.getSession().getHistory(),i,c,r.getSession().getContextState());si({activeTools:r.getActiveTools(),history:i}),r.clearStreaming(),e.response&&i.push(h(a(e.response))),e.usage&&i.push(Xr(e.usage)),i.push(h(o(`Interrupted by user.`))),r.onInterrupted(e)}else{si({activeTools:r.getActiveTools(),history:i}),r.clearStreaming();let t=e instanceof Error?e:Error(String(e)),n=fi(t);i.push(h(o(`Error: ${n}`))),r.onError(t)}}}var mi=class{histTracker;skillRouter;callbacks;executing=!1;streamingText=``;flushTimer=null;activeTools=[];pendingPrompt=null;pendingDisplayInput;pendingRawInput;shuttingDown=!1;constructor(e,t,n){this.histTracker=e,this.skillRouter=t,this.callbacks=n}clearPendingQueue(){this.pendingPrompt=null,this.pendingDisplayInput=void 0,this.pendingRawInput=void 0}clearStreaming(){this.streamingText=``,this.activeTools=[],this.flushTimer&&=(clearTimeout(this.flushTimer),null)}flushStreaming(){this.flushTimer&&=(clearTimeout(this.flushTimer),null)}handleTextDelta(e){this.streamingText+=e,this.callbacks.emit(`text_delta`,e),this.flushTimer||=setTimeout(()=>{this.flushTimer=null},16)}handleCompactEvent(e){e.trigger===`auto`&&this.histTracker.append(h(o(`Auto compacted context: ${Math.round(e.before.usedPercentage)}% -> ${Math.round(e.after.usedPercentage)}%`))),this.callbacks.emit(`compact`,e),this.callbacks.emit(`context_update`,e.after)}handleToolExecution(e){let t={activeTools:this.activeTools,history:this.histTracker.getHistory()};if(e.type===`start`){let n=li(t,e);this.activeTools=t.activeTools,this.callbacks.emit(`tool_start`,n)}else{let n=ui(t,e);this.activeTools=t.activeTools,n&&this.callbacks.emit(`tool_end`,n)}}emitExecutionWorkspaceUpdated(e,t){this.callbacks.getSession()&&this.callbacks.emit(`execution_workspace_event`,{type:`execution_workspace_updated`,cause:e,...t?{entryId:t}:{},snapshot:this.callbacks.getExecutionWorkspaceSnapshot()})}drainPendingQueue(e){if(!this.shuttingDown&&this.pendingPrompt){let t=this.pendingPrompt,n=this.pendingDisplayInput,r=this.pendingRawInput;this.clearPendingQueue(),setTimeout(()=>void e(t,n,r),0)}}async executePrompt(e,t,n,r,i,a,o,s){await ar(r,i,a,o,()=>this.callbacks.getSessionOrThrow(),(e,t)=>this.callbacks.emit(e,t)),this.executing=!0,this.clearStreaming(),this.callbacks.emit(`user_message`,t??e),this.callbacks.emit(`thinking`,!0);try{await pi(e,t,n,{getSession:()=>this.callbacks.getSessionOrThrow(),getCwd:()=>this.callbacks.getCwd(),getHistory:()=>this.histTracker.getHistory(),getContextReferences:()=>this.histTracker.listInjectionContextReferences(),getActiveTools:()=>this.activeTools,resetUsedMemoryReferences:()=>this.histTracker.resetUsedMemoryReferences(),recordContextReferenceUsage:e=>this.histTracker.recordContextReferenceUsage(e),recordPromptContextReferences:e=>this.histTracker.recordPromptContextReferences(e),beginEditCheckpointTurn:e=>this.histTracker.beginEditCheckpointTurn(e),flushStreaming:()=>this.flushStreaming(),clearStreaming:()=>this.clearStreaming(),onWorkspaceUpdated:()=>this.emitExecutionWorkspaceUpdated(`main_thread`),onComplete:e=>{this.callbacks.emit(`complete`,e)},onInterrupted:e=>{this.callbacks.emit(`interrupted`,e)},onError:e=>{this.callbacks.emit(`error`,e)},onContextUpdate:()=>{this.callbacks.emit(`context_update`,this.callbacks.getContextState())}})}finally{try{await this.histTracker.finalizeEditCheckpointTurn()}catch(e){this.callbacks.emit(`error`,e instanceof Error?e:Error(String(e)))}this.executing=!1,this.callbacks.emit(`thinking`,!1),this.emitExecutionWorkspaceUpdated(`main_thread`),this.callbacks.persistSession(),this.drainPendingQueue(s)}}async executeForkSkillCommand(e,t,n,r,i,a){if(this.executing)throw Error(`Cannot execute fork skill while another prompt is running.`);this.executing=!0,this.clearStreaming(),this.callbacks.emit(`thinking`,!0),this.histTracker.append(h(s(n??`/${e.name}`))),this.emitExecutionWorkspaceUpdated(`main_thread`);try{let n=await this.skillRouter.executeSkillWithActivation(e,t,i,r);return await this.applyForkSkillResult(n.result??`(empty response)`),n}catch(e){let t=e instanceof Error?e:Error(String(e));return this.histTracker.append(h(o(`Error: ${fi(t)}`))),this.callbacks.emit(`error`,t),{mode:`fork`,result:``}}finally{this.executing=!1,this.callbacks.emit(`thinking`,!1),this.emitExecutionWorkspaceUpdated(`main_thread`),this.callbacks.persistSession(),this.drainPendingQueue(a)}}async executeForegroundCommand(e,t){this.executing=!0,this.clearStreaming(),this.callbacks.emit(`thinking`,!0),this.emitExecutionWorkspaceUpdated(`main_thread`);try{let t=await e();return this.callbacks.emit(`context_update`,this.callbacks.getContextState()),t}catch(e){return{success:!1,message:`Error: ${e instanceof Error?e.message:String(e)}`}}finally{this.executing=!1,this.callbacks.emit(`thinking`,!1),this.emitExecutionWorkspaceUpdated(`main_thread`),this.callbacks.persistSession(),this.drainPendingQueue(t)}}async applyForkSkillResult(e){this.flushStreaming(),si({activeTools:this.activeTools,history:this.histTracker.getHistory()}),this.clearStreaming();let t={response:e,history:this.histTracker.getHistory(),toolSummaries:[],contextState:this.callbacks.getContextState()};this.histTracker.append(h(a(e))),this.callbacks.emit(`complete`,t),this.callbacks.emit(`context_update`,this.callbacks.getContextState())}};function hi(e,t,n){let r=L(n)?.customAgentRegistry?.(e)??an(e);if(!r)throw Error(`Unknown agent type: ${e}`);return t.allowedTools?{...r,tools:t.allowedTools}:r}async function gi(e,t,n){let r=L(n);if(!r)throw Error(`Fork execution is not available. Agent runtime deps may not be initialized.`);return Cn({agentDefinition:hi(t.agent??`general-purpose`,t,n),parentConfig:r.config,parentContext:r.context,parentTools:r.tools,provider:r.provider,terminal:r.terminal,isForkWorker:!0,permissionMode:r.permissionMode,permissionHandler:r.permissionHandler,hooks:r.hooks,hookTypeExecutors:r.hookTypeExecutors,onTextDelta:r.onTextDelta,onToolExecution:r.onToolExecution}).run(e)}async function _i(e,t,n){let r=await Nr([t],{cwd:n,reason:`manual`});if(yr(r.diagnostics))return{references:[...e],result:{evicted:[],diagnostics:[br(r.diagnostics)]}};let i=r.references[0];if(!i)return{references:[...e],result:{evicted:[],diagnostics:[`No context reference was resolved.`]}};let a=or(V([i])[0],`manual`,`active`),o=sr(e,a);return{references:o.references,result:{reference:a,evicted:o.evicted,diagnostics:[]}}}function vi(e,t,n){if(t.length===0)return[...e];let r=new Date().toISOString(),i=[...e];for(let e of t){let t=or(e,n.loadType,n.status,r);i=sr(i,t).references}return i}function yi(e,t){let n=new Date().toISOString();return e.map(e=>{let r=C(t,e.filePath);return{id:`system:${r}`,sourcePath:e.filePath,relativePath:r,originalReference:r,loadType:`system`,status:`active`,byteLength:Buffer.byteLength(e.content,`utf-8`),loadedAt:n,lastUsedAt:n}})}function U(e){let t=S(e,`.robota`);return{settings:S(t,`settings.json`),settingsLocal:S(t,`settings.local.json`),logs:S(t,`logs`),sessions:S(t,`sessions`),memory:S(t,`memory`),checkpoints:S(t,`checkpoints`)}}function bi(){let e=S(T(),`.robota`);return{settings:S(e,`settings.json`),sessions:S(e,`sessions`),onboarded:S(e,`onboarded`)}}function xi(e){let t=e.fs??new z,n=e.manifests.filter(t=>t.sequence>e.target.sequence),r=e.manifests.filter(t=>t.sequence>=e.target.sequence);return{target:Si(e.target),capturedFiles:e.target.files.map(n=>{let r=n.snapshotFile?S(e.checkpointDir(e.sessionId,e.target.id),n.snapshotFile):void 0,i=r?wi(r,t):void 0;return{originalPath:n.originalPath,relativePath:C(e.cwd,n.originalPath),existed:n.existed,restoreAction:n.existed?`restore-preimage`:`delete-created-file`,snapshotAvailable:n.existed?i!==void 0:!1,...i?{snapshotSizeBytes:i.size}:{}}}),restoreToCheckpoint:Ci(n),rollbackThroughCheckpoint:Ci(r)}}function Si(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function Ci(e){return{checkpointIds:e.map(e=>e.id),fileCount:e.reduce((e,t)=>e+t.fileCount,0)}}function wi(e,t){try{return t.statSync(e)}catch{return}}const Ti=`manifest.json`,Ei=`files`;var Di=class{fs;fsAsync;cwd;rootDir;now;activeTurn=null;constructor(e,t=new z,n=new B){this.fs=t,this.fsAsync=n,this.cwd=w(e.cwd),this.rootDir=U(this.cwd).checkpoints,this.now=e.now??(()=>new Date)}async beginTurn(e){this.activeTurn&&await this.finalizeTurn();let t=this.nextSequence(e.sessionId),n=`turn-${String(t).padStart(4,`0`)}`,r=S(this.sessionDir(e.sessionId),n);await this.fsAsync.mkdir(S(r,Ei),{recursive:!0});let i={version:1,id:n,sessionId:e.sessionId,sequence:t,prompt:e.prompt,createdAt:this.now().toISOString(),fileCount:0,files:[]};return this.activeTurn={manifest:i,dir:r,capturedPaths:new Set},W(i)}async captureFile(e){if(!this.activeTurn)return;let t=w(this.cwd,e);if(this.activeTurn.capturedPaths.has(t)||ki(this.rootDir,t))return;let n=await this.createFileRecord(t,this.activeTurn);this.activeTurn.manifest.files.push(n),this.activeTurn.manifest.fileCount=this.activeTurn.manifest.files.length,this.activeTurn.capturedPaths.add(t)}async finalizeTurn(){if(!this.activeTurn)return;let e=this.activeTurn;return this.activeTurn=null,await this.writeManifest(e.dir,e.manifest),W(e.manifest)}list(e){return this.loadManifests(e).map(W)}inspect(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);return xi({cwd:this.cwd,sessionId:e,target:r,manifests:n,checkpointDir:(e,t)=>this.checkpointDir(e,t)})}async restoreToCheckpoint(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);let i=n.filter(e=>e.sequence>r.sequence).sort((e,t)=>t.sequence-e.sequence),a=0;for(let t of i)for(let n of t.files)await this.restoreFile(e,t.id,n),a+=1;for(let t of i)await this.fsAsync.rm(this.checkpointDir(e,t.id),{recursive:!0,force:!0});return{target:W(r),restoredCheckpointCount:i.length,restoredFileCount:a,removedCheckpointCount:i.length}}async rollbackThroughCheckpoint(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);let i=n.filter(e=>e.sequence>=r.sequence).sort((e,t)=>t.sequence-e.sequence),a=0;for(let t of i)for(let n of t.files)await this.restoreFile(e,t.id,n),a+=1;for(let t of i)await this.fsAsync.rm(this.checkpointDir(e,t.id),{recursive:!0,force:!0});return{target:W(r),restoredCheckpointCount:i.length,restoredFileCount:a,removedCheckpointCount:i.length}}async createFileRecord(e,t){if(!await Ai(this.fsAsync,this.fs,e))return{originalPath:e,existed:!1};let n=S(Ei,`${String(t.manifest.files.length+1).padStart(6,`0`)}.content`);return await this.fsAsync.copyFile(e,S(t.dir,n)),{originalPath:e,existed:!0,snapshotFile:n}}async restoreFile(e,t,n){if(!n.existed){await this.fsAsync.rm(n.originalPath,{force:!0});return}if(!n.snapshotFile)throw Error(`Checkpoint file record is missing a snapshot: ${n.originalPath}`);await this.fsAsync.mkdir(x(n.originalPath),{recursive:!0}),await this.fsAsync.copyFile(S(this.checkpointDir(e,t),n.snapshotFile),n.originalPath)}loadManifests(e){let t=this.sessionDir(e);return ji(this.fs,t).map(e=>S(t,e,Ti)).map(e=>Mi(this.fs,e)).filter(e=>e!==void 0).sort((e,t)=>e.sequence-t.sequence)}nextSequence(e){return(this.list(e).at(-1)?.sequence??0)+1}async writeManifest(e,t){await this.fsAsync.mkdir(e,{recursive:!0});let n=S(e,Ti),r=`${n}.tmp`;await this.fsAsync.writeFile(r,JSON.stringify(t,null,2),`utf8`),await this.fsAsync.rename(r,n)}sessionDir(e){return S(this.rootDir,Oi(e))}checkpointDir(e,t){return S(this.sessionDir(e),Oi(t))}};function W(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function Oi(e){return e.replace(/[^a-zA-Z0-9._-]/g,`_`)}function ki(e,t){let n=C(e,t);return n.length===0||!n.startsWith(`..`)&&!n.startsWith(`/`)}async function Ai(e,t,n){try{return await e.access(n,t.constants.F_OK),!0}catch{return!1}}function ji(e,t){try{return e.readdirSync(t)}catch{return[]}}function Mi(e,t){try{let n=e.readFileSync(t,`utf8`);return JSON.parse(n)}catch{return}}function Ni(e){return e.source===`plugin`?`plugin`:`skill`}function Pi(e){return e.context===`fork`?`fork`:`inject`}function Fi(e){return{type:`skill-activation`,skillName:e.skill.name,source:Ni(e.skill),invocation:e.invocation,mode:Pi(e.skill),status:e.status,timestamp:new Date().toISOString(),...e.qualifiedName===void 0?{}:{qualifiedName:e.qualifiedName},...e.error===void 0?{}:{error:e.error}}}function Ii(e){let t=e.source===`plugin`?`plugin skill`:`skill`;return e.status===`failed`?`Skill failed: ${e.skillName}${e.error?` (${e.error})`:``}`:e.status===`completed`?`Skill completed: ${e.skillName}`:`Invoking ${t}: ${e.skillName}`}var Li=class{cwd;getSessionId;getExecuting;persistSession;emitSkillActivation;history=[];editCheckpointStore=null;memoryEvents=[];usedMemoryReferences=[];contextReferences=[];systemContextReferences=[];skillActivationEvents=[];constructor(e,t,n,r,i,a=null){this.cwd=e,this.getSessionId=t,this.getExecuting=n,this.persistSession=r,this.emitSkillActivation=i,this.editCheckpointStore=a}restoreState(e){this.history=e.history,this.memoryEvents=e.memoryEvents,this.usedMemoryReferences=e.usedMemoryReferences,this.contextReferences=e.contextReferences,this.skillActivationEvents=e.skillActivationEvents}getState(){return{history:this.history,memoryEvents:this.memoryEvents,usedMemoryReferences:this.usedMemoryReferences,contextReferences:this.contextReferences,skillActivationEvents:this.skillActivationEvents}}append(e){this.history.push(e)}getHistory(){return this.history}clearHistory(){this.history=[],this.memoryEvents=[],this.usedMemoryReferences=[]}resetUsedMemoryReferences(){this.usedMemoryReferences=[]}recordContextReferenceUsage(e){this.contextReferences=vi(this.contextReferences,e,{loadType:`manual`,status:`active`}),this.persistSession()}recordPromptContextReferences(e){this.contextReferences=vi(this.contextReferences,e,{loadType:`prompt-reference`,status:`observed`}),this.persistSession()}listEditCheckpoints(){let e=this.getSessionId();return this.getCheckpointStore().list(e)}inspectEditCheckpoint(e){let t=this.getSessionId();return this.getCheckpointStore().inspect(t,e)}async restoreEditCheckpoint(e){if(this.getExecuting())throw Error(`Cannot restore edit checkpoint while a prompt is running.`);let t=await this.getCheckpointStore().restoreToCheckpoint(this.getSessionId(),e);return this.history.push(h(o(`Restored edit checkpoint: ${e}`))),this.persistSession(),t}async rollbackEditCheckpoint(e){if(this.getExecuting())throw Error(`Cannot rollback edit checkpoint while a prompt is running.`);let t=await this.getCheckpointStore().rollbackThroughCheckpoint(this.getSessionId(),e);return this.history.push(h(o(`Rolled back edit checkpoint: ${e}`))),this.persistSession(),t}async beginEditCheckpointTurn(e){this.editCheckpointStore&&await this.editCheckpointStore.beginTurn({sessionId:this.getSessionId(),prompt:e})}async finalizeEditCheckpointTurn(){if(this.editCheckpointStore)try{await this.editCheckpointStore.finalizeTurn()}catch(e){let t=e instanceof Error?e:Error(String(e));throw this.history.push(h(o(`Checkpoint error: ${t.message}`))),t}}setEditCheckpointStore(e){this.editCheckpointStore=e}getUsedMemoryReferences(){return[...this.usedMemoryReferences]}recordMemoryEvent(e){this.memoryEvents.push(e),this.persistSession()}recordSystemContextFiles(e){this.systemContextReferences=yi(e,this.cwd)}listContextReferences(){return[...this.systemContextReferences,...this.contextReferences]}listInjectionContextReferences(){return[...this.contextReferences]}async addContextReference(e){let{references:t,result:n}=await _i(this.contextReferences,e,this.cwd);return this.contextReferences=t,this.persistSession(),n}removeContextReference(e){let t=cr(this.contextReferences,e);return this.contextReferences=t.references,this.persistSession(),t.result}clearContextReferences(){let e=lr(this.contextReferences);return this.contextReferences=[],this.persistSession(),e}getSkillActivationEvents(){return[...this.skillActivationEvents]}recordSkillActivationEvent(e,t){this.skillActivationEvents.push(e),t&&this.history.push({id:_(),timestamp:new Date(e.timestamp),category:`event`,type:`skill-activation`,data:{...e,message:Ii(e)}}),this.emitSkillActivation(e),this.persistSession()}getCheckpointStore(){return this.editCheckpointStore||=new Di({cwd:this.cwd}),this.editCheckpointStore}};function Ri(e){if(E(e))try{return JSON.parse(D(e,`utf-8`))}catch{return}}function zi(e){if(E(O(e,`pnpm-workspace.yaml`))||E(O(e,`pnpm-lock.yaml`)))return`pnpm`;if(E(O(e,`yarn.lock`)))return`yarn`;if(E(O(e,`bun.lockb`)))return`bun`;if(E(O(e,`package-lock.json`)))return`npm`}async function Bi(e){let t=O(e,`package.json`),n=O(e,`tsconfig.json`),r=O(e,`pyproject.toml`),i=O(e,`Cargo.toml`),a=O(e,`go.mod`);if(E(t)){let r=Ri(t),i=E(n)?`typescript`:`javascript`,a=zi(e);return{type:`node`,name:r?.name,packageManager:a,language:i}}return E(r)||E(O(e,`setup.py`))?{type:`python`,language:`python`}:E(i)?{type:`rust`,language:`rust`}:E(a)?{type:`go`,language:`go`}:{type:`unknown`,language:`unknown`}}function Vi(e,t){e.injectRawMessage(t)}function Hi(e,t,n,r){let i=e.load(t);if(!i)return{history:[],sessionName:void 0,pendingRestoreMessages:null,backgroundTasks:[],backgroundTaskEvents:[],backgroundJobGroups:[],backgroundJobGroupEvents:[],skillActivationEvents:[],memoryEvents:[],usedMemoryReferences:[],contextReferences:[],sandboxSnapshotId:void 0};let a=i.history??[],o=i.backgroundTasks??[],s=i.backgroundTaskEvents??[],c=i.backgroundJobGroups??[],l=i.backgroundJobGroupEvents??[],u=i.skillActivationEvents??[],d=i.memoryEvents??[],f=i.usedMemoryReferences??[],p=i.contextReferences??[],m=i.sandboxSnapshotId,{backgroundTasks:h,backgroundTaskEvents:ee}=Ui(o,s),te=i.name,ne=null;if(!n&&i.messages)if(r)for(let e of i.messages)Vi(r,e);else ne=i.messages;return{history:a,sessionName:te,pendingRestoreMessages:ne,backgroundTasks:h,backgroundTaskEvents:ee,backgroundJobGroups:c,backgroundJobGroupEvents:l,skillActivationEvents:u,memoryEvents:d,usedMemoryReferences:f,contextReferences:p,sandboxSnapshotId:m}}function Ui(e,t){let n=new Date().toISOString(),r=[];return{backgroundTasks:e.map(e=>{if(Wi(e.status))return e;let t={...e,status:`failed`,timeoutReason:`stale_worker`,error:{category:`timeout`,message:`Restored background task is stale; worker cannot be reattached`,recoverable:!0},unread:!0,completedAt:n,updatedAt:n};return r.push({type:`background_task_failed`,task:t}),t}),backgroundTaskEvents:[...t,...r]}}function Wi(e){return e===`completed`||e===`failed`||e===`cancelled`}function Gi(e){if(e.type===`background_task_started`&&e.task.kind===`agent`)return`SubagentStart`;if((e.type===`background_task_completed`||e.type===`background_task_failed`||e.type===`background_task_cancelled`)&&e.task.kind===`agent`)return`SubagentStop`}function Ki(e,t,n,r){let i=Gi(e);!i||!(`task`in e)||te(n,i,{session_id:e.task.parentSessionId,cwd:t,hook_event_name:i,agent_id:e.task.id,agent_type:e.task.agentType??e.task.label,...e.task.transcriptPath?{agent_transcript_path:e.task.transcriptPath,transcript_path:e.task.transcriptPath}:{},...e.task.error?.message||e.task.timeoutReason?{reason:e.task.error?.message??e.task.timeoutReason}:{},...i===`SubagentStop`?{stop_hook_active:!1,...e.task.result?.output?{last_assistant_message:e.task.result.output}:{}}:{},env:{CLAUDE_PROJECT_DIR:t,CLAUDE_SESSION_ID:e.task.parentSessionId,ROBOTA_AGENT_ID:e.task.id,ROBOTA_AGENT_TYPE:e.task.agentType??e.task.label}},r).catch(()=>void 0)}const qi=[`Bash — execute shell commands`,`Read — read file contents with line numbers`,`Write — write content to a file`,`Edit — replace a string in a file`,`Glob — find files matching a pattern`,`Grep — search file contents with regex`,`WebFetch — fetch URL content as text`,`WebSearch — search the internet through the configured local tool`];function Ji(e={}){return[le(e),de(e),fe(e),ue(e),me,he,ge,_e]}const Yi=new Set([`tools`,`disallowedTools`]),Xi=new Set([`maxTurns`]);function Zi(e){let t=e.includes(`,`)?/\s*,\s*/:/\s+/;return e.split(t).map(e=>e.trim()).filter(e=>e.length>0)}function Qi(e){let t=e.split(`
|
|
67
|
-
`);if(t[0]?.trim()!==`---`)return{frontmatter:null,body:e};let n=-1;for(let e=1;e<t.length;e++)if(t[e]?.trim()===`---`){n=e;break}if(n===-1)return{frontmatter:null,body:e};let r={};for(let e=1;e<n;e++){let n=t[e].match(/^([a-zA-Z][a-zA-Z0-9]*(?:[A-Z][a-z]*)*):\s*(.+)/);if(!n)continue;let i=n[1],a=n[2].trim();
|
|
68
|
-
`).trim();return{frontmatter:Object.keys(r).length>0?r:null,body:i}}function
|
|
69
|
-
`):t}function
|
|
70
|
-
|
|
71
|
-
`)}
|
|
72
|
-
`),`runtime`)}function
|
|
73
|
-
`),`tool`)}function
|
|
74
|
-
`),r)}function
|
|
75
|
-
`);if(t[0]?.trim()!==`---`)return null;let n={};for(let e=1;e<t.length;e++){let r=t[e];if(r.trim()===`---`)break;let i=r.match(/^([a-z][a-z0-9-]*):\s*(.+)/);if(!i)continue;let a=i[1],o=i[2].trim(),s=
|
|
76
|
-
`,`utf8`)}function Ka(e,t){let n=q(e),r=n.currentProvider,i=n.providers;if(typeof r==`string`&&qa(i)){let e=i;e[r]={...qa(e[r])?e[r]:{},model:t},n.providers=e}else n.provider={...qa(n.provider)?n.provider:{},model:t};J(e,n)}function qa(e){return typeof e==`object`&&!!e&&!Array.isArray(e)&&!(e instanceof Date)}function Ja(e){return v(e)?(Pe(e),!0):!1}function Ya(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var Xa=class{type=`agent`;sessionFactory;constructor(e){this.sessionFactory=e.sessionFactory}async execute(e,t){let n=e,r=n.maxTurns??50,i=n.timeout??60;try{let e=this.sessionFactory({maxTurns:r,timeout:i}),n=`Hook input:\n${JSON.stringify(t)}\n\nRespond with JSON: { "ok": boolean, "reason"?: string }`,a=await e.run(n),o=Ya(a),s;try{s=JSON.parse(o)}catch{return{exitCode:1,stdout:``,stderr:`Failed to parse agent response as JSON: ${a}`}}return s.ok?{exitCode:0,stdout:JSON.stringify(s),stderr:``}:{exitCode:2,stdout:``,stderr:s.reason??`Blocked by agent hook`}}catch(e){return{exitCode:1,stdout:``,stderr:e instanceof Error?e.message:String(e)}}}};function Za(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var Qa=class{type=`prompt`;providerFactory;defaultModel;constructor(e){this.providerFactory=e.providerFactory,this.defaultModel=e.defaultModel}async execute(e,t){let n=e,r=n.model??this.defaultModel;try{let e=this.providerFactory(r),i=`${n.prompt}\n\nContext:\n${JSON.stringify(t)}\n\nRespond with JSON: { "ok": boolean, "reason"?: string }`,a=await e.complete(i),o=Za(a),s;try{s=JSON.parse(o)}catch{return{exitCode:1,stdout:``,stderr:`Failed to parse AI response as JSON: ${a}`}}return s.ok?{exitCode:0,stdout:JSON.stringify(s),stderr:``}:{exitCode:2,stdout:``,stderr:s.reason??`Blocked by prompt hook`}}catch(e){return{exitCode:1,stdout:``,stderr:e instanceof Error?e.message:String(e)}}}};const $a=new Set([`Write`,`Edit`]),eo=new Set([`Bash`,`BackgroundProcess`]),to=new Set([`Read`,`Glob`,`Grep`,`WebFetch`,`WebSearch`]);function no(e){let t=e.toolName;return to.has(t)?{toolName:t,reversible:!0,sideEffect:`none`,rollbackLayer:`none`,status:`read-only`,message:`${t} does not mutate the local workspace.`}:$a.has(t)?e.context.isolation===`worktree`||e.context.isolation===`provider-sandbox`?ao(t,`file-mutation`,e.context):e.context.checkpointAvailable?{toolName:t,reversible:!0,sideEffect:`file-mutation`,rollbackLayer:`edit-checkpoint`,status:`reversible`,message:`${t} is reversible through the active edit checkpoint.`}:{toolName:t,reversible:!1,sideEffect:`file-mutation`,rollbackLayer:`none`,status:`requires-checkpoint`,message:`${t} requires an edit checkpoint before file mutation.`}:eo.has(t)?ao(t,`shell-process`,e.context):t===`Agent`?oo(e.toolArgs,e.context):{toolName:t,reversible:!1,sideEffect:`unknown`,rollbackLayer:`none`,status:`unknown`,message:`${t} has no reversible execution contract.`}}function ro(e,t){let n={checkpointAvailable:t.checkpointAvailable,isolation:t.isolation??`none`},r=t.enforceUntrackedSideEffects??!0;return e.map(e=>new io(e,{safetyContext:n,enforceUntrackedSideEffects:r}))}var io=class{delegate;options;schema;constructor(e,t){this.delegate=e,this.options=t,this.schema=e.schema}setEventService(e){this.delegate.setEventService(e)}async execute(e,t){let n=no({toolName:this.getName(),toolArgs:uo(e),context:this.options.safetyContext});return!n.reversible&&this.options.enforceUntrackedSideEffects?fo(n):this.delegate.execute(e,t)}validate(e){return this.delegate.validate(e)}validateParameters(e){return this.delegate.validateParameters(e)}getDescription(){return this.delegate.getDescription()}getName(){return this.delegate.getName()}};function ao(e,t,n){return n.isolation===`worktree`?{toolName:e,reversible:!0,sideEffect:t,rollbackLayer:`worktree`,status:`reversible`,message:`${e} side effects are contained in an isolated Git worktree.`}:n.isolation===`provider-sandbox`?{toolName:e,reversible:!0,sideEffect:t,rollbackLayer:`provider-sandbox`,status:`reversible`,message:`${e} side effects are contained in a provider sandbox snapshot.`}:{toolName:e,reversible:!1,sideEffect:t,rollbackLayer:`none`,status:`requires-isolation`,message:`${e} can create host shell side effects that edit checkpoints cannot restore; use worktree or provider sandbox isolation.`}}function oo(e,t){return t.isolation===`worktree`||t.isolation===`provider-sandbox`?ao(`Agent`,`subagent`,t):so(e)?{toolName:`Agent`,reversible:!0,sideEffect:`subagent`,rollbackLayer:`worktree`,status:`reversible`,message:`Agent jobs request worktree isolation, so shell side effects stay outside the parent workspace.`}:{toolName:`Agent`,reversible:!1,sideEffect:`subagent`,rollbackLayer:`none`,status:`requires-isolation`,message:`Agent jobs must request worktree isolation to be reversible in local-first mode.`}}function so(e){if(!e)return!1;let t=e.jobs;return Array.isArray(t)?t.length>0&&t.every(e=>lo(e)?co(e)===`worktree`:!1):co(e)===`worktree`}function co(e){let t=e.isolation;return typeof t==`string`?t:void 0}function lo(e){return e!==void 0&&typeof e==`object`&&!Array.isArray(e)}function uo(e){if(!(!e||typeof e!=`object`||Array.isArray(e)))return e}function fo(e){return{success:!0,data:{success:!1,output:``,error:e.message,reversibleSafety:{toolName:e.toolName,sideEffect:e.sideEffect,rollbackLayer:e.rollbackLayer,status:e.status}},metadata:{reversibleSafetyStatus:e.status,rollbackLayer:e.rollbackLayer}}}function po(e){return(e??[]).filter(e=>e.modelInvocable&&e.kind===`builtin-command`)}function mo(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function ho(e,t){return e.some(e=>mo(e.name)===t)}function go(e){if(!e.provider)throw Error(`provider is required. SDK is provider-neutral — consumer must create and pass a provider instance.`);let t=e.provider,n=e.cwd??process.cwd(),r=e.sessionId??_o(),i=new Ua(n),a=po(e.commandDescriptors),o=a.length>0&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0,s=o?pn(a):void 0,c=ho(a,`skills`)?i.getModelInvocableSkills():[],l=Ji({sandboxClient:e.sandboxClient,cwd:n}),u=e.editCheckpointRecorder!==void 0&&e.sandboxClient===void 0,d=[...u&&e.editCheckpointRecorder?Ma(l,e.editCheckpointRecorder):l,...e.additionalTools??[]],f=e.reversibleExecution?{...e.reversibleExecution,isolation:e.reversibleExecution.isolation??(e.sandboxClient?`provider-sandbox`:void 0)}:void 0,p=f?ro(d,{...f,checkpointAvailable:u}):d;o&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0&&p.push(...gn({execute:e.modelCommandExecutor,isModelInvocable:e.isModelCommandInvocable,commandDescriptors:a}));let m=[];e.providerFactory&&m.push(new Qa({providerFactory:e.providerFactory,defaultModel:e.config.provider.model})),e.sessionFactory&&m.push(new Xa({sessionFactory:e.sessionFactory})),e.additionalHookExecutors&&m.push(...e.additionalHookExecutors);let{agentToolDeps:h,agentDefinitions:ee,backgroundTaskManager:te}=Ea(e,r,n,t,p,m),{backgroundProcessToolDeps:ne}=Da(e,te,r,n,p),{finalSystemMessage:re,rebuildSystemMessage:ie}=Oa(e,n,a,s,ne,c,ee),ae=[`Read(.agents/**)`,`Read(.claude/**)`,`Read(.robota/**)`,`Glob(.agents/**)`,`Glob(.claude/**)`,`Glob(.robota/**)`],oe=s?s.commandTools.filter(e=>!e.requiresPermission).map(e=>e.toolName):[],se=(e.allowedTools??[]).map(e=>`${e}(*)`),ce=(e.deniedTools??[]).map(e=>`${e}(*)`),le={allow:[...ae,...oe,...e.config.permissions.allow??[],...se],deny:[...e.config.permissions.deny??[],...ce]},ue=S(n,`.robota`,`settings.local.json`);function de(e){let t=`${e}(*)`,n=q(ue),r=Array.isArray(n.permissions)?[]:n.permissions?.allow??[];r.includes(t)||J(ue,{...n,permissions:{...n.permissions??{},allow:[...r,t]}})}let fe=new be({tools:p,provider:t,systemMessage:re,terminal:e.terminal,permissions:le,hooks:e.config.hooks,permissionMode:e.permissionMode,defaultTrustLevel:e.config.defaultTrustLevel,model:e.model??e.config.provider.model,providerTimeout:e.config.provider.timeout??12e4,maxTurns:e.maxTurns,sessionStore:e.sessionStore,sessionId:r,permissionHandler:e.permissionHandler,onProjectAllowTool:de,onTextDelta:e.onTextDelta,onContextUpdate:e.onContextUpdate,onToolExecution:e.onToolExecution,promptForApproval:e.promptForApproval,onCompact:e.onCompact,onCompactEvent:e.onCompactEvent,compactInstructions:e.compactInstructions??e.context.compactInstructions,autoCompactThreshold:e.autoCompactThreshold??e.config.autoCompactThreshold,sessionLogger:e.sessionLogger,hookTypeExecutors:m.length>0?m:void 0,agentName:e.agentName,...e.responseFormat?{responseFormat:e.responseFormat}:{}});return ka(fe,h,ne,te),{session:fe,rebuildSystemMessage:ie}}function _o(){return`session_${Date.now()}_${Math.random().toString(36).substr(2,9)}`}function vo(e,t,n,r=new z){let i=S(n,e,`subagents`);return r.mkdirSync(i,{recursive:!0}),new ye(i)}function yo(e,t){return S(t,e,`subagents`)}const Y=g.lazy(()=>g.union([g.string(),g.number(),g.boolean(),g.null(),g.undefined(),g.date(),g.array(Y),g.record(Y)])),bo=g.object({name:g.string().optional(),model:g.string().optional(),apiKey:g.string().optional(),baseURL:g.string().optional(),timeout:g.number().optional(),options:g.record(Y).optional()}),xo=g.object({type:g.string().optional(),model:g.string().optional(),apiKey:g.string().optional(),baseURL:g.string().optional(),timeout:g.number().optional(),options:g.record(Y).optional()}),So=g.object({allow:g.array(g.string()).optional(),deny:g.array(g.string()).optional()}),Co=g.record(g.string()).optional(),wo=g.object({type:g.literal(`command`),command:g.string(),timeout:g.number().optional()}),To=g.object({type:g.literal(`http`),url:g.string(),headers:g.record(g.string()).optional(),timeout:g.number().optional()}),Eo=g.object({type:g.literal(`prompt`),prompt:g.string(),model:g.string().optional()}),Do=g.object({type:g.literal(`agent`),agent:g.string(),maxTurns:g.number().optional(),timeout:g.number().optional()}),Oo=g.discriminatedUnion(`type`,[wo,To,Eo,Do]),X=g.object({matcher:g.string(),hooks:g.array(Oo)}),ko=g.object({PreToolUse:g.array(X).optional(),PostToolUse:g.array(X).optional(),SessionStart:g.array(X).optional(),SessionEnd:g.array(X).optional(),Stop:g.array(X).optional(),StopFailure:g.array(X).optional(),PreCompact:g.array(X).optional(),PostCompact:g.array(X).optional(),UserPromptSubmit:g.array(X).optional(),SubagentStart:g.array(X).optional(),SubagentStop:g.array(X).optional(),WorktreeCreate:g.array(X).optional(),WorktreeRemove:g.array(X).optional()}).optional(),Ao=g.record(g.boolean()).optional(),jo=g.object({source:g.object({type:g.enum([`github`,`git`,`local`,`url`]),repo:g.string().optional(),url:g.string().optional(),path:g.string().optional(),ref:g.string().optional()})}),Mo=g.record(jo).optional().catch(void 0),No=g.union([g.number().gt(0).lte(1),g.literal(!1)]).optional(),Po=g.object({enabled:g.boolean().optional(),options:g.record(Y).optional()}),Fo=g.object({defaultTrustLevel:g.enum([`safe`,`moderate`,`full`]).optional(),language:g.string().optional(),currentProvider:g.string().optional(),providers:g.record(xo).optional(),provider:bo.optional(),permissions:So.optional(),env:Co,hooks:ko,enabledPlugins:Ao,extraKnownMarketplaces:Mo,autoCompactThreshold:No,transports:g.record(Po).optional()});function Io(){return process.env.HOME??process.env.USERPROFILE??`/`}const Z={defaultTrustLevel:`moderate`,provider:{name:`anthropic`,model:`claude-opus-4-5`,apiKey:void 0},permissions:{allow:[],deny:[]},env:{}};function Lo(e){if(!E(e))return;let t=D(e,`utf-8`).trim();if(t.length!==0)try{return JSON.parse(t)}catch{return}}function Ro(e){if(e.startsWith(`$ENV:`)){let t=e.slice(5);return process.env[t]??e}return e}function zo(e){let t=e.provider?.apiKey===void 0?e.provider:Bo(e.provider);if(e.providers!==void 0){let n=Object.fromEntries(Object.entries(e.providers).map(([e,t])=>[e,Bo(t)]));return{...e,provider:t,providers:n}}return{...e,provider:t}}function Bo(e){return{...e,...e.apiKey!==void 0&&{apiKey:Ro(e.apiKey)}}}function Vo(e){return e.reduce((e,t)=>({...e,...t,provider:e.provider!==void 0||t.provider!==void 0?{...e.provider,...t.provider}:void 0,permissions:e.permissions!==void 0||t.permissions!==void 0?{allow:t.permissions?.allow??e.permissions?.allow,deny:t.permissions?.deny??e.permissions?.deny}:void 0,env:{...e.env??{},...t.env??{}},providers:e.providers!==void 0||t.providers!==void 0?Ho(e.providers,t.providers):void 0,enabledPlugins:e.enabledPlugins!==void 0||t.enabledPlugins!==void 0?{...e.enabledPlugins??{},...t.enabledPlugins??{}}:void 0,extraKnownMarketplaces:t.extraKnownMarketplaces??e.extraKnownMarketplaces,autoCompactThreshold:t.autoCompactThreshold??e.autoCompactThreshold}),{})}function Ho(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Uo(e){if(e.currentProvider!==void 0)return Wo(e);if(e.provider!==void 0)throw Error(`Legacy flat "provider" settings are not supported. Migrate to "currentProvider" + "providers" format.`);return{...Z.provider}}function Wo(e){let t=e.currentProvider;if(t===void 0)throw Error(`currentProvider is required`);let n=e.providers?.[t];if(n===void 0)throw Error(`currentProvider "${t}" was not found in providers`);if(n.type===void 0)throw Error(`Provider profile "${t}" is missing type`);return{name:n.type,model:n.model??Z.provider.model,apiKey:n.apiKey??Z.provider.apiKey,...n.baseURL!==void 0&&{baseURL:n.baseURL},...n.timeout!==void 0&&{timeout:n.timeout},...n.options!==void 0&&{options:n.options}}}function Go(e){return{defaultTrustLevel:e.defaultTrustLevel??Z.defaultTrustLevel,language:e.language,currentProvider:e.currentProvider,provider:Uo(e),permissions:{allow:e.permissions?.allow??Z.permissions.allow,deny:e.permissions?.deny??Z.permissions.deny},env:e.env??Z.env,hooks:e.hooks??void 0,enabledPlugins:e.enabledPlugins??void 0,extraKnownMarketplaces:e.extraKnownMarketplaces??void 0,autoCompactThreshold:e.autoCompactThreshold}}function Ko(e){let t=Io();return[O(t,`.robota`,`settings.json`),O(t,`.claude`,`settings.json`),O(e,`.robota`,`settings.json`),O(e,`.robota`,`settings.local.json`),O(e,`.claude`,`settings.json`),O(e,`.claude`,`settings.local.json`)]}async function qo(e){let t=Ko(e),n=[];for(let e of t){let t=Lo(e);t!==void 0&&n.push({raw:t,path:e})}return Go(Vo(n.map(({raw:e,path:t})=>{let n=Fo.safeParse(e);if(!n.success)throw Error(`Invalid settings in ${t}: ${n.error.message}`);return zo(n.data)})))}const Jo=S(`.agents`,`tasks`),Yo={"in-progress":1,todo:2,blocked:3,unknown:4,completed:5};function Xo(e){let t=e?.trim().toLowerCase();return t===`todo`||t===`in-progress`||t===`blocked`||t===`completed`?t:`unknown`}function Zo(e,t){return e.split(/\r?\n/).find(e=>/^#\s+/.test(e))?.replace(/^#\s+/,``).trim()||Ke(t,`.md`)}function Qo(e,t){return RegExp(`^- \\*\\*${t}\\*\\*:\\s*(.+)$`,`im`).exec(e)?.[1]?.trim()}function $o(e,t){let n=e.split(/\r?\n/),r=RegExp(`^(#{2,6})\\s+${t}\\b`,`i`),i=n.findIndex(e=>r.test(e));if(i<0)return;let a=[];for(let e of n.slice(i+1)){if(/^##\s+/.test(e))break;a.push(e)}let o=a.join(`
|
|
77
|
-
`).trim();return o.length>0?o:void 0}function
|
|
78
|
-
`)}function
|
|
65
|
+
`).length;return[{type:`hunk`,text:`@@ -${d},${s.length+f+l.length} +${d},${s.length+p+l.length} @@`,lineNumber:d},...s,...a,...l]}function fi(e){if(e.activeTools.length===0)return;let t=e.activeTools.map(e=>`${e.isRunning?`⟳`:e.result===`success`?`✓`:e.result===`error`?`✗`:`⊘`} ${e.toolName}${e.firstArg?`(${e.firstArg})`:``}`).join(`
|
|
66
|
+
`);e.history.push({id:y(),timestamp:new Date,category:`event`,type:`tool-summary`,data:{tools:e.activeTools.map(e=>({toolName:e.toolName,firstArg:e.firstArg,isRunning:e.isRunning,result:e.result,diffFile:e.diffFile,diffLines:e.diffLines,toolResultData:e.toolResultData})),summary:t}})}function pi(e){let t=e.filter(e=>!e.isRunning);if(t.length<=50)return e;let n=t.length-50,r=0;return e.filter(e=>!e.isRunning&&r<n?(r++,!1):!0)}function mi(e,t){let n=oi(t.toolArgs),r={toolName:t.toolName,firstArg:n,isRunning:!0,...t.executionId?{executionId:t.executionId}:{}};return e.activeTools.push(r),e.history.push({id:y(),timestamp:new Date,category:`event`,type:`tool-start`,data:{toolName:t.toolName,firstArg:n,isRunning:!0}}),r}function hi(e,t){let n=t.denied?`denied`:t.success===!1?`error`:`success`,r=e.activeTools.findIndex(e=>e.toolName===t.toolName&&e.isRunning);if(r===-1)return null;let i={...e.activeTools[r],...li(t),isRunning:!1,result:n,toolResultData:t.toolResultData};return e.activeTools[r]=i,e.activeTools=pi(e.activeTools),e.history.push({id:y(),timestamp:new Date,category:`event`,type:`tool-end`,data:{toolName:i.toolName,firstArg:i.firstArg,isRunning:!1,result:n,toolResultData:t.toolResultData}}),i}const gi=[{pattern:/\b401\b|invalid.*api.?key|authentication.*fail|unauthorized/i,message:"Invalid API key. Run `/provider` to reconfigure, or check your settings file (~/.robota/settings.json)."},{pattern:/\b403\b|permission.*denied|forbidden/i,message:"Access denied. Your API key may lack permission for this model. Check your provider plan or run `/provider` to switch accounts."},{pattern:/\b429\b|rate.?limit|too many requests|quota.*exceeded/i,message:"Rate limit reached. Wait a moment and try again. Consider switching to a different model with `/model`."},{pattern:/\b500\b|internal server error/i,message:`The AI provider returned an internal error. This is usually temporary — try again.`},{pattern:/\b503\b|service.*unavailable|overloaded/i,message:`The AI provider is temporarily unavailable or overloaded. Try again in a few seconds.`},{pattern:/\b502\b|bad gateway/i,message:`The AI provider gateway is unreachable. Check your network or try again shortly.`},{pattern:/\btimeout\b|timed.?out|ETIMEDOUT/i,message:`The request timed out. Check your internet connection, or try a shorter prompt to reduce response time.`},{pattern:/ENOTFOUND|ECONNREFUSED|ECONNRESET|network.*error|fetch.*fail/i,message:`Network connection failed. Check your internet connection and verify your provider URL in settings.`}];function _i(t){if(t instanceof e)return"Invalid API key. Run `/provider` to reconfigure, or check your settings file (~/.robota/settings.json).";if(t instanceof i)return`Rate limit reached${t.retryAfter?` (retry after ${t.retryAfter}s)`:``}. Wait a moment and try again. Consider switching to a different model with \`/model\`.`;if(t instanceof n)return`Network connection failed. Check your internet connection and verify your provider URL in settings.`;if(t instanceof r&&t.originalError)return _i(t.originalError);let a=t.message;for(let{pattern:e,message:t}of gi)if(e.test(a))return t;return a}async function vi(e,t,n,r){let i=r.getHistory();i.push(_(l(t??e))),r.onWorkspaceUpdated();let a=r.getSession().getHistory().length;r.resetUsedMemoryReferences();try{let o=await ni(e,r.getCwd(),n,r.getContextReferences());o.promptFileReferenceEntry&&i.push(o.promptFileReferenceEntry),r.recordContextReferenceUsage(o.activeContextReferenceRecords),r.recordPromptContextReferences(o.promptFileReferenceRecords),await r.beginEditCheckpointTurn(t??e);let c=await r.getSession().run(o.modelInput,o.hookInput);r.flushStreaming(),fi({activeTools:r.getActiveTools(),history:i}),r.clearStreaming();let l=$r(c||`(empty response)`,r.getSession().getHistory(),i,a,r.getSession().getContextState(),o.promptFileReferenceRecords);i.push(_(s(l.response))),l.usage&&i.push(ti(l.usage)),r.onComplete(l),r.onContextUpdate()}catch(e){if(r.flushStreaming(),Zr(e)){let e=ei(r.getSession().getHistory(),i,a,r.getSession().getContextState());fi({activeTools:r.getActiveTools(),history:i}),r.clearStreaming(),e.response&&i.push(_(s(e.response))),e.usage&&i.push(ti(e.usage)),i.push(_(c(`Interrupted by user.`))),r.onInterrupted(e)}else{fi({activeTools:r.getActiveTools(),history:i}),r.clearStreaming();let t=e instanceof Error?e:Error(String(e)),n=_i(t);i.push(_(c(`Error: ${n}`))),r.onError(t)}}}var yi=class{histTracker;skillRouter;callbacks;executing=!1;streamingText=``;flushTimer=null;activeTools=[];pendingPrompt=null;pendingDisplayInput;pendingRawInput;pendingTurnOptions={};shuttingDown=!1;wakeTaskIds=new Set;constructor(e,t,n){this.histTracker=e,this.skillRouter=t,this.callbacks=n}clearPendingQueue(){this.pendingPrompt=null,this.pendingDisplayInput=void 0,this.pendingRawInput=void 0,this.pendingTurnOptions={}}clearStreaming(){this.streamingText=``,this.activeTools=[],this.flushTimer&&=(clearTimeout(this.flushTimer),null)}flushStreaming(){this.flushTimer&&=(clearTimeout(this.flushTimer),null)}handleTextDelta(e){this.streamingText+=e,this.callbacks.emit(`text_delta`,e),this.flushTimer||=setTimeout(()=>{this.flushTimer=null},16)}handleCompactEvent(e){e.trigger===`auto`&&this.histTracker.append(_(c(`Auto compacted context: ${Math.round(e.before.usedPercentage)}% -> ${Math.round(e.after.usedPercentage)}%`))),this.callbacks.emit(`compact`,e),this.callbacks.emit(`context_update`,e.after)}handleToolExecution(e){let t={activeTools:this.activeTools,history:this.histTracker.getHistory()};if(e.type===`start`){let n=mi(t,e);this.activeTools=t.activeTools,this.callbacks.emit(`tool_start`,n)}else{let n=hi(t,e);this.activeTools=t.activeTools,n&&this.callbacks.emit(`tool_end`,n)}}emitExecutionWorkspaceUpdated(e,t){this.callbacks.getSession()&&this.callbacks.emit(`execution_workspace_event`,{type:`execution_workspace_updated`,cause:e,...t?{entryId:t}:{},snapshot:this.callbacks.getExecutionWorkspaceSnapshot()})}drainPendingQueue(e){if(!this.shuttingDown&&this.pendingPrompt){let t=this.pendingPrompt,n=this.pendingDisplayInput,r=this.pendingRawInput,i=this.pendingTurnOptions;this.clearPendingQueue(),setTimeout(()=>void e(t,n,r,i),0)}}async executePrompt(e,t,n,r,i,a,o,s,c={}){await dr(r,i,a,o,()=>this.callbacks.getSessionOrThrow(),(e,t)=>this.callbacks.emit(e,t)),this.executing=!0,this.clearStreaming(),this.callbacks.emit(`turn_source`,c.turnSource??`user`),this.callbacks.emit(`user_message`,t??e),this.callbacks.emit(`thinking`,!0);try{await vi(e,t,n,{getSession:()=>this.callbacks.getSessionOrThrow(),getCwd:()=>this.callbacks.getCwd(),getHistory:()=>this.histTracker.getHistory(),getContextReferences:()=>this.histTracker.listInjectionContextReferences(),getActiveTools:()=>this.activeTools,resetUsedMemoryReferences:()=>this.histTracker.resetUsedMemoryReferences(),recordContextReferenceUsage:e=>this.histTracker.recordContextReferenceUsage(e),recordPromptContextReferences:e=>this.histTracker.recordPromptContextReferences(e),beginEditCheckpointTurn:e=>this.histTracker.beginEditCheckpointTurn(e),flushStreaming:()=>this.flushStreaming(),clearStreaming:()=>this.clearStreaming(),onWorkspaceUpdated:()=>this.emitExecutionWorkspaceUpdated(`main_thread`),onComplete:e=>{this.callbacks.emit(`complete`,e)},onInterrupted:e=>{this.callbacks.emit(`interrupted`,e)},onError:e=>{this.callbacks.emit(`error`,e)},onContextUpdate:()=>{this.callbacks.emit(`context_update`,this.callbacks.getContextState())}})}finally{try{await this.histTracker.finalizeEditCheckpointTurn()}catch(e){this.callbacks.emit(`error`,e instanceof Error?e:Error(String(e)))}this.executing=!1,this.callbacks.emit(`thinking`,!1),c.wakeTaskId!==void 0&&this.wakeTaskIds.delete(c.wakeTaskId),this.emitExecutionWorkspaceUpdated(`main_thread`),this.callbacks.persistSession(),this.drainPendingQueue(s)}}async executeForkSkillCommand(e,t,n,r,i,a){if(this.executing)throw Error(`Cannot execute fork skill while another prompt is running.`);this.executing=!0,this.clearStreaming(),this.callbacks.emit(`thinking`,!0),this.histTracker.append(_(l(n??`/${e.name}`))),this.emitExecutionWorkspaceUpdated(`main_thread`);try{let n=await this.skillRouter.executeSkillWithActivation(e,t,i,r);return await this.applyForkSkillResult(n.result??`(empty response)`),n}catch(e){let t=e instanceof Error?e:Error(String(e));return this.histTracker.append(_(c(`Error: ${_i(t)}`))),this.callbacks.emit(`error`,t),{mode:`fork`,result:``}}finally{this.executing=!1,this.callbacks.emit(`thinking`,!1),this.emitExecutionWorkspaceUpdated(`main_thread`),this.callbacks.persistSession(),this.drainPendingQueue(a)}}async executeForegroundCommand(e,t){this.executing=!0,this.clearStreaming(),this.callbacks.emit(`thinking`,!0),this.emitExecutionWorkspaceUpdated(`main_thread`);try{let t=await e();return this.callbacks.emit(`context_update`,this.callbacks.getContextState()),t}catch(e){return{success:!1,message:`Error: ${e instanceof Error?e.message:String(e)}`}}finally{this.executing=!1,this.callbacks.emit(`thinking`,!1),this.emitExecutionWorkspaceUpdated(`main_thread`),this.callbacks.persistSession(),this.drainPendingQueue(t)}}async applyForkSkillResult(e){this.flushStreaming(),fi({activeTools:this.activeTools,history:this.histTracker.getHistory()}),this.clearStreaming();let t={response:e,history:this.histTracker.getHistory(),toolSummaries:[],contextState:this.callbacks.getContextState()};this.histTracker.append(_(s(e))),this.callbacks.emit(`complete`,t),this.callbacks.emit(`context_update`,this.callbacks.getContextState())}};function bi(e,t,n){let r=I(n)?.customAgentRegistry?.(e)??dn(e);if(!r)throw Error(`Unknown agent type: ${e}`);return t.allowedTools?{...r,tools:t.allowedTools}:r}async function xi(e,t,n){let r=I(n);if(!r)throw Error(`Fork execution is not available. Agent runtime deps may not be initialized.`);return kn({agentDefinition:bi(t.agent??`general-purpose`,t,n),parentConfig:r.config,parentContext:r.context,parentTools:r.tools,provider:r.provider,terminal:r.terminal,isForkWorker:!0,permissionMode:r.permissionMode,permissionHandler:r.permissionHandler,hooks:r.hooks,hookTypeExecutors:r.hookTypeExecutors,onTextDelta:r.onTextDelta,onToolExecution:r.onToolExecution}).run(e)}async function Si(e,t,n){let r=await Rr([t],{cwd:n,reason:`manual`});if(Tr(r.diagnostics))return{references:[...e],result:{evicted:[],diagnostics:[Er(r.diagnostics)]}};let i=r.references[0];if(!i)return{references:[...e],result:{evicted:[],diagnostics:[`No context reference was resolved.`]}};let a=fr(B([i])[0],`manual`,`active`),o=pr(e,a);return{references:o.references,result:{reference:a,evicted:o.evicted,diagnostics:[]}}}function Ci(e,t,n){if(t.length===0)return[...e];let r=new Date().toISOString(),i=[...e];for(let e of t){let t=fr(e,n.loadType,n.status,r);i=pr(i,t).references}return i}function wi(e,t){let n=new Date().toISOString();return e.map(e=>{let r=T(t,e.filePath);return{id:`system:${r}`,sourcePath:e.filePath,relativePath:r,originalReference:r,loadType:`system`,status:`active`,byteLength:Buffer.byteLength(e.content,`utf-8`),loadedAt:n,lastUsedAt:n}})}function H(e){let t=w(e,`.robota`);return{settings:w(t,`settings.json`),settingsLocal:w(t,`settings.local.json`),logs:w(t,`logs`),sessions:w(t,`sessions`),memory:w(t,`memory`),checkpoints:w(t,`checkpoints`)}}function Ti(){let e=w(D(),`.robota`);return{settings:w(e,`settings.json`),sessions:w(e,`sessions`),onboarded:w(e,`onboarded`)}}function Ei(e){let t=e.fs??new R,n=e.manifests.filter(t=>t.sequence>e.target.sequence),r=e.manifests.filter(t=>t.sequence>=e.target.sequence);return{target:Di(e.target),capturedFiles:e.target.files.map(n=>{let r=n.snapshotFile?w(e.checkpointDir(e.sessionId,e.target.id),n.snapshotFile):void 0,i=r?ki(r,t):void 0;return{originalPath:n.originalPath,relativePath:T(e.cwd,n.originalPath),existed:n.existed,restoreAction:n.existed?`restore-preimage`:`delete-created-file`,snapshotAvailable:n.existed?i!==void 0:!1,...i?{snapshotSizeBytes:i.size}:{}}}),restoreToCheckpoint:Oi(n),rollbackThroughCheckpoint:Oi(r)}}function Di(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function Oi(e){return{checkpointIds:e.map(e=>e.id),fileCount:e.reduce((e,t)=>e+t.fileCount,0)}}function ki(e,t){try{return t.statSync(e)}catch{return}}const Ai=`manifest.json`,ji=`files`;var Mi=class{fs;fsAsync;cwd;rootDir;now;activeTurn=null;constructor(e,t=new R,n=new z){this.fs=t,this.fsAsync=n,this.cwd=E(e.cwd),this.rootDir=H(this.cwd).checkpoints,this.now=e.now??(()=>new Date)}async beginTurn(e){this.activeTurn&&await this.finalizeTurn();let t=this.nextSequence(e.sessionId),n=`turn-${String(t).padStart(4,`0`)}`,r=w(this.sessionDir(e.sessionId),n);await this.fsAsync.mkdir(w(r,ji),{recursive:!0});let i={version:1,id:n,sessionId:e.sessionId,sequence:t,prompt:e.prompt,createdAt:this.now().toISOString(),fileCount:0,files:[]};return this.activeTurn={manifest:i,dir:r,capturedPaths:new Set},U(i)}async captureFile(e){if(!this.activeTurn)return;let t=E(this.cwd,e);if(this.activeTurn.capturedPaths.has(t)||Pi(this.rootDir,t))return;let n=await this.createFileRecord(t,this.activeTurn);this.activeTurn.manifest.files.push(n),this.activeTurn.manifest.fileCount=this.activeTurn.manifest.files.length,this.activeTurn.capturedPaths.add(t)}async finalizeTurn(){if(!this.activeTurn)return;let e=this.activeTurn;return this.activeTurn=null,await this.writeManifest(e.dir,e.manifest),U(e.manifest)}list(e){return this.loadManifests(e).map(U)}inspect(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);return Ei({cwd:this.cwd,sessionId:e,target:r,manifests:n,checkpointDir:(e,t)=>this.checkpointDir(e,t)})}async restoreToCheckpoint(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);let i=n.filter(e=>e.sequence>r.sequence).sort((e,t)=>t.sequence-e.sequence),a=0;for(let t of i)for(let n of t.files)await this.restoreFile(e,t.id,n),a+=1;for(let t of i)await this.fsAsync.rm(this.checkpointDir(e,t.id),{recursive:!0,force:!0});return{target:U(r),restoredCheckpointCount:i.length,restoredFileCount:a,removedCheckpointCount:i.length}}async rollbackThroughCheckpoint(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);let i=n.filter(e=>e.sequence>=r.sequence).sort((e,t)=>t.sequence-e.sequence),a=0;for(let t of i)for(let n of t.files)await this.restoreFile(e,t.id,n),a+=1;for(let t of i)await this.fsAsync.rm(this.checkpointDir(e,t.id),{recursive:!0,force:!0});return{target:U(r),restoredCheckpointCount:i.length,restoredFileCount:a,removedCheckpointCount:i.length}}async createFileRecord(e,t){if(!await Fi(this.fsAsync,this.fs,e))return{originalPath:e,existed:!1};let n=w(ji,`${String(t.manifest.files.length+1).padStart(6,`0`)}.content`);return await this.fsAsync.copyFile(e,w(t.dir,n)),{originalPath:e,existed:!0,snapshotFile:n}}async restoreFile(e,t,n){if(!n.existed){await this.fsAsync.rm(n.originalPath,{force:!0});return}if(!n.snapshotFile)throw Error(`Checkpoint file record is missing a snapshot: ${n.originalPath}`);await this.fsAsync.mkdir(C(n.originalPath),{recursive:!0}),await this.fsAsync.copyFile(w(this.checkpointDir(e,t),n.snapshotFile),n.originalPath)}loadManifests(e){let t=this.sessionDir(e);return Ii(this.fs,t).map(e=>w(t,e,Ai)).map(e=>Li(this.fs,e)).filter(e=>e!==void 0).sort((e,t)=>e.sequence-t.sequence)}nextSequence(e){return(this.list(e).at(-1)?.sequence??0)+1}async writeManifest(e,t){await this.fsAsync.mkdir(e,{recursive:!0});let n=w(e,Ai),r=`${n}.tmp`;await this.fsAsync.writeFile(r,JSON.stringify(t,null,2),`utf8`),await this.fsAsync.rename(r,n)}sessionDir(e){return w(this.rootDir,Ni(e))}checkpointDir(e,t){return w(this.sessionDir(e),Ni(t))}};function U(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function Ni(e){return e.replace(/[^a-zA-Z0-9._-]/g,`_`)}function Pi(e,t){let n=T(e,t);return n.length===0||!n.startsWith(`..`)&&!n.startsWith(`/`)}async function Fi(e,t,n){try{return await e.access(n,t.constants.F_OK),!0}catch{return!1}}function Ii(e,t){try{return e.readdirSync(t)}catch{return[]}}function Li(e,t){try{let n=e.readFileSync(t,`utf8`);return JSON.parse(n)}catch{return}}function Ri(e){return e.source===`plugin`?`plugin`:`skill`}function zi(e){return e.context===`fork`?`fork`:`inject`}function Bi(e){return{type:`skill-activation`,skillName:e.skill.name,source:Ri(e.skill),invocation:e.invocation,mode:zi(e.skill),status:e.status,timestamp:new Date().toISOString(),...e.qualifiedName===void 0?{}:{qualifiedName:e.qualifiedName},...e.error===void 0?{}:{error:e.error}}}function Vi(e){let t=e.source===`plugin`?`plugin skill`:`skill`;return e.status===`failed`?`Skill failed: ${e.skillName}${e.error?` (${e.error})`:``}`:e.status===`completed`?`Skill completed: ${e.skillName}`:`Invoking ${t}: ${e.skillName}`}const Hi=new Set([`memory_candidate_saved`,`memory_candidate_approved`,`memory_candidate_rejected`,`memory_retrieved`]);function Ui(e){let t=e.topic?`: ${e.topic}`:``;switch(e.type){case`memory_candidate_saved`:return`Memory saved${t}`;case`memory_candidate_approved`:return`Memory approved${t}`;case`memory_candidate_rejected`:return`Memory rejected${t}${e.reason?` (${e.reason})`:``}`;case`memory_retrieved`:return`Memory recalled${t}`;case`memory_candidate_extracted`:return`Memory candidate extracted${t}`;case`memory_candidate_queued`:return`Memory candidate queued${t}`;case`memory_candidate_skipped`:return`Memory candidate skipped${t}${e.reason?` (${e.reason})`:``}`}}var Wi=class{cwd;getSessionId;getExecuting;persistSession;emitSkillActivation;emitMemoryEvent;history=[];editCheckpointStore=null;memoryEvents=[];usedMemoryReferences=[];contextReferences=[];systemContextReferences=[];skillActivationEvents=[];constructor(e,t,n,r,i,a,o=null){this.cwd=e,this.getSessionId=t,this.getExecuting=n,this.persistSession=r,this.emitSkillActivation=i,this.emitMemoryEvent=a,this.editCheckpointStore=o}restoreState(e){this.history=e.history,this.memoryEvents=e.memoryEvents,this.usedMemoryReferences=e.usedMemoryReferences,this.contextReferences=e.contextReferences,this.skillActivationEvents=e.skillActivationEvents}getState(){return{history:this.history,memoryEvents:this.memoryEvents,usedMemoryReferences:this.usedMemoryReferences,contextReferences:this.contextReferences,skillActivationEvents:this.skillActivationEvents}}append(e){this.history.push(e)}getHistory(){return this.history}clearHistory(){this.history=[],this.memoryEvents=[],this.usedMemoryReferences=[]}resetUsedMemoryReferences(){this.usedMemoryReferences=[]}recordContextReferenceUsage(e){this.contextReferences=Ci(this.contextReferences,e,{loadType:`manual`,status:`active`}),this.persistSession()}recordPromptContextReferences(e){this.contextReferences=Ci(this.contextReferences,e,{loadType:`prompt-reference`,status:`observed`}),this.persistSession()}listEditCheckpoints(){let e=this.getSessionId();return this.getCheckpointStore().list(e)}inspectEditCheckpoint(e){let t=this.getSessionId();return this.getCheckpointStore().inspect(t,e)}async restoreEditCheckpoint(e){if(this.getExecuting())throw Error(`Cannot restore edit checkpoint while a prompt is running.`);let t=await this.getCheckpointStore().restoreToCheckpoint(this.getSessionId(),e);return this.history.push(_(c(`Restored edit checkpoint: ${e}`))),this.persistSession(),t}async rollbackEditCheckpoint(e){if(this.getExecuting())throw Error(`Cannot rollback edit checkpoint while a prompt is running.`);let t=await this.getCheckpointStore().rollbackThroughCheckpoint(this.getSessionId(),e);return this.history.push(_(c(`Rolled back edit checkpoint: ${e}`))),this.persistSession(),t}async beginEditCheckpointTurn(e){this.editCheckpointStore&&await this.editCheckpointStore.beginTurn({sessionId:this.getSessionId(),prompt:e})}async finalizeEditCheckpointTurn(){if(this.editCheckpointStore)try{await this.editCheckpointStore.finalizeTurn()}catch(e){let t=e instanceof Error?e:Error(String(e));throw this.history.push(_(c(`Checkpoint error: ${t.message}`))),t}}setEditCheckpointStore(e){this.editCheckpointStore=e}getUsedMemoryReferences(){return[...this.usedMemoryReferences]}recordMemoryEvent(e){this.memoryEvents.push(e),Hi.has(e.type)&&this.history.push({id:y(),timestamp:new Date(e.at),category:`event`,type:`memory-event`,data:{...e,message:Ui(e)}}),this.emitMemoryEvent(e),this.persistSession()}recordSystemContextFiles(e){this.systemContextReferences=wi(e,this.cwd)}listContextReferences(){return[...this.systemContextReferences,...this.contextReferences]}listInjectionContextReferences(){return[...this.contextReferences]}async addContextReference(e){let{references:t,result:n}=await Si(this.contextReferences,e,this.cwd);return this.contextReferences=t,this.persistSession(),n}removeContextReference(e){let t=mr(this.contextReferences,e);return this.contextReferences=t.references,this.persistSession(),t.result}clearContextReferences(){let e=hr(this.contextReferences);return this.contextReferences=[],this.persistSession(),e}getSkillActivationEvents(){return[...this.skillActivationEvents]}recordSkillActivationEvent(e,t){this.skillActivationEvents.push(e),t&&this.history.push({id:y(),timestamp:new Date(e.timestamp),category:`event`,type:`skill-activation`,data:{...e,message:Vi(e)}}),this.emitSkillActivation(e),this.persistSession()}getCheckpointStore(){return this.editCheckpointStore||=new Mi({cwd:this.cwd}),this.editCheckpointStore}};function Gi(e){if(O(e))try{return JSON.parse($e(e,`utf-8`))}catch{return}}function Ki(e){if(O(k(e,`pnpm-workspace.yaml`))||O(k(e,`pnpm-lock.yaml`)))return`pnpm`;if(O(k(e,`yarn.lock`)))return`yarn`;if(O(k(e,`bun.lockb`)))return`bun`;if(O(k(e,`package-lock.json`)))return`npm`}async function qi(e){let t=k(e,`package.json`),n=k(e,`tsconfig.json`),r=k(e,`pyproject.toml`),i=k(e,`Cargo.toml`),a=k(e,`go.mod`);if(O(t)){let r=Gi(t),i=O(n)?`typescript`:`javascript`,a=Ki(e);return{type:`node`,name:r?.name,packageManager:a,language:i}}return O(r)||O(k(e,`setup.py`))?{type:`python`,language:`python`}:O(i)?{type:`rust`,language:`rust`}:O(a)?{type:`go`,language:`go`}:{type:`unknown`,language:`unknown`}}function Ji(e,t){e.injectRawMessage(t)}function Yi(e,t,n){let r=e.load(t);if(!r)return{history:[],sessionName:void 0,pendingRestoreMessages:null,backgroundTasks:[],backgroundTaskEvents:[],backgroundJobGroups:[],backgroundJobGroupEvents:[],skillActivationEvents:[],memoryEvents:[],usedMemoryReferences:[],contextReferences:[],sandboxSnapshotId:void 0};let i=r.history??[],a=r.backgroundTasks??[],o=r.backgroundTaskEvents??[],s=r.backgroundJobGroups??[],c=r.backgroundJobGroupEvents??[],l=r.skillActivationEvents??[],u=r.memoryEvents??[],d=r.usedMemoryReferences??[],f=r.contextReferences??[],p=r.sandboxSnapshotId,{backgroundTasks:m,backgroundTaskEvents:ee}=Xi(a,o),h=r.name,g=null;if(r.messages)if(n)for(let e of r.messages)Ji(n,e);else g=r.messages;return{history:i,sessionName:h,pendingRestoreMessages:g,backgroundTasks:m,backgroundTaskEvents:ee,backgroundJobGroups:s,backgroundJobGroupEvents:c,skillActivationEvents:l,memoryEvents:u,usedMemoryReferences:d,contextReferences:f,sandboxSnapshotId:p}}function Xi(e,t){let n=new Date().toISOString(),r=[];return{backgroundTasks:e.map(e=>{if(Zi(e.status)||Qi(e))return e;let t={...e,status:`failed`,timeoutReason:`stale_worker`,error:{category:`timeout`,message:`Restored background task is stale; worker cannot be reattached`,recoverable:!0},unread:!0,completedAt:n,updatedAt:n};return r.push({type:`background_task_failed`,task:t}),t}),backgroundTaskEvents:[...t,...r]}}function Zi(e){return e===`completed`||e===`failed`||e===`cancelled`}function Qi(e){return e.kind===`scheduled`&&e.status===`sleeping`&&e.schedule!==void 0}function $i(e){if(e.type===`background_task_started`&&e.task.kind===`agent`)return`SubagentStart`;if((e.type===`background_task_completed`||e.type===`background_task_failed`||e.type===`background_task_cancelled`)&&e.task.kind===`agent`)return`SubagentStop`}function ea(e,t,n,r){let i=$i(e);!i||!(`task`in e)||re(n,i,{session_id:e.task.parentSessionId,cwd:t,hook_event_name:i,agent_id:e.task.id,agent_type:e.task.agentType??e.task.label,...e.task.transcriptPath?{agent_transcript_path:e.task.transcriptPath,transcript_path:e.task.transcriptPath}:{},...e.task.error?.message||e.task.timeoutReason?{reason:e.task.error?.message??e.task.timeoutReason}:{},...i===`SubagentStop`?{stop_hook_active:!1,...e.task.result?.output?{last_assistant_message:e.task.result.output}:{}}:{},env:{CLAUDE_PROJECT_DIR:t,CLAUDE_SESSION_ID:e.task.parentSessionId,ROBOTA_AGENT_ID:e.task.id,ROBOTA_AGENT_TYPE:e.task.agentType??e.task.label}},r).catch(()=>void 0)}const ta=[`Bash — execute shell commands`,`Read — read file contents with line numbers`,`Write — write content to a file`,`Edit — replace a string in a file`,`Glob — find files matching a pattern`,`Grep — search file contents with regex`,`WebFetch — fetch URL content as text`,`WebSearch — search the internet through the configured local tool`];function na(e={}){return[de(e),pe(e),me(e),fe(e),ge,_e,ve,ye]}const ra=new Set([`tools`,`disallowedTools`]),ia=new Set([`maxTurns`]);function aa(e){let t=e.includes(`,`)?/\s*,\s*/:/\s+/;return e.split(t).map(e=>e.trim()).filter(e=>e.length>0)}function oa(e){let t=e.split(`
|
|
67
|
+
`);if(t[0]?.trim()!==`---`)return{frontmatter:null,body:e};let n=-1;for(let e=1;e<t.length;e++)if(t[e]?.trim()===`---`){n=e;break}if(n===-1)return{frontmatter:null,body:e};let r={};for(let e=1;e<n;e++){let n=t[e].match(/^([a-zA-Z][a-zA-Z0-9]*(?:[A-Z][a-z]*)*):\s*(.+)/);if(!n)continue;let i=n[1],a=n[2].trim();ra.has(i)?r[i]=aa(a):ia.has(i)?r[i]=parseInt(a,10):r[i]=a}let i=t.slice(n+1).join(`
|
|
68
|
+
`).trim();return{frontmatter:Object.keys(r).length>0?r:null,body:i}}function W(e,t){if(!t.existsSync(e))return[];let n=[],r;try{r=t.readdirSync(e,{withFileTypes:!0})}catch{return[]}for(let i of r){if(!i.isFile()||!i.name.endsWith(`.md`))continue;let r=w(e,i.name),{frontmatter:a,body:o}=oa(t.readFileSync(r,`utf-8`)),s=Je(i.name,`.md`),c={name:a?.name??s,description:a?.description??``,systemPrompt:o};a?.model!==void 0&&(c.model=a.model),a?.maxTurns!==void 0&&(c.maxTurns=a.maxTurns),a?.tools!==void 0&&(c.tools=a.tools),a?.disallowedTools!==void 0&&(c.disallowedTools=a.disallowedTools),n.push(c)}return n}var sa=class{cwd;home;fs;constructor(e,t,n=new R){this.cwd=e,this.home=t??D(),this.fs=n}loadAll(){let e=[W(w(this.cwd,`.robota`,`agents`),this.fs),W(w(this.cwd,`.agents`,`agents`),this.fs),W(w(this.cwd,`.claude`,`agents`),this.fs),W(w(this.home,`.robota`,`agents`),this.fs),W(w(this.home,`.claude`,`agents`),this.fs)],t=new Set,n=[];for(let r of e)for(let e of r)t.has(e.name)||(t.add(e.name),n.push(e));let r=[...n];for(let e of un)t.has(e.name)||r.push(e);return r}getAgent(e){return this.loadAll().find(t=>t.name===e)}};function ca(e){let t=e.content.trim();return e.title?[`## ${e.title}`,t].join(`
|
|
69
|
+
`):t}function la(e){return[...e].filter(e=>e.content.trim().length>0).sort((e,t)=>e.priority-t.priority||e.id.localeCompare(t.id)).map(e=>ca(e)).join(`
|
|
70
|
+
|
|
71
|
+
`)}function G(e,t,n,r,i){return{id:e,title:t,priority:n,content:r,source:i}}function ua(e){if(e)return G(`runtime-cwd`,`Working Directory`,30,`\`${e}\``,`runtime`)}function da(e){let t=[];return e.name!==void 0&&t.push(`- **Name:** ${e.name}`),e.type!==`unknown`&&t.push(`- **Type:** ${e.type}`),e.language!==`unknown`&&t.push(`- **Language:** ${e.language}`),e.packageManager!==void 0&&t.push(`- **Package manager:** ${e.packageManager}`),G(`runtime-project`,`Current Project`,40,t.join(`
|
|
72
|
+
`),`runtime`)}function fa(e){return G(`permission-mode`,`Permission Mode`,50,`- **Permission mode:** ${e}`,`permissions`)}function pa(e){if(!(e===void 0||e.trim().length===0))return G(`runtime-response-language`,`Response Language`,45,e,`runtime`)}function ma(e){if(e.trim().length!==0)return G(`project-agents-md`,`Agent Instructions`,10,e,`project-instructions`)}function ha(e){if(e.trim().length!==0)return G(`project-claude-md`,`Project Notes`,20,e,`project-instructions`)}function ga(e){if(!(e===void 0||e.trim().length===0))return G(`project-memory`,`Project Memory`,25,e,`project-instructions`)}function _a(e){if(!(e===void 0||e.trim().length===0))return G(`active-task-context`,`Active Task Context`,27,e,`project-instructions`)}function va(e){if(e.length!==0)return G(`tool-descriptions`,`Available Tools`,60,e.map(e=>`- ${e}`).join(`
|
|
73
|
+
`),`tool`)}function ya(e){let t=e.argumentHint?` ${e.argumentHint}`:``;return`- ${e.name}${t}: ${e.description}`}function ba(e,t,n,r,i){let a=i.filter(t=>t.modelInvocable&&t.kind===e).map(ya);if(a.length!==0)return G(`capability-${e}`,t,n,a.join(`
|
|
74
|
+
`),r)}function xa(e){let t=[],n=ba(`builtin-command`,`Built-in Commands`,70,`command`,e),r=ba(`skill`,`Skills`,80,`skill`,e),i=ba(`agent`,`Agents`,90,`agent`,e),a=ba(`tool`,`Tools`,100,`tool`,e);return n&&t.push(n),r&&t.push(r),i&&t.push(i),a&&t.push(a),t}function K(e,t){t!==void 0&&e.push(t)}function Sa(e){return e.map(e=>({name:e.name,kind:`skill`,description:e.description,userInvocable:!0,modelInvocable:e.disableModelInvocation!==!0}))}function Ca(e){return e.map(e=>({name:e.name,kind:`agent`,description:e.description,userInvocable:!1,modelInvocable:!0,safety:`background-agent`}))}function wa(e){return[...e.commandDescriptors??[],...e.skills?Sa(e.skills):[],...e.agents?Ca(e.agents):[]]}function Ta(e){let t=[];return K(t,ma(e.agentsMd)),K(t,ha(e.claudeMd)),K(t,ga(e.memoryMd)),K(t,_a(e.taskContext)),K(t,ua(e.cwd)),t.push(da(e.projectInfo)),K(t,pa(e.language)),t.push(fa(e.permissionMode)),K(t,va(e.toolDescriptions)),t.push(...xa(wa(e))),la(t)}function Ea(e){return e}const Da=v.object({command:v.string().describe(`The shell command to start in the background`),timeout:v.number().optional().describe(`Optional timeout in milliseconds. Default is 120000.`),workingDirectory:v.string().optional().describe(`Working directory for the command. Defaults to the current project directory.`),stdin:v.string().optional().describe(`Optional stdin to write after the process starts.`),outputLimitBytes:v.number().optional().describe(`Maximum captured output bytes kept in the task result.`)});function Oa(e,t,n){return JSON.stringify({success:!0,background:!0,output:``,taskId:e,status:t,command:n})}function ka(e){return JSON.stringify({success:!1,background:!0,output:``,error:`Background process error: ${e}`})}async function Aa(e,t){try{let n=await t.backgroundTaskManager.spawn({kind:`process`,label:e.command,mode:`background`,parentSessionId:t.parentSessionId??`unknown-session`,depth:0,cwd:e.workingDirectory??t.cwd??process.cwd(),command:e.command,stdin:e.stdin,timeoutMs:e.timeout??12e4,outputLimitBytes:e.outputLimitBytes,metadata:t.metadata});return Oa(n.id,n.status,e.command)}catch(e){return ka(e instanceof Error?e.message:String(e))}}function ja(e){return he(`BackgroundProcess`,`Start a shell command as a managed background task. Use this for long-running commands that should not block the current conversation. Use /background list, /background read <taskId>, /background cancel <taskId>, or /background close <taskId> to inspect or control it.`,Ea(Da),async t=>Aa(t,e))}function Ma(e,t,n,r,i,a){let o,s=[],c;if(e.enableAgentRuntime){let l=new sa(n);s=l.loadAll(),o={config:e.config,context:e.context,tools:i,terminal:e.terminal,provider:r,cwd:n,parentSessionId:t,permissionMode:e.permissionMode,permissionHandler:e.permissionHandler,hooks:e.config.hooks,hookTypeExecutors:a.length>0?a:void 0,onTextDelta:e.onTextDelta,onToolExecution:e.onToolExecution,customAgentRegistry:e=>l.getAgent(e),agentDefinitions:s};let u=new ae({runner:(e.subagentRunnerFactory??Fn)(o),backgroundTaskRunners:e.backgroundTaskRunners});o.subagentManager=u,c=u.getBackgroundTaskManager(),o.backgroundTaskManager=c}else c=new ie({runners:e.backgroundTaskRunners??[]});let l=e.sessionLogger;return l&&c.subscribe(e=>Ia(l,t,e)),c.subscribe(t=>ea(t,n,e.config.hooks,a.length>0?a:void 0)),{agentToolDeps:o,agentDefinitions:s,backgroundTaskManager:c}}function Na(e,t,n,r,i){if(!e.backgroundTaskRunners?.some(e=>e.kind===`process`))return{backgroundProcessToolDeps:void 0};let a={backgroundTaskManager:t,cwd:r,parentSessionId:n,metadata:M({kind:`tool_call`,sessionId:n,label:`BackgroundProcess`})};return i.push(ja(a)),{backgroundProcessToolDeps:a}}function Pa(e,t,n,r,i,o,s){let c=e.systemPromptBuilder??Ta,l=[...ta,...r?r.commandTools.map(bn):[]],u=e.toolDescriptions??(i?[...l,`BackgroundProcess — start long-running shell commands as managed background tasks`]:l),d={agentsMd:e.context.agentsMd,claudeMd:e.context.claudeMd,memoryMd:e.context.memoryMd,taskContext:e.context.taskContext,toolDescriptions:u,permissionMode:e.permissionMode??a[e.config.defaultTrustLevel]??`default`,projectInfo:e.projectInfo??{type:`unknown`,language:`unknown`},cwd:t,language:e.config.language,skills:o.map(e=>({name:e.name,description:e.description,disableModelInvocation:e.disableModelInvocation})),...s.length>0?{agents:s.map(e=>({name:e.name,description:e.description}))}:{},commandDescriptors:e.commandDescriptors??[]},f=c(d);return{finalSystemMessage:e.appendSystemPrompt?`${f}\n\n${e.appendSystemPrompt}`:f,rebuildSystemMessage:(t,n)=>{let r=c({...d,agentsMd:t,claudeMd:n});return e.appendSystemPrompt?`${r}\n\n${e.appendSystemPrompt}`:r}}}function Fa(e,t,n,r){t&&(t.parentSessionId=e.getSessionId()),n&&(n.parentSessionId=e.getSessionId()),Kt(e,r),t&&Bn(e,t)}function Ia(e,t,n){let r={};if(n.type===`background_task_created`){r.taskId=n.task.id;let e=n.task.metadata?.executionOriginToolCallId;typeof e==`string`&&(r.originToolCallId=e)}e.log(t,`background_task_event`,{backgroundEventType:n.type,backgroundEvent:n,...r})}const La=new Set([`Write`,`Edit`]);function Ra(e,t){return e.map(e=>La.has(e.getName())?new za(e,t):e)}var za=class{delegate;recorder;schema;constructor(e,t){this.delegate=e,this.recorder=t,this.schema=e.schema}setEventService(e){this.delegate.setEventService(e)}async execute(e,t){let n=Ba(e);return n&&await this.recorder.captureFile(n),this.delegate.execute(e,t)}validate(e){return this.delegate.validate(e)}validateParameters(e){return this.delegate.validateParameters(e)}getDescription(){return this.delegate.getDescription()}getName(){return this.delegate.getName()}};function Ba(e){if(!e||typeof e!=`object`)return;let t=e.filePath;return typeof t==`string`&&t.length>0?t:void 0}const Va=new Set([`disable-model-invocation`,`user-invocable`]),Ha=new Set([`allowed-tools`]);function Ua(e){return e.replace(/-([a-z])/g,(e,t)=>t.toUpperCase())}function Wa(e){let t=e.includes(`,`)?/\s*,\s*/:/\s+/;return e.split(t).map(e=>e.trim()).filter(e=>e.length>0)}function Ga(e){let t=e.split(`
|
|
75
|
+
`);if(t[0]?.trim()!==`---`)return null;let n={};for(let e=1;e<t.length;e++){let r=t[e];if(r.trim()===`---`)break;let i=r.match(/^([a-z][a-z0-9-]*):\s*(.+)/);if(!i)continue;let a=i[1],o=i[2].trim(),s=Ua(a);Va.has(a)?n[s]=o===`true`:Ha.has(a)?n[s]=Wa(o):n[s]=o}return Object.keys(n).length>0?n:null}function Ka(e,t,n){let r={name:e?.name??n,description:e?.description??`Skill: ${n}`,source:`skill`,skillContent:t};return e?.argumentHint!==void 0&&(r.argumentHint=e.argumentHint),e?.disableModelInvocation!==void 0&&(r.disableModelInvocation=e.disableModelInvocation),e?.userInvocable!==void 0&&(r.userInvocable=e.userInvocable),e?.allowedTools!==void 0&&(r.allowedTools=e.allowedTools),e?.model!==void 0&&(r.model=e.model),e?.effort!==void 0&&(r.effort=e.effort),e?.context!==void 0&&(r.context=e.context),e?.agent!==void 0&&(r.agent=e.agent),r}function qa(e,t){if(!t.existsSync(e))return[];let n=[],r=t.readdirSync(e,{withFileTypes:!0});for(let i of r){if(!i.isDirectory())continue;let r=w(e,i.name,`SKILL.md`);if(!t.existsSync(r))continue;let a=t.readFileSync(r,`utf-8`),o=Ga(a);n.push(Ka(o,a,i.name))}return n}function Ja(e,t){if(!t.existsSync(e))return[];let n=[],r=t.readdirSync(e,{withFileTypes:!0});for(let i of r){if(!i.isFile()||!i.name.endsWith(`.md`))continue;let r=w(e,i.name),a=t.readFileSync(r,`utf-8`),o=Ga(a),s=Je(i.name,`.md`);n.push(Ka(o,a,s))}return n}var Ya=class{name=`skill`;cwd;home;fs;cachedCommands=null;constructor(e,t,n=new R){this.cwd=e,this.home=t??D(),this.fs=n}getCommands(){if(this.cachedCommands)return this.cachedCommands;let e=[qa(w(this.cwd,`.claude`,`skills`),this.fs),Ja(w(this.cwd,`.claude`,`commands`),this.fs),qa(w(this.home,`.robota`,`skills`),this.fs),qa(w(this.cwd,`.agents`,`skills`),this.fs)],t=new Set,n=[];for(let r of e)for(let e of r)t.has(e.name)||(t.add(e.name),n.push(e));return this.cachedCommands=n,this.cachedCommands}getModelInvocableSkills(){return this.getCommands().filter(e=>e.disableModelInvocation!==!0)}getUserInvocableSkills(){return this.getCommands().filter(e=>e.userInvocable!==!1)}},Xa=class extends Error{filePath;constructor(e,t){super(`Settings file ${e} contains invalid JSON: ${t}. Fix or delete the file, or run robota diagnose.`),this.name=`SettingsParseError`,this.filePath=e}};function Za(){return w(process.env.HOME??process.env.USERPROFILE??`/`,`.robota`,`settings.json`)}function Qa(e,t){return t===void 0||t===`user`?Za():w(e,`.robota`,`settings.local.json`)}function q(e){if(!b(e))return{};let t=x(e,`utf8`);try{return JSON.parse(t)}catch(t){throw new Xa(e,t instanceof Error?t.message:String(t))}}function J(e,t){je(C(e),{recursive:!0}),Le(e,JSON.stringify(t,null,2)+`
|
|
76
|
+
`,`utf8`)}function $a(e,t){let n=q(e),r=n.currentProvider,i=n.providers;if(typeof r==`string`&&eo(i)){let e=i;e[r]={...eo(e[r])?e[r]:{},model:t},n.providers=e}else n.provider={...eo(n.provider)?n.provider:{},model:t};J(e,n)}function eo(e){return typeof e==`object`&&!!e&&!Array.isArray(e)&&!(e instanceof Date)}function to(e){return b(e)?(Ie(e),!0):!1}function no(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var ro=class{type=`agent`;sessionFactory;constructor(e){this.sessionFactory=e.sessionFactory}async execute(e,t){let n=e,r=n.maxTurns??50,i=n.timeout??60;try{let e=this.sessionFactory({maxTurns:r,timeout:i}),n=`Hook input:\n${JSON.stringify(t)}\n\nRespond with JSON: { "ok": boolean, "reason"?: string }`,a=await e.run(n),o=no(a),s;try{s=JSON.parse(o)}catch{return{exitCode:1,stdout:``,stderr:`Failed to parse agent response as JSON: ${a}`}}return s.ok?{exitCode:0,stdout:JSON.stringify(s),stderr:``}:{exitCode:2,stdout:``,stderr:s.reason??`Blocked by agent hook`}}catch(e){return{exitCode:1,stdout:``,stderr:e instanceof Error?e.message:String(e)}}}};function io(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var ao=class{type=`prompt`;providerFactory;defaultModel;constructor(e){this.providerFactory=e.providerFactory,this.defaultModel=e.defaultModel}async execute(e,t){let n=e,r=n.model??this.defaultModel;try{let e=this.providerFactory(r),i=`${n.prompt}\n\nContext:\n${JSON.stringify(t)}\n\nRespond with JSON: { "ok": boolean, "reason"?: string }`,a=await e.complete(i),o=io(a),s;try{s=JSON.parse(o)}catch{return{exitCode:1,stdout:``,stderr:`Failed to parse AI response as JSON: ${a}`}}return s.ok?{exitCode:0,stdout:JSON.stringify(s),stderr:``}:{exitCode:2,stdout:``,stderr:s.reason??`Blocked by prompt hook`}}catch(e){return{exitCode:1,stdout:``,stderr:e instanceof Error?e.message:String(e)}}}};const oo=new Set([`Write`,`Edit`]),so=new Set([`Bash`,`BackgroundProcess`]),co=new Set([`Read`,`Glob`,`Grep`,`WebFetch`,`WebSearch`]);function lo(e){let t=e.toolName;return co.has(t)?{toolName:t,reversible:!0,sideEffect:`none`,rollbackLayer:`none`,status:`read-only`,message:`${t} does not mutate the local workspace.`}:oo.has(t)?e.context.isolation===`worktree`||e.context.isolation===`provider-sandbox`?po(t,`file-mutation`,e.context):e.context.checkpointAvailable?{toolName:t,reversible:!0,sideEffect:`file-mutation`,rollbackLayer:`edit-checkpoint`,status:`reversible`,message:`${t} is reversible through the active edit checkpoint.`}:{toolName:t,reversible:!1,sideEffect:`file-mutation`,rollbackLayer:`none`,status:`requires-checkpoint`,message:`${t} requires an edit checkpoint before file mutation.`}:so.has(t)?po(t,`shell-process`,e.context):t===`Agent`?mo(e.toolArgs,e.context):{toolName:t,reversible:!1,sideEffect:`unknown`,rollbackLayer:`none`,status:`unknown`,message:`${t} has no reversible execution contract.`}}function uo(e,t){let n={checkpointAvailable:t.checkpointAvailable,isolation:t.isolation??`none`},r=t.enforceUntrackedSideEffects??!0;return e.map(e=>new fo(e,{safetyContext:n,enforceUntrackedSideEffects:r}))}var fo=class{delegate;options;schema;constructor(e,t){this.delegate=e,this.options=t,this.schema=e.schema}setEventService(e){this.delegate.setEventService(e)}async execute(e,t){let n=lo({toolName:this.getName(),toolArgs:vo(e),context:this.options.safetyContext});return!n.reversible&&this.options.enforceUntrackedSideEffects?yo(n):this.delegate.execute(e,t)}validate(e){return this.delegate.validate(e)}validateParameters(e){return this.delegate.validateParameters(e)}getDescription(){return this.delegate.getDescription()}getName(){return this.delegate.getName()}};function po(e,t,n){return n.isolation===`worktree`?{toolName:e,reversible:!0,sideEffect:t,rollbackLayer:`worktree`,status:`reversible`,message:`${e} side effects are contained in an isolated Git worktree.`}:n.isolation===`provider-sandbox`?{toolName:e,reversible:!0,sideEffect:t,rollbackLayer:`provider-sandbox`,status:`reversible`,message:`${e} side effects are contained in a provider sandbox snapshot.`}:{toolName:e,reversible:!1,sideEffect:t,rollbackLayer:`none`,status:`requires-isolation`,message:`${e} can create host shell side effects that edit checkpoints cannot restore; use worktree or provider sandbox isolation.`}}function mo(e,t){return t.isolation===`worktree`||t.isolation===`provider-sandbox`?po(`Agent`,`subagent`,t):ho(e)?{toolName:`Agent`,reversible:!0,sideEffect:`subagent`,rollbackLayer:`worktree`,status:`reversible`,message:`Agent jobs request worktree isolation, so shell side effects stay outside the parent workspace.`}:{toolName:`Agent`,reversible:!1,sideEffect:`subagent`,rollbackLayer:`none`,status:`requires-isolation`,message:`Agent jobs must request worktree isolation to be reversible in local-first mode.`}}function ho(e){if(!e)return!1;let t=e.jobs;return Array.isArray(t)?t.length>0&&t.every(e=>_o(e)?go(e)===`worktree`:!1):go(e)===`worktree`}function go(e){let t=e.isolation;return typeof t==`string`?t:void 0}function _o(e){return e!==void 0&&typeof e==`object`&&!Array.isArray(e)}function vo(e){if(!(!e||typeof e!=`object`||Array.isArray(e)))return e}function yo(e){return{success:!0,data:{success:!1,output:``,error:e.message,reversibleSafety:{toolName:e.toolName,sideEffect:e.sideEffect,rollbackLayer:e.rollbackLayer,status:e.status}},metadata:{reversibleSafetyStatus:e.status,rollbackLayer:e.rollbackLayer}}}function bo(e){return(e??[]).filter(e=>e.modelInvocable&&e.kind===`builtin-command`)}function xo(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function So(e,t){return e.some(e=>xo(e.name)===t)}function Co(e){if(!e.provider)throw Error(`provider is required. SDK is provider-neutral — consumer must create and pass a provider instance.`);let t=e.provider,n=e.cwd??process.cwd(),r=e.sessionId??wo(),i=new Ya(n),a=bo(e.commandDescriptors),o=a.length>0&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0,s=o?yn(a):void 0,c=So(a,`skills`)?i.getModelInvocableSkills():[],l=na({sandboxClient:e.sandboxClient,cwd:n}),u=e.editCheckpointRecorder!==void 0&&e.sandboxClient===void 0,d=[...u&&e.editCheckpointRecorder?Ra(l,e.editCheckpointRecorder):l,...e.additionalTools??[]],f=e.reversibleExecution?{...e.reversibleExecution,isolation:e.reversibleExecution.isolation??(e.sandboxClient?`provider-sandbox`:void 0)}:void 0,p=f?uo(d,{...f,checkpointAvailable:u}):d;o&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0&&p.push(...Sn({execute:e.modelCommandExecutor,isModelInvocable:e.isModelCommandInvocable,commandDescriptors:a}));let m=[];e.providerFactory&&m.push(new ao({providerFactory:e.providerFactory,defaultModel:e.config.provider.model})),e.sessionFactory&&m.push(new ro({sessionFactory:e.sessionFactory})),e.additionalHookExecutors&&m.push(...e.additionalHookExecutors);let{agentToolDeps:ee,agentDefinitions:h,backgroundTaskManager:g}=Ma(e,r,n,t,p,m),{backgroundProcessToolDeps:te}=Na(e,g,r,n,p),{finalSystemMessage:_,rebuildSystemMessage:ne}=Pa(e,n,a,s,te,c,h),re=[`Read(.agents/**)`,`Read(.claude/**)`,`Read(.robota/**)`,`Glob(.agents/**)`,`Glob(.claude/**)`,`Glob(.robota/**)`],ie=s?s.commandTools.filter(e=>!e.requiresPermission).map(e=>e.toolName):[],ae=(e.allowedTools??[]).map(e=>`${e}(*)`),oe=(e.deniedTools??[]).map(e=>`${e}(*)`),se={allow:[...re,...ie,...e.config.permissions.allow??[],...ae],deny:[...e.config.permissions.deny??[],...oe]},ce=w(n,`.robota`,`settings.local.json`);function le(e){let t=`${e}(*)`,n=q(ce),r=Array.isArray(n.permissions)?[]:n.permissions?.allow??[];r.includes(t)||J(ce,{...n,permissions:{...n.permissions??{},allow:[...r,t]}})}let ue=new Se({tools:p,provider:t,systemMessage:_,terminal:e.terminal,permissions:se,hooks:e.config.hooks,permissionMode:e.permissionMode,defaultTrustLevel:e.config.defaultTrustLevel,model:e.model??e.config.provider.model,providerTimeout:e.config.provider.timeout??12e4,maxTurns:e.maxTurns,sessionStore:e.sessionStore,sessionId:r,permissionHandler:e.permissionHandler,onProjectAllowTool:le,onTextDelta:e.onTextDelta,onContextUpdate:e.onContextUpdate,onToolExecution:e.onToolExecution,promptForApproval:e.promptForApproval,onCompact:e.onCompact,onCompactEvent:e.onCompactEvent,compactInstructions:e.compactInstructions??e.context.compactInstructions,autoCompactThreshold:e.autoCompactThreshold??e.config.autoCompactThreshold,sessionLogger:e.sessionLogger,hookTypeExecutors:m.length>0?m:void 0,agentName:e.agentName,...e.responseFormat?{responseFormat:e.responseFormat}:{}});return Fa(ue,ee,te,g),{session:ue,rebuildSystemMessage:ne}}function wo(){return`session_${Date.now()}_${Math.random().toString(36).substr(2,9)}`}function To(e,t,n,r=new R){let i=w(n,e,`subagents`);return r.mkdirSync(i,{recursive:!0}),new xe(i)}function Eo(e,t){return w(t,e,`subagents`)}const Do=v.lazy(()=>v.union([v.string(),v.number(),v.boolean(),v.null(),v.undefined(),v.date(),v.array(Do),v.record(Do)])),Oo=v.object({name:v.string().optional(),model:v.string().optional(),apiKey:v.string().optional(),baseURL:v.string().optional(),timeout:v.number().optional(),options:v.record(Do).optional()}),ko=v.object({type:v.string().optional(),model:v.string().optional(),apiKey:v.string().optional(),baseURL:v.string().optional(),timeout:v.number().optional(),options:v.record(Do).optional()}),Ao=v.object({allow:v.array(v.string()).optional(),deny:v.array(v.string()).optional()}),jo=v.record(v.string()).optional(),Mo=v.object({type:v.literal(`command`),command:v.string(),timeout:v.number().optional()}),No=v.object({type:v.literal(`http`),url:v.string(),headers:v.record(v.string()).optional(),timeout:v.number().optional()}),Po=v.object({type:v.literal(`prompt`),prompt:v.string(),model:v.string().optional()}),Fo=v.object({type:v.literal(`agent`),agent:v.string(),maxTurns:v.number().optional(),timeout:v.number().optional()}),Io=v.discriminatedUnion(`type`,[Mo,No,Po,Fo]),Y=v.object({matcher:v.string(),hooks:v.array(Io)}),Lo=v.object({PreToolUse:v.array(Y).optional(),PostToolUse:v.array(Y).optional(),SessionStart:v.array(Y).optional(),SessionEnd:v.array(Y).optional(),Stop:v.array(Y).optional(),StopFailure:v.array(Y).optional(),PreCompact:v.array(Y).optional(),PostCompact:v.array(Y).optional(),UserPromptSubmit:v.array(Y).optional(),SubagentStart:v.array(Y).optional(),SubagentStop:v.array(Y).optional(),WorktreeCreate:v.array(Y).optional(),WorktreeRemove:v.array(Y).optional()}).optional(),Ro=v.record(v.boolean()).optional(),zo=v.object({source:v.object({type:v.enum([`github`,`git`,`local`,`url`]),repo:v.string().optional(),url:v.string().optional(),path:v.string().optional(),ref:v.string().optional()})}),Bo=v.record(zo).optional().catch(void 0),Vo=v.union([v.number().gt(0).lte(1),v.literal(!1)]).optional(),Ho=v.object({enabled:v.boolean().optional(),options:v.record(Do).optional()}),Uo=v.object({defaultTrustLevel:v.enum([`safe`,`moderate`,`full`]).optional(),language:v.string().optional(),currentProvider:v.string().optional(),providers:v.record(ko).optional(),provider:Oo.optional(),permissions:Ao.optional(),env:jo,hooks:Lo,enabledPlugins:Ro,extraKnownMarketplaces:Bo,autoCompactThreshold:Vo,transports:v.record(Ho).optional()});function Wo(){return process.env.HOME??process.env.USERPROFILE??`/`}const X={defaultTrustLevel:`moderate`,provider:{name:`anthropic`,model:`claude-opus-4-5`,apiKey:void 0},permissions:{allow:[],deny:[]},env:{}};function Go(e){if(!O(e))return;let t=$e(e,`utf-8`).trim();if(t.length!==0)try{return JSON.parse(t)}catch{return}}function Ko(e){if(e.startsWith(`$ENV:`)){let t=e.slice(5);return process.env[t]??e}return e}function qo(e){let t=e.provider?.apiKey===void 0?e.provider:Jo(e.provider);if(e.providers!==void 0){let n=Object.fromEntries(Object.entries(e.providers).map(([e,t])=>[e,Jo(t)]));return{...e,provider:t,providers:n}}return{...e,provider:t}}function Jo(e){return{...e,...e.apiKey!==void 0&&{apiKey:Ko(e.apiKey)}}}function Yo(e){return e.reduce((e,t)=>({...e,...t,provider:e.provider!==void 0||t.provider!==void 0?{...e.provider,...t.provider}:void 0,permissions:e.permissions!==void 0||t.permissions!==void 0?{allow:t.permissions?.allow??e.permissions?.allow,deny:t.permissions?.deny??e.permissions?.deny}:void 0,env:{...e.env??{},...t.env??{}},providers:e.providers!==void 0||t.providers!==void 0?Xo(e.providers,t.providers):void 0,enabledPlugins:e.enabledPlugins!==void 0||t.enabledPlugins!==void 0?{...e.enabledPlugins??{},...t.enabledPlugins??{}}:void 0,extraKnownMarketplaces:t.extraKnownMarketplaces??e.extraKnownMarketplaces,autoCompactThreshold:t.autoCompactThreshold??e.autoCompactThreshold}),{})}function Xo(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Zo(e){if(e.currentProvider!==void 0)return Qo(e);if(e.provider!==void 0)throw Error(`Legacy flat "provider" settings are not supported. Migrate to "currentProvider" + "providers" format.`);return{...X.provider}}function Qo(e){let t=e.currentProvider;if(t===void 0)throw Error(`currentProvider is required`);let n=e.providers?.[t];if(n===void 0)throw Error(`currentProvider "${t}" was not found in providers`);if(n.type===void 0)throw Error(`Provider profile "${t}" is missing type`);return{name:n.type,model:n.model??X.provider.model,apiKey:n.apiKey??X.provider.apiKey,...n.baseURL!==void 0&&{baseURL:n.baseURL},...n.timeout!==void 0&&{timeout:n.timeout},...n.options!==void 0&&{options:n.options}}}function $o(e){return{defaultTrustLevel:e.defaultTrustLevel??X.defaultTrustLevel,language:e.language,currentProvider:e.currentProvider,provider:Zo(e),permissions:{allow:e.permissions?.allow??X.permissions.allow,deny:e.permissions?.deny??X.permissions.deny},env:e.env??X.env,hooks:e.hooks??void 0,enabledPlugins:e.enabledPlugins??void 0,extraKnownMarketplaces:e.extraKnownMarketplaces??void 0,autoCompactThreshold:e.autoCompactThreshold}}function es(e){let t=Wo();return[k(t,`.robota`,`settings.json`),k(t,`.claude`,`settings.json`),k(e,`.robota`,`settings.json`),k(e,`.robota`,`settings.local.json`),k(e,`.claude`,`settings.json`),k(e,`.claude`,`settings.local.json`)]}async function ts(e){let t=es(e),n=[];for(let e of t){let t=Go(e);t!==void 0&&n.push({raw:t,path:e})}return $o(Yo(n.map(({raw:e,path:t})=>{let n=Uo.safeParse(e);if(!n.success)throw Error(`Invalid settings in ${t}: ${n.error.message}`);return qo(n.data)})))}const ns=w(`.agents`,`tasks`),rs={"in-progress":1,todo:2,blocked:3,unknown:4,completed:5};function is(e){let t=e?.trim().toLowerCase();return t===`todo`||t===`in-progress`||t===`blocked`||t===`completed`?t:`unknown`}function as(e,t){return e.split(/\r?\n/).find(e=>/^#\s+/.test(e))?.replace(/^#\s+/,``).trim()||Je(t,`.md`)}function os(e,t){return RegExp(`^- \\*\\*${t}\\*\\*:\\s*(.+)$`,`im`).exec(e)?.[1]?.trim()}function ss(e,t){let n=e.split(/\r?\n/),r=RegExp(`^(#{2,6})\\s+${t}\\b`,`i`),i=n.findIndex(e=>r.test(e));if(i<0)return;let a=[];for(let e of n.slice(i+1)){if(/^##\s+/.test(e))break;a.push(e)}let o=a.join(`
|
|
77
|
+
`).trim();return o.length>0?o:void 0}function cs(e){return e.split(/\r?\n/).map(e=>/^- \[ \]\s+(.+)$/.exec(e)?.[1]?.trim()).filter(e=>e!==void 0&&e.length>0)}function ls(e,t){return t&&e.branch===t?0:rs[e.status]}function us(e){let t=[`### ${e.title}`,`- **Path:** \`${e.relativePath}\``];return t.push(`- **Status:** ${e.status}`),e.branch&&t.push(`- **Branch:** ${e.branch}`),e.scope&&t.push(`- **Scope:** ${e.scope}`),e.objective&&t.push(`- **Objective:** ${e.objective}`),e.openItems.length>0&&(t.push(`- **Open items:**`),t.push(...e.openItems.map(e=>` - ${e}`))),t.join(`
|
|
78
|
+
`)}function ds(e){return e.toISOString().slice(0,10)}function fs(e,t){let n=e.split(/\r?\n/),r=`- **Status**: ${t}`,i=n.findIndex(e=>/^- \*\*Status\*\*:\s*/.test(e));return i>=0?(n[i]=r,n.join(`
|
|
79
79
|
`)):(n.length>0&&/^#\s+/.test(n[0])?n.splice(1,0,``,r):n.unshift(r,``),n.join(`
|
|
80
|
-
`))}function
|
|
80
|
+
`))}function ps(e,t,n){let r=[`### ${ds(t)}`,`- ${n.trim()}`],i=e.replace(/\s+$/u,``).split(/\r?\n/),a=i.findIndex(e=>/^## Progress\s*$/.test(e));if(a<0)return[...i,``,`## Progress`,``,...r,``].join(`
|
|
81
81
|
`);let o=i.findIndex((e,t)=>t>a&&/^##\s+/.test(e));return o<0?[...i,``,...r,``].join(`
|
|
82
82
|
`):(i.splice(o,0,``,...r,``),i.join(`
|
|
83
|
-
`))}function
|
|
83
|
+
`))}function ms(e,t){let n=E(e),r=!1;for(;!r;){let e=w(n,`.git`);if(t.existsSync(e)){if(t.statSync(e).isDirectory())return e;let r=t.readFileSync(e,`utf8`).trim().match(/^gitdir:\s*(.+)$/)?.[1];if(r)return Ye(r)?r:E(n,r)}let i=C(n);r=i===n,n=i}}function hs(e,t=new R){let n=ms(e,t);if(!n)return;let r=w(n,`HEAD`);if(t.existsSync(r))return(t.readFileSync(r,`utf8`).trim().match(/^ref:\s+refs\/heads\/(.+)$/)?.[1])?.trim()}function gs(e,t=new R){let n=w(e,ns);return t.existsSync(n)?t.readdirSync(n,{withFileTypes:!0}).filter(e=>e.isFile()).map(e=>e.name).filter(e=>e!==`README.md`&&e.endsWith(`.md`)).sort((e,t)=>e.localeCompare(t)).map(e=>w(n,e)):[]}function _s(e,t,n=new R){let r=n.readFileSync(e,`utf8`);return{path:e,relativePath:T(t,e),title:as(r,e),status:is(os(r,`Status`)),branch:os(r,`Branch`),scope:os(r,`Scope`),objective:ss(r,`Objective`),openItems:cs(r)}}function vs(e,t={}){let n=t.maxTasks??3;return[...e].filter(e=>e.status!==`completed`).sort((e,n)=>ls(e,t.currentBranch)-ls(n,t.currentBranch)||e.relativePath.localeCompare(n.relativePath)).slice(0,n)}function ys(e){return e.map(us).join(`
|
|
84
84
|
|
|
85
|
-
`)}function
|
|
86
|
-
`).trimEnd(),truncated:n.length>t}}function
|
|
85
|
+
`)}function bs(e,t={},n=new R){let r=t.currentBranch??hs(e,n);return ys(vs(gs(e,n).map(t=>_s(t,e,n)),{...t,currentBranch:r}))}function xs(e,t,n={},r=new R){let i=fs(r.readFileSync(e,`utf8`),t),a=n.progressMessage?ps(i,n.now??new Date,n.progressMessage):i;r.writeFileSync(e,a,`utf8`)}const Ss=200,Cs=25600,ws=[`user`,`feedback`,`project`,`reference`];function Ts(e){return ws.includes(e)}function Es(e){return k(e,`.robota`,`memory`)}function Ds(e,t){let n=Buffer.from(e,`utf8`);return n.byteLength<=t?e:n.subarray(0,t).toString(`utf8`)}function Os(e,t){let n=e.split(/\r?\n/);return{content:n.slice(0,t).join(`
|
|
86
|
+
`).trimEnd(),truncated:n.length>t}}function ks(e){return e.trim().toLowerCase().replace(/[^a-z0-9가-힣_-]+/g,`-`).replace(/^-+|-+$/g,``).slice(0,80)||`general`}function As(e,t,n){let r=e.toISOString().slice(0,10),i=t.text.trim().replace(/\s+/g,` `);return`[${r}] (${t.type}/${n}) ${i}`}function js(e){return e.trim().replace(/\s+/g,` `)}var Ms=class{cwd;now;constructor(e,t=()=>new Date){this.cwd=e,this.now=t}getIndexPath(){return k(Es(this.cwd),`MEMORY.md`)}getTopicsPath(){return k(Es(this.cwd),`topics`)}loadStartupMemory(){let e=this.getIndexPath();if(!O(e))return{content:``,path:e,lineCount:0,truncated:!1};let t=$e(e,`utf8`),n=Ds(t,Cs),r=Buffer.byteLength(t,`utf8`)>Cs,i=Os(n,200);return{content:i.content,path:e,lineCount:i.content.length===0?0:i.content.split(/\r?\n/).length,truncated:r||i.truncated}}list(){let e=this.getTopicsPath(),t=O(e)?et(e,{withFileTypes:!0}).filter(e=>e.isFile()&&e.name.endsWith(`.md`)).map(t=>({name:nt(t.name,`.md`),path:k(e,t.name)})).sort((e,t)=>e.name.localeCompare(t.name)):[];return{indexPath:this.getIndexPath(),topicsPath:e,topics:t}}readTopic(e){let t=ks(e),n=k(this.getTopicsPath(),`${t}.md`);return O(n)?$e(n,`utf8`).trimEnd():``}append(e){let t=ks(e.topic),n=Es(this.cwd),r=this.getTopicsPath();Qe(r,{recursive:!0});let i=this.getIndexPath(),a=k(r,`${t}.md`),o=As(this.now(),e,t),s=O(a)?``:`# ${t}\n\n`,c=js(e.text);return O(a)&&$e(a,`utf8`).includes(`) ${c}`)?{indexPath:i,topicPath:a,topic:t,deduplicated:!0}:(O(i)||(Qe(n,{recursive:!0}),tt(i,`# Project Memory
|
|
87
87
|
|
|
88
|
-
`,`utf8`)),
|
|
88
|
+
`,`utf8`)),Ze(i,`- ${o}\n`,`utf8`),Ze(a,`${s}- ${o}\n`,`utf8`),{indexPath:i,topicPath:a,topic:t,deduplicated:!1})}};function Ns(e,t){let n=[],r=it(e),i=!1;for(;!i;){let e=k(r,t);O(e)&&n.push(e);let a=rt(r);i=a===r,i||(r=a)}return n.reverse()}function Ps(e){let t=e.split(`
|
|
89
89
|
`),n=!1,r=0,i=[];for(let e of t){let t=/^(#{1,6})\s+/.exec(e);if(t){if(n&&t[1].length<=r)break;if(/compact\s+instructions/i.test(e)){n=!0,r=t[1].length;continue}}n&&i.push(e)}return i.join(`
|
|
90
|
-
`).trim()||void 0}async function
|
|
90
|
+
`).trim()||void 0}async function Fs(e){let t=Ns(e,`AGENTS.md`),n=Ns(e,`CLAUDE.md`),r=t.map(e=>cr(e)),i=n.map(e=>cr(e)),a=r.map(e=>e.content).join(`
|
|
91
91
|
|
|
92
92
|
`),o=i.map(e=>e.content).join(`
|
|
93
93
|
|
|
94
|
-
`),s=
|
|
95
|
-
`)){let t=e.indexOf(`:`);if(t===-1)continue;let n=e.slice(0,t).trim(),r=e.slice(t+1).trim();typeof r==`string`&&r.startsWith(`[`)&&r.endsWith(`]`)&&(r=r.slice(1,-1).split(`,`).map(e=>e.trim()).filter(e=>e.length>0)),n&&(a[n]=r)}return{metadata:a,content:i}}function As(e){if(typeof e!=`object`||!e)return null;let t=e;if(typeof t.name!=`string`||typeof t.version!=`string`||typeof t.description!=`string`)return null;let n=typeof t.features==`object`&&t.features!==null?t.features:{};return{name:t.name,version:t.version,description:t.description,features:{commands:n.commands===!0?!0:void 0,agents:n.agents===!0?!0:void 0,skills:n.skills===!0?!0:void 0,hooks:n.hooks===!0?!0:void 0,mcp:n.mcp===!0?!0:void 0}}}function js(e,t=new z){if(!t.existsSync(e))return[];try{return t.readdirSync(e,{withFileTypes:!0}).filter(e=>e.isDirectory()).map(e=>e.name).sort()}catch{return[]}}var Ms=class{pluginsDir;enabledPlugins;fs;constructor(e,t,n=new z){this.pluginsDir=e,this.enabledPlugins=t??{},this.fs=n}loadPluginsSync(){return this.discoverAndLoad()}async loadAll(){return this.discoverAndLoad()}discoverAndLoad(){let e=S(this.pluginsDir,`cache`);if(!this.fs.existsSync(e))return[];let t=[],n=js(e,this.fs);for(let r of n){let n=S(e,r),i=js(n,this.fs);for(let e of i){let i=S(n,e),a=js(i,this.fs);if(a.length===0)continue;let o=a[a.length-1],s=S(i,o),c=S(s,`.claude-plugin`,`plugin.json`);if(!this.fs.existsSync(c))continue;let l=this.readManifest(c);if(!l)continue;let u=`${l.name}@${r}`;if(this.isDisabled(u,l.name))continue;let d=this.loadPlugin(s,l);t.push(d)}}return t}readManifest(e){let t=this.fs.readFileSync(e,`utf-8`);return As(JSON.parse(t))}isDisabled(e,t){return e in this.enabledPlugins?this.enabledPlugins[e]===!1:t in this.enabledPlugins?this.enabledPlugins[t]===!1:!1}loadPlugin(e,t){return{manifest:t,skills:this.loadSkills(e,t.name),commands:this.loadCommands(e,t.name),hooks:this.loadHooks(e),mcpConfig:this.loadMcpConfig(e),agents:this.loadAgents(e),pluginDir:e}}loadSkills(e,t){let n=S(e,`skills`);if(!this.fs.existsSync(n))return[];let r=this.fs.readdirSync(n,{withFileTypes:!0}),i=[];for(let e of r){if(!e.isDirectory())continue;let t=S(n,e.name,`SKILL.md`);if(!this.fs.existsSync(t))continue;let{metadata:r,content:a}=ks(this.fs.readFileSync(t,`utf-8`)),o=typeof r.description==`string`?r.description:``,s={name:e.name,description:o,skillContent:a,...r};i.push(s)}return i}loadCommands(e,t){let n=S(e,`commands`);if(!this.fs.existsSync(n))return[];let r=this.fs.readdirSync(n,{withFileTypes:!0}),i=[];for(let e of r){if(!e.isFile()||!e.name.endsWith(`.md`))continue;let{metadata:r,content:a}=ks(this.fs.readFileSync(S(n,e.name),`utf-8`)),o=typeof r.name==`string`?r.name:e.name.replace(/\.md$/,``),s=typeof r.description==`string`?r.description:``;i.push({...r,name:`${t}:${o}`,description:s,skillContent:a})}return i}loadHooks(e){let t=S(e,`hooks`,`hooks.json`);if(!this.fs.existsSync(t))return{};let n=this.fs.readFileSync(t,`utf-8`),r=JSON.parse(n);return typeof r==`object`&&r?r:{}}loadMcpConfig(e){let t=S(e,`.mcp.json`);if(!this.fs.existsSync(t))return;let n=this.fs.readFileSync(t,`utf-8`);return JSON.parse(n)}loadAgents(e){let t=S(e,`agents`);return this.fs.existsSync(t)?this.fs.readdirSync(t,{withFileTypes:!0}).filter(e=>e.isDirectory()||e.name.endsWith(`.md`)).map(e=>e.name.replace(/\.md$/,``)):[]}},Ns=class{pluginsDir;cacheDir;registryPath;settingsStore;marketplaceClient;exec;fs;constructor(e){this.pluginsDir=e.pluginsDir,this.cacheDir=S(this.pluginsDir,`cache`),this.registryPath=S(this.pluginsDir,`installed_plugins.json`),this.settingsStore=e.settingsStore,this.marketplaceClient=e.marketplaceClient,this.exec=e.exec,this.fs=e.fs??new z}async install(e,t){let n=this.marketplaceClient.fetchManifest(t).plugins.find(t=>t.name===e);if(!n)throw Error(`Plugin "${e}" not found in marketplace "${t}"`);let r=this.resolveVersion(n,t),i=S(this.cacheDir,t,e,r);if(this.fs.existsSync(i))throw Error(`Plugin "${e}" version "${r}" is already installed from "${t}"`);this.resolveAndInstall(n.source,t,e,i);let a=`${e}@${t}`,o=this.readRegistry();o[a]={pluginName:e,marketplace:t,version:r,installPath:i,installedAt:new Date().toISOString()},this.writeRegistry(o)}async uninstall(e){let t=this.readRegistry(),n=t[e];if(!n)throw Error(`Plugin "${e}" is not installed`);this.fs.existsSync(n.installPath)&&this.fs.rmSync(n.installPath,{recursive:!0,force:!0}),delete t[e],this.writeRegistry(t),this.settingsStore.removePluginEntry(e)}async enable(e){this.settingsStore.setPluginEnabled(e,!0)}async disable(e){this.settingsStore.setPluginEnabled(e,!1)}getInstalledPlugins(){return this.readRegistry()}getPluginsByMarketplace(e){let t=this.readRegistry();return Object.values(t).filter(t=>t.marketplace===e)}resolveVersion(e,t){let n=e;return typeof n.version==`string`&&n.version?n.version:this.marketplaceClient.getMarketplaceSha(t)}normalizeSource(e){if(typeof e==`string`)return e;let t=e;return!t.type&&typeof t.source==`string`?{...t,type:t.source}:e}resolveAndInstall(e,t,n,r){this.fs.mkdirSync(r,{recursive:!0});let i=this.normalizeSource(e);try{if(typeof i==`string`){let e=S(this.marketplaceClient.getMarketplaceDir(t),i);if(!this.fs.existsSync(e))throw Error(`Plugin source path "${i}" not found in marketplace "${t}"`);this.fs.cpSync(e,r,{recursive:!0})}else if(i.type===`github`){let e=`https://github.com/${i.repo}.git`;this.cloneToDir(e,r,n)}else if(i.type===`url`&&typeof i.url==`string`&&i.url.endsWith(`.git`))this.cloneToDir(i.url,r,n);else if(i.type===`url`)throw Error(`URL source "${i.url}" is not a git repository (must end with .git)`);else throw Error(`Unknown source type: ${JSON.stringify(i)}`)}catch(e){throw this.fs.existsSync(r)&&this.fs.rmSync(r,{recursive:!0,force:!0}),e}}cloneToDir(e,t,n){this.fs.rmSync(t,{recursive:!0,force:!0});let r=`git clone --depth 1 ${e} ${t}`;try{this.exec(r,{timeout:6e4,stdio:`pipe`})}catch(e){let t=e instanceof Error?e.message:String(e);throw Error(`Failed to clone plugin "${n}": ${t}`)}}readRegistry(){if(!this.fs.existsSync(this.registryPath))return{};try{let e=this.fs.readFileSync(this.registryPath,`utf-8`),t=JSON.parse(e);return typeof t==`object`&&t?t:{}}catch{return{}}}writeRegistry(e){let t=x(this.registryPath);this.fs.existsSync(t)||this.fs.mkdirSync(t,{recursive:!0}),this.fs.writeFileSync(this.registryPath,JSON.stringify(e,null,2),`utf-8`)}};function Q(e,t=new z){if(!t.existsSync(e))return{};try{let n=t.readFileSync(e,`utf-8`),r=JSON.parse(n);return typeof r==`object`&&r?r:{}}catch{return{}}}function Ps(e,t,n=new z){let r=x(e);n.existsSync(r)||n.mkdirSync(r,{recursive:!0}),n.writeFileSync(e,JSON.stringify(t,null,2),`utf-8`)}function Fs(e,t,n=new z){let r=S(e,`installed_plugins.json`);if(!n.existsSync(r))return;let i;try{let e=n.readFileSync(r,`utf-8`),t=JSON.parse(e);if(typeof t!=`object`||!t)return;i=t}catch{return}let a=!1;for(let[e,r]of Object.entries(i))r.marketplace===t&&(r.installPath&&n.existsSync(r.installPath)&&n.rmSync(r.installPath,{recursive:!0,force:!0}),delete i[e],a=!0);if(a){let e=x(r);n.existsSync(e)||n.mkdirSync(e,{recursive:!0}),n.writeFileSync(r,JSON.stringify(i,null,2),`utf-8`)}}const Is=6e4;var Ls=class{pluginsDir;exec;marketplacesDir;registryPath;fs;constructor(e){this.pluginsDir=e.pluginsDir,this.exec=e.exec,this.marketplacesDir=S(this.pluginsDir,`marketplaces`),this.registryPath=S(this.pluginsDir,`known_marketplaces.json`),this.fs=e.fs??new z}addMarketplace(e){let t=`temp-`+Date.now().toString(36),n=S(this.marketplacesDir,t);if(this.fs.mkdirSync(this.marketplacesDir,{recursive:!0}),e.type===`local`){if(!this.fs.existsSync(e.path))throw Error(`Local marketplace path does not exist: ${e.path}`);this.fs.cpSync(e.path,n,{recursive:!0})}else{let t=`git clone --depth 1 ${this.resolveCloneUrl(e)} ${n}`;try{this.exec(t,{timeout:Is,stdio:`pipe`})}catch(e){let t=e instanceof Error?e.message:String(e);throw Error(`Failed to clone marketplace: ${t}`)}}let r=S(n,`.claude-plugin`,`marketplace.json`);if(!this.fs.existsSync(r))throw this.fs.rmSync(n,{recursive:!0,force:!0}),Error(e.type===`local`?`Local directory does not contain .claude-plugin/marketplace.json`:`Cloned repository does not contain .claude-plugin/marketplace.json`);let i=this.readManifestFromPath(r).name;if(!i)throw this.fs.rmSync(n,{recursive:!0,force:!0}),Error(`Marketplace manifest does not contain a "name" field`);let a=Q(this.registryPath,this.fs);if(a[i])throw this.fs.rmSync(n,{recursive:!0,force:!0}),Error(`Marketplace "${i}" already exists`);let o=S(this.marketplacesDir,i);return this.fs.renameSync(n,o),a[i]={source:e,installLocation:o,lastUpdated:new Date().toISOString()},Ps(this.registryPath,a,this.fs),i}removeMarketplace(e){let t=Q(this.registryPath,this.fs),n=t[e];if(!n)throw Error(`Marketplace "${e}" not found`);Fs(this.pluginsDir,e,this.fs),this.fs.existsSync(n.installLocation)&&this.fs.rmSync(n.installLocation,{recursive:!0,force:!0}),delete t[e],Ps(this.registryPath,t,this.fs)}updateMarketplace(e){let t=Q(this.registryPath,this.fs),n=t[e];if(!n)throw Error(`Marketplace "${e}" not found`);if(!this.fs.existsSync(n.installLocation))throw Error(`Marketplace directory for "${e}" does not exist`);if(n.source.type===`local`){let e=n.source;if(!this.fs.existsSync(e.path))throw Error(`Local marketplace path does not exist: ${e.path}`);this.fs.rmSync(n.installLocation,{recursive:!0,force:!0}),this.fs.cpSync(e.path,n.installLocation,{recursive:!0})}else{let t=`git -C ${n.installLocation} pull`;try{this.exec(t,{timeout:Is,stdio:`pipe`})}catch(t){let n=t instanceof Error?t.message:String(t);throw Error(`Failed to update marketplace "${e}": ${n}`)}}n.lastUpdated=new Date().toISOString(),Ps(this.registryPath,t,this.fs)}listMarketplaces(){let e=Q(this.registryPath,this.fs);return Object.entries(e).map(([e,t])=>({name:e,source:t.source,lastUpdated:t.lastUpdated}))}fetchManifest(e){let t=Q(this.registryPath,this.fs)[e];if(!t)throw Error(`Marketplace "${e}" not found`);let n=S(t.installLocation,`.claude-plugin`,`marketplace.json`);if(!this.fs.existsSync(n))throw Error(`Marketplace "${e}" does not contain .claude-plugin/marketplace.json`);return this.readManifestFromPath(n)}getMarketplaceDir(e){let t=Q(this.registryPath,this.fs)[e];if(!t)throw Error(`Marketplace "${e}" not found`);return t.installLocation}getMarketplaceSha(e){let t=this.getMarketplaceDir(e);try{return this.exec(`git -C ${t} rev-parse HEAD`,{timeout:Is,stdio:`pipe`}).toString().trim().slice(0,12)}catch{return`unknown`}}listAvailablePlugins(){let e=[],t=this.listMarketplaces();for(let{name:n}of t)try{let t=this.fetchManifest(n);for(let r of t.plugins)e.push({...r,marketplace:n})}catch{}return e}resolveCloneUrl(e){switch(e.type){case`github`:return`https://github.com/${e.repo}.git`;case`git`:return e.url;case`local`:throw Error(`Local source type does not use git cloning`);case`url`:throw Error(`URL marketplace source is not yet supported`)}}readManifestFromPath(e){let t=this.fs.readFileSync(e,`utf-8`),n=JSON.parse(t);if(typeof n!=`object`||!n)throw Error(`Invalid marketplace manifest: not an object`);if(typeof n.name!=`string`)throw Error(`Invalid marketplace manifest: missing "name" field`);return n}};function Rs(e){let t=S(x(x(e.pluginDir)),`data`,e.manifest.name);return{CLAUDE_PLUGIN_ROOT:e.pluginDir,CLAUDE_PLUGIN_PATH:e.pluginDir,CLAUDE_PLUGIN_DATA:t}}function zs(e,t){return Array.isArray(e.hooks)?{...e,hooks:e.hooks.map(e=>typeof e.command==`string`?{...e,command:e.command.replace(/\$\{CLAUDE_PLUGIN_ROOT\}/g,t)}:e)}:e}function Bs(e){let t={};for(let n of e){let e=n.hooks;if(!e)continue;let r=Rs(n),i=e.hooks??e;for(let[e,a]of Object.entries(i)){if(!Array.isArray(a))continue;t[e]||(t[e]=[]);let i=a.map(e=>{let t=zs(e,n.pluginDir);return t.env=r,t});t[e].push(...i)}}return t}function Vs(e,t){if(Object.keys(t).length===0)return e;let n={};for(let[e,r]of Object.entries(t))n[e]=[...r];if(e)for(let[t,r]of Object.entries(e))Array.isArray(r)&&(n[t]||(n[t]=[]),n[t].push(...r));return n}async function Hs(e){let t=e.cwd,[n,r,i]=await Promise.all([e.config?Promise.resolve(e.config):qo(t),e.bare?Promise.resolve({agentsMd:``,claudeMd:``,agentsFileEntries:[],claudeFileEntries:[]}):Ds(t),e.bare?Promise.resolve({type:`unknown`,language:`unknown`}):Bi(t)]),a=e.language?{...n,language:e.language}:n,o=new Ms(S(T(),`.robota`,`plugins`));if(!e.bare)try{let e=o.loadPluginsSync();if(e.length>0){let t=Bs(e);a={...a,hooks:Vs(a.hooks,t)}}}catch{}let s=U(t);await Ws(e)||await Us(e,t);let c=e.resumeSessionId&&!e.forkSession?e.resumeSessionId:void 0,{session:l,rebuildSystemMessage:u}=go({config:a,cwd:t,context:r,projectInfo:i,permissionMode:e.permissionMode,maxTurns:e.maxTurns,terminal:ei,sessionLogger:new ye(s.logs),permissionHandler:e.permissionHandler,provider:e.provider,onTextDelta:e.onTextDelta,onContextUpdate:e.onContextUpdate,onCompactEvent:e.onCompactEvent,onToolExecution:e.onToolExecution,sessionId:c,allowedTools:e.allowedTools,deniedTools:e.deniedTools,model:e.model,appendSystemPrompt:e.appendSystemPrompt,...e.systemPrompt?{systemPromptBuilder:()=>e.systemPrompt}:{},backgroundTaskRunners:e.backgroundTaskRunners,subagentRunnerFactory:e.subagentRunnerFactory,...e.commandModules?.some(e=>e.sessionRequirements?.includes(`agent-runtime`))?{enableAgentRuntime:!0}:{},...e.commandModules||e.commandDescriptors?{commandDescriptors:[...e.commandDescriptors??[],...e.commandModules?.flatMap(e=>e.commandDescriptors??[])??[]]}:{},modelCommandExecutor:e.modelCommandExecutor,isModelCommandInvocable:e.isModelCommandInvocable,editCheckpointRecorder:e.editCheckpointRecorder,reversibleExecution:e.reversibleExecution,sandboxClient:e.sandboxClient,agentName:e.agentName,...e.additionalTools?{additionalTools:e.additionalTools}:{},...e.responseFormat?{responseFormat:e.responseFormat}:{}});return{session:l,agentsFileEntries:r.agentsFileEntries??[],claudeFileEntries:r.claudeFileEntries??[],rebuildSystemMessage:u}}async function Us(e,t){if(e.workspaceManifest){if(!e.sandboxClient)throw Error(`workspaceManifest requires sandboxClient.`);await ce(e.sandboxClient,e.workspaceManifest,{hostRoot:t,...e.sandboxWorkspaceRoot?{targetRoot:e.sandboxWorkspaceRoot}:{}})}}async function Ws(e){if(!e.sandboxSnapshotId)return!1;if(!e.sandboxClient?.restore)throw Error(`sandboxSnapshotId requires sandboxClient with restore().`);return await e.sandboxClient.restore(e.sandboxSnapshotId),!0}async function Gs(e,t){let n=e.config??await qo(e.cwd),r=n.autoCompactThreshold===void 0?`default`:`settings`,i=new Di({cwd:e.cwd});t.setEditCheckpointStore(i);let a=await Hs({cwd:e.cwd,provider:e.provider,config:n,permissionMode:e.permissionMode,maxTurns:e.maxTurns,permissionHandler:e.permissionHandler,resumeSessionId:t.resumeSessionId,forkSession:e.forkSession,onTextDelta:t.onTextDelta,onContextUpdate:t.onContextUpdate,onCompactEvent:t.onCompactEvent,onToolExecution:t.onToolExecution,bare:e.bare,allowedTools:e.allowedTools,deniedTools:e.deniedTools,model:e.model,appendSystemPrompt:e.appendSystemPrompt,...e.systemPrompt?{systemPrompt:e.systemPrompt}:{},language:e.language,backgroundTaskRunners:e.backgroundTaskRunners,subagentRunnerFactory:e.subagentRunnerFactory,...e.commandModules?{commandModules:e.commandModules}:{},editCheckpointRecorder:i,...e.reversibleExecution?{reversibleExecution:e.reversibleExecution}:{},...e.sandboxClient?{sandboxClient:e.sandboxClient}:{},...e.workspaceManifest?{workspaceManifest:e.workspaceManifest}:{},...e.sandboxWorkspaceRoot?{sandboxWorkspaceRoot:e.sandboxWorkspaceRoot}:{},...t.sandboxSnapshotId?{sandboxSnapshotId:t.sandboxSnapshotId}:{},...e.agentName?{agentName:e.agentName}:{},...e.additionalTools?{additionalTools:e.additionalTools}:{},...e.responseFormat?{responseFormat:e.responseFormat}:{},commandDescriptors:t.commandDescriptors,...t.commandDescriptors.length>0?{modelCommandExecutor:t.executeModelCommand,isModelCommandInvocable:t.isModelCommandInvocable}:{}});if(t.pendingRestoreMessages){for(let e of t.pendingRestoreMessages)Vi(a.session,e);a.session.syncContextFromHistory()}return{session:a.session,agentsFileEntries:a.agentsFileEntries,claudeFileEntries:a.claudeFileEntries,rebuildSystemMessage:a.rebuildSystemMessage,autoCompactThresholdSource:r}}function Ks(e,t,n,r,i,a,o,s,c,l){try{let u=t.getSessionId(),d=e.load(u),f=l?.snapshotId??d?.sandboxSnapshotId;e.save(qs({session:t,sessionId:u,sessionName:n??d?.name,cwd:r,history:i,createdAt:d?.createdAt,backgroundState:a,memoryState:o,skillActivationState:s,contextReferenceState:c,...f===void 0?{}:{sandboxSnapshotId:f}}))}catch{}}function qs(e){return{id:e.sessionId,...e.sessionName===void 0?{}:{name:e.sessionName},cwd:e.cwd,createdAt:e.createdAt??new Date().toISOString(),updatedAt:new Date().toISOString(),messages:e.session.getHistory(),history:e.history,systemPrompt:e.session.getSystemMessage(),toolSchemas:e.session.getToolSchemas(),...e.sandboxSnapshotId===void 0?{}:{sandboxSnapshotId:e.sandboxSnapshotId},...Js(e.backgroundState),...Ys(e.memoryState),...Xs(e.skillActivationState),...Zs(e.contextReferenceState)}}function Js(e){return e?{backgroundTasks:[...e.tasks],backgroundTaskEvents:[...e.events],backgroundJobGroups:[...e.groups??[]],backgroundJobGroupEvents:[...e.groupEvents??[]]}:{}}function Ys(e){return e?{memoryEvents:[...e.events],usedMemoryReferences:[...e.usedReferences]}:{}}function Xs(e){return e?{skillActivationEvents:[...e.events]}:{}}function Zs(e){return e?{contextReferences:[...e.references]}:{}}function Qs(e){return e.source===`skill`||e.source===`plugin`&&e.skillContent?`skill`:`builtin-command`}function $s(e){let t=e.source===`skill`||e.source===`plugin`&&!!e.skillContent;return{name:e.name,kind:Qs(e),description:e.description,userInvocable:e.userInvocable!==!1,modelInvocable:e.modelInvocable===!0||t&&e.disableModelInvocation!==!0,...e.argumentHint?{argumentHint:e.argumentHint}:{},...e.safety?{safety:e.safety}:{}}}var ec=class{sources=[];addSource(e){this.sources.push(e)}replaceSource(e,t){this.sources=this.sources.filter(t=>t.name!==e),t!==void 0&&this.sources.push(t)}addModule(e){for(let t of e.commandSources??[])this.addSource(t)}getCommands(e){let t=[];for(let e of this.sources)t.push(...e.getCommands());if(!e)return t;let n=e.toLowerCase();return t.filter(e=>e.name.toLowerCase().startsWith(n))}resolveQualifiedName(e){let t=this.getCommands().filter(t=>t.source===`plugin`&&t.name.includes(`:`)&&t.name.endsWith(`:${e}`));return t.length===1?t[0].name:null}getSubcommands(e){let t=e.toLowerCase();for(let e of this.sources)for(let n of e.getCommands())if(n.name.toLowerCase()===t&&n.subcommands)return n.subcommands;return[]}getCapabilityDescriptors(){return this.getCommands().map(e=>$s(e))}},tc=class{commands;constructor(e){this.commands=new Map;for(let t of e??nc())this.commands.set(t.name,t)}register(e){this.commands.set(e.name,e)}async execute(e,t,n){let r=this.getCommand(e);return r?await this.executeCommand(r,t,n):null}getCommand(e){return this.commands.get(e)}resolveRequiresPermission(e){return e.requiresPermission===void 0?e.safety!==`read-only`:e.requiresPermission}async executeCommand(e,t,n){return await e.execute(t,n)}listCommands(){return[...this.commands.values()]}listModelInvocableCommands(){return this.listCommands().filter(e=>e.modelInvocable===!0).map(e=>({name:e.name,kind:`builtin-command`,description:e.description,userInvocable:e.userInvocable!==!1,modelInvocable:!0,...e.argumentHint?{argumentHint:e.argumentHint}:{},...e.safety?{safety:e.safety}:{},requiresPermission:this.resolveRequiresPermission(e)}))}isModelInvocable(e){return this.commands.get(e)?.modelInvocable===!0}async executeModelInvocable(e,t,n){return this.isModelInvocable(e)?this.execute(e,t,n):null}hasCommand(e){return this.commands.has(e)}};function nc(){return[]}function rc(e){return{name:e.name,description:e.description,source:`builtin`,...e.subcommands?{subcommands:[...e.subcommands]}:{},...e.argumentHint?{argumentHint:e.argumentHint}:{},...e.modelInvocable===void 0?{}:{modelInvocable:e.modelInvocable},...e.userInvocable===void 0?{}:{userInvocable:e.userInvocable},...e.safety?{safety:e.safety}:{}}}var ic=class{name=`builtin`;commands;constructor(e=nc()){this.commands=e.map(rc)}getCommands(){return this.commands}};function ac(){let e=nc();return{name:`sdk-builtin`,commandSources:[new ic(e)],systemCommands:e}}function oc(e,t,n){return{...e,providers:{...e.providers??{},[t]:n}}}function sc(e,t){if(!e.providers?.[t])throw Error(`Provider profile "${t}" was not found`);return{...e,currentProvider:t}}function cc(e,t,n={}){if(!e.providers?.[t])throw Error(`Provider profile "${t}" was not found`);let r={...e.providers};if(delete r[t],n.replacementCurrentProvider!==void 0&&r[n.replacementCurrentProvider]===void 0)throw Error(`Provider profile "${n.replacementCurrentProvider}" was not found`);let i={...e,providers:r};if(e.currentProvider!==t)return i;if(n.replacementCurrentProvider!==void 0)return{...i,currentProvider:n.replacementCurrentProvider};let a={...i};return delete a.currentProvider,a}function lc(e,t,n={}){if(!t.type)throw Error(`Provider profile "${e}" is missing type`);if(!t.model)throw Error(`Provider profile "${e}" is missing model`);let r=c(n.providerDefinitions??[],t.type),i=d(r);if(i!==void 0&&!mc(t,r?.defaults,i))throw Error(`Provider profile "${e}" is missing ${gc(i)}`)}function uc(e,t={}){let n=dc(e,t);return lc(e.profile,n,t),{...e.setCurrent&&{currentProvider:e.profile},providers:{[e.profile]:n}}}function dc(e,t={}){let n=pc(e.type,t.providerDefinitions??[]);e.apiKey!==void 0&&e.apiKeyEnv===void 0&&console.warn(`API key stored as plain text in settings. Use --api-key-env for better security.`);let r=e.apiKeyEnv===void 0?e.apiKey??n.apiKey:u(e.apiKeyEnv),i=e.baseURL??n.baseURL;return{type:e.type,model:e.model??n.model,..._c(r)&&{apiKey:r},...i!==void 0&&{baseURL:i},...e.timeout!==void 0&&{timeout:e.timeout}}}function fc(e,t){let[n,r]=Object.entries(t.providers)[0]??[];if(!n||!r)return e;let i=oc(e,n,r);return t.currentProvider?sc(i,t.currentProvider):i}function pc(e,t){return c(t,e)?.defaults??{}}function mc(e,t,n){return n.anyOf.some(n=>p(hc(n,e,t)))}function hc(e,t,n){return t[e]??n?.[e]}function gc(e){return e.anyOf.join(` or `)}function _c(e){return e!==void 0&&e.length>0}async function vc(e,t,n,r){let i=n??e;if(!i)return{message:`No provider profile selected.`,success:!1};let a=t?.[i];if(!a)return{message:`Provider profile "${i}" was not found.`,success:!1};try{lc(i,a,{providerDefinitions:r.providerDefinitions})}catch(e){return{message:e instanceof Error?e.message:String(e),success:!1}}let o=await((a.type?c(r.providerDefinitions,a.type):void 0)?.probeProfile??yc)(a);return{message:o.ok?`Provider "${i}" test passed: ${o.message}`:`Provider "${i}" test failed: ${o.message}; manual configuration can continue.`,success:!0,data:{providerTest:{profile:i}}}}async function yc(e){return{ok:!0,message:`Profile fields are valid; no endpoint probe configured.`}}function bc(e,t=[]){return xc(e,t)?`valid`:`incomplete`}function xc(e,t){if(typeof e.currentProvider==`string`){let n=e.providers?.[e.currentProvider];return Sc(n?.type,n,t)}return!!(e.provider&&Sc(e.provider.name,e.provider,t))}function Sc(e,t,n){if(!t)return!1;if(!e)return p(t.apiKey);let r=c(n,e);if(r===void 0)return!1;let i=d(r);return i===void 0?!0:Cc(t,r,i)}function Cc(e,t,n){return n.anyOf.some(n=>p(wc(n,e,t)))}function wc(e,t,n){return t[e]??n.defaults?.[e]}function Tc(e,t=[]){if(!v(e))return`missing`;try{let n=y(e,`utf8`).trim();return n.length===0?`incomplete`:bc(JSON.parse(n),t)}catch{return`corrupt`}}function Ec(e,t=new z){return e.reduce((e,n)=>{let r=Dc(n,t);return r===void 0?e:Oc(e,r)},{})}function Dc(e,t){if(t.existsSync(e))try{let n=t.readFileSync(e,`utf8`);return JSON.parse(n)}catch{return}}function Oc(e,t){return{...e,...t,provider:e.provider!==void 0||t.provider!==void 0?{...e.provider,...t.provider}:void 0,providers:e.providers!==void 0||t.providers!==void 0?kc(e.providers,t.providers):void 0}}function kc(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Ac(e,t,n){let r=t??e.currentProvider;if(r!==void 0){let t=e.providers?.[r];if(t===void 0)throw Error(`Provider profile "${r}" was not found in providers`);if(!t.type)throw Error(`Provider profile "${r}" is missing type`);return se({name:t.type,model:t.model,apiKey:t.apiKey,baseURL:t.baseURL,timeout:t.timeout,options:t.options},n)}let i=e.provider;if(i?.name)return se({name:i.name,model:i.model,apiKey:i.apiKey,baseURL:i.baseURL,timeout:i.timeout,options:i.options},n)}function jc(){return process.env.HOME??process.env.USERPROFILE??`/`}function Mc(e){let t=jc();return[S(t,`.robota`,`settings.json`),S(t,`.claude`,`settings.json`),S(e,`.robota`,`settings.json`),S(e,`.robota`,`settings.local.json`),S(e,`.claude`,`settings.json`),S(e,`.claude`,`settings.local.json`)]}function Nc(e,t={}){let n=t.settingsPaths??Mc(e),r=Bc(n)??n[0];if(r===void 0)throw Error(`No settings path available for provider update`);return r}function Pc(e){return q(e)}function Fc(e,t,n={}){let r=fc(Pc(e),uc(t,n));return J(e,r),r}function Ic(e,t,n={}){let r=Pc(e),i=r.providers?.[t]!==void 0,a=n.knownProviders?.[t]!==void 0,o=i||a?{...r,currentProvider:t}:sc(r,t);return J(e,o),o}function Lc(e,t,n={}){let r=n.settingsPaths??Mc(e),i=Ec(r),a=n.providerOverride??i.currentProvider;if(typeof a!=`string`)throw Error(`Cannot update model: no active provider profile. Set "currentProvider" in settings.`);return Rc(r,a,t)}function Rc(e,t,n){let r=zc(e,t)??e[0];if(r===void 0)throw Error(`No settings path available for model update`);let i=Pc(r),a=i.providers??{},o=a[t]??{},s={...i,providers:{...a,[t]:{...o,model:n}}};return J(r,s),{settingsPath:r,settings:s,profileName:t}}function zc(e,t){for(let n=e.length-1;n>=0;--n){let r=e[n];if(r!==void 0&&Pc(r).providers?.[t]!==void 0)return r}}function Bc(e){for(let t=e.length-1;t>=0;--t){let n=e[t];if(n!==void 0&&Pc(n).currentProvider!==void 0)return n}}function Vc(e){return Ec(Mc(e))}function Hc(e,t={}){let n=Ac(Vc(e),t.providerOverride,t.providerDefinitions??[]);if(n!==void 0)return n;throw Error("No provider configuration found. Run `robota` to set up.")}function Uc(e,t,n={}){let r=n.providerDefinitions??[],i=Hc(e,{...n,providerDefinitions:r}),a=t??i.model;return ae({...i,model:a},r)}var Wc=class{name=`plugin`;plugins;constructor(e){this.plugins=e}getCommands(){let e=[];for(let t of this.plugins){for(let n of t.skills){let r=n.name.includes(`@`)?n.name.split(`@`)[0]:n.name;e.push({name:r,description:`(${t.manifest.name}) ${n.description}`,source:`plugin`,skillContent:n.skillContent,pluginDir:t.pluginDir})}for(let n of t.commands)e.push({name:n.name,description:n.description,source:`plugin`,skillContent:n.skillContent,pluginDir:t.pluginDir})}return e}};const Gc=ve,Kc=`autoCompactThreshold`;function qc(e){return e.getContextState()}function Jc(e){return e.getAutoCompactThreshold()}function Yc(e){return e.getAutoCompactThresholdSource?.()??`session`}function Xc(e,t,n){if(e.setAutoCompactThreshold){e.setAutoCompactThreshold(t,n);return}let r=e.getSession();if(!r.setAutoCompactThreshold)throw Error(`Command host does not support changing auto-compact threshold.`);r.setAutoCompactThreshold(t)}function Zc(e,t){let n=il(e);return n?(n.write({...n.read(),[Kc]:t}),!0):!1}function Qc(e){let t=il(e);if(!t)return!1;let n={...t.read()};return delete n[Kc],t.write(n),!0}async function $c(e,t){let n=qc(e),r=e.getSession().getMessageCount();return await e.compactContext(t),{before:n,after:qc(e),beforeMessageCount:r,afterMessageCount:e.getSession().getMessageCount()}}function el(e){return e.listContextReferences?.()??[]}async function tl(e,t){return e.addContextReference?e.addContextReference(t):{evicted:[],diagnostics:[`Command host does not support context reference additions.`]}}function nl(e,t){return e.removeContextReference?.(t)??{}}function rl(e){return e.clearContextReferences?.()??{removed:[]}}function il(e){return e.getCommandHostAdapters?.().settings}function al(e,t={}){let n=ol(e.type)??`provider`,r=new Set(t.existingProfileNames??[]);if(!r.has(n))return n;let i=2;for(;r.has(`${n}-${i}`);)i+=1;return`${n}-${i}`}function ol(e){let t=e?.trim().toLowerCase().replace(/[^a-z0-9]+/g,`-`).replace(/^-+|-+$/g,``);return t!==void 0&&t.length>0?t:void 0}const sl=`Show available commands`;function cl(e){return e.listCommands?.()??[]}function ll(e){return[`Available commands:`,...cl(e).flatMap(e=>{let t=e.displayName??e.name,n=`/${e.name}`,r=` ${(e.displayName?`${t} (${n})`:n).padEnd(32)} — ${e.description}`;return e.example?[r,` Example: ${e.example}`]:[r]})].join(`
|
|
96
|
-
`)}const
|
|
97
|
-
`)}function
|
|
98
|
-
`)}const
|
|
99
|
-
`);let r=e.validation.issues.map((e,t)=>{let n=
|
|
100
|
-
`)}function vu(e){let t=[];return e.executionId!==void 0&&t.push(`execution=${e.executionId}`),e.round!==void 0&&t.push(`round=${e.round}`),e.toolCallId!==void 0&&t.push(`tool=${e.toolCallId}`),t.length>0?` (${t.join(`, `)})`:``}const yu=`List, inspect, restore, or rollback edit checkpoints.`,bu=`list | inspect CHECKPOINT_ID | restore CHECKPOINT_ID | code CHECKPOINT_ID | rollback CHECKPOINT_ID`;function xu(e=`rewind`){return[{name:`list`,description:`List edit checkpoints`,source:e},{name:`inspect`,description:`Inspect captured files and restore plans`,source:e},{name:`restore`,description:`Restore code to a checkpoint`,source:e},{name:`code`,description:`Restore code to a checkpoint`,source:e},{name:`rollback`,description:`Rollback code through a checkpoint`,source:e}]}function Su(e){return e.listEditCheckpoints()}function Cu(e,t){if(!e.inspectEditCheckpoint)throw Error(`Checkpoint inspection is not available in this command host.`);return e.inspectEditCheckpoint(t)}function wu(e,t){return e.restoreEditCheckpoint(t)}function Tu(e,t){return e.rollbackEditCheckpoint(t)}const Eu=[/\b(api[_-]?key|secret|token|password|private key)\b/i,/\b\d{3}-\d{2}-\d{4}\b/,/\b\d{4}[- ]?\d{4}[- ]?\d{4}[- ]?\d{4}\b/,/주민등록|비밀번호|시크릿|토큰/u];function Du(e){return Eu.some(t=>t.test(e))}function Ou(e){return S(e,`.robota`,`memory`)}function ku(){return{version:1,records:[]}}var Au=class{fs;path;now;constructor(e,t=()=>new Date,n=new z){this.fs=n,this.path=S(Ou(e),`pending.json`),this.now=t}getPath(){return this.path}list(e){let t=this.read().records;return e?t.filter(t=>t.status===e):t}get(e){return this.read().records.find(t=>t.id===e)}upsert(e,t,n){let r=this.read(),i=this.now().toISOString(),a=r.records.findIndex(t=>t.id===e.id),o={...e,status:t,updatedAt:i,decisionReason:n};a>=0?r.records[a]={...r.records[a],...o}:r.records.push(o),this.write(r)}mark(e,t,n){let r=this.read(),i=r.records.findIndex(t=>t.id===e);if(i<0)throw Error(`Memory candidate not found: ${e}`);let a={...r.records[i],status:t,updatedAt:this.now().toISOString(),decisionReason:n};return r.records[i]=a,this.write(r),a}read(){if(!this.fs.existsSync(this.path))return ku();try{return{version:1,records:JSON.parse(this.fs.readFileSync(this.path,`utf8`)).records??[]}}catch{return ku()}}write(e){this.fs.mkdirSync(x(this.path),{recursive:!0}),this.fs.writeFileSync(this.path,JSON.stringify(e,null,2),`utf8`)}};const ju=`Project memory command. Use it to inspect project memory when stored context may help, save durable preferences, project conventions, feedback, or references worth reusing across sessions, review pending candidates, and report memory provenance. Do not store secrets, credentials, or transient facts.`,Mu=`list | show [topic] | add <user|feedback|project|reference> <topic> <text> | pending | approve <id> | reject <id> | used`,Nu=`Usage: memory list | memory show [topic] | memory add <user|feedback|project|reference> <topic> <text> | memory pending | memory approve <id> | memory reject <id> | memory used`;function Pu(e=`memory`){return[{name:`list`,description:`List project memory topics`,source:e},{name:`show`,description:`Show project memory index or a topic`,source:e},{name:`add`,description:`Save durable project memory`,source:e},{name:`pending`,description:`List pending memory candidates`,source:e},{name:`approve`,description:`Approve a pending memory candidate`,source:e},{name:`reject`,description:`Reject a pending memory candidate`,source:e},{name:`used`,description:`Show memory references used in the current turn`,source:e}]}function Fu(e,t){return new ws(e,t)}function Iu(e,t){return new Au(e,t)}function Lu(e,t){let n=e.getCwd();return{project:Fu(n,t),pending:Iu(n,t)}}function Ru(e){return _s(e)}function zu(e){return Du(e)}function Bu(e){return e.getUsedMemoryReferences()}function Vu(e,t,n=()=>new Date){e.recordMemoryEvent({...t,at:n().toISOString()})}function Hu(e,t,n){let r=t?t.split(/\s+/):[],i=e;return i=i.replace(/\$ARGUMENTS\[(\d+)]/g,(e,t)=>r[Number(t)]??``),i=i.replace(/\$ARGUMENTS/g,t),i=i.replace(/\$(\d)(?!\d|\w|\[)/g,(e,t)=>r[Number(t)]??``),i=i.replace(/\$\{CLAUDE_SESSION_ID}/g,n?.sessionId??``),i=i.replace(/\$\{CLAUDE_SKILL_DIR}/g,n?.skillDir??``),i}async function Uu(e,t){let n=/!`([^`]+)`/g;if(!n.test(e))return e;n.lastIndex=0;let r=e,i,a=[];for(;(i=n.exec(e))!==null;)a.push({full:i[0],command:i[1]});for(let{full:e,command:n}of a){let i=``;if(t)try{i=t(n)}catch{i=``}r=r.replace(e,i)}return r}async function Wu(e,t,n,r){return e.skillContent?Hu(await Uu(e.skillContent,n.shellExec),t,r):null}async function Gu(e,t,n,r){let i=await Wu(e,t,n,r);if(i){let n=t||e.description;return`<skill name="${e.name}">\n${i}\n</skill>\n\nExecute the "${e.name}" skill: ${n}`}return`Use the "${e.name}" skill: ${t||e.description}`}async function Ku(e,t,n,r){if(e.context===`fork`){if(!n.runInFork)throw Error(`Fork execution is not available. Agent runtime deps may not be initialized.`);let i=await Wu(e,t,n,r)??`Use the "${e.name}" skill: ${t||e.description}`,a={};return e.agent&&(a.agent=e.agent),e.allowedTools&&(a.allowedTools=e.allowedTools),{mode:`fork`,result:await n.runInFork(i,a)}}return{mode:`inject`,prompt:await Gu(e,t,n,r)}}function qu(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function Ju(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function Yu(e,t){let n=t.trim();return n.length>0?`${e} ${n}`:e}function Xu(e){if(!e?.startsWith(`/`))return;let t=e.slice(1).trim().split(/\s+/)[0];return t&&t.length>0?t:void 0}var Zu=class{getSession;getSessionId;onSubmit;onApplyResult;recordSkillActivation;runSkillInFork;onForkSkill;onBlockingCommand;shellExec;commandExecutor;skillCommandSource;commandHostAdapters;commandInvocationSource=`user`;constructor(e,t,n,r,i,a,o,s,c,l,u,d){this.getSession=r,this.getSessionId=i,this.onSubmit=a,this.onApplyResult=o,this.recordSkillActivation=s,this.runSkillInFork=c,this.onForkSkill=l,this.onBlockingCommand=u,this.shellExec=d,this.commandExecutor=new tc(e.flatMap(e=>e.systemCommands??[])),this.skillCommandSource=new Ua(t),this.commandHostAdapters=n}getCommandInvocationSource(){return this.commandInvocationSource}getCommandHostAdapters(){return this.commandHostAdapters??{}}listCommands(){return this.commandExecutor.listCommands().map(e=>({name:e.name,...e.displayName===void 0?{}:{displayName:e.displayName},description:e.description,...e.example===void 0?{}:{example:e.example}}))}listSkills(){return this.skillCommandSource.getCommands().map(e=>({name:e.name,description:e.description,source:e.source,modelInvocable:e.disableModelInvocation!==!0,userInvocable:e.userInvocable!==!1,...e.argumentHint===void 0?{}:{argumentHint:e.argumentHint},...e.context===void 0?{}:{context:e.context},...e.agent===void 0?{}:{agent:e.agent}}))}listModelInvocableCommands(){return this.commandExecutor.listModelInvocableCommands().map(e=>({name:e.name,description:e.description}))}findSkillCommand(e){let t=qu(e);return this.skillCommandSource.getCommands().find(e=>e.name.toLowerCase()===t.toLowerCase())}async executeCommand(e,t){let n=Ju(e),r=this.commandExecutor.getCommand(n),i=t.trim();if(!r){let e=this.findSkillCommand(n),t=this.commandExecutor.getCommand(`skills`);return!e||!t?null:this.executeCommandWithSource(`user`,t,Yu(e.name,i))}return this.executeCommandWithSource(`user`,r,i)}async executeCommandWithSource(e,t,n){let r=this.commandInvocationSource;this.commandInvocationSource=e;try{return t.lifecycle===`blocking`?this.onBlockingCommand(()=>this.executeForegroundCommand(t,n)):await this.commandExecutor.executeCommand(t,this.getSession(),n)}finally{this.commandInvocationSource=r}}async executeModelCommand(e,t){let n=this.commandInvocationSource;this.commandInvocationSource=`model`;try{return await this.commandExecutor.executeModelInvocable(e,this.getSession(),t)}finally{this.commandInvocationSource=n}}async executeSkillCommandByName(e,t,n){let r=this.findSkillCommand(e);if(!r)return null;if(n.invocationSource===`model`){if(r.disableModelInvocation===!0)return{success:!1,message:`Skill is not model-invocable: ${r.name}`};let e=await this.executeSkillWithActivation(r,t,`model-tool`);return{success:!0,message:`Skill activated: ${r.name}`,data:{skill:r.name,mode:e.mode,...e.prompt===void 0?{}:{prompt:e.prompt},...e.result===void 0?{}:{result:e.result}}}}return await this.executeUserResolvedSkillCommand(r,t,n.displayInput,n.rawInput,`user-slash`),{success:!0,message:``,data:{skill:r.name,sessionExecution:!0},effects:[{type:`session-execution-started`}]}}async executeUserResolvedSkillCommand(e,t,n,r,i){if(e.userInvocable===!1)throw Error(`Skill is not user-invocable: ${e.name}`);let a=Xu(r);if(e.context===`fork`)return this.onForkSkill(e,t,n,a,i);let o=await this.executeSkillWithActivation(e,t,i,a);return o.mode===`inject`?(o.prompt&&await this.onSubmit(o.prompt,n,r),o):(await this.onApplyResult(o.result??`(empty response)`),o)}async executeSkillWithActivation(e,t,n,r){this.emitSkillActivation(e,n,`started`,r);try{let i=await Ku(e,t,{runInFork:(e,t)=>this.runSkillInFork(e,t),...this.shellExec?{shellExec:this.shellExec}:{}},{sessionId:this.getSessionId()});return this.emitSkillActivation(e,n,`completed`,r,{appendHistory:!1}),i}catch(t){let i=t instanceof Error?t:Error(String(t));throw this.emitSkillActivation(e,n,`failed`,r,{error:i.message}),i}}emitSkillActivation(e,t,n,r,i={}){let a=Fi({skill:e,invocation:t,status:n,...r===void 0?{}:{qualifiedName:r},...i.error===void 0?{}:{error:i.error}});this.recordSkillActivation(a,i.appendHistory??n!==`completed`)}async executeForegroundCommand(e,t){try{return await this.commandExecutor.executeCommand(e,this.getSession(),t)}catch(e){return{success:!1,message:`Error: ${e instanceof Error?e.message:String(e)}`}}}};function Qu(){let e=S(T(),`.robota`,`org-policy.json`);if(!v(e))return null;try{let t=y(e,`utf8`);return JSON.parse(t)}catch{return null}}function $u(e,t){return`${e}${t?`\nContact your administrator: ${t}`:``}`}function ed(e){return e?!e.startsWith(`$ENV:`):!1}var td=class extends er{session=null;listeners=new Map;initialized=!1;initPromise=null;sessionStore;sessionName;cwd;pendingRestoreMessages=null;resumeSessionId;forkSession;autoCompactThresholdSource=`default`;shutdownPromise=null;sandboxClient;sandboxSnapshotId;agentsFileEntries=[];claudeFileEntries=[];rebuildSystemMessage=null;providerDefinitions=[];orgPolicy=null;bgTracker;histTracker;skillRouter;execCtrl;constructor(e){super(),this.sessionStore=e.sessionStore,this.sessionName=e.sessionName,this.cwd=(`cwd`in e?e.cwd:void 0)??``,this.resumeSessionId=e.resumeSessionId,this.forkSession=e.forkSession??!1,this.sandboxClient=`sandboxClient`in e?e.sandboxClient:void 0,this.sandboxSnapshotId=`sandboxSnapshotId`in e?e.sandboxSnapshotId:void 0;let t=this.cwd,n=null;`session`in e&&e.session&&t&&(n=new Di({cwd:t})),this.bgTracker=new Bn(()=>this.getBackgroundTaskManager(),(e,t)=>this.execCtrl.emitExecutionWorkspaceUpdated(e,t),e=>this.emit(`background_task_event`,e),e=>this.emit(`background_job_group_event`,e),()=>this.persistCurrentSession()),this.histTracker=new Li(t,()=>this.getSessionOrThrow().getSessionId(),()=>this.execCtrl.executing,()=>this.persistCurrentSession(),e=>this.emit(`skill_activation`,e),n);let r=[...`commandModules`in e?e.commandModules??[]:[]],i=`commandHostAdapters`in e?e.commandHostAdapters:void 0,a=`shellExec`in e?e.shellExec:void 0;this.skillRouter=new Zu(r,t,i,()=>this,()=>this.session?.getSessionId()??``,(e,t,n)=>this.submit(e,t,n),e=>this.execCtrl.applyForkSkillResult(e),(e,t)=>this.histTracker.recordSkillActivationEvent(e,t),(e,t)=>gi(e,t,this.getSessionOrThrow()),(e,t,n,r,i)=>this.execCtrl.executeForkSkillCommand(e,t,n,r,i,(e,t,n)=>this.submit(e,t,n)),e=>this.execCtrl.executeForegroundCommand(e,(e,t,n)=>this.submit(e,t,n)),a),this.execCtrl=new mi(this.histTracker,this.skillRouter,{getSession:()=>this.session,getSessionOrThrow:()=>this.getSessionOrThrow(),getCwd:()=>this.getCwd(),getContextState:()=>this.getContextState(),getExecutionWorkspaceSnapshot:()=>this.getExecutionWorkspaceSnapshot(),emit:(e,...t)=>this.emit(e,...t),persistSession:()=>this.persistCurrentSession()}),`providerDefinitions`in e&&(this.providerDefinitions=e.providerDefinitions??[]),`orgPolicy`in e&&(this.orgPolicy=e.orgPolicy??null);let o=this.configureInjectedSession(e);this.restoreSessionRecordIfNeeded(e),this.startAsyncInitializationIfNeeded(e,o),this.initialized&&this.bgTracker.subscribe(this.session),this.initialized&&this.persistCurrentSession()}configureInjectedSession(e){return`session`in e&&e.session?(this.session=e.session,this.autoCompactThresholdSource=`session`,this.initialized=!0,!0):!1}restoreSessionRecordIfNeeded(e){if(!e.resumeSessionId||!this.sessionStore)return;let t=Hi(this.sessionStore,e.resumeSessionId,this.forkSession,this.session);this.histTracker.restoreState({history:t.history,memoryEvents:t.memoryEvents,usedMemoryReferences:t.usedMemoryReferences,contextReferences:t.contextReferences,skillActivationEvents:t.skillActivationEvents}),t.sessionName&&(this.sessionName=t.sessionName),this.bgTracker.restoreState({tasks:t.backgroundTasks,taskEvents:t.backgroundTaskEvents,groups:t.backgroundJobGroups,groupEvents:t.backgroundJobGroupEvents}),this.pendingRestoreMessages=t.pendingRestoreMessages,this.sandboxSnapshotId=this.forkSession?void 0:t.sandboxSnapshotId,this.session&&t.pendingRestoreMessages===null&&(this.session.syncContextFromHistory(),this.emit(`context_update`,this.getContextState()))}startAsyncInitializationIfNeeded(e,t){if(t)return;let n=e;this.initPromise=this.initializeAsync(n)}async initializeAsync(e){let t=await Gs(e,{sandboxSnapshotId:this.sandboxSnapshotId,resumeSessionId:this.resumeSessionId,pendingRestoreMessages:this.pendingRestoreMessages,onTextDelta:e=>this.execCtrl.handleTextDelta(e),onContextUpdate:e=>this.emit(`context_update`,e),onCompactEvent:e=>this.execCtrl.handleCompactEvent(e),onToolExecution:e=>this.execCtrl.handleToolExecution(e),executeModelCommand:(e,t)=>this.executeModelCommand(e,t),isModelCommandInvocable:e=>this.skillRouter.commandExecutor.isModelInvocable(e),commandDescriptors:this.skillRouter.commandExecutor.listModelInvocableCommands(),setEditCheckpointStore:e=>this.histTracker.setEditCheckpointStore(e)});this.session=t.session,this.agentsFileEntries=t.agentsFileEntries,this.claudeFileEntries=t.claudeFileEntries,this.rebuildSystemMessage=t.rebuildSystemMessage,this.autoCompactThresholdSource=t.autoCompactThresholdSource,this.histTracker.recordSystemContextFiles([...t.agentsFileEntries,...t.claudeFileEntries]),this.pendingRestoreMessages=null,this.initialized=!0,this.bgTracker.subscribe(this.session),this.persistCurrentSession(),this.emit(`context_update`,this.getContextState())}async ensureInitialized(){!this.initialized&&this.initPromise&&await this.initPromise}getSessionOrThrow(){if(!this.session)throw Error(`InteractiveSession not initialized. Call submit() or await initialization.`);return this.session}getCwd(){if(!this.cwd)throw Error(`cwd is not set — provide cwd in session options`);return this.cwd}get sessionId(){return this.session?.getSessionId()??``}on(e,t){this.listeners.has(e)||this.listeners.set(e,new Set),this.listeners.get(e).add(t)}off(e,t){this.listeners.get(e)?.delete(t)}emit(e,...t){let n=this.listeners.get(e);if(n)for(let e of n)e(...t)}async submit(e,t,n){if(await this.ensureInitialized(),this.execCtrl.shuttingDown)throw Error(`Interactive session is shutting down.`);if(this.execCtrl.executing){this.execCtrl.pendingPrompt=e,this.execCtrl.pendingDisplayInput=t,this.execCtrl.pendingRawInput=n;return}await this.execCtrl.executePrompt(e,t,n,this.agentsFileEntries,this.claudeFileEntries,this.rebuildSystemMessage,(e,t)=>{this.agentsFileEntries=e,this.claudeFileEntries=t,this.histTracker.recordSystemContextFiles([...e,...t])},(e,t,n)=>this.submit(e,t,n))}abort(){this.execCtrl.clearPendingQueue(),this.session?.abort()}shutdown(e={}){return this.shutdownPromise?this.shutdownPromise:(this.execCtrl.shuttingDown=!0,this.shutdownPromise=(async()=>{await this.ensureInitialized(),this.execCtrl.clearPendingQueue();let t=this.session;t?.abort(),await this.getBackgroundTaskManager()?.shutdown(e.message??`Session shutdown`),this.bgTracker.dispose(),await this.captureSandboxSnapshot(),this.persistCurrentSession(),await t?.shutdown({reason:e.reason??`other`}),this.listeners.clear()})(),this.shutdownPromise)}get isInitialized(){return this.initialized}getAutoCompactThresholdSource(){return this.autoCompactThresholdSource}getAutoCompactThreshold(){return this.getSessionOrThrow().getAutoCompactThreshold()}getSession(){return this.getSessionOrThrow()}getAgentJobCapability(){return this}setAutoCompactThreshold(e,t=`session`){this.getSessionOrThrow().setAutoCompactThreshold(e),this.autoCompactThresholdSource=t,this.emit(`context_update`,this.getContextState()),this.persistCurrentSession()}clearConversationHistory(){this.getSessionOrThrow().clearHistory(),this.histTracker.clearHistory(),this.persistCurrentSession(),this.emit(`context_update`,this.getContextState())}getName(){return this.sessionName}attachTransport(e){e.attach(this)}setName(e){if(this.sessionName=e,this.sessionStore&&this.session)try{let t=this.getSessionOrThrow().getSessionId(),n=this.sessionStore.load(t);n&&(n.name=e,n.updatedAt=new Date().toISOString(),this.sessionStore.save(n))}catch{}}getBackgroundTaskManager(){if(this.session)return Vt(this.session)??L(this.session)?.backgroundTaskManager}async captureSandboxSnapshot(){if(this.sandboxClient?.snapshot)try{this.sandboxSnapshotId=await this.sandboxClient.snapshot()}catch(e){let t=e instanceof Error?e:Error(String(e));this.histTracker.append(h(o(`Sandbox snapshot error: ${t.message}`))),this.emit(`error`,t)}}persistCurrentSession(){if(!this.sessionStore||!this.session)return;let e=this.bgTracker.getState(),t=this.histTracker.getState();Ks(this.sessionStore,this.session,this.sessionName,this.cwd??``,t.history,{tasks:e.tasks,events:e.taskEvents,groups:e.groups,groupEvents:e.groupEvents},{events:t.memoryEvents,usedReferences:t.usedMemoryReferences},{events:t.skillActivationEvents},{references:t.contextReferences},{snapshotId:this.sandboxSnapshotId})}async switchProvider(e){let t=this.getSessionOrThrow(),n=this.getCwd(),r=Hc(n,{providerOverride:e,providerDefinitions:this.providerDefinitions}),i=Uc(n,void 0,{providerOverride:e,providerDefinitions:this.providerDefinitions});t.swapProvider(i,r.model)}async executeCommand(e,t){if(this.orgPolicy?.blockedCommands?.includes(e))return{message:$u(`Command /${e} is blocked by your organization policy.`,this.orgPolicy.adminContact),success:!1};let n=await super.executeCommand(e,t);if(n===null)return null;let r=n.effects?.find(e=>e.type===`provider-hot-swap-requested`);if(r){let{orgPolicy:e}=this;return e?.allowedProviders&&!e.allowedProviders.includes(r.profileName)?{message:$u(`Provider "${r.profileName}" is not allowed by your organization policy. Allowed: ${e.allowedProviders.join(`, `)}.`,e.adminContact),success:!1}:(await this.switchProvider(r.profileName),{...n,effects:n.effects?.filter(e=>e.type!==`provider-hot-swap-requested`)})}return n}};function nd(e,t=new z){let n=U(e);return new od(n.sessions,n.logs,t)}function rd(e,t){return(e?.list()??[]).filter(e=>e.cwd===t).sort((e,t)=>new Date(t.updatedAt).getTime()-new Date(e.updatedAt).getTime()).map(e=>({id:e.id,...e.name===void 0?{}:{name:e.name},cwd:e.cwd,updatedAt:e.updatedAt,messageCount:e.messages.length,preview:sd(e.messages)}))}function id(e,t){return rd(e,t)[0]?.id}function ad(e,t){return(e?.list()??[]).find(e=>e.id===t||e.name===t)?.id}var od=class{store;logsDir;fs;constructor(e,t,n=new z){this.store=new xe(e),this.logsDir=t,this.fs=n}save(e){this.store.save(cd(e))}load(e){let t=this.store.load(e);return t===void 0?this.loadFromReplayLog(e):ld(t)}list(){let e=this.store.list().map(ld),t=new Set(e.map(e=>e.id));for(let n of this.listReplayLogRecords())t.has(n.id)||e.push(n);return e.sort((e,t)=>new Date(t.updatedAt).getTime()-new Date(e.updatedAt).getTime())}delete(e){this.store.delete(e)}loadFromReplayLog(e){if(!this.logsDir)return;let t=Ce(Se(S(this.logsDir,`${e}.jsonl`)));if(!t.sessionId||t.messages.length===0)return;let n=t.backgroundTaskEvents,r=t.backgroundJobGroupEvents;return{id:t.sessionId,cwd:t.cwd??``,createdAt:t.createdAt??t.updatedAt??new Date(0).toISOString(),updatedAt:t.updatedAt??t.createdAt??new Date(0).toISOString(),messages:t.messages,history:t.history,backgroundTasks:ud(n),backgroundTaskEvents:n,backgroundJobGroups:fd(r),backgroundJobGroupEvents:r,skillActivationEvents:[],memoryEvents:t.memoryEvents}}listReplayLogRecords(){return!this.logsDir||!this.fs.existsSync(this.logsDir)?[]:this.fs.readdirSync(this.logsDir).filter(e=>e.endsWith(`.jsonl`)).map(e=>this.loadFromReplayLog(e.slice(0,-6))).filter(e=>e!==void 0)}};function sd(e){for(let t of[...e].reverse())if(t.role===`assistant`&&typeof t.content==`string`)return t.content.replace(/[\n\r]+/g,` `).trim();return``}function cd(e){return{...e}}function ld(e){return{id:e.id,...e.name===void 0?{}:{name:e.name},cwd:e.cwd,createdAt:e.createdAt,updatedAt:e.updatedAt,messages:e.messages,...e.history===void 0?{}:{history:e.history},...e.systemPrompt===void 0?{}:{systemPrompt:e.systemPrompt},...e.toolSchemas===void 0?{}:{toolSchemas:e.toolSchemas},...e.backgroundTasks===void 0?{}:{backgroundTasks:e.backgroundTasks},...e.backgroundTaskEvents===void 0?{}:{backgroundTaskEvents:e.backgroundTaskEvents},...e.backgroundJobGroups===void 0?{}:{backgroundJobGroups:e.backgroundJobGroups},...e.backgroundJobGroupEvents===void 0?{}:{backgroundJobGroupEvents:e.backgroundJobGroupEvents},...e.skillActivationEvents===void 0?{}:{skillActivationEvents:e.skillActivationEvents},...e.memoryEvents===void 0?{}:{memoryEvents:e.memoryEvents},...e.usedMemoryReferences===void 0?{}:{usedMemoryReferences:e.usedMemoryReferences},...e.contextReferences===void 0?{}:{contextReferences:e.contextReferences},...e.sandboxSnapshotId===void 0?{}:{sandboxSnapshotId:e.sandboxSnapshotId}}}function ud(e){let t=new Map;for(let n of e){let e=dd(n);e&&t.set(e.id,e)}return[...t.values()]}function dd(e){switch(e.type){case`background_task_created`:case`background_task_started`:case`background_task_updated`:case`background_task_completed`:case`background_task_failed`:case`background_task_cancelled`:return e.task;default:return}}function fd(e){let t=new Map;for(let n of e)t.set(n.group.id,n.group);return[...t.values()]}function pd(e){let t=new td({cwd:e.cwd??process.cwd(),provider:e.provider,permissionMode:e.permissionMode??`bypassPermissions`,maxTurns:e.maxTurns,permissionHandler:e.permissionHandler,additionalTools:e.additionalTools,...e.responseFormat?{responseFormat:e.responseFormat}:{}});return e.onTextDelta&&t.on(`text_delta`,e.onTextDelta),async e=>new Promise((n,r)=>{let i=e=>{s(),n(e.response)},a=e=>{s(),n(e.response)},o=e=>{s(),r(e)},s=()=>{t.off(`complete`,i),t.off(`interrupted`,a),t.off(`error`,o)};t.on(`complete`,i),t.on(`interrupted`,a),t.on(`error`,o),t.submit(e).catch(e=>{s(),r(e instanceof Error?e:Error(String(e)))})})}const md=[`preferences`,`view-state`,`memory-projections`,`task-associations`,`workflow-metadata`,`inspection-index`],hd=[{category:`preferences`,purpose:`User-local UI and display preferences.`,mayExecuteCommands:!1},{category:`view-state`,purpose:`Last selected panels, filters, and navigation state.`,mayExecuteCommands:!1},{category:`memory-projections`,purpose:`Inspectable local memory item projections and user choices.`,mayExecuteCommands:!1},{category:`task-associations`,purpose:`User-local associations between sessions, tasks, and background items.`,mayExecuteCommands:!1},{category:`workflow-metadata`,purpose:`Transparent workflow metadata that is not repo-owned.`,mayExecuteCommands:!1},{category:`inspection-index`,purpose:`Category and item summaries for user inspection and deletion.`,mayExecuteCommands:!1}];function gd(e){return e.toISOString()}function _d(e,t){if(t.trim().length===0)throw Error(`${e} must not be empty.`);if(!b.isAbsolute(t))throw Error(`${e} must be an absolute path: ${t}`)}function vd(){return process.env.HOME??T()}function yd(e,t){let n=b.relative(e,t);return n===``||!n.startsWith(`..`)&&!b.isAbsolute(n)}async function bd(e,t){let n=e;for(;b.dirname(n)!==n;)try{let r=await t.realpath(n),i=b.relative(n,e);return b.resolve(r,i)}catch{n=b.dirname(n)}try{return await t.realpath(n)}catch{return b.resolve(e)}}async function xd(e){let t=e.fsAsync??new B,n=b.resolve(e.activeRepositoryRoot);_d(`activeRepositoryRoot`,n);let r=e.storageRoot===void 0?b.join(e.homeDir??vd(),`.robota`):e.storageRoot;_d(`userLocalStorageRoot`,r);let i=b.resolve(r),a=await bd(i,t);if(yd(await bd(n,t),a))throw Error(`User-local storage root must be outside the active repository: ${i}`);return i}function Sd(e,t){return b.join(e,t)}async function Cd(e,t,n){let r=Sd(e,t),i;try{i=await n.readdir(r,{withFileTypes:!0})}catch{return[]}return(await Promise.all(i.map(async i=>{let a=b.join(r,i.name),o=await n.stat(a),s=i.name;return{root:e,category:t,key:s,summary:`${t}/${s}`,source:`user-local-storage`,scope:`user`,storageLocation:a,createdAt:gd(new Date(o.birthtimeMs)),lastUsedAt:gd(new Date(o.mtimeMs)),enabled:!0,deleteAvailable:!0,disableAvailable:!1}}))).sort((e,t)=>e.key.localeCompare(t.key))}async function wd(e){let t=e.fsAsync??new B,n=await xd(e),r=b.resolve(e.activeRepositoryRoot),i=e.createDirectories??!0;return i&&await t.mkdir(n,{recursive:!0}),{root:n,activeRepositoryRoot:r,categories:await Promise.all(hd.map(async e=>{let r=Sd(n,e.category);i&&await t.mkdir(r,{recursive:!0});let a=await Cd(n,e.category,t);return{category:e.category,purpose:e.purpose,mayExecuteCommands:e.mayExecuteCommands,storageLocation:r,itemCount:a.length,items:a}})),generatedAt:gd((e.now??(()=>new Date))())}}const Td=[`view-preference`,`last-visible-cwd`,`background-selection`,`task-association`,`display-preference`,`inspection-choice`],Ed=`.json`,Dd=/^[a-z0-9][a-z0-9._-]*$/u,Od={"view-preference":`May affect UI panel, filter, density, or sorting display/navigation only.`,"last-visible-cwd":`May display or preselect an already visible workspace context only.`,"background-selection":`May restore the selected background entry in local UI only.`,"task-association":`May group visible tasks by a local association only.`,"display-preference":`May affect local text wrapping, compactness, or visibility only.`,"inspection-choice":`May affect inspection display choices only.`};function kd(e){return e.toISOString()}function Ad(e){return Td.includes(e)}function jd(e){if(!Ad(e))throw Error(`Unsupported user-local memory category: ${e}`);return e}function Md(e,t){let n=t.trim();if(n.length===0)throw Error(`${e} must not be empty.`);if(n.length>80||!Dd.test(n))throw Error(`${e} must use lowercase letters, numbers, dots, underscores, or hyphens: ${t}`);return n}function Nd(e,t,n){let r=t.trim().replace(/\s+/g,` `);if(r.length===0)throw Error(`${e} must not be empty.`);return r.length>n?r.slice(0,n):r}function Pd(e){return Nd(`value`,e,240)}function Fd(e,t){return`${e}__${t}${Ed}`}async function Id(e){let t=await xd(e);return{root:t,memoryRoot:b.join(t,`memory-projections`)}}function Ld(e,t){let n=JSON.parse(e),r=$(n,`category`);if(n.schemaVersion!==1)throw Error(`Unsupported user-local memory schema at ${t}`);return{schemaVersion:1,category:jd(r),key:$(n,`key`),value:$(n,`value`),summary:$(n,`summary`),source:$(n,`source`),scope:$(n,`scope`),createdAt:$(n,`createdAt`),lastUsedAt:$(n,`lastUsedAt`),enabled:Rd(n,`enabled`)}}function $(e,t){let n=e[t];if(typeof n!=`string`)throw Error(`Invalid user-local memory field: ${t}`);return n}function Rd(e,t){let n=e[t];if(typeof n!=`boolean`)throw Error(`Invalid user-local memory field: ${t}`);return n}function zd(e,t,n){return{root:e,category:n.category,key:n.key,summary:n.summary,valueSummary:Pd(n.value),source:n.source,scope:n.scope,storageLocation:t,createdAt:n.createdAt,lastUsedAt:n.lastUsedAt,enabled:n.enabled,displayNavigationRule:Od[n.category],commandExecutionEffect:`none`,deleteAvailable:!0,disableAvailable:!0}}async function Bd(e,t,n){return zd(e,t,Ld(await n.readFile(t,`utf8`),t))}async function Vd(e){let t=jd(e.category),n=Md(`key`,e.key),{root:r,memoryRoot:i}=await Id(e);return{root:r,storageLocation:b.join(i,Fd(t,n))}}async function Hd(e){let t=e.fsAsync??new B,n=jd(e.category),r=Md(`key`,e.key),i=Nd(`summary`,e.summary,240),a=Nd(`source`,e.source,80),o=Nd(`scope`,e.scope??`user`,120),s=Pd(e.value),c=kd((e.now??(()=>new Date))()),{root:l,memoryRoot:u}=await Id(e),d=b.join(u,Fd(n,r)),f=c;try{f=Ld(await t.readFile(d,`utf8`),d).createdAt}catch(e){if(e instanceof Error&&e.message.includes(`ENOENT`))f=c;else throw e}let p={schemaVersion:1,category:n,key:r,value:s,summary:i,source:a,scope:o,createdAt:f,lastUsedAt:c,enabled:!0};return await t.mkdir(u,{recursive:!0}),await t.writeFile(d,`${JSON.stringify(p,null,2)}\n`,`utf8`),zd(l,d,p)}async function Ud(e){let t=e.fsAsync??new B,{root:n,memoryRoot:r}=await Id(e),i;try{i=await t.readdir(r,{withFileTypes:!0})}catch{i=[]}let a=await Promise.all(i.filter(e=>e.isFile()&&e.name.endsWith(Ed)).map(e=>Bd(n,b.join(r,e.name),t)));return{root:n,activeRepositoryRoot:b.resolve(e.activeRepositoryRoot),items:a.sort((e,t)=>`${e.category}/${e.key}`.localeCompare(`${t.category}/${t.key}`))}}async function Wd(e){let t=e.fsAsync??new B,{root:n,storageLocation:r}=await Vd(e);return Bd(n,r,t)}async function Gd(e){let t=e.fsAsync??new B,{root:n,storageLocation:r}=await Vd(e),i={...Ld(await t.readFile(r,`utf8`),r),enabled:!1,lastUsedAt:kd((e.now??(()=>new Date))())};return await t.writeFile(r,`${JSON.stringify(i,null,2)}\n`,`utf8`),zd(n,r,i)}async function Kd(e){let t=e.fsAsync??new B,{storageLocation:n}=await Vd(e);return await t.rm(n),{category:e.category,key:e.key,deleted:!0}}async function qd(e){let t=await Wd(e);return t.enabled?t:null}const Jd=[`test`,`typecheck`,`build`],Yd={idle:{checkpoint_created:`checkpointed`,cancelled:`cancelled`},checkpointed:{edits_started:`editing`,cancelled:`cancelled`},editing:{edits_applied:`verifying`,verify_failed:`failed`,cancelled:`cancelled`},verifying:{verify_passed:`passed`,verify_failed:`failed`,cancelled:`cancelled`},passed:{},failed:{rollback_completed:`rolled_back`,cancelled:`cancelled`},rolled_back:{},cancelled:{}};function Xd(e){return e?Array.from(new Set(e.map(e=>e.trim()).filter(Boolean))):[]}function Zd(e){return e.flatMap(e=>Jd.map(t=>({id:`package-${t}:${e}`,phase:`verify`,description:`Run ${t} for ${e} in a child process against the new on-disk tree.`,required:!0,command:`pnpm --filter ${e} ${t}`})))}function Qd(){return[{id:`checkpoint`,phase:`checkpoint`,description:`Create a recoverable turn-level checkpoint before the first mutation.`,required:!0},{id:`atomic-edit`,phase:`edit`,description:`Apply Write/Edit mutations through same-directory temp files and atomic rename.`,required:!0},{id:`handoff`,phase:`handoff`,description:`Keep the current process on already-loaded code and run verification child processes against disk.`,required:!0}]}function $d(e){return{id:`harness-verify`,phase:`verify`,description:`Run Robota harness verification as the local CI-like gate.`,required:!0,command:`pnpm harness:verify -- --base-ref ${e} --skip-record-check`}}function ef(){return{id:`rollback-on-failure`,phase:`recover`,description:`Use the existing edit checkpoint restore path if verification fails.`,required:!0}}function tf(e){if(e.changedFiles.length===0)throw Error(`Self-hosting verification requires at least one changed file.`);let t=e.baseRef??`origin/develop`,n=Xd(e.packageScopes),r=[...Qd(),...Zd(n),$d(t),ef()];return{changedFiles:[...e.changedFiles],packageScopes:n,baseRef:t,steps:r}}function nf(e,t){let n=Yd[e][t];if(!n)throw Error(`Invalid self-hosting loop transition: ${e} -> ${t}`);return n}function rf(e){return e}function af(e){if(!e||e.length===0)return;let[t,...n]=e;if(t!==void 0)return[t,...n]}function of(e){let t=af(e),n=t===void 0?g.string().describe(`Registered model-invocable command name to execute`):g.enum(t).describe(`Registered model-invocable command name to execute`);return g.object({command:n,args:g.string().optional().describe(`Arguments to pass to the command`)})}function sf(e){if(e.commandNames!==void 0)return e.commandNames;if(e.commandDescriptors!==void 0)return e.commandDescriptors.map(e=>I(e.name))}function cf(e){return`- ${I(e.name)}${e.argumentHint?` ${e.argumentHint}`:``}: ${e.description}`}function lf(e){let t=`Executes a registered model-invocable Robota command through the command registry. Accepted command names and argument grammar come from registered command descriptors.`;return e===void 0||e.length===0?t:[t,`Use the registered command descriptors below as the authority for when to call this tool.`,``,`Registered model-invocable commands:`,...e.map(cf)].join(`
|
|
101
|
-
`)}function
|
|
102
|
-
`,`utf8`)}async function Gf(e){if(e.disabled===!0)return{status:`skipped`,reason:`disabled`};let t=e.packageName??`@robota-sdk/agent-cli`,n=e.cachePath??Hf(),r=e.now??new Date,i=e.ttlMs??864e5;if(e.force!==!0){let a=Uf(n);if(a!==void 0&&ep(a,r,i,t))return Qf(a,e.currentVersion)}let a=await Kf(e,t,n,r);return typeof a==`string`?$f(e.currentVersion,a):a}async function Kf(e,t,n,r){let i=await tp({fetchImpl:e.fetchImpl??fetch,packageName:t,registryUrl:e.registryUrl??`https://registry.npmjs.org`,timeoutMs:e.timeoutMs??1500});return i.ok?(qf(n,{packageName:t,checkedAt:r.toISOString(),currentVersion:e.currentVersion,latestVersion:i.version}),i.version):(qf(n,{packageName:t,checkedAt:r.toISOString(),currentVersion:e.currentVersion,errorMessage:i.errorMessage}),{status:`error`,errorMessage:i.errorMessage})}function qf(e,t){try{Wf(e,t)}catch{}}async function Jf(e){let t=await Gf(e);return t.status===`update_available`?t.notice:void 0}function Yf(e){return e.printMode===!1&&e.disableUpdateCheck===!1}function Xf(e){return[`Robota update available: ${e.currentVersion} -> ${e.latestVersion}.`,`Run ${e.installCommand}`].join(` `)}function Zf(e){return e.status===`update_available`?Xf(e.notice):e.status===`current`?`Robota is up to date (${e.currentVersion}).`:e.status===`skipped`?`Robota update check skipped.`:`Robota update check failed: ${e.errorMessage}`}function Qf(e,t){return e.errorMessage===void 0?e.latestVersion===void 0?{status:`error`,errorMessage:`Cached update check has no latest version`}:$f(t,e.latestVersion):{status:`error`,errorMessage:e.errorMessage}}function $f(e,t){return jf(t,e)?{status:`update_available`,notice:{currentVersion:e,latestVersion:t,installCommand:`npm install -g '@robota-sdk/agent-cli@latest'`}}:{status:`current`,currentVersion:e,latestVersion:t}}function ep(e,t,n,r){if(e.packageName!==r)return!1;let i=Date.parse(e.checkedAt);return Number.isFinite(i)?t.getTime()-i<n:!1}async function tp(e){try{return{ok:!0,version:await np(e)}}catch(e){return{ok:!1,errorMessage:e instanceof Error?e.message:String(e)}}}async function np(e){let t=new AbortController,n=setTimeout(()=>t.abort(),e.timeoutMs);try{let n=rp(e.registryUrl,e.packageName),r=await e.fetchImpl(n,{headers:{accept:`application/json`},signal:t.signal});if(!r.ok)throw Error(`registry responded with HTTP ${r.status}`);let i=(await r.json())[`dist-tags`]?.latest;if(typeof i!=`string`||i.trim().length===0)throw Error(`registry metadata is missing dist-tags.latest`);return i}finally{clearTimeout(n)}}function rp(e,t){return`${e.replace(/\/+$/,``)}/${encodeURIComponent(t)}`}function ip(e){if(!ap(e))return;let t=e;if(typeof t.packageName==`string`&&typeof t.checkedAt==`string`&&typeof t.currentVersion==`string`&&(t.latestVersion===void 0||typeof t.latestVersion==`string`)&&(t.errorMessage===void 0||typeof t.errorMessage==`string`))return{packageName:t.packageName,checkedAt:t.checkedAt,currentVersion:t.currentVersion,...t.latestVersion!==void 0&&{latestVersion:t.latestVersion},...t.errorMessage!==void 0&&{errorMessage:t.errorMessage}}}function ap(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function op(e){let t=Wa(),n={settings:{read:()=>q(t),write:e=>J(t,e)}},r=e.backgroundTaskRunners??ie(),i=e.commandModules??[],a=e.commandHostAdapters??n,o=`sessionStore`in e?e.sessionStore:nd(e.cwd);return{cwd:e.cwd,provider:e.provider,commandModules:i,commandHostAdapters:a,backgroundTaskRunners:r,subagentRunnerFactory:e.subagentRunnerFactory,sessionStore:o,transportRegistry:e.transportRegistry,reloadPluginCommandSource:e.reloadPluginCommandSource??(()=>{}),createSession(t){return new td({cwd:e.cwd,provider:e.provider,backgroundTaskRunners:r,subagentRunnerFactory:e.subagentRunnerFactory,commandModules:i,commandHostAdapters:a,permissionMode:t.permissionMode,maxTurns:t.maxTurns,sessionStore:t.sessionStore,sessionName:t.sessionName,bare:t.bare,allowedTools:t.allowedTools,deniedTools:t.deniedTools,model:t.model,appendSystemPrompt:t.appendSystemPrompt,systemPrompt:t.systemPrompt,shellExec:t.shellExec,agentName:t.agentName,orgPolicy:e.orgPolicy,additionalTools:t.additionalTools,resumeSessionId:t.resumeSessionId,...t.responseFormat?{responseFormat:t.responseFormat}:{}})}}}function sp(e){let t=op({cwd:e.cwd??process.cwd(),provider:e.provider,sessionStore:void 0,commandHostAdapters:{settings:{read:()=>({}),write:()=>{}}}}),n=t.createSession.bind(t);return{...t,createSession(e){return n({bare:!0,...e})}}}export{Kc as AUTO_COMPACT_THRESHOLD_SETTINGS_KEY,Xa as AgentExecutor,ul as BACKGROUND_COMMAND_DESCRIPTION,dl as BACKGROUND_COMMAND_USAGE,rn as BUILT_IN_AGENTS,it as BackgroundJobOrchestrator,ic as BuiltinCommandSource,Ns as BundlePluginInstaller,Ms as BundlePluginLoader,ru as CLEAR_COMMAND_DESCRIPTION,Bf as CLI_UPDATE_CACHE_TTL_MS,Rf as CLI_UPDATE_PACKAGE_NAME,zf as CLI_UPDATE_REGISTRY_URL,Vf as CLI_UPDATE_TIMEOUT_MS,su as COST_COMMAND_DESCRIPTION,ec as CommandRegistry,Gc as DEFAULT_AUTO_COMPACT_THRESHOLD,Wl as DEFAULT_STATUS_LINE_COMMAND_SETTINGS,A as EXECUTION_ORIGIN_METADATA_KEYS,lu as EXIT_COMMAND_DESCRIPTION,Di as EditCheckpointStore,sl as HELP_COMMAND_DESCRIPTION,td as InteractiveSession,Cl as LANGUAGE_COMMAND_ARGUMENT_HINT,Sl as LANGUAGE_COMMAND_DESCRIPTION,Mu as MEMORY_COMMAND_ARGUMENT_HINT,ju as MEMORY_COMMAND_DESCRIPTION,Nu as MEMORY_COMMAND_USAGE,hs as MEMORY_INDEX_MAX_BYTES,ms as MEMORY_INDEX_MAX_LINES,ln as MODEL_COMMAND_TOOL_PREFIX,Ls as MarketplaceClient,Al as PERMISSIONS_COMMAND_DESCRIPTION,kl as PERMISSION_MODE_ARGUMENT_HINT,Ol as PERMISSION_MODE_COMMAND_DESCRIPTION,Zl as PLUGIN_COMMAND_ARGUMENT_HINT,Xl as PLUGIN_COMMAND_DESCRIPTION,un as PROVIDER_SAFE_TOOL_NAME_PATTERN,Wc as PluginCommandSource,Os as PluginSettingsStore,ws as ProjectMemoryStore,Qa as PromptExecutor,wl as RECOMMENDED_RESPONSE_LANGUAGES,Ql as RELOAD_PLUGINS_COMMAND_DESCRIPTION,iu as RENAME_COMMAND_DESCRIPTION,au as RENAME_COMMAND_USAGE,ou as RESUME_COMMAND_DESCRIPTION,bu as REWIND_COMMAND_ARGUMENT_HINT,yu as REWIND_COMMAND_DESCRIPTION,Ul as STATUSLINE_COMMAND_ARGUMENT_HINT,Hl as STATUSLINE_COMMAND_DESCRIPTION,Ua as SkillCommandSource,tc as SystemCommandExecutor,Td as USER_LOCAL_MEMORY_CATEGORIES,md as USER_LOCAL_STORAGE_CATEGORIES,hd as USER_LOCAL_STORAGE_CATEGORY_DEFINITIONS,cu as VALIDATE_SESSION_COMMAND_DESCRIPTION,jl as VALID_PERMISSION_MODES,tl as addCommandContextReference,Lc as applyActiveModelChange,Fc as applyProviderConfiguration,Ic as applyProviderSwitch,Jl as applyStatusLineSettings,cn as assembleSubagentPrompt,fl as buildBackgroundCommandSubcommands,Tl as buildLanguageCommandSubcommands,Pu as buildMemoryCommandSubcommands,Ml as buildPermissionModeSubcommands,nu as buildPluginCommandSubcommands,vr as buildPromptWithFileReferences,dc as buildProviderProfile,uc as buildProviderSetupPatch,xu as buildRewindCommandSubcommands,Gl as buildStatusLineCommandSubcommands,bl as cancelCommandBackgroundTask,Gf as checkForCliUpdate,bc as checkSettingsDocument,Tc as checkSettingsFile,rl as clearCommandContextReferences,lr as clearContextReferences,uu as clearConversationHistory,xl as closeCommandBackgroundTask,$c as compactCommandContext,Af as compareSemverVersions,op as createAgentRuntime,zn as createAgentTool,pt as createBackgroundGroupExecutionEntryId,Ta as createBackgroundProcessTool,M as createBackgroundTaskExecutionEntryId,ac as createBuiltinCommandModule,uf as createCommandExecutionTool,Lu as createCommandMemoryStores,Iu as createCommandPendingMemoryStore,Fu as createCommandProjectMemoryStore,or as createContextReferenceItem,Ji as createDefaultTools,N as createExecutionOriginMetadata,ht as createExecutionWorkspaceSnapshot,It as createExecutionWorkspaceTaskSpawner,kn as createInProcessSubagentRunner,vf as createInteractiveRuntime,Nt as createLineDetailPage,Mt as createMainThreadDetailPage,j as createMainThreadExecutionEntryId,pn as createModelCommandToolProjection,eu as createPluginRegistryReloadRequestedEffect,$l as createPluginTuiRequestedEffect,nd as createProjectSessionStore,gn as createProjectedCommandExecutionTools,xr as createPromptFileReferenceHistoryEntry,Uc as createProviderFromSettings,fn as createProviderSafeModelCommandToolName,pd as createQuery,mu as createSessionExitRequestedEffect,pu as createSessionPickerRequestedEffect,fu as createSessionRenamedEffect,sp as createStatelessRuntime,vo as createSubagentLogger,Cn as createSubagentSession,nc as createSystemCommands,Tf as createTestInteractiveSession,cc as deleteProviderProfile,Ja as deleteSettings,Kd as deleteUserLocalMemoryItem,Gd as disableUserLocalMemoryItem,cs as discoverTaskFiles,no as evaluateReversibleToolSafety,Ku as executeSkill,Zf as formatCliUpdateCheckMessage,Xf as formatCliUpdateNotice,pl as formatCommandBackgroundTask,ml as formatCommandBackgroundTaskList,ll as formatCommandHelpMessage,Vl as formatCommandPermissionsMessage,_u as formatCommandSessionReplayValidationReport,l as formatEnvReference,Fl as formatInvalidPermissionModeMessage,Dl as formatLanguageUsageMessage,$u as formatOrgPolicyViolationMessage,mn as formatProjectedModelCommandToolPromptDescription,br as formatPromptFileReferenceDiagnostics,ds as formatTaskContext,an as getBuiltInAgent,sn as getForkWorkerSuffix,Mc as getProviderSettingsPaths,Jf as getStartupCliUpdateNotice,on as getSubagentSuffix,Wa as getUserSettingsPath,Hf as getUserUpdateCheckCachePath,yr as hasBlockingPromptFileReferenceDiagnostics,zu as hasSensitiveCommandMemoryContent,f as hasUsableSecretReference,Cu as inspectCommandEditCheckpoint,Wd as inspectUserLocalMemoryItem,wd as inspectUserLocalStorage,ed as isApiKeyPlaintext,Ru as isCommandMemoryType,m as isEnvReference,_s as isMemoryType,jf as isNewerSemverVersion,Pl as isPermissionMode,df as isSlashCommand,Kl as isStatusLineCommandSettingsPatch,ur as listActiveContextReferences,vl as listCommandBackgroundTasks,el as listCommandContextReferences,Su as listCommandEditCheckpoints,zl as listCommandSessionAllowedTools,Bu as listCommandUsedMemoryReferences,rd as listResumableSessionSummaries,Ud as listUserLocalMemoryItems,Qu as loadOrgPolicy,fs as loadTaskContext,fc as mergeProviderPatch,kc as mergeProviders,Oc as mergeSettings,I as normalizeModelCommandName,hl as parseCommandBackgroundLogCursor,mt as parseExecutionWorkspaceEntryId,za as parseFrontmatter,pf as parseInput,El as parseLanguageArgument,Nl as parsePermissionModeArgument,Tr as parsePromptFileReferences,du as parseSessionNameArgument,ls as parseTaskFile,tf as planSelfHostingVerification,Uu as preprocessShellCommands,yc as probeProviderProfile,U as projectPaths,xf as promptForApproval,Jc as readAutoCompactThreshold,Yc as readAutoCompactThresholdSource,yl as readCommandBackgroundTaskLog,qc as readCommandContextState,Ll as readCommandPermissionMode,Bl as readCommandPermissionsState,hu as readCommandSessionInfo,ss as readCurrentGitBranch,qd as readEnabledUserLocalMemoryItem,Vc as readMergedProviderSettings,Ec as readMergedProviderSettingsFromPaths,Lf as readPackageVersion,Hc as readProviderSettings,q as readSettings,ql as readStatusLineSettings,Uf as readUpdateCheckCache,Vu as recordCommandMemoryEvent,nl as removeCommandContextReference,cr as removeContextReference,Qc as resetAutoCompactThresholdSetting,Ef as resetUserConfig,Ac as resolveActiveProvider,ee as resolveEnvReference,Df as resolveGitBranch,id as resolveLatestSessionId,Il as resolvePermissionModeAdapter,tu as resolvePluginCommandAdapter,Nr as resolvePromptFileReferencePaths,Mr as resolvePromptFileReferences,Nc as resolveProviderSettingsWriteTargetPath,ad as resolveSessionIdByIdOrName,Ga as resolveSettingsPathForScope,yo as resolveSubagentLogDir,xd as resolveUserLocalStorageRoot,wu as restoreCommandEditCheckpoint,L as retrieveAgentToolDeps,Tu as rollbackCommandEditCheckpoint,ol as sanitizeProviderProfileName,us as selectRelevantTasks,Xc as setCommandAutoCompactThreshold,sc as setCurrentProvider,Hd as setUserLocalMemoryItem,Yf as shouldRunStartupCliUpdateCheck,Pn as storeAgentToolDeps,Hu as substituteVariables,al as suggestProviderProfileName,lt as summarizeBackgroundJobGroup,vc as testProviderProfileCommand,dr as toContextReferenceRecords,V as toPromptFileReferenceRecords,ff as tokeniseSlashCommand,nf as transitionSelfHostingLoop,Ka as updateModelInSettings,ps as updateTaskFileStatus,sr as upsertContextReference,oc as upsertProviderProfile,bi as userPaths,gu as validateCommandSessionReplayLog,lc as validateProviderProfile,Ma as wrapEditCheckpointTools,ro as wrapReversibleExecutionTools,Zc as writeAutoCompactThresholdSetting,Rl as writeCommandPermissionMode,J as writeSettings,Wf as writeUpdateCheckCache};
|
|
94
|
+
`),s=Ps(o),c=new Ms(e).loadStartupMemory().content||void 0,l=bs(e);return{agentsMd:a,claudeMd:o,memoryMd:c,taskContext:l.trim().length>0?l:void 0,compactInstructions:s,agentsFileEntries:r,claudeFileEntries:i}}var Is=class{settingsPath;fs;constructor(e,t=new R){this.settingsPath=e,this.fs=t}readAll(){if(!this.fs.existsSync(this.settingsPath))return{};try{let e=this.fs.readFileSync(this.settingsPath,`utf-8`),t=JSON.parse(e);return typeof t==`object`&&t?t:{}}catch{return{}}}writeAll(e){let t=C(this.settingsPath);this.fs.existsSync(t)||this.fs.mkdirSync(t,{recursive:!0}),this.fs.writeFileSync(this.settingsPath,JSON.stringify(e,null,2),`utf-8`)}getEnabledPlugins(){let e=this.readAll().enabledPlugins;return typeof e==`object`&&e?e:{}}setPluginEnabled(e,t){let n=this.readAll(),r=this.getEnabledPluginsFrom(n);r[e]=t,n.enabledPlugins=r,this.writeAll(n)}removePluginEntry(e){let t=this.readAll(),n=this.getEnabledPluginsFrom(t);delete n[e],t.enabledPlugins=n,this.writeAll(t)}getMarketplaceSources(){let e=this.readAll().extraKnownMarketplaces;return typeof e==`object`&&e?e:{}}setMarketplaceSource(e,t){let n=this.readAll(),r=this.getMarketplaceSourcesFrom(n);r[e]={source:t},n.extraKnownMarketplaces=r,this.writeAll(n)}removeMarketplaceSource(e){let t=this.readAll(),n=this.getMarketplaceSourcesFrom(t);delete n[e],t.extraKnownMarketplaces=n,this.writeAll(t)}getEnabledPluginsFrom(e){let t=e.enabledPlugins;return typeof t==`object`&&t?t:{}}getMarketplaceSourcesFrom(e){let t=e.extraKnownMarketplaces;return typeof t==`object`&&t?t:{}}};function Ls(e){let t=e.trimStart();if(!t.startsWith(`---`))return{metadata:{},content:e};let n=t.indexOf(`---`,3);if(n===-1)return{metadata:{},content:e};let r=t.slice(3,n).trim(),i=t.slice(n+3).trimStart(),a={};for(let e of r.split(`
|
|
95
|
+
`)){let t=e.indexOf(`:`);if(t===-1)continue;let n=e.slice(0,t).trim(),r=e.slice(t+1).trim();typeof r==`string`&&r.startsWith(`[`)&&r.endsWith(`]`)&&(r=r.slice(1,-1).split(`,`).map(e=>e.trim()).filter(e=>e.length>0)),n&&(a[n]=r)}return{metadata:a,content:i}}function Rs(e){if(typeof e!=`object`||!e)return null;let t=e;if(typeof t.name!=`string`||typeof t.version!=`string`||typeof t.description!=`string`)return null;let n=typeof t.features==`object`&&t.features!==null?t.features:{};return{name:t.name,version:t.version,description:t.description,features:{commands:n.commands===!0?!0:void 0,agents:n.agents===!0?!0:void 0,skills:n.skills===!0?!0:void 0,hooks:n.hooks===!0?!0:void 0,mcp:n.mcp===!0?!0:void 0}}}function zs(e,t=new R){if(!t.existsSync(e))return[];try{return t.readdirSync(e,{withFileTypes:!0}).filter(e=>e.isDirectory()).map(e=>e.name).sort()}catch{return[]}}var Bs=class{pluginsDir;enabledPlugins;fs;constructor(e,t,n=new R){this.pluginsDir=e,this.enabledPlugins=t??{},this.fs=n}loadPluginsSync(){return this.discoverAndLoad()}async loadAll(){return this.discoverAndLoad()}discoverAndLoad(){let e=w(this.pluginsDir,`cache`);if(!this.fs.existsSync(e))return[];let t=[],n=zs(e,this.fs);for(let r of n){let n=w(e,r),i=zs(n,this.fs);for(let e of i){let i=w(n,e),a=zs(i,this.fs);if(a.length===0)continue;let o=a[a.length-1],s=w(i,o),c=w(s,`.claude-plugin`,`plugin.json`);if(!this.fs.existsSync(c))continue;let l=this.readManifest(c);if(!l)continue;let u=`${l.name}@${r}`;if(this.isDisabled(u,l.name))continue;let d=this.loadPlugin(s,l);t.push(d)}}return t}readManifest(e){let t=this.fs.readFileSync(e,`utf-8`);return Rs(JSON.parse(t))}isDisabled(e,t){return e in this.enabledPlugins?this.enabledPlugins[e]===!1:t in this.enabledPlugins?this.enabledPlugins[t]===!1:!1}loadPlugin(e,t){return{manifest:t,skills:this.loadSkills(e,t.name),commands:this.loadCommands(e,t.name),hooks:this.loadHooks(e),mcpConfig:this.loadMcpConfig(e),agents:this.loadAgents(e),pluginDir:e}}loadSkills(e,t){let n=w(e,`skills`);if(!this.fs.existsSync(n))return[];let r=this.fs.readdirSync(n,{withFileTypes:!0}),i=[];for(let e of r){if(!e.isDirectory())continue;let t=w(n,e.name,`SKILL.md`);if(!this.fs.existsSync(t))continue;let{metadata:r,content:a}=Ls(this.fs.readFileSync(t,`utf-8`)),o=typeof r.description==`string`?r.description:``,s={name:e.name,description:o,skillContent:a,...r};i.push(s)}return i}loadCommands(e,t){let n=w(e,`commands`);if(!this.fs.existsSync(n))return[];let r=this.fs.readdirSync(n,{withFileTypes:!0}),i=[];for(let e of r){if(!e.isFile()||!e.name.endsWith(`.md`))continue;let{metadata:r,content:a}=Ls(this.fs.readFileSync(w(n,e.name),`utf-8`)),o=typeof r.name==`string`?r.name:e.name.replace(/\.md$/,``),s=typeof r.description==`string`?r.description:``;i.push({...r,name:`${t}:${o}`,description:s,skillContent:a})}return i}loadHooks(e){let t=w(e,`hooks`,`hooks.json`);if(!this.fs.existsSync(t))return{};let n=this.fs.readFileSync(t,`utf-8`),r=JSON.parse(n);return typeof r==`object`&&r?r:{}}loadMcpConfig(e){let t=w(e,`.mcp.json`);if(!this.fs.existsSync(t))return;let n=this.fs.readFileSync(t,`utf-8`);return JSON.parse(n)}loadAgents(e){let t=w(e,`agents`);return this.fs.existsSync(t)?this.fs.readdirSync(t,{withFileTypes:!0}).filter(e=>e.isDirectory()||e.name.endsWith(`.md`)).map(e=>e.name.replace(/\.md$/,``)):[]}},Vs=class{pluginsDir;cacheDir;registryPath;settingsStore;marketplaceClient;exec;fs;constructor(e){this.pluginsDir=e.pluginsDir,this.cacheDir=w(this.pluginsDir,`cache`),this.registryPath=w(this.pluginsDir,`installed_plugins.json`),this.settingsStore=e.settingsStore,this.marketplaceClient=e.marketplaceClient,this.exec=e.exec,this.fs=e.fs??new R}async install(e,t){let n=this.marketplaceClient.fetchManifest(t).plugins.find(t=>t.name===e);if(!n)throw Error(`Plugin "${e}" not found in marketplace "${t}"`);let r=this.resolveVersion(n,t),i=w(this.cacheDir,t,e,r);if(this.fs.existsSync(i))throw Error(`Plugin "${e}" version "${r}" is already installed from "${t}"`);this.resolveAndInstall(n.source,t,e,i);let a=`${e}@${t}`,o=this.readRegistry();o[a]={pluginName:e,marketplace:t,version:r,installPath:i,installedAt:new Date().toISOString()},this.writeRegistry(o)}async uninstall(e){let t=this.readRegistry(),n=t[e];if(!n)throw Error(`Plugin "${e}" is not installed`);this.fs.existsSync(n.installPath)&&this.fs.rmSync(n.installPath,{recursive:!0,force:!0}),delete t[e],this.writeRegistry(t),this.settingsStore.removePluginEntry(e)}async enable(e){this.settingsStore.setPluginEnabled(e,!0)}async disable(e){this.settingsStore.setPluginEnabled(e,!1)}getInstalledPlugins(){return this.readRegistry()}getPluginsByMarketplace(e){let t=this.readRegistry();return Object.values(t).filter(t=>t.marketplace===e)}resolveVersion(e,t){let n=e;return typeof n.version==`string`&&n.version?n.version:this.marketplaceClient.getMarketplaceSha(t)}normalizeSource(e){if(typeof e==`string`)return e;let t=e;return!t.type&&typeof t.source==`string`?{...t,type:t.source}:e}resolveAndInstall(e,t,n,r){this.fs.mkdirSync(r,{recursive:!0});let i=this.normalizeSource(e);try{if(typeof i==`string`){let e=w(this.marketplaceClient.getMarketplaceDir(t),i);if(!this.fs.existsSync(e))throw Error(`Plugin source path "${i}" not found in marketplace "${t}"`);this.fs.cpSync(e,r,{recursive:!0})}else if(i.type===`github`){let e=`https://github.com/${i.repo}.git`;this.cloneToDir(e,r,n)}else if(i.type===`url`&&typeof i.url==`string`&&i.url.endsWith(`.git`))this.cloneToDir(i.url,r,n);else if(i.type===`url`)throw Error(`URL source "${i.url}" is not a git repository (must end with .git)`);else throw Error(`Unknown source type: ${JSON.stringify(i)}`)}catch(e){throw this.fs.existsSync(r)&&this.fs.rmSync(r,{recursive:!0,force:!0}),e}}cloneToDir(e,t,n){this.fs.rmSync(t,{recursive:!0,force:!0});let r=`git clone --depth 1 ${e} ${t}`;try{this.exec(r,{timeout:6e4,stdio:`pipe`})}catch(e){let t=e instanceof Error?e.message:String(e);throw Error(`Failed to clone plugin "${n}": ${t}`)}}readRegistry(){if(!this.fs.existsSync(this.registryPath))return{};try{let e=this.fs.readFileSync(this.registryPath,`utf-8`),t=JSON.parse(e);return typeof t==`object`&&t?t:{}}catch{return{}}}writeRegistry(e){let t=C(this.registryPath);this.fs.existsSync(t)||this.fs.mkdirSync(t,{recursive:!0}),this.fs.writeFileSync(this.registryPath,JSON.stringify(e,null,2),`utf-8`)}};function Z(e,t=new R){if(!t.existsSync(e))return{};try{let n=t.readFileSync(e,`utf-8`),r=JSON.parse(n);return typeof r==`object`&&r?r:{}}catch{return{}}}function Hs(e,t,n=new R){let r=C(e);n.existsSync(r)||n.mkdirSync(r,{recursive:!0}),n.writeFileSync(e,JSON.stringify(t,null,2),`utf-8`)}function Us(e,t,n=new R){let r=w(e,`installed_plugins.json`);if(!n.existsSync(r))return;let i;try{let e=n.readFileSync(r,`utf-8`),t=JSON.parse(e);if(typeof t!=`object`||!t)return;i=t}catch{return}let a=!1;for(let[e,r]of Object.entries(i))r.marketplace===t&&(r.installPath&&n.existsSync(r.installPath)&&n.rmSync(r.installPath,{recursive:!0,force:!0}),delete i[e],a=!0);if(a){let e=C(r);n.existsSync(e)||n.mkdirSync(e,{recursive:!0}),n.writeFileSync(r,JSON.stringify(i,null,2),`utf-8`)}}const Ws=6e4;var Gs=class{pluginsDir;exec;marketplacesDir;registryPath;fs;constructor(e){this.pluginsDir=e.pluginsDir,this.exec=e.exec,this.marketplacesDir=w(this.pluginsDir,`marketplaces`),this.registryPath=w(this.pluginsDir,`known_marketplaces.json`),this.fs=e.fs??new R}addMarketplace(e){let t=`temp-`+Date.now().toString(36),n=w(this.marketplacesDir,t);if(this.fs.mkdirSync(this.marketplacesDir,{recursive:!0}),e.type===`local`){if(!this.fs.existsSync(e.path))throw Error(`Local marketplace path does not exist: ${e.path}`);this.fs.cpSync(e.path,n,{recursive:!0})}else{let t=`git clone --depth 1 ${this.resolveCloneUrl(e)} ${n}`;try{this.exec(t,{timeout:Ws,stdio:`pipe`})}catch(e){let t=e instanceof Error?e.message:String(e);throw Error(`Failed to clone marketplace: ${t}`)}}let r=w(n,`.claude-plugin`,`marketplace.json`);if(!this.fs.existsSync(r))throw this.fs.rmSync(n,{recursive:!0,force:!0}),Error(e.type===`local`?`Local directory does not contain .claude-plugin/marketplace.json`:`Cloned repository does not contain .claude-plugin/marketplace.json`);let i=this.readManifestFromPath(r).name;if(!i)throw this.fs.rmSync(n,{recursive:!0,force:!0}),Error(`Marketplace manifest does not contain a "name" field`);let a=Z(this.registryPath,this.fs);if(a[i])throw this.fs.rmSync(n,{recursive:!0,force:!0}),Error(`Marketplace "${i}" already exists`);let o=w(this.marketplacesDir,i);return this.fs.renameSync(n,o),a[i]={source:e,installLocation:o,lastUpdated:new Date().toISOString()},Hs(this.registryPath,a,this.fs),i}removeMarketplace(e){let t=Z(this.registryPath,this.fs),n=t[e];if(!n)throw Error(`Marketplace "${e}" not found`);Us(this.pluginsDir,e,this.fs),this.fs.existsSync(n.installLocation)&&this.fs.rmSync(n.installLocation,{recursive:!0,force:!0}),delete t[e],Hs(this.registryPath,t,this.fs)}updateMarketplace(e){let t=Z(this.registryPath,this.fs),n=t[e];if(!n)throw Error(`Marketplace "${e}" not found`);if(!this.fs.existsSync(n.installLocation))throw Error(`Marketplace directory for "${e}" does not exist`);if(n.source.type===`local`){let e=n.source;if(!this.fs.existsSync(e.path))throw Error(`Local marketplace path does not exist: ${e.path}`);this.fs.rmSync(n.installLocation,{recursive:!0,force:!0}),this.fs.cpSync(e.path,n.installLocation,{recursive:!0})}else{let t=`git -C ${n.installLocation} pull`;try{this.exec(t,{timeout:Ws,stdio:`pipe`})}catch(t){let n=t instanceof Error?t.message:String(t);throw Error(`Failed to update marketplace "${e}": ${n}`)}}n.lastUpdated=new Date().toISOString(),Hs(this.registryPath,t,this.fs)}listMarketplaces(){let e=Z(this.registryPath,this.fs);return Object.entries(e).map(([e,t])=>({name:e,source:t.source,lastUpdated:t.lastUpdated}))}fetchManifest(e){let t=Z(this.registryPath,this.fs)[e];if(!t)throw Error(`Marketplace "${e}" not found`);let n=w(t.installLocation,`.claude-plugin`,`marketplace.json`);if(!this.fs.existsSync(n))throw Error(`Marketplace "${e}" does not contain .claude-plugin/marketplace.json`);return this.readManifestFromPath(n)}getMarketplaceDir(e){let t=Z(this.registryPath,this.fs)[e];if(!t)throw Error(`Marketplace "${e}" not found`);return t.installLocation}getMarketplaceSha(e){let t=this.getMarketplaceDir(e);try{return this.exec(`git -C ${t} rev-parse HEAD`,{timeout:Ws,stdio:`pipe`}).toString().trim().slice(0,12)}catch{return`unknown`}}listAvailablePlugins(){let e=[],t=this.listMarketplaces();for(let{name:n}of t)try{let t=this.fetchManifest(n);for(let r of t.plugins)e.push({...r,marketplace:n})}catch{}return e}resolveCloneUrl(e){switch(e.type){case`github`:return`https://github.com/${e.repo}.git`;case`git`:return e.url;case`local`:throw Error(`Local source type does not use git cloning`);case`url`:throw Error(`URL marketplace source is not yet supported`)}}readManifestFromPath(e){let t=this.fs.readFileSync(e,`utf-8`),n=JSON.parse(t);if(typeof n!=`object`||!n)throw Error(`Invalid marketplace manifest: not an object`);if(typeof n.name!=`string`)throw Error(`Invalid marketplace manifest: missing "name" field`);return n}};function Ks(e){let t=w(C(C(e.pluginDir)),`data`,e.manifest.name);return{CLAUDE_PLUGIN_ROOT:e.pluginDir,CLAUDE_PLUGIN_PATH:e.pluginDir,CLAUDE_PLUGIN_DATA:t}}function qs(e,t){return Array.isArray(e.hooks)?{...e,hooks:e.hooks.map(e=>typeof e.command==`string`?{...e,command:e.command.replace(/\$\{CLAUDE_PLUGIN_ROOT\}/g,t)}:e)}:e}function Js(e){let t={};for(let n of e){let e=n.hooks;if(!e)continue;let r=Ks(n),i=e.hooks??e;for(let[e,a]of Object.entries(i)){if(!Array.isArray(a))continue;t[e]||(t[e]=[]);let i=a.map(e=>{let t=qs(e,n.pluginDir);return t.env=r,t});t[e].push(...i)}}return t}function Ys(e,t){if(Object.keys(t).length===0)return e;let n={};for(let[e,r]of Object.entries(t))n[e]=[...r];if(e)for(let[t,r]of Object.entries(e))Array.isArray(r)&&(n[t]||(n[t]=[]),n[t].push(...r));return n}async function Xs(e){let t=e.cwd,[n,r,i]=await Promise.all([e.config?Promise.resolve(e.config):ts(t),e.bare?Promise.resolve({agentsMd:``,claudeMd:``,agentsFileEntries:[],claudeFileEntries:[]}):Fs(t),e.bare?Promise.resolve({type:`unknown`,language:`unknown`}):qi(t)]),a=e.language?{...n,language:e.language}:n,o=new Bs(w(D(),`.robota`,`plugins`));if(!e.bare)try{let e=o.loadPluginsSync();if(e.length>0){let t=Js(e);a={...a,hooks:Ys(a.hooks,t)}}}catch{}let s=H(t);await Qs(e)||await Zs(e,t);let c=e.resumeSessionId&&!e.forkSession?e.resumeSessionId:void 0,{session:l,rebuildSystemMessage:u}=Co({config:a,cwd:t,context:r,projectInfo:i,permissionMode:e.permissionMode,maxTurns:e.maxTurns,terminal:ai,sessionLogger:new xe(s.logs),permissionHandler:e.permissionHandler,provider:e.provider,onTextDelta:e.onTextDelta,onContextUpdate:e.onContextUpdate,onCompactEvent:e.onCompactEvent,onToolExecution:e.onToolExecution,sessionId:c,allowedTools:e.allowedTools,deniedTools:e.deniedTools,model:e.model,appendSystemPrompt:e.appendSystemPrompt,...e.systemPrompt?{systemPromptBuilder:()=>e.systemPrompt}:{},backgroundTaskRunners:e.backgroundTaskRunners,subagentRunnerFactory:e.subagentRunnerFactory,...e.commandModules?.some(e=>e.sessionRequirements?.includes(`agent-runtime`))?{enableAgentRuntime:!0}:{},...e.commandModules||e.commandDescriptors?{commandDescriptors:[...e.commandDescriptors??[],...e.commandModules?.flatMap(e=>e.commandDescriptors??[])??[]]}:{},modelCommandExecutor:e.modelCommandExecutor,isModelCommandInvocable:e.isModelCommandInvocable,editCheckpointRecorder:e.editCheckpointRecorder,reversibleExecution:e.reversibleExecution,sandboxClient:e.sandboxClient,agentName:e.agentName,...e.additionalTools?{additionalTools:e.additionalTools}:{},...e.responseFormat?{responseFormat:e.responseFormat}:{}});return{session:l,agentsFileEntries:r.agentsFileEntries??[],claudeFileEntries:r.claudeFileEntries??[],rebuildSystemMessage:u}}async function Zs(e,t){if(e.workspaceManifest){if(!e.sandboxClient)throw Error(`workspaceManifest requires sandboxClient.`);await ue(e.sandboxClient,e.workspaceManifest,{hostRoot:t,...e.sandboxWorkspaceRoot?{targetRoot:e.sandboxWorkspaceRoot}:{}})}}async function Qs(e){if(!e.sandboxSnapshotId)return!1;if(!e.sandboxClient?.restore)throw Error(`sandboxSnapshotId requires sandboxClient with restore().`);return await e.sandboxClient.restore(e.sandboxSnapshotId),!0}async function $s(e,t){let n=e.config??await ts(e.cwd),r=n.autoCompactThreshold===void 0?`default`:`settings`,i=new Mi({cwd:e.cwd});t.setEditCheckpointStore(i);let a=await Xs({cwd:e.cwd,provider:e.provider,config:n,permissionMode:e.permissionMode,maxTurns:e.maxTurns,permissionHandler:e.permissionHandler,resumeSessionId:t.resumeSessionId,forkSession:e.forkSession,onTextDelta:t.onTextDelta,onContextUpdate:t.onContextUpdate,onCompactEvent:t.onCompactEvent,onToolExecution:t.onToolExecution,bare:e.bare,allowedTools:e.allowedTools,deniedTools:e.deniedTools,model:e.model,appendSystemPrompt:e.appendSystemPrompt,...e.systemPrompt?{systemPrompt:e.systemPrompt}:{},language:e.language,backgroundTaskRunners:e.backgroundTaskRunners,subagentRunnerFactory:e.subagentRunnerFactory,...e.commandModules?{commandModules:e.commandModules}:{},editCheckpointRecorder:i,...e.reversibleExecution?{reversibleExecution:e.reversibleExecution}:{},...e.sandboxClient?{sandboxClient:e.sandboxClient}:{},...e.workspaceManifest?{workspaceManifest:e.workspaceManifest}:{},...e.sandboxWorkspaceRoot?{sandboxWorkspaceRoot:e.sandboxWorkspaceRoot}:{},...t.sandboxSnapshotId?{sandboxSnapshotId:t.sandboxSnapshotId}:{},...e.agentName?{agentName:e.agentName}:{},...e.additionalTools?{additionalTools:e.additionalTools}:{},...e.responseFormat?{responseFormat:e.responseFormat}:{},commandDescriptors:t.commandDescriptors,...t.commandDescriptors.length>0?{modelCommandExecutor:t.executeModelCommand,isModelCommandInvocable:t.isModelCommandInvocable}:{}});if(t.pendingRestoreMessages){for(let e of t.pendingRestoreMessages)Ji(a.session,e);a.session.syncContextFromHistory()}return{session:a.session,agentsFileEntries:a.agentsFileEntries,claudeFileEntries:a.claudeFileEntries,rebuildSystemMessage:a.rebuildSystemMessage,autoCompactThresholdSource:r}}function ec(e,t,n,r,i,a,o,s,c,l){try{let u=t.getSessionId(),d=e.load(u),f=l?.snapshotId??d?.sandboxSnapshotId;e.save(tc({session:t,sessionId:u,sessionName:n??d?.name,cwd:r,history:i,createdAt:d?.createdAt,backgroundState:a,memoryState:o,skillActivationState:s,contextReferenceState:c,...f===void 0?{}:{sandboxSnapshotId:f}}))}catch{}}function tc(e){return{id:e.sessionId,...e.sessionName===void 0?{}:{name:e.sessionName},cwd:e.cwd,createdAt:e.createdAt??new Date().toISOString(),updatedAt:new Date().toISOString(),messages:e.session.getHistory(),history:e.history,systemPrompt:e.session.getSystemMessage(),toolSchemas:e.session.getToolSchemas(),...e.sandboxSnapshotId===void 0?{}:{sandboxSnapshotId:e.sandboxSnapshotId},...nc(e.backgroundState),...rc(e.memoryState),...ic(e.skillActivationState),...ac(e.contextReferenceState)}}function nc(e){return e?{backgroundTasks:[...e.tasks],backgroundTaskEvents:[...e.events],backgroundJobGroups:[...e.groups??[]],backgroundJobGroupEvents:[...e.groupEvents??[]]}:{}}function rc(e){return e?{memoryEvents:[...e.events],usedMemoryReferences:[...e.usedReferences]}:{}}function ic(e){return e?{skillActivationEvents:[...e.events]}:{}}function ac(e){return e?{contextReferences:[...e.references]}:{}}function oc(e){return e.source===`skill`||e.source===`plugin`&&e.skillContent?`skill`:`builtin-command`}function sc(e){let t=e.source===`skill`||e.source===`plugin`&&!!e.skillContent;return{name:e.name,kind:oc(e),description:e.description,userInvocable:e.userInvocable!==!1,modelInvocable:e.modelInvocable===!0||t&&e.disableModelInvocation!==!0,...e.argumentHint?{argumentHint:e.argumentHint}:{},...e.safety?{safety:e.safety}:{}}}var cc=class{sources=[];addSource(e){this.sources.push(e)}replaceSource(e,t){this.sources=this.sources.filter(t=>t.name!==e),t!==void 0&&this.sources.push(t)}addModule(e){for(let t of e.commandSources??[])this.addSource(t)}getCommands(e){let t=[];for(let e of this.sources)t.push(...e.getCommands());if(!e)return t;let n=e.toLowerCase();return t.filter(e=>e.name.toLowerCase().startsWith(n))}resolveQualifiedName(e){let t=this.getCommands().filter(t=>t.source===`plugin`&&t.name.includes(`:`)&&t.name.endsWith(`:${e}`));return t.length===1?t[0].name:null}getSubcommands(e){let t=e.toLowerCase();for(let e of this.sources)for(let n of e.getCommands())if(n.name.toLowerCase()===t&&n.subcommands)return n.subcommands;return[]}getCapabilityDescriptors(){return this.getCommands().map(e=>sc(e))}},lc=class{commands;constructor(e){this.commands=new Map;for(let t of e??uc())this.commands.set(t.name,t)}register(e){this.commands.set(e.name,e)}async execute(e,t,n){let r=this.getCommand(e);return r?await this.executeCommand(r,t,n):null}getCommand(e){return this.commands.get(e)}resolveRequiresPermission(e){return e.requiresPermission===void 0?e.safety!==`read-only`:e.requiresPermission}async executeCommand(e,t,n){return await e.execute(t,n)}listCommands(){return[...this.commands.values()]}listModelInvocableCommands(){return this.listCommands().filter(e=>e.modelInvocable===!0).map(e=>({name:e.name,kind:`builtin-command`,description:e.description,userInvocable:e.userInvocable!==!1,modelInvocable:!0,...e.argumentHint?{argumentHint:e.argumentHint}:{},...e.safety?{safety:e.safety}:{},requiresPermission:this.resolveRequiresPermission(e)}))}isModelInvocable(e){return this.commands.get(e)?.modelInvocable===!0}async executeModelInvocable(e,t,n){return this.isModelInvocable(e)?this.execute(e,t,n):null}hasCommand(e){return this.commands.has(e)}};function uc(){return[]}function dc(e){return{name:e.name,description:e.description,source:`builtin`,...e.subcommands?{subcommands:[...e.subcommands]}:{},...e.argumentHint?{argumentHint:e.argumentHint}:{},...e.modelInvocable===void 0?{}:{modelInvocable:e.modelInvocable},...e.userInvocable===void 0?{}:{userInvocable:e.userInvocable},...e.safety?{safety:e.safety}:{}}}var fc=class{name=`builtin`;commands;constructor(e=uc()){this.commands=e.map(dc)}getCommands(){return this.commands}};function pc(){let e=uc();return{name:`sdk-builtin`,commandSources:[new fc(e)],systemCommands:e}}function mc(e,t,n){return{...e,providers:{...e.providers??{},[t]:n}}}function hc(e,t){if(!e.providers?.[t])throw Error(`Provider profile "${t}" was not found`);return{...e,currentProvider:t}}function gc(e,t,n={}){if(!e.providers?.[t])throw Error(`Provider profile "${t}" was not found`);let r={...e.providers};if(delete r[t],n.replacementCurrentProvider!==void 0&&r[n.replacementCurrentProvider]===void 0)throw Error(`Provider profile "${n.replacementCurrentProvider}" was not found`);let i={...e,providers:r};if(e.currentProvider!==t)return i;if(n.replacementCurrentProvider!==void 0)return{...i,currentProvider:n.replacementCurrentProvider};let a={...i};return delete a.currentProvider,a}function _c(e,t,n={}){if(!t.type)throw Error(`Provider profile "${e}" is missing type`);let r=n.providerDefinitions??[],i=u(r,t.type);if(i===void 0&&r.length>0)throw Error(`Unknown provider "${t.type}". Supported providers: ${p(r)}`);if(!t.model)throw Error(`Provider profile "${e}" is missing model`);let a=m(i);if(a!==void 0&&!Sc(t,i?.defaults,a))throw Error(`Provider profile "${e}" is missing ${wc(a)}`)}function vc(e,t={}){let n=yc(e,t);return _c(e.profile,n,t),{...e.setCurrent&&{currentProvider:e.profile},providers:{[e.profile]:n}}}function yc(e,t={}){let n=xc(e.type,t.providerDefinitions??[]);if(e.apiKey!==void 0&&e.apiKeyEnv===void 0&&console.warn(`API key stored as plain text in settings. Use --api-key-env for better security.`),e.apiKeyEnv!==void 0){let n=(t.env??process.env)[e.apiKeyEnv];if(n===void 0||n.length===0)throw Error(`Environment variable ${e.apiKeyEnv} is not set — set it before configuring (the profile will reference $ENV:${e.apiKeyEnv})`)}let r=e.apiKeyEnv===void 0?e.apiKey??n.apiKey:f(e.apiKeyEnv),i=e.baseURL??n.baseURL;return{type:e.type,model:e.model??n.model,...Tc(r)&&{apiKey:r},...i!==void 0&&{baseURL:i},...e.timeout!==void 0&&{timeout:e.timeout}}}function bc(e,t){let[n,r]=Object.entries(t.providers)[0]??[];if(!n||!r)return e;let i=mc(e,n,r);return t.currentProvider?hc(i,t.currentProvider):i}function xc(e,t){return u(t,e)?.defaults??{}}function Sc(e,t,n){return n.anyOf.some(n=>h(Cc(n,e,t)))}function Cc(e,t,n){return t[e]??n?.[e]}function wc(e){return e.anyOf.join(` or `)}function Tc(e){return e!==void 0&&e.length>0}async function Ec(e,t,n,r){let i=n??e;if(!i)return{message:`No provider profile selected.`,success:!1};let a=t?.[i];if(!a)return{message:`Provider profile "${i}" was not found.`,success:!1};try{_c(i,a,{providerDefinitions:r.providerDefinitions})}catch(e){return{message:e instanceof Error?e.message:String(e),success:!1}}let o=await((a.type?u(r.providerDefinitions,a.type):void 0)?.probeProfile??Dc)(a);return{message:o.ok?`Provider "${i}" test passed: ${o.message}`:`Provider "${i}" test failed: ${o.message}; manual configuration can continue.`,success:!0,data:{providerTest:{profile:i}}}}async function Dc(e){return{ok:!0,message:`Profile fields are valid; no endpoint probe configured.`}}function Oc(e,t=[]){return kc(e,t)?`valid`:`incomplete`}function kc(e,t){if(typeof e.currentProvider==`string`){let n=e.providers?.[e.currentProvider];return Ac(n?.type,n,t)}return!!(e.provider&&Ac(e.provider.name,e.provider,t))}function Ac(e,t,n){if(!t)return!1;if(!e)return h(t.apiKey);let r=u(n,e);if(r===void 0)return!1;let i=m(r);return i===void 0?!0:jc(t,r,i)}function jc(e,t,n){return n.anyOf.some(n=>h(Mc(n,e,t)))}function Mc(e,t,n){return t[e]??n.defaults?.[e]}function Nc(e,t=[]){if(!b(e))return`missing`;try{let n=x(e,`utf8`).trim();return n.length===0?`incomplete`:Oc(JSON.parse(n),t)}catch{return`corrupt`}}function Pc(e,t=new R){return e.reduce((e,n)=>{let r=Fc(n,t);return r===void 0?e:Ic(e,r)},{})}function Fc(e,t){if(!t.existsSync(e))return;let n=t.readFileSync(e,`utf8`);try{return JSON.parse(n)}catch(t){throw new Xa(e,t instanceof Error?t.message:String(t))}}function Ic(e,t){return{...e,...t,provider:e.provider!==void 0||t.provider!==void 0?{...e.provider,...t.provider}:void 0,providers:e.providers!==void 0||t.providers!==void 0?Lc(e.providers,t.providers):void 0}}function Lc(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Rc(e,t,n){let r=t??e.currentProvider;if(r!==void 0){let t=e.providers?.[r];if(t===void 0)throw Error(`Provider profile "${r}" was not found in providers`);if(!t.type)throw Error(`Provider profile "${r}" is missing type`);return le({name:t.type,model:t.model,apiKey:t.apiKey,baseURL:t.baseURL,timeout:t.timeout,options:t.options},n)}let i=e.provider;if(i?.name)return le({name:i.name,model:i.model,apiKey:i.apiKey,baseURL:i.baseURL,timeout:i.timeout,options:i.options},n)}function zc(){return process.env.HOME??process.env.USERPROFILE??`/`}function Bc(e){let t=zc();return[w(t,`.robota`,`settings.json`),w(t,`.claude`,`settings.json`),w(e,`.robota`,`settings.json`),w(e,`.robota`,`settings.local.json`),w(e,`.claude`,`settings.json`),w(e,`.claude`,`settings.local.json`)]}function Vc(e,t={}){let n=t.settingsPaths??Bc(e),r=Jc(n)??n[0];if(r===void 0)throw Error(`No settings path available for provider update`);return r}function Hc(e){return q(e)}function Uc(e,t,n={}){let r=bc(Hc(e),vc(t,n));return J(e,r),r}function Wc(e,t,n={}){let r=Hc(e),i=r.providers?.[t]!==void 0,a=n.knownProviders?.[t]!==void 0,o=i||a?{...r,currentProvider:t}:hc(r,t);return J(e,o),o}function Gc(e,t,n={}){let r=n.settingsPaths??Bc(e),i=Pc(r),a=n.providerOverride??i.currentProvider;if(typeof a!=`string`)throw Error(`Cannot update model: no active provider profile. Set "currentProvider" in settings.`);return Kc(r,a,t)}function Kc(e,t,n){let r=qc(e,t)??e[0];if(r===void 0)throw Error(`No settings path available for model update`);let i=Hc(r),a=i.providers??{},o=a[t]??{},s={...i,providers:{...a,[t]:{...o,model:n}}};return J(r,s),{settingsPath:r,settings:s,profileName:t}}function qc(e,t){for(let n=e.length-1;n>=0;--n){let r=e[n];if(r!==void 0&&Hc(r).providers?.[t]!==void 0)return r}}function Jc(e){for(let t=e.length-1;t>=0;--t){let n=e[t];if(n!==void 0&&Hc(n).currentProvider!==void 0)return n}}var Yc=class extends Error{constructor(e){super(e),this.name=`ProviderConfigError`}};function Xc(e){return Pc(Bc(e))}function Zc(e,n=process.env){for(let r of e){let e=r.defaults;if(e?.apiKey===void 0||e.model===void 0||!te(e.apiKey))continue;let i=e.apiKey.slice(t.length).trim();if(i.length===0)continue;let a=n[i];if(!(a===void 0||a.length===0))return{name:r.type,model:e.model,apiKey:a,...e.baseURL!==void 0&&{baseURL:e.baseURL},...e.timeout!==void 0&&{timeout:e.timeout},...e.options!==void 0&&{options:e.options},source:`env-default`,sourceEnvVar:i}}}function Qc(e,t={}){let n=Rc(Xc(e),t.providerOverride,t.providerDefinitions??[]);if(n!==void 0)return n;let r=Zc(t.providerDefinitions??[],t.env);if(r!==void 0)return r;throw new Yc("No provider configuration found. Run `robota` to set up.")}function $c(e,t,n={}){let r=n.providerDefinitions??[],i=Qc(e,{...n,providerDefinitions:r}),a=t??i.model;return se({...i,model:a},r)}var el=class{name=`plugin`;plugins;constructor(e){this.plugins=e}getCommands(){let e=[];for(let t of this.plugins){for(let n of t.skills){let r=n.name.includes(`@`)?n.name.split(`@`)[0]:n.name;e.push({name:r,description:`(${t.manifest.name}) ${n.description}`,source:`plugin`,skillContent:n.skillContent,pluginDir:t.pluginDir})}for(let n of t.commands)e.push({name:n.name,description:n.description,source:`plugin`,skillContent:n.skillContent,pluginDir:t.pluginDir})}return e}};const tl=be,nl=`autoCompactThreshold`;function rl(e){return e.getContextState()}function il(e){return e.getAutoCompactThreshold()}function al(e){return e.getAutoCompactThresholdSource?.()??`session`}function ol(e,t,n){if(e.setAutoCompactThreshold){e.setAutoCompactThreshold(t,n);return}let r=e.getSession();if(!r.setAutoCompactThreshold)throw Error(`Command host does not support changing auto-compact threshold.`);r.setAutoCompactThreshold(t)}function sl(e,t){let n=ml(e);return n?(n.write({...n.read(),[nl]:t}),!0):!1}function cl(e){let t=ml(e);if(!t)return!1;let n={...t.read()};return delete n[nl],t.write(n),!0}async function ll(e,t){let n=rl(e),r=e.getSession().getMessageCount();return await e.compactContext(t),{before:n,after:rl(e),beforeMessageCount:r,afterMessageCount:e.getSession().getMessageCount()}}function ul(e){return e.listContextReferences?.()??[]}async function dl(e,t){return e.addContextReference?e.addContextReference(t):{evicted:[],diagnostics:[`Command host does not support context reference additions.`]}}function fl(e,t){return e.removeContextReference?.(t)??{}}function pl(e){return e.clearContextReferences?.()??{removed:[]}}function ml(e){return e.getCommandHostAdapters?.().settings}function hl(e,t={}){let n=gl(e.type)??`provider`,r=new Set(t.existingProfileNames??[]);if(!r.has(n))return n;let i=2;for(;r.has(`${n}-${i}`);)i+=1;return`${n}-${i}`}function gl(e){let t=e?.trim().toLowerCase().replace(/[^a-z0-9]+/g,`-`).replace(/^-+|-+$/g,``);return t!==void 0&&t.length>0?t:void 0}const _l=`Show available commands`;function vl(e){return e.listCommands?.()??[]}function yl(e){return[`Available commands:`,...vl(e).flatMap(e=>{let t=e.displayName??e.name,n=`/${e.name}`,r=` ${(e.displayName?`${t} (${n})`:n).padEnd(32)} — ${e.description}`;return e.example?[r,` Example: ${e.example}`]:[r]})].join(`
|
|
96
|
+
`)}const bl=`List and control background tasks`,xl=`Usage: background list | background read <task-id> [offset] | background cancel <task-id> | background close <task-id>`;function Sl(){return[{name:`list`,description:`List background tasks`,source:`background`},{name:`read`,description:`Read a background task log page`,source:`background`},{name:`cancel`,description:`Cancel a running background task`,source:`background`},{name:`close`,description:`Dismiss a terminal background task`,source:`background`}]}function Cl(e){let t=e.promptPreview??e.commandPreview??``,n=e.unread?` unread`:``,r=e.currentAction?` (${e.currentAction})`:``,i=e.timeoutReason?` timeout=${e.timeoutReason}`:``,a=e.lastActivityAt?` lastActivityAt=${e.lastActivityAt}`:``,o=El(e),s=t?` — ${t}`:``;return`${e.id} [${e.status}${n}${i}${a}${o}] ${e.kind}:${e.label}${r}${s}`}function wl(e){return e.length===0?`No background tasks.`:[`Background tasks:`,...e.map(e=>` ${Cl(e)}`)].join(`
|
|
97
|
+
`)}function Tl(e){if(!e)return;let t=Number.parseInt(e,10);return Number.isNaN(t)?void 0:{offset:t}}function El(e){let t=[];return e.worktreePath&&t.push(`worktree=${e.worktreePath}`),e.branchName&&t.push(`branch=${e.branchName}`),e.worktreeStatus&&t.push(`worktreeStatus="${Dl(e.worktreeStatus)}"`),e.worktreeNextAction&&t.push(`next="${Dl(e.worktreeNextAction)}"`),t.length===0?``:` ${t.join(` `)}`}function Dl(e){let t=e.trim().replace(/\s+/g,` `);return t.length>160?`${t.slice(0,160)}...`:t}function Ol(e,t){return e.listBackgroundTasks(t)}function kl(e,t,n){return e.readBackgroundTaskLog(t,n)}function Al(e,t,n){return e.cancelBackgroundTask(t,n)}function jl(e,t){return e.closeBackgroundTask(t)}const Ml=`Set response language`,Nl=`<code>`,Pl=[{code:`ko`,description:`Korean`},{code:`en`,description:`English`},{code:`ja`,description:`Japanese`},{code:`zh`,description:`Chinese`}];function Fl(e=`language`){return Pl.map(t=>({name:t.code,description:t.description,source:e}))}function Il(e){let t=e.trim().split(/\s+/)[0];return t!==void 0&&t.length>0?t:void 0}function Ll(e=`language`){return`Usage: ${e} <code> (e.g., ko, en, ja, zh)`}const Rl=`Show/change permission mode`,zl=`plan | default | acceptEdits | bypassPermissions`,Bl=`Show/change permission mode and permission rules`,Vl=[`plan`,`default`,`acceptEdits`,`bypassPermissions`];function Hl(e=`mode`){return[{name:`plan`,description:`Plan only, no execution`,source:e},{name:`default`,description:`Ask before risky actions`,source:e},{name:`acceptEdits`,description:`Auto-approve file edits`,source:e},{name:`bypassPermissions`,description:`Skip all permission checks`,source:e}]}function Ul(e){let t=e.trim().split(/\s+/)[0];return t!==void 0&&t.length>0?t:void 0}function Wl(e){return Vl.includes(e)}function Gl(){return`Invalid mode. Valid: ${Vl.join(` | `)}`}function Kl(e){let t=e.getCommandHostAdapters?.().permissionMode;if(t!==void 0)return t;let n=e.getSession();return{getPermissionMode:()=>n.getPermissionMode(),setPermissionMode:e=>n.setPermissionMode(e),listSessionAllowedTools:()=>n.getSessionAllowedTools()}}function ql(e){return Kl(e).getPermissionMode()}function Jl(e,t){Kl(e).setPermissionMode(t)}function Yl(e){return Kl(e).listSessionAllowedTools()}function Xl(e){return{mode:ql(e),sessionAllowed:Yl(e)}}function Zl(e){let t=[`Permission mode: ${e.mode}`];return e.sessionAllowed.length>0?t.push(`Session-approved tools: ${e.sessionAllowed.join(`, `)}`):t.push(`No session-approved tools.`),t.join(`
|
|
98
|
+
`)}const Ql=`Configure TUI status-line visibility and fields such as model, context, tokens, session, and git branch.`,$l=`on | off | reset | git on | git off`,eu={enabled:!0,gitBranch:!0};function tu(e=`statusline`){return[{name:`on`,description:`Show the status line`,source:e},{name:`off`,description:`Hide the status line`,source:e},{name:`reset`,description:`Restore default status-line fields`,source:e},{name:`git`,description:`Show or hide git branch field`,source:e}]}function nu(e){return(e.enabled===void 0||typeof e.enabled==`boolean`)&&(e.gitBranch===void 0||typeof e.gitBranch==`boolean`)}function ru(e){let t=e.statusline;return au(t)?{enabled:typeof t.enabled==`boolean`?t.enabled:eu.enabled,gitBranch:typeof t.gitBranch==`boolean`?t.gitBranch:eu.gitBranch}:{...eu}}function iu(e,t){let n=q(e),r={...ru(n),...t};return n.statusline=r,J(e,n),r}function au(e){return typeof e==`object`&&!!e&&!Array.isArray(e)&&!(e instanceof Date)}const ou=`Manage plugins`,su=`manage | install <name@marketplace> | uninstall <name@marketplace> | enable <name@marketplace> | disable <name@marketplace> | marketplace <action>`,cu=`Reload all plugin resources`;function lu(){return{type:`plugin-tui-requested`}}function uu(){return{type:`plugin-registry-reload-requested`}}function du(e){return e.getCommandHostAdapters?.().plugin}function fu(){return[{name:`manage`,description:`Open plugin manager`,source:`plugin-manager`},{name:`install`,description:`Install a plugin`,source:`plugin-manager`},{name:`uninstall`,description:`Uninstall a plugin`,source:`plugin-manager`},{name:`enable`,description:`Enable a plugin`,source:`plugin-manager`},{name:`disable`,description:`Disable a plugin`,source:`plugin-manager`},{name:`marketplace`,description:`Manage plugin marketplaces`,source:`plugin-manager`,subcommands:[{name:`add`,description:`Add marketplace source`,source:`plugin-manager`},{name:`remove`,description:`Remove marketplace source`,source:`plugin-manager`},{name:`update`,description:`Update marketplace source`,source:`plugin-manager`},{name:`list`,description:`List marketplace sources`,source:`plugin-manager`}]}]}const pu=`Clear conversation history`,mu=`Rename the current session`,hu=`Usage: rename <name>`,gu=`Resume a previous session`,_u=`Show session token usage and estimated cost. /cost budget <amount> sets a monthly budget.`,vu=`Validate current session replay log`,yu=`Exit CLI`;function bu(e){if(e.clearConversationHistory!==void 0){e.clearConversationHistory();return}e.getSession().clearHistory()}function xu(e){let t=e.trim();return t.length>0?t:void 0}function Su(e){return{type:`session-renamed`,name:e}}function Cu(){return{type:`session-picker-requested`}}function wu(){return{type:`session-exit-requested`}}function Tu(e){let t=e.getSession();return{sessionId:t.getSessionId(),messageCount:t.getMessageCount()}}function Eu(e){let t=e.validateCurrentSessionReplayLog?.();if(t!==void 0)return t;let n=e.getSession().getSessionId(),r=w(H(e.getCwd()).logs,`${n}.jsonl`),i=we(r);return{logFile:r,entryCount:i.length,validation:Ee(i)}}function Du(e){let t=e.validation.ok?`Session replay log is valid.`:`Session replay log has ${e.validation.issues.length} issue(s).`,n=[`Log: ${e.logFile}`,`Entries: ${e.entryCount}`];if(e.validation.ok)return[t,...n].join(`
|
|
99
|
+
`);let r=e.validation.issues.map((e,t)=>{let n=Ou(e);return`${t+1}. ${e.code}${n}: ${e.message}`});return[t,...n,``,...r].join(`
|
|
100
|
+
`)}function Ou(e){let t=[];return e.executionId!==void 0&&t.push(`execution=${e.executionId}`),e.round!==void 0&&t.push(`round=${e.round}`),e.toolCallId!==void 0&&t.push(`tool=${e.toolCallId}`),t.length>0?` (${t.join(`, `)})`:``}const ku=`List, inspect, restore, or rollback edit checkpoints.`,Au=`list | inspect CHECKPOINT_ID | restore CHECKPOINT_ID | code CHECKPOINT_ID | rollback CHECKPOINT_ID`;function ju(e=`rewind`){return[{name:`list`,description:`List edit checkpoints`,source:e},{name:`inspect`,description:`Inspect captured files and restore plans`,source:e},{name:`restore`,description:`Restore code to a checkpoint`,source:e},{name:`code`,description:`Restore code to a checkpoint`,source:e},{name:`rollback`,description:`Rollback code through a checkpoint`,source:e}]}function Mu(e){return e.listEditCheckpoints()}function Nu(e,t){if(!e.inspectEditCheckpoint)throw Error(`Checkpoint inspection is not available in this command host.`);return e.inspectEditCheckpoint(t)}function Pu(e,t){return e.restoreEditCheckpoint(t)}function Fu(e,t){return e.rollbackEditCheckpoint(t)}const Iu=[/\b(api[_-]?key|secret|token|password|private key)\b/i,/\b\d{3}-\d{2}-\d{4}\b/,/\b\d{4}[- ]?\d{4}[- ]?\d{4}[- ]?\d{4}\b/,/주민등록|비밀번호|시크릿|토큰/u];function Lu(e){return Iu.some(t=>t.test(e))}function Ru(e){return w(e,`.robota`,`memory`)}function zu(){return{version:1,records:[]}}var Bu=class{fs;path;now;constructor(e,t=()=>new Date,n=new R){this.fs=n,this.path=w(Ru(e),`pending.json`),this.now=t}getPath(){return this.path}list(e){let t=this.read().records;return e?t.filter(t=>t.status===e):t}get(e){return this.read().records.find(t=>t.id===e)}upsert(e,t,n){let r=this.read(),i=this.now().toISOString(),a=r.records.findIndex(t=>t.id===e.id),o={...e,status:t,updatedAt:i,decisionReason:n};a>=0?r.records[a]={...r.records[a],...o}:r.records.push(o),this.write(r)}mark(e,t,n){let r=this.read(),i=r.records.findIndex(t=>t.id===e);if(i<0)throw Error(`Memory candidate not found: ${e}`);let a={...r.records[i],status:t,updatedAt:this.now().toISOString(),decisionReason:n};return r.records[i]=a,this.write(r),a}read(){if(!this.fs.existsSync(this.path))return zu();try{return{version:1,records:JSON.parse(this.fs.readFileSync(this.path,`utf8`)).records??[]}}catch{return zu()}}write(e){this.fs.mkdirSync(C(this.path),{recursive:!0}),this.fs.writeFileSync(this.path,JSON.stringify(e,null,2),`utf8`)}};const Vu=`Project memory command. Use it to inspect project memory when stored context may help, save durable preferences, project conventions, feedback, or references worth reusing across sessions, review pending candidates, and report memory provenance. Do not store secrets, credentials, or transient facts.`,Hu=`list | show [topic] | add <user|feedback|project|reference> <topic> <text> | pending | approve <id> | reject <id> | used`,Uu=`Usage: memory list | memory show [topic] | memory add <user|feedback|project|reference> <topic> <text> | memory pending | memory approve <id> | memory reject <id> | memory used`;function Wu(e=`memory`){return[{name:`list`,description:`List project memory topics`,source:e},{name:`show`,description:`Show project memory index or a topic`,source:e},{name:`add`,description:`Save durable project memory`,source:e},{name:`pending`,description:`List pending memory candidates`,source:e},{name:`approve`,description:`Approve a pending memory candidate`,source:e},{name:`reject`,description:`Reject a pending memory candidate`,source:e},{name:`used`,description:`Show memory references used in the current turn`,source:e}]}function Gu(e,t){return new Ms(e,t)}function Ku(e,t){return new Bu(e,t)}function qu(e,t){let n=e.getCwd();return{project:Gu(n,t),pending:Ku(n,t)}}function Ju(e){return Ts(e)}function Yu(e){return Lu(e)}function Xu(e){return e.getUsedMemoryReferences()}function Zu(e,t,n=()=>new Date){e.recordMemoryEvent({...t,at:n().toISOString()})}function Qu(e,t,n){let r=t?t.split(/\s+/):[],i=e;return i=i.replace(/\$ARGUMENTS\[(\d+)]/g,(e,t)=>r[Number(t)]??``),i=i.replace(/\$ARGUMENTS/g,t),i=i.replace(/\$(\d)(?!\d|\w|\[)/g,(e,t)=>r[Number(t)]??``),i=i.replace(/\$\{CLAUDE_SESSION_ID}/g,n?.sessionId??``),i=i.replace(/\$\{CLAUDE_SKILL_DIR}/g,n?.skillDir??``),i}async function $u(e,t){let n=/!`([^`]+)`/g;if(!n.test(e))return e;n.lastIndex=0;let r=e,i,a=[];for(;(i=n.exec(e))!==null;)a.push({full:i[0],command:i[1]});for(let{full:e,command:n}of a){let i=``;if(t)try{i=t(n)}catch{i=``}r=r.replace(e,i)}return r}async function ed(e,t,n,r){return e.skillContent?Qu(await $u(e.skillContent,n.shellExec),t,r):null}async function td(e,t,n,r){let i=await ed(e,t,n,r);if(i){let n=t||e.description;return`<skill name="${e.name}">\n${i}\n</skill>\n\nExecute the "${e.name}" skill: ${n}`}return`Use the "${e.name}" skill: ${t||e.description}`}async function nd(e,t,n,r){if(e.context===`fork`){if(!n.runInFork)throw Error(`Fork execution is not available. Agent runtime deps may not be initialized.`);let i=await ed(e,t,n,r)??`Use the "${e.name}" skill: ${t||e.description}`,a={};return e.agent&&(a.agent=e.agent),e.allowedTools&&(a.allowedTools=e.allowedTools),{mode:`fork`,result:await n.runInFork(i,a)}}return{mode:`inject`,prompt:await td(e,t,n,r)}}function rd(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function id(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function ad(e,t){let n=t.trim();return n.length>0?`${e} ${n}`:e}function od(e){if(!e?.startsWith(`/`))return;let t=e.slice(1).trim().split(/\s+/)[0];return t&&t.length>0?t:void 0}var sd=class{getSession;getSessionId;onSubmit;onApplyResult;recordSkillActivation;runSkillInFork;onForkSkill;onBlockingCommand;shellExec;commandExecutor;skillCommandSource;commandHostAdapters;commandInvocationSource=`user`;constructor(e,t,n,r,i,a,o,s,c,l,u,d){this.getSession=r,this.getSessionId=i,this.onSubmit=a,this.onApplyResult=o,this.recordSkillActivation=s,this.runSkillInFork=c,this.onForkSkill=l,this.onBlockingCommand=u,this.shellExec=d,this.commandExecutor=new lc(e.flatMap(e=>e.systemCommands??[])),this.skillCommandSource=new Ya(t),this.commandHostAdapters=n}getCommandInvocationSource(){return this.commandInvocationSource}getCommandHostAdapters(){return this.commandHostAdapters??{}}listCommands(){return this.commandExecutor.listCommands().map(e=>({name:e.name,...e.displayName===void 0?{}:{displayName:e.displayName},description:e.description,...e.example===void 0?{}:{example:e.example}}))}listSkills(){return this.skillCommandSource.getCommands().map(e=>({name:e.name,description:e.description,source:e.source,modelInvocable:e.disableModelInvocation!==!0,userInvocable:e.userInvocable!==!1,...e.argumentHint===void 0?{}:{argumentHint:e.argumentHint},...e.context===void 0?{}:{context:e.context},...e.agent===void 0?{}:{agent:e.agent}}))}listModelInvocableCommands(){return this.commandExecutor.listModelInvocableCommands().map(e=>({name:e.name,description:e.description}))}findSkillCommand(e){let t=rd(e);return this.skillCommandSource.getCommands().find(e=>e.name.toLowerCase()===t.toLowerCase())}async executeCommand(e,t){let n=id(e),r=this.commandExecutor.getCommand(n),i=t.trim();if(!r){let e=this.findSkillCommand(n),t=this.commandExecutor.getCommand(`skills`);return!e||!t?null:this.executeCommandWithSource(`user`,t,ad(e.name,i))}return this.executeCommandWithSource(`user`,r,i)}async executeCommandWithSource(e,t,n){let r=this.commandInvocationSource;this.commandInvocationSource=e;try{return t.lifecycle===`blocking`?this.onBlockingCommand(()=>this.executeForegroundCommand(t,n)):await this.commandExecutor.executeCommand(t,this.getSession(),n)}finally{this.commandInvocationSource=r}}async executeModelCommand(e,t){let n=this.commandInvocationSource;this.commandInvocationSource=`model`;try{return await this.commandExecutor.executeModelInvocable(e,this.getSession(),t)}finally{this.commandInvocationSource=n}}async executeSkillCommandByName(e,t,n){let r=this.findSkillCommand(e);if(!r)return null;if(n.invocationSource===`model`){if(r.disableModelInvocation===!0)return{success:!1,message:`Skill is not model-invocable: ${r.name}`};let e=await this.executeSkillWithActivation(r,t,`model-tool`);return{success:!0,message:`Skill activated: ${r.name}`,data:{skill:r.name,mode:e.mode,...e.prompt===void 0?{}:{prompt:e.prompt},...e.result===void 0?{}:{result:e.result}}}}return await this.executeUserResolvedSkillCommand(r,t,n.displayInput,n.rawInput,`user-slash`),{success:!0,message:``,data:{skill:r.name,sessionExecution:!0},effects:[{type:`session-execution-started`}]}}async executeUserResolvedSkillCommand(e,t,n,r,i){if(e.userInvocable===!1)throw Error(`Skill is not user-invocable: ${e.name}`);let a=od(r);if(e.context===`fork`)return this.onForkSkill(e,t,n,a,i);let o=await this.executeSkillWithActivation(e,t,i,a);return o.mode===`inject`?(o.prompt&&await this.onSubmit(o.prompt,n,r),o):(await this.onApplyResult(o.result??`(empty response)`),o)}async executeSkillWithActivation(e,t,n,r){this.emitSkillActivation(e,n,`started`,r);try{let i=await nd(e,t,{runInFork:(e,t)=>this.runSkillInFork(e,t),...this.shellExec?{shellExec:this.shellExec}:{}},{sessionId:this.getSessionId()});return this.emitSkillActivation(e,n,`completed`,r,{appendHistory:!1}),i}catch(t){let i=t instanceof Error?t:Error(String(t));throw this.emitSkillActivation(e,n,`failed`,r,{error:i.message}),i}}emitSkillActivation(e,t,n,r,i={}){let a=Bi({skill:e,invocation:t,status:n,...r===void 0?{}:{qualifiedName:r},...i.error===void 0?{}:{error:i.error}});this.recordSkillActivation(a,i.appendHistory??n!==`completed`)}async executeForegroundCommand(e,t){try{return await this.commandExecutor.executeCommand(e,this.getSession(),t)}catch(e){return{success:!1,message:`Error: ${e instanceof Error?e.message:String(e)}`}}}};function cd(){let e=w(D(),`.robota`,`org-policy.json`);if(!b(e))return null;try{let t=x(e,`utf8`);return JSON.parse(t)}catch{return null}}function ld(e,t){return`${e}${t?`\nContact your administrator: ${t}`:``}`}function ud(e){return e?!e.startsWith(`$ENV:`):!1}var dd=class extends or{session=null;listeners=new Map;initialized=!1;initPromise=null;sessionStore;sessionName;cwd;pendingRestoreMessages=null;resumeSessionId;forkSession;autoCompactThresholdSource=`default`;shutdownPromise=null;sandboxClient;sandboxSnapshotId;agentsFileEntries=[];claudeFileEntries=[];rebuildSystemMessage=null;providerDefinitions=[];orgPolicy=null;bgTracker;histTracker;skillRouter;execCtrl;constructor(e){super(),this.sessionStore=e.sessionStore,this.sessionName=e.sessionName,this.cwd=(`cwd`in e?e.cwd:void 0)??``,this.resumeSessionId=e.resumeSessionId,this.forkSession=e.forkSession??!1,this.sandboxClient=`sandboxClient`in e?e.sandboxClient:void 0,this.sandboxSnapshotId=`sandboxSnapshotId`in e?e.sandboxSnapshotId:void 0;let t=this.cwd,n=null;`session`in e&&e.session&&t&&(n=new Mi({cwd:t})),this.bgTracker=new Kn(()=>this.getBackgroundTaskManager(),(e,t)=>this.execCtrl.emitExecutionWorkspaceUpdated(e,t),e=>this.emit(`background_task_event`,e),e=>this.emit(`background_job_group_event`,e),()=>this.persistCurrentSession(),(e,t)=>this.requestWakeup(e,t),e=>this.histTracker.append(_(c(e)))),this.histTracker=new Wi(t,()=>this.getSessionOrThrow().getSessionId(),()=>this.execCtrl.executing,()=>this.persistCurrentSession(),e=>this.emit(`skill_activation`,e),e=>this.emit(`memory_event`,e),n);let r=[...`commandModules`in e?e.commandModules??[]:[]],i=`commandHostAdapters`in e?e.commandHostAdapters:void 0,a=`shellExec`in e?e.shellExec:void 0;this.skillRouter=new sd(r,t,i,()=>this,()=>this.session?.getSessionId()??``,(e,t,n)=>this.submit(e,t,n),e=>this.execCtrl.applyForkSkillResult(e),(e,t)=>this.histTracker.recordSkillActivationEvent(e,t),(e,t)=>xi(e,t,this.getSessionOrThrow()),(e,t,n,r,i)=>this.execCtrl.executeForkSkillCommand(e,t,n,r,i,(e,t,n)=>this.submit(e,t,n)),e=>this.execCtrl.executeForegroundCommand(e,(e,t,n)=>this.submit(e,t,n)),a),this.execCtrl=new yi(this.histTracker,this.skillRouter,{getSession:()=>this.session,getSessionOrThrow:()=>this.getSessionOrThrow(),getCwd:()=>this.getCwd(),getContextState:()=>this.getContextState(),getExecutionWorkspaceSnapshot:()=>this.getExecutionWorkspaceSnapshot(),emit:(e,...t)=>this.emit(e,...t),persistSession:()=>this.persistCurrentSession()}),`providerDefinitions`in e&&(this.providerDefinitions=e.providerDefinitions??[]),`orgPolicy`in e&&(this.orgPolicy=e.orgPolicy??null);let o=this.configureInjectedSession(e);this.restoreSessionRecordIfNeeded(e),this.startAsyncInitializationIfNeeded(e,o),this.initialized&&this.bgTracker.subscribe(this.session),this.initialized&&this.persistCurrentSession()}configureInjectedSession(e){return`session`in e&&e.session?(this.session=e.session,this.autoCompactThresholdSource=`session`,this.initialized=!0,!0):!1}restoreSessionRecordIfNeeded(e){if(!e.resumeSessionId||!this.sessionStore)return;let t=Yi(this.sessionStore,e.resumeSessionId,this.session);this.histTracker.restoreState({history:t.history,memoryEvents:t.memoryEvents,usedMemoryReferences:t.usedMemoryReferences,contextReferences:t.contextReferences,skillActivationEvents:t.skillActivationEvents}),t.sessionName&&(this.sessionName=t.sessionName),this.bgTracker.restoreState({tasks:t.backgroundTasks,taskEvents:t.backgroundTaskEvents,groups:t.backgroundJobGroups,groupEvents:t.backgroundJobGroupEvents}),this.pendingRestoreMessages=t.pendingRestoreMessages,this.sandboxSnapshotId=this.forkSession?void 0:t.sandboxSnapshotId,this.session&&t.pendingRestoreMessages===null&&(this.session.syncContextFromHistory(),this.emit(`context_update`,this.getContextState()))}startAsyncInitializationIfNeeded(e,t){if(t)return;let n=e;this.initPromise=this.initializeAsync(n)}async initializeAsync(e){let t=await $s(e,{sandboxSnapshotId:this.sandboxSnapshotId,resumeSessionId:this.resumeSessionId,pendingRestoreMessages:this.pendingRestoreMessages,onTextDelta:e=>this.execCtrl.handleTextDelta(e),onContextUpdate:e=>this.emit(`context_update`,e),onCompactEvent:e=>this.execCtrl.handleCompactEvent(e),onToolExecution:e=>this.execCtrl.handleToolExecution(e),executeModelCommand:(e,t)=>this.executeModelCommand(e,t),isModelCommandInvocable:e=>this.skillRouter.commandExecutor.isModelInvocable(e),commandDescriptors:this.skillRouter.commandExecutor.listModelInvocableCommands(),setEditCheckpointStore:e=>this.histTracker.setEditCheckpointStore(e)});this.session=t.session,this.agentsFileEntries=t.agentsFileEntries,this.claudeFileEntries=t.claudeFileEntries,this.rebuildSystemMessage=t.rebuildSystemMessage,this.autoCompactThresholdSource=t.autoCompactThresholdSource,this.histTracker.recordSystemContextFiles([...t.agentsFileEntries,...t.claudeFileEntries]),this.pendingRestoreMessages=null,this.initialized=!0,this.bgTracker.subscribe(this.session),this.persistCurrentSession(),this.emit(`context_update`,this.getContextState())}async ensureInitialized(){!this.initialized&&this.initPromise&&await this.initPromise}getSessionOrThrow(){if(!this.session)throw Error(`InteractiveSession not initialized. Call submit() or await initialization.`);return this.session}getCwd(){if(!this.cwd)throw Error(`cwd is not set — provide cwd in session options`);return this.cwd}get sessionId(){return this.session?.getSessionId()??``}on(e,t){this.listeners.has(e)||this.listeners.set(e,new Set),this.listeners.get(e).add(t)}off(e,t){this.listeners.get(e)?.delete(t)}emit(e,...t){let n=this.listeners.get(e);if(n)for(let e of n)e(...t)}async submit(e,t,n,r={}){if(await this.ensureInitialized(),this.execCtrl.shuttingDown)throw Error(`Interactive session is shutting down.`);if(this.execCtrl.executing){this.execCtrl.pendingPrompt=e,this.execCtrl.pendingDisplayInput=t,this.execCtrl.pendingRawInput=n,this.execCtrl.pendingTurnOptions=r;return}await this.execCtrl.executePrompt(e,t,n,this.agentsFileEntries,this.claudeFileEntries,this.rebuildSystemMessage,(e,t)=>{this.agentsFileEntries=e,this.claudeFileEntries=t,this.histTracker.recordSystemContextFiles([...e,...t])},(e,t,n,r)=>this.submit(e,t,n,r),r)}requestWakeup(e,t){this.execCtrl.shuttingDown||this.execCtrl.wakeTaskIds.has(t)||(this.execCtrl.wakeTaskIds.add(t),this.submit(e,void 0,void 0,{turnSource:`agent-wakeup`,wakeTaskId:t}))}abort(){this.execCtrl.clearPendingQueue(),this.session?.abort()}shutdown(e={}){return this.shutdownPromise?this.shutdownPromise:(this.execCtrl.shuttingDown=!0,this.shutdownPromise=(async()=>{await this.ensureInitialized(),this.execCtrl.clearPendingQueue();let t=this.session;t?.abort(),await this.getBackgroundTaskManager()?.shutdown(e.message??`Session shutdown`),this.bgTracker.dispose(),await this.captureSandboxSnapshot(),this.persistCurrentSession(),await t?.shutdown({reason:e.reason??`other`}),this.listeners.clear()})(),this.shutdownPromise)}get isInitialized(){return this.initialized}getAutoCompactThresholdSource(){return this.autoCompactThresholdSource}getAutoCompactThreshold(){return this.getSessionOrThrow().getAutoCompactThreshold()}getSession(){return this.getSessionOrThrow()}getAgentJobCapability(){return this}setAutoCompactThreshold(e,t=`session`){this.getSessionOrThrow().setAutoCompactThreshold(e),this.autoCompactThresholdSource=t,this.emit(`context_update`,this.getContextState()),this.persistCurrentSession()}clearConversationHistory(){this.getSessionOrThrow().clearHistory(),this.histTracker.clearHistory(),this.persistCurrentSession(),this.emit(`context_update`,this.getContextState())}getName(){return this.sessionName}attachTransport(e){e.attach(this)}setName(e){if(this.sessionName=e,this.sessionStore&&this.session)try{let t=this.getSessionOrThrow().getSessionId(),n=this.sessionStore.load(t);n&&(n.name=e,n.updatedAt=new Date().toISOString(),this.sessionStore.save(n))}catch{}}getBackgroundTaskManager(){if(this.session)return qt(this.session)??I(this.session)?.backgroundTaskManager}async captureSandboxSnapshot(){if(this.sandboxClient?.snapshot)try{this.sandboxSnapshotId=await this.sandboxClient.snapshot()}catch(e){let t=e instanceof Error?e:Error(String(e));this.histTracker.append(_(c(`Sandbox snapshot error: ${t.message}`))),this.emit(`error`,t)}}persistCurrentSession(){if(!this.sessionStore||!this.session)return;let e=this.bgTracker.getState(),t=this.histTracker.getState();ec(this.sessionStore,this.session,this.sessionName,this.cwd??``,t.history,{tasks:e.tasks,events:e.taskEvents,groups:e.groups,groupEvents:e.groupEvents},{events:t.memoryEvents,usedReferences:t.usedMemoryReferences},{events:t.skillActivationEvents},{references:t.contextReferences},{snapshotId:this.sandboxSnapshotId})}async switchProvider(e){let t=this.getSessionOrThrow(),n=this.getCwd(),r=Qc(n,{providerOverride:e,providerDefinitions:this.providerDefinitions}),i=$c(n,void 0,{providerOverride:e,providerDefinitions:this.providerDefinitions});t.swapProvider(i,r.model)}async executeCommand(e,t){if(this.orgPolicy?.blockedCommands?.includes(e))return{message:ld(`Command /${e} is blocked by your organization policy.`,this.orgPolicy.adminContact),success:!1};let n=await super.executeCommand(e,t);if(n===null)return null;let r=n.effects?.find(e=>e.type===`provider-hot-swap-requested`);if(r){let{orgPolicy:e}=this;return e?.allowedProviders&&!e.allowedProviders.includes(r.profileName)?{message:ld(`Provider "${r.profileName}" is not allowed by your organization policy. Allowed: ${e.allowedProviders.join(`, `)}.`,e.adminContact),success:!1}:(await this.switchProvider(r.profileName),{...n,effects:n.effects?.filter(e=>e.type!==`provider-hot-swap-requested`)})}return n}};function fd(e,t=new R){let n=H(e);return new gd(n.sessions,n.logs,t)}function pd(e,t){return(e?.list()??[]).filter(e=>e.cwd===t).sort((e,t)=>new Date(t.updatedAt).getTime()-new Date(e.updatedAt).getTime()).map(e=>({id:e.id,...e.name===void 0?{}:{name:e.name},cwd:e.cwd,updatedAt:e.updatedAt,messageCount:e.messages.length,preview:_d(e.messages)}))}function md(e,t){return pd(e,t)[0]?.id}function hd(e,t){return(e?.list()??[]).find(e=>e.id===t||e.name===t)?.id}var gd=class{store;logsDir;fs;constructor(e,t,n=new R){this.store=new Ce(e),this.logsDir=t,this.fs=n}save(e){this.store.save(vd(e))}load(e){let t=this.store.load(e);return t===void 0?this.loadFromReplayLog(e):yd(t)}list(){let e=this.store.list().map(yd),t=new Set(e.map(e=>e.id));for(let n of this.listReplayLogRecords())t.has(n.id)||e.push(n);return e.sort((e,t)=>new Date(t.updatedAt).getTime()-new Date(e.updatedAt).getTime())}delete(e){this.store.delete(e)}loadFromReplayLog(e){if(!this.logsDir)return;let t=Te(we(w(this.logsDir,`${e}.jsonl`)));if(!t.sessionId||t.messages.length===0)return;let n=t.backgroundTaskEvents,r=t.backgroundJobGroupEvents;return{id:t.sessionId,cwd:t.cwd??``,createdAt:t.createdAt??t.updatedAt??new Date(0).toISOString(),updatedAt:t.updatedAt??t.createdAt??new Date(0).toISOString(),messages:t.messages,history:t.history,backgroundTasks:bd(n),backgroundTaskEvents:n,backgroundJobGroups:Sd(r),backgroundJobGroupEvents:r,skillActivationEvents:[],memoryEvents:t.memoryEvents}}listReplayLogRecords(){return!this.logsDir||!this.fs.existsSync(this.logsDir)?[]:this.fs.readdirSync(this.logsDir).filter(e=>e.endsWith(`.jsonl`)).map(e=>this.loadFromReplayLog(e.slice(0,-6))).filter(e=>e!==void 0)}};function _d(e){for(let t of[...e].reverse())if(t.role===`assistant`&&typeof t.content==`string`)return t.content.replace(/[\n\r]+/g,` `).trim();return``}function vd(e){return{...e}}function yd(e){return{id:e.id,...e.name===void 0?{}:{name:e.name},cwd:e.cwd,createdAt:e.createdAt,updatedAt:e.updatedAt,messages:e.messages,...e.history===void 0?{}:{history:e.history},...e.systemPrompt===void 0?{}:{systemPrompt:e.systemPrompt},...e.toolSchemas===void 0?{}:{toolSchemas:e.toolSchemas},...e.backgroundTasks===void 0?{}:{backgroundTasks:e.backgroundTasks},...e.backgroundTaskEvents===void 0?{}:{backgroundTaskEvents:e.backgroundTaskEvents},...e.backgroundJobGroups===void 0?{}:{backgroundJobGroups:e.backgroundJobGroups},...e.backgroundJobGroupEvents===void 0?{}:{backgroundJobGroupEvents:e.backgroundJobGroupEvents},...e.skillActivationEvents===void 0?{}:{skillActivationEvents:e.skillActivationEvents},...e.memoryEvents===void 0?{}:{memoryEvents:e.memoryEvents},...e.usedMemoryReferences===void 0?{}:{usedMemoryReferences:e.usedMemoryReferences},...e.contextReferences===void 0?{}:{contextReferences:e.contextReferences},...e.sandboxSnapshotId===void 0?{}:{sandboxSnapshotId:e.sandboxSnapshotId}}}function bd(e){let t=new Map;for(let n of e){let e=xd(n);e&&t.set(e.id,e)}return[...t.values()]}function xd(e){switch(e.type){case`background_task_created`:case`background_task_started`:case`background_task_updated`:case`background_task_completed`:case`background_task_failed`:case`background_task_cancelled`:return e.task;default:return}}function Sd(e){let t=new Map;for(let n of e)t.set(n.group.id,n.group);return[...t.values()]}function Cd(e){let t=new dd({cwd:e.cwd??process.cwd(),provider:e.provider,permissionMode:e.permissionMode??`bypassPermissions`,maxTurns:e.maxTurns,permissionHandler:e.permissionHandler,additionalTools:e.additionalTools,...e.responseFormat?{responseFormat:e.responseFormat}:{}});return e.onTextDelta&&t.on(`text_delta`,e.onTextDelta),async e=>new Promise((n,r)=>{let i=e=>{s(),n(e.response)},a=e=>{s(),n(e.response)},o=e=>{s(),r(e)},s=()=>{t.off(`complete`,i),t.off(`interrupted`,a),t.off(`error`,o)};t.on(`complete`,i),t.on(`interrupted`,a),t.on(`error`,o),t.submit(e).catch(e=>{s(),r(e instanceof Error?e:Error(String(e)))})})}const wd=[`preferences`,`view-state`,`memory-projections`,`task-associations`,`workflow-metadata`,`inspection-index`],Td=[{category:`preferences`,purpose:`User-local UI and display preferences.`,mayExecuteCommands:!1},{category:`view-state`,purpose:`Last selected panels, filters, and navigation state.`,mayExecuteCommands:!1},{category:`memory-projections`,purpose:`Inspectable local memory item projections and user choices.`,mayExecuteCommands:!1},{category:`task-associations`,purpose:`User-local associations between sessions, tasks, and background items.`,mayExecuteCommands:!1},{category:`workflow-metadata`,purpose:`Transparent workflow metadata that is not repo-owned.`,mayExecuteCommands:!1},{category:`inspection-index`,purpose:`Category and item summaries for user inspection and deletion.`,mayExecuteCommands:!1}];function Ed(e){return e.toISOString()}function Dd(e,t){if(t.trim().length===0)throw Error(`${e} must not be empty.`);if(!S.isAbsolute(t))throw Error(`${e} must be an absolute path: ${t}`)}function Od(){return process.env.HOME??D()}function kd(e,t){let n=S.relative(e,t);return n===``||!n.startsWith(`..`)&&!S.isAbsolute(n)}async function Ad(e,t){let n=e;for(;S.dirname(n)!==n;)try{let r=await t.realpath(n),i=S.relative(n,e);return S.resolve(r,i)}catch{n=S.dirname(n)}try{return await t.realpath(n)}catch{return S.resolve(e)}}async function jd(e){let t=e.fsAsync??new z,n=S.resolve(e.activeRepositoryRoot);Dd(`activeRepositoryRoot`,n);let r=e.storageRoot===void 0?S.join(e.homeDir??Od(),`.robota`):e.storageRoot;Dd(`userLocalStorageRoot`,r);let i=S.resolve(r),a=await Ad(i,t);if(kd(await Ad(n,t),a))throw Error(`User-local storage root must be outside the active repository: ${i}`);return i}function Md(e,t){return S.join(e,t)}async function Nd(e,t,n){let r=Md(e,t),i;try{i=await n.readdir(r,{withFileTypes:!0})}catch{return[]}return(await Promise.all(i.map(async i=>{let a=S.join(r,i.name),o=await n.stat(a),s=i.name;return{root:e,category:t,key:s,summary:`${t}/${s}`,source:`user-local-storage`,scope:`user`,storageLocation:a,createdAt:Ed(new Date(o.birthtimeMs)),lastUsedAt:Ed(new Date(o.mtimeMs)),enabled:!0,deleteAvailable:!0,disableAvailable:!1}}))).sort((e,t)=>e.key.localeCompare(t.key))}async function Pd(e){let t=e.fsAsync??new z,n=await jd(e),r=S.resolve(e.activeRepositoryRoot),i=e.createDirectories??!0;return i&&await t.mkdir(n,{recursive:!0}),{root:n,activeRepositoryRoot:r,categories:await Promise.all(Td.map(async e=>{let r=Md(n,e.category);i&&await t.mkdir(r,{recursive:!0});let a=await Nd(n,e.category,t);return{category:e.category,purpose:e.purpose,mayExecuteCommands:e.mayExecuteCommands,storageLocation:r,itemCount:a.length,items:a}})),generatedAt:Ed((e.now??(()=>new Date))())}}const Fd=[`view-preference`,`last-visible-cwd`,`background-selection`,`task-association`,`display-preference`,`inspection-choice`],Id=`.json`,Ld=/^[a-z0-9][a-z0-9._-]*$/u,Rd={"view-preference":`May affect UI panel, filter, density, or sorting display/navigation only.`,"last-visible-cwd":`May display or preselect an already visible workspace context only.`,"background-selection":`May restore the selected background entry in local UI only.`,"task-association":`May group visible tasks by a local association only.`,"display-preference":`May affect local text wrapping, compactness, or visibility only.`,"inspection-choice":`May affect inspection display choices only.`};function zd(e){return e.toISOString()}function Bd(e){return Fd.includes(e)}function Vd(e){if(!Bd(e))throw Error(`Unsupported user-local memory category: ${e}`);return e}function Hd(e,t){let n=t.trim();if(n.length===0)throw Error(`${e} must not be empty.`);if(n.length>80||!Ld.test(n))throw Error(`${e} must use lowercase letters, numbers, dots, underscores, or hyphens: ${t}`);return n}function Ud(e,t,n){let r=t.trim().replace(/\s+/g,` `);if(r.length===0)throw Error(`${e} must not be empty.`);return r.length>n?r.slice(0,n):r}function Wd(e){return Ud(`value`,e,240)}function Gd(e,t){return`${e}__${t}${Id}`}async function Kd(e){let t=await jd(e);return{root:t,memoryRoot:S.join(t,`memory-projections`)}}function qd(e,t){let n=JSON.parse(e),r=Q(n,`category`);if(n.schemaVersion!==1)throw Error(`Unsupported user-local memory schema at ${t}`);return{schemaVersion:1,category:Vd(r),key:Q(n,`key`),value:Q(n,`value`),summary:Q(n,`summary`),source:Q(n,`source`),scope:Q(n,`scope`),createdAt:Q(n,`createdAt`),lastUsedAt:Q(n,`lastUsedAt`),enabled:Jd(n,`enabled`)}}function Q(e,t){let n=e[t];if(typeof n!=`string`)throw Error(`Invalid user-local memory field: ${t}`);return n}function Jd(e,t){let n=e[t];if(typeof n!=`boolean`)throw Error(`Invalid user-local memory field: ${t}`);return n}function Yd(e,t,n){return{root:e,category:n.category,key:n.key,summary:n.summary,valueSummary:Wd(n.value),source:n.source,scope:n.scope,storageLocation:t,createdAt:n.createdAt,lastUsedAt:n.lastUsedAt,enabled:n.enabled,displayNavigationRule:Rd[n.category],commandExecutionEffect:`none`,deleteAvailable:!0,disableAvailable:!0}}async function Xd(e,t,n){return Yd(e,t,qd(await n.readFile(t,`utf8`),t))}async function Zd(e){let t=Vd(e.category),n=Hd(`key`,e.key),{root:r,memoryRoot:i}=await Kd(e);return{root:r,storageLocation:S.join(i,Gd(t,n))}}async function Qd(e){let t=e.fsAsync??new z,n=Vd(e.category),r=Hd(`key`,e.key),i=Ud(`summary`,e.summary,240),a=Ud(`source`,e.source,80),o=Ud(`scope`,e.scope??`user`,120),s=Wd(e.value),c=zd((e.now??(()=>new Date))()),{root:l,memoryRoot:u}=await Kd(e),d=S.join(u,Gd(n,r)),f=c;try{f=qd(await t.readFile(d,`utf8`),d).createdAt}catch(e){if(e instanceof Error&&e.message.includes(`ENOENT`))f=c;else throw e}let p={schemaVersion:1,category:n,key:r,value:s,summary:i,source:a,scope:o,createdAt:f,lastUsedAt:c,enabled:!0};return await t.mkdir(u,{recursive:!0}),await t.writeFile(d,`${JSON.stringify(p,null,2)}\n`,`utf8`),Yd(l,d,p)}async function $d(e){let t=e.fsAsync??new z,{root:n,memoryRoot:r}=await Kd(e),i;try{i=await t.readdir(r,{withFileTypes:!0})}catch{i=[]}let a=await Promise.all(i.filter(e=>e.isFile()&&e.name.endsWith(Id)).map(e=>Xd(n,S.join(r,e.name),t)));return{root:n,activeRepositoryRoot:S.resolve(e.activeRepositoryRoot),items:a.sort((e,t)=>`${e.category}/${e.key}`.localeCompare(`${t.category}/${t.key}`))}}async function ef(e){let t=e.fsAsync??new z,{root:n,storageLocation:r}=await Zd(e);return Xd(n,r,t)}async function tf(e){let t=e.fsAsync??new z,{root:n,storageLocation:r}=await Zd(e),i={...qd(await t.readFile(r,`utf8`),r),enabled:!1,lastUsedAt:zd((e.now??(()=>new Date))())};return await t.writeFile(r,`${JSON.stringify(i,null,2)}\n`,`utf8`),Yd(n,r,i)}async function nf(e){let t=e.fsAsync??new z,{storageLocation:n}=await Zd(e);return await t.rm(n),{category:e.category,key:e.key,deleted:!0}}async function rf(e){let t=await ef(e);return t.enabled?t:null}const af=[`test`,`typecheck`,`build`],of={idle:{checkpoint_created:`checkpointed`,cancelled:`cancelled`},checkpointed:{edits_started:`editing`,cancelled:`cancelled`},editing:{edits_applied:`verifying`,verify_failed:`failed`,cancelled:`cancelled`},verifying:{verify_passed:`passed`,verify_failed:`failed`,cancelled:`cancelled`},passed:{},failed:{rollback_completed:`rolled_back`,cancelled:`cancelled`},rolled_back:{},cancelled:{}};function sf(e){return e?Array.from(new Set(e.map(e=>e.trim()).filter(Boolean))):[]}function cf(e){return e.flatMap(e=>af.map(t=>({id:`package-${t}:${e}`,phase:`verify`,description:`Run ${t} for ${e} in a child process against the new on-disk tree.`,required:!0,command:`pnpm --filter ${e} ${t}`})))}function lf(){return[{id:`checkpoint`,phase:`checkpoint`,description:`Create a recoverable turn-level checkpoint before the first mutation.`,required:!0},{id:`atomic-edit`,phase:`edit`,description:`Apply Write/Edit mutations through same-directory temp files and atomic rename.`,required:!0},{id:`handoff`,phase:`handoff`,description:`Keep the current process on already-loaded code and run verification child processes against disk.`,required:!0}]}function uf(e){return{id:`harness-verify`,phase:`verify`,description:`Run Robota harness verification as the local CI-like gate.`,required:!0,command:`pnpm harness:verify -- --base-ref ${e} --skip-record-check`}}function df(){return{id:`rollback-on-failure`,phase:`recover`,description:`Use the existing edit checkpoint restore path if verification fails.`,required:!0}}function ff(e){if(e.changedFiles.length===0)throw Error(`Self-hosting verification requires at least one changed file.`);let t=e.baseRef??`origin/develop`,n=sf(e.packageScopes),r=[...lf(),...cf(n),uf(t),df()];return{changedFiles:[...e.changedFiles],packageScopes:n,baseRef:t,steps:r}}function pf(e,t){let n=of[e][t];if(!n)throw Error(`Invalid self-hosting loop transition: ${e} -> ${t}`);return n}function mf(e){return e}function hf(e){if(!e||e.length===0)return;let[t,...n]=e;if(t!==void 0)return[t,...n]}function gf(e){let t=hf(e),n=t===void 0?v.string().describe(`Registered model-invocable command name to execute`):v.enum(t).describe(`Registered model-invocable command name to execute`);return v.object({command:n,args:v.string().optional().describe(`Arguments to pass to the command`)})}function _f(e){if(e.commandNames!==void 0)return e.commandNames;if(e.commandDescriptors!==void 0)return e.commandDescriptors.map(e=>F(e.name))}function vf(e){return`- ${F(e.name)}${e.argumentHint?` ${e.argumentHint}`:``}: ${e.description}`}function yf(e){let t=`Executes a registered model-invocable Robota command through the command registry. Accepted command names and argument grammar come from registered command descriptors.`;return e===void 0||e.length===0?t:[t,`Use the registered command descriptors below as the authority for when to call this tool.`,``,`Registered model-invocable commands:`,...e.map(vf)].join(`
|
|
101
|
+
`)}function bf(e){let t=gf(_f(e));return he(`ExecuteCommand`,yf(e.commandDescriptors),mf(t),async n=>{let r=t.parse(n),i=F(r.command);return e.isModelInvocable(i)?xn(i,await e.execute(i,r.args??``)):JSON.stringify({success:!1,command:i,error:`Command is not model-invocable: ${i}`})})}function xf(e){return/^\/\S/.test(e)}function Sf(e){let t=e.slice(1).trim().split(/\s+/);return{name:t[0]??``,args:t.slice(1).filter(e=>e.length>0)}}function Cf(e){if(!xf(e))return{type:`user-message`,text:e};let{name:t,args:n}=Sf(e);return{type:`slash-command`,name:t,args:n}}function wf(e,t){return t.type===`pick`?{type:`pick`,id:e,title:`/${e}`,items:t.getItems()}:{type:`confirm`,id:e,message:t.message}}function Tf(e,t){return t.type===`cancelled`?null:e.type===`pick`&&t.type===`pick`?[t.item.value]:e.type===`confirm`&&t.type===`confirm`?[]:null}function Ef(e){return e.map(e=>({name:e.name,description:e.description}))}function Df(e,t){let n=``,r=e=>{n+=e,t.write({type:`assistant-chunk`,chunk:e})},i=()=>{t.write({type:`assistant-done`,fullText:n}),n=``,t.setBusy(!1)},a=e=>{t.write({type:`tool-call`,id:e.executionId??e.toolName,name:e.toolName,args:e.firstArg})},o=e=>{t.write({type:`tool-result`,id:e.executionId??e.toolName,name:e.toolName,result:e.toolResultData??e.result})},s=e=>{t.setBusy(!1),t.write({type:`error`,error:e})},c=()=>{t.setBusy(!1)};return e.on(`text_delta`,r),e.on(`complete`,i),e.on(`tool_start`,a),e.on(`tool_end`,o),e.on(`error`,s),e.on(`interrupted`,c),()=>{e.off(`text_delta`,r),e.off(`complete`,i),e.off(`tool_start`,a),e.off(`tool_end`,o),e.off(`error`,s),e.off(`interrupted`,c)}}function Of(e){let{channel:t,commandModules:n,_testSession:r}=e,i=null,a=null,o={};for(let e of n)e.interactionHints&&Object.assign(o,e.interactionHints);async function s(e){if(!i)return;let n=Cf(e);if(n.type===`user-message`){t.write({type:`user-message`,text:e}),t.setBusy(!0),await i.submit(e);return}let{name:r,args:a}=n,s=o[r],c=a;if(s&&a.length===0){let e=Tf(s,await t.requestAction(wf(r,s)));if(e===null)return;c=e}let l=await i.executeCommand(r,c.join(` `));l?t.write({type:`command-result`,name:r,output:l.message}):t.write({type:`error`,error:Error(`Unknown command "/${r}". Type /help for help.`)})}return{async start(){if(r)i=r;else{let{provider:t,cwd:r,sessionStore:a}=e;if(!t)throw Error(`createInteractiveRuntime: provider is required`);if(!r)throw Error(`createInteractiveRuntime: cwd is required`);i=new dd({provider:t,cwd:r,sessionStore:a,commandModules:n})}a=Df(i,t);let o=i.listCommands();t.setAvailableCommands(Ef(o)),t.onSubmit(s),await t.start()},async stop(){a?.(),await t.stop(),await i?.shutdown(),i=null}}}const kf=[`Allow once`,`Allow for this session`,`Deny`];function Af(e){let t=Object.entries(e);return t.length===0?`(no arguments)`:t.map(([e,t])=>`${e}: ${typeof t==`string`?t:JSON.stringify(t)}`).join(`, `)}async function jf(e,t,n){e.writeLine(``),e.writeError(`[Permission Required] Tool: ${t}`),e.writeLine(` ${Af(n)}`),e.writeLine(``);let r=await e.select(kf,0);return r===1?`allow-session`:r===0}const Mf={usedTokens:0,maxTokens:2e5,usedPercentage:0,remainingPercentage:100},Nf={sessionId:`test-session-id`,updatedAt:new Date().toISOString(),entries:[]},Pf={id:``,parentSessionId:`test-session-id`,waitPolicy:`wait_all`,taskIds:[],status:`completed`,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString(),results:[]};function Ff(e){return{submit:()=>Promise.resolve(),abort:()=>{},cancelQueue:()=>{},shutdown:()=>Promise.resolve(),isExecuting:()=>!1,getPendingPrompt:()=>null,getMessages:()=>[],getContextState:()=>({...Mf}),getSession:()=>({getSessionId:()=>`test-session-id`}),getCwd:()=>`/workspace`,executeCommand:()=>Promise.resolve(null),listCommands:()=>[],on:()=>{},off:()=>{},listBackgroundTasks:()=>[],getBackgroundTask:()=>void 0,cancelBackgroundTask:()=>Promise.resolve(),closeBackgroundTask:()=>Promise.resolve(),sendBackgroundTask:()=>Promise.resolve(),readBackgroundTaskLog:()=>Promise.resolve({taskId:``,lines:[]}),listBackgroundJobGroups:()=>[],getBackgroundJobGroup:()=>void 0,createBackgroundJobGroup:()=>({...Pf}),waitBackgroundJobGroup:()=>Promise.resolve({...Pf}),getExecutionWorkspaceSnapshot:()=>({...Nf}),listAgentDefinitions:()=>[],listAgentJobs:()=>[],spawnAgentJob:()=>Promise.resolve({id:`agent_1`,type:`general-purpose`,label:`general-purpose`,parentSessionId:`test-session-id`,status:`running`,mode:`background`,depth:1,cwd:`/workspace`,promptPreview:``,updatedAt:new Date().toISOString()}),sendAgentJob:()=>Promise.resolve(),cancelAgentJob:()=>Promise.resolve(),closeAgentJob:()=>Promise.resolve(),...e}}function If(){let e=Za();return{deleted:to(e),path:e}}function Lf(e){try{let t=Rf(e);if(!t)return;let n=x(w(t,`HEAD`),`utf8`).trim();if(!n)return;if(n.startsWith(`ref: `)){let e=n.slice(5).trim();return e.startsWith(`refs/heads/`)?e.slice(11):e}return n.slice(0,7)}catch{return}}function Rf(e){let t=E(e),n=C(t);for(;n!==t;){let e=zf(w(t,`.git`),t);if(e)return e;t=n,n=C(t)}return zf(w(t,`.git`),t)}function zf(e,t){if(!b(e))return;let n=Ae(e);if(n.isDirectory())return e;if(!n.isFile())return;let r=x(e,`utf8`).trim();if(!r.startsWith(`gitdir:`))return;let i=r.slice(7).trim();return Ye(i)?i:E(t,i)}function Bf(e,t){let n=Hf(e),r=Hf(t);if(n===void 0||r===void 0)return Math.sign(e.localeCompare(t));let i=Uf(n.major,r.major)||Uf(n.minor,r.minor)||Uf(n.patch,r.patch);return i===0?Wf(n.prerelease,r.prerelease):i}function Vf(e,t){return Bf(e,t)>0}function Hf(e){let[t,n]=(e.trim().replace(/^v/,``).split(`+`)[0]??``).split(`-`,2),[r,i,a]=t.split(`.`),o=$(r),s=$(i),c=$(a);if(!(o===void 0||s===void 0||c===void 0))return{major:o,minor:s,patch:c,prerelease:n?n.split(`.`):[]}}function $(e){if(!(e===void 0||!/^\d+$/.test(e)))return Number(e)}function Uf(e,t){return Math.sign(e-t)}function Wf(e,t){if(e.length===0&&t.length===0)return 0;if(e.length===0)return 1;if(t.length===0)return-1;let n=Math.max(e.length,t.length);for(let r=0;r<n;r+=1){let n=e[r],i=t[r];if(n===void 0)return-1;if(i===void 0)return 1;let a=Gf(n,i);if(a!==0)return a}return 0}function Gf(e,t){let n=$(e),r=$(t);return n!==void 0&&r!==void 0?Uf(n,r):n===void 0?r===void 0?Math.sign(e.localeCompare(t)):1:-1}function Kf(e){let t=C(at(e)),n=[w(t,`..`,`..`,`package.json`),w(t,`..`,`package.json`)];for(let e of n)try{let t=x(e,`utf-8`),n=JSON.parse(t);if(n.version!==void 0&&n.name!==void 0)return n.version}catch{continue}return`0.0.0`}const qf=`@robota-sdk/agent-cli`,Jf=`https://registry.npmjs.org`,Yf=1440*60*1e3,Xf=1500;function Zf(e=process.env.HOME??process.env.USERPROFILE??`/`){return w(e,`.robota`,`update-check.json`)}function Qf(e){if(b(e))try{return pp(JSON.parse(x(e,`utf8`)))}catch{return}}function $f(e,t){je(C(e),{recursive:!0}),Le(e,JSON.stringify(t,null,2)+`
|
|
102
|
+
`,`utf8`)}async function ep(e){if(e.disabled===!0)return{status:`skipped`,reason:`disabled`};let t=e.packageName??`@robota-sdk/agent-cli`,n=e.cachePath??Zf(),r=e.now??new Date,i=e.ttlMs??864e5;if(e.force!==!0){let a=Qf(n);if(a!==void 0&&lp(a,r,i,t))return sp(a,e.currentVersion)}let a=await tp(e,t,n,r);return typeof a==`string`?cp(e.currentVersion,a):a}async function tp(e,t,n,r){let i=await up({fetchImpl:e.fetchImpl??fetch,packageName:t,registryUrl:e.registryUrl??`https://registry.npmjs.org`,timeoutMs:e.timeoutMs??1500});return i.ok?(np(n,{packageName:t,checkedAt:r.toISOString(),currentVersion:e.currentVersion,latestVersion:i.version}),i.version):(np(n,{packageName:t,checkedAt:r.toISOString(),currentVersion:e.currentVersion,errorMessage:i.errorMessage}),{status:`error`,errorMessage:i.errorMessage})}function np(e,t){try{$f(e,t)}catch{}}async function rp(e){let t=await ep(e);return t.status===`update_available`?t.notice:void 0}function ip(e){return e.printMode===!1&&e.disableUpdateCheck===!1}function ap(e){return[`Robota update available: ${e.currentVersion} -> ${e.latestVersion}.`,`Run ${e.installCommand}`].join(` `)}function op(e){return e.status===`update_available`?ap(e.notice):e.status===`current`?`Robota is up to date (${e.currentVersion}).`:e.status===`skipped`?`Robota update check skipped.`:`Robota update check failed: ${e.errorMessage}`}function sp(e,t){return e.errorMessage===void 0?e.latestVersion===void 0?{status:`error`,errorMessage:`Cached update check has no latest version`}:cp(t,e.latestVersion):{status:`error`,errorMessage:e.errorMessage}}function cp(e,t){return Vf(t,e)?{status:`update_available`,notice:{currentVersion:e,latestVersion:t,installCommand:`npm install -g '@robota-sdk/agent-cli@latest'`}}:{status:`current`,currentVersion:e,latestVersion:t}}function lp(e,t,n,r){if(e.packageName!==r)return!1;let i=Date.parse(e.checkedAt);return Number.isFinite(i)?t.getTime()-i<n:!1}async function up(e){try{return{ok:!0,version:await dp(e)}}catch(e){return{ok:!1,errorMessage:e instanceof Error?e.message:String(e)}}}async function dp(e){let t=new AbortController,n=setTimeout(()=>t.abort(),e.timeoutMs);try{let n=fp(e.registryUrl,e.packageName),r=await e.fetchImpl(n,{headers:{accept:`application/json`},signal:t.signal});if(!r.ok)throw Error(`registry responded with HTTP ${r.status}`);let i=(await r.json())[`dist-tags`]?.latest;if(typeof i!=`string`||i.trim().length===0)throw Error(`registry metadata is missing dist-tags.latest`);return i}finally{clearTimeout(n)}}function fp(e,t){return`${e.replace(/\/+$/,``)}/${encodeURIComponent(t)}`}function pp(e){if(!mp(e))return;let t=e;if(typeof t.packageName==`string`&&typeof t.checkedAt==`string`&&typeof t.currentVersion==`string`&&(t.latestVersion===void 0||typeof t.latestVersion==`string`)&&(t.errorMessage===void 0||typeof t.errorMessage==`string`))return{packageName:t.packageName,checkedAt:t.checkedAt,currentVersion:t.currentVersion,...t.latestVersion!==void 0&&{latestVersion:t.latestVersion},...t.errorMessage!==void 0&&{errorMessage:t.errorMessage}}}function mp(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function hp(e){let t=Za(),n={settings:{read:()=>q(t),write:e=>J(t,e)}},r=e.backgroundTaskRunners??oe(),i=e.commandModules??[],a=e.commandHostAdapters??n,o=`sessionStore`in e?e.sessionStore:fd(e.cwd);return{cwd:e.cwd,provider:e.provider,commandModules:i,commandHostAdapters:a,backgroundTaskRunners:r,subagentRunnerFactory:e.subagentRunnerFactory,sessionStore:o,transportRegistry:e.transportRegistry,reloadPluginCommandSource:e.reloadPluginCommandSource??(()=>{}),createSession(t){return new dd({cwd:e.cwd,provider:e.provider,backgroundTaskRunners:r,subagentRunnerFactory:e.subagentRunnerFactory,commandModules:i,commandHostAdapters:a,permissionMode:t.permissionMode,maxTurns:t.maxTurns,sessionStore:t.sessionStore,sessionName:t.sessionName,bare:t.bare,allowedTools:t.allowedTools,deniedTools:t.deniedTools,model:t.model,appendSystemPrompt:t.appendSystemPrompt,systemPrompt:t.systemPrompt,shellExec:t.shellExec,agentName:t.agentName,orgPolicy:e.orgPolicy,additionalTools:t.additionalTools,resumeSessionId:t.resumeSessionId,...t.responseFormat?{responseFormat:t.responseFormat}:{}})}}}function gp(e){let t=hp({cwd:e.cwd??process.cwd(),provider:e.provider,sessionStore:void 0,commandHostAdapters:{settings:{read:()=>({}),write:()=>{}}}}),n=t.createSession.bind(t);return{...t,createSession(e){return n({bare:!0,...e})}}}export{nl as AUTO_COMPACT_THRESHOLD_SETTINGS_KEY,ro as AgentExecutor,bl as BACKGROUND_COMMAND_DESCRIPTION,xl as BACKGROUND_COMMAND_USAGE,un as BUILT_IN_AGENTS,st as BackgroundJobOrchestrator,fc as BuiltinCommandSource,Vs as BundlePluginInstaller,Bs as BundlePluginLoader,pu as CLEAR_COMMAND_DESCRIPTION,Yf as CLI_UPDATE_CACHE_TTL_MS,qf as CLI_UPDATE_PACKAGE_NAME,Jf as CLI_UPDATE_REGISTRY_URL,Xf as CLI_UPDATE_TIMEOUT_MS,_u as COST_COMMAND_DESCRIPTION,cc as CommandRegistry,tl as DEFAULT_AUTO_COMPACT_THRESHOLD,eu as DEFAULT_STATUS_LINE_COMMAND_SETTINGS,j as EXECUTION_ORIGIN_METADATA_KEYS,yu as EXIT_COMMAND_DESCRIPTION,Mi as EditCheckpointStore,_l as HELP_COMMAND_DESCRIPTION,dd as InteractiveSession,Nl as LANGUAGE_COMMAND_ARGUMENT_HINT,Ml as LANGUAGE_COMMAND_DESCRIPTION,Hu as MEMORY_COMMAND_ARGUMENT_HINT,Vu as MEMORY_COMMAND_DESCRIPTION,Uu as MEMORY_COMMAND_USAGE,Cs as MEMORY_INDEX_MAX_BYTES,Ss as MEMORY_INDEX_MAX_LINES,hn as MODEL_COMMAND_TOOL_PREFIX,Gs as MarketplaceClient,Bl as PERMISSIONS_COMMAND_DESCRIPTION,zl as PERMISSION_MODE_ARGUMENT_HINT,Rl as PERMISSION_MODE_COMMAND_DESCRIPTION,su as PLUGIN_COMMAND_ARGUMENT_HINT,ou as PLUGIN_COMMAND_DESCRIPTION,gn as PROVIDER_SAFE_TOOL_NAME_PATTERN,el as PluginCommandSource,Is as PluginSettingsStore,Ms as ProjectMemoryStore,ao as PromptExecutor,Yc as ProviderConfigError,Pl as RECOMMENDED_RESPONSE_LANGUAGES,cu as RELOAD_PLUGINS_COMMAND_DESCRIPTION,mu as RENAME_COMMAND_DESCRIPTION,hu as RENAME_COMMAND_USAGE,gu as RESUME_COMMAND_DESCRIPTION,Au as REWIND_COMMAND_ARGUMENT_HINT,ku as REWIND_COMMAND_DESCRIPTION,$l as STATUSLINE_COMMAND_ARGUMENT_HINT,Ql as STATUSLINE_COMMAND_DESCRIPTION,Xa as SettingsParseError,Ya as SkillCommandSource,lc as SystemCommandExecutor,Fd as USER_LOCAL_MEMORY_CATEGORIES,wd as USER_LOCAL_STORAGE_CATEGORIES,Td as USER_LOCAL_STORAGE_CATEGORY_DEFINITIONS,vu as VALIDATE_SESSION_COMMAND_DESCRIPTION,Vl as VALID_PERMISSION_MODES,dl as addCommandContextReference,Gc as applyActiveModelChange,Uc as applyProviderConfiguration,Wc as applyProviderSwitch,iu as applyStatusLineSettings,mn as assembleSubagentPrompt,Sl as buildBackgroundCommandSubcommands,Fl as buildLanguageCommandSubcommands,Wu as buildMemoryCommandSubcommands,Hl as buildPermissionModeSubcommands,fu as buildPluginCommandSubcommands,wr as buildPromptWithFileReferences,yc as buildProviderProfile,vc as buildProviderSetupPatch,ju as buildRewindCommandSubcommands,tu as buildStatusLineCommandSubcommands,Al as cancelCommandBackgroundTask,ep as checkForCliUpdate,Oc as checkSettingsDocument,Nc as checkSettingsFile,pl as clearCommandContextReferences,hr as clearContextReferences,bu as clearConversationHistory,jl as closeCommandBackgroundTask,ll as compactCommandContext,Bf as compareSemverVersions,hp as createAgentRuntime,Gn as createAgentTool,vt as createBackgroundGroupExecutionEntryId,ja as createBackgroundProcessTool,_t as createBackgroundTaskExecutionEntryId,pc as createBuiltinCommandModule,bf as createCommandExecutionTool,qu as createCommandMemoryStores,Ku as createCommandPendingMemoryStore,Gu as createCommandProjectMemoryStore,fr as createContextReferenceItem,na as createDefaultTools,M as createExecutionOriginMetadata,bt as createExecutionWorkspaceSnapshot,Ht as createExecutionWorkspaceTaskSpawner,Fn as createInProcessSubagentRunner,Of as createInteractiveRuntime,zt as createLineDetailPage,Rt as createMainThreadDetailPage,gt as createMainThreadExecutionEntryId,yn as createModelCommandToolProjection,uu as createPluginRegistryReloadRequestedEffect,lu as createPluginTuiRequestedEffect,fd as createProjectSessionStore,Sn as createProjectedCommandExecutionTools,Dr as createPromptFileReferenceHistoryEntry,$c as createProviderFromSettings,vn as createProviderSafeModelCommandToolName,Cd as createQuery,wu as createSessionExitRequestedEffect,Cu as createSessionPickerRequestedEffect,Su as createSessionRenamedEffect,gp as createStatelessRuntime,To as createSubagentLogger,kn as createSubagentSession,uc as createSystemCommands,Ff as createTestInteractiveSession,gc as deleteProviderProfile,to as deleteSettings,nf as deleteUserLocalMemoryItem,tf as disableUserLocalMemoryItem,gs as discoverTaskFiles,lo as evaluateReversibleToolSafety,nd as executeSkill,op as formatCliUpdateCheckMessage,ap as formatCliUpdateNotice,Cl as formatCommandBackgroundTask,wl as formatCommandBackgroundTaskList,yl as formatCommandHelpMessage,Zl as formatCommandPermissionsMessage,Du as formatCommandSessionReplayValidationReport,d as formatEnvReference,Gl as formatInvalidPermissionModeMessage,Ll as formatLanguageUsageMessage,ld as formatOrgPolicyViolationMessage,bn as formatProjectedModelCommandToolPromptDescription,Er as formatPromptFileReferenceDiagnostics,ys as formatTaskContext,dn as getBuiltInAgent,pn as getForkWorkerSuffix,Bc as getProviderSettingsPaths,rp as getStartupCliUpdateNotice,fn as getSubagentSuffix,Za as getUserSettingsPath,Zf as getUserUpdateCheckCachePath,Tr as hasBlockingPromptFileReferenceDiagnostics,Yu as hasSensitiveCommandMemoryContent,ee as hasUsableSecretReference,Nu as inspectCommandEditCheckpoint,ef as inspectUserLocalMemoryItem,Pd as inspectUserLocalStorage,ud as isApiKeyPlaintext,Ju as isCommandMemoryType,g as isEnvReference,Ts as isMemoryType,Vf as isNewerSemverVersion,Wl as isPermissionMode,xf as isSlashCommand,nu as isStatusLineCommandSettingsPatch,gr as listActiveContextReferences,Ol as listCommandBackgroundTasks,ul as listCommandContextReferences,Mu as listCommandEditCheckpoints,Yl as listCommandSessionAllowedTools,Xu as listCommandUsedMemoryReferences,pd as listResumableSessionSummaries,$d as listUserLocalMemoryItems,cd as loadOrgPolicy,bs as loadTaskContext,bc as mergeProviderPatch,Lc as mergeProviders,Ic as mergeSettings,F as normalizeModelCommandName,Tl as parseCommandBackgroundLogCursor,yt as parseExecutionWorkspaceEntryId,Ga as parseFrontmatter,Cf as parseInput,Il as parseLanguageArgument,Ul as parsePermissionModeArgument,jr as parsePromptFileReferences,xu as parseSessionNameArgument,_s as parseTaskFile,ff as planSelfHostingVerification,$u as preprocessShellCommands,Dc as probeProviderProfile,H as projectPaths,jf as promptForApproval,il as readAutoCompactThreshold,al as readAutoCompactThresholdSource,kl as readCommandBackgroundTaskLog,rl as readCommandContextState,ql as readCommandPermissionMode,Xl as readCommandPermissionsState,Tu as readCommandSessionInfo,hs as readCurrentGitBranch,rf as readEnabledUserLocalMemoryItem,Xc as readMergedProviderSettings,Pc as readMergedProviderSettingsFromPaths,Kf as readPackageVersion,Qc as readProviderSettings,q as readSettings,ru as readStatusLineSettings,Qf as readUpdateCheckCache,Zu as recordCommandMemoryEvent,fl as removeCommandContextReference,mr as removeContextReference,cl as resetAutoCompactThresholdSetting,If as resetUserConfig,Rc as resolveActiveProvider,Zc as resolveEnvDefaultProvider,ne as resolveEnvReference,Lf as resolveGitBranch,md as resolveLatestSessionId,Kl as resolvePermissionModeAdapter,du as resolvePluginCommandAdapter,Rr as resolvePromptFileReferencePaths,Lr as resolvePromptFileReferences,Vc as resolveProviderSettingsWriteTargetPath,hd as resolveSessionIdByIdOrName,Qa as resolveSettingsPathForScope,Eo as resolveSubagentLogDir,jd as resolveUserLocalStorageRoot,Pu as restoreCommandEditCheckpoint,I as retrieveAgentToolDeps,Fu as rollbackCommandEditCheckpoint,gl as sanitizeProviderProfileName,vs as selectRelevantTasks,ol as setCommandAutoCompactThreshold,hc as setCurrentProvider,Qd as setUserLocalMemoryItem,ip as shouldRunStartupCliUpdateCheck,Bn as storeAgentToolDeps,Qu as substituteVariables,hl as suggestProviderProfileName,ft as summarizeBackgroundJobGroup,Ec as testProviderProfileCommand,_r as toContextReferenceRecords,B as toPromptFileReferenceRecords,Sf as tokeniseSlashCommand,pf as transitionSelfHostingLoop,$a as updateModelInSettings,xs as updateTaskFileStatus,pr as upsertContextReference,mc as upsertProviderProfile,Ti as userPaths,Eu as validateCommandSessionReplayLog,_c as validateProviderProfile,Ra as wrapEditCheckpointTools,uo as wrapReversibleExecutionTools,sl as writeAutoCompactThresholdSetting,Jl as writeCommandPermissionMode,J as writeSettings,$f as writeUpdateCheckCache};
|
|
103
103
|
//# sourceMappingURL=index.js.map
|