@robota-sdk/agent-framework 3.0.0-beta.65 → 3.0.0-beta.66
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 +50 -48
- package/dist/node/index.d.ts +722 -578
- package/dist/node/index.d.ts.map +1 -1
- package/dist/node/index.js +50 -48
- package/dist/node/index.js.map +1 -1
- package/package.json +6 -6
package/dist/node/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import{CLAUDE_MODELS as e,collectAssistantUsageMetadata as t,createAssistantMessage as n,createSystemMessage as r,createUserMessage as i,findProviderDefinition as a,findProviderDefinition as o,formatEnvReference as s,formatEnvReference as c,formatTokenCount as l,getProviderCredentialRequirement as u,getProviderCredentialRequirement as d,hasUsableSecretReference as f,hasUsableSecretReference as p,isEnvReference as m,messageToHistoryEntry as h,resolveEnvReference as ee,resolveEnvReference as te,runHooks as g}from"@robota-sdk/agent-core";import{z as _}from"zod";import{applyWorkspaceManifest as ne,createBashTool as re,createEditTool as ie,createReadTool as ae,createWriteTool as oe,createZodFunctionTool as se,globTool as ce,grepTool as le,webFetchTool as ue,webSearchTool as de}from"@robota-sdk/agent-tools";import{BackgroundTaskManager as fe,SubagentManager as pe,isTerminalBackgroundTaskStatus as me,normalizeProviderConfig as he}from"@robota-sdk/agent-executor";import{AUTO_COMPACT_THRESHOLD as ge,FileSessionLogger as _e,Session as ve,SessionStore as ye,loadSessionLogEntries as be,replaySessionLogEntries as xe,validateSessionReplayLogEntries as Se}from"@robota-sdk/agent-session";import{createHash as Ce,randomUUID as v}from"node:crypto";import y,{basename as we,dirname as b,isAbsolute as Te,join as x,relative as S,resolve as C,sep as Ee}from"node:path";import{homedir as w}from"node:os";import{constants as De,cpSync as Oe,existsSync as ke,mkdirSync as Ae,readFileSync as je,readdirSync as Me,renameSync as Ne,rmSync as Pe,statSync as Fe,writeFileSync as Ie}from"node:fs";import{access as Le,copyFile as Re,mkdir as ze,readFile as Be,readdir as Ve,realpath as He,rename as Ue,rm as We,stat as Ge,writeFile as Ke}from"node:fs/promises";import{appendFileSync as qe,existsSync as T,mkdirSync as Je,readFileSync as E,readdirSync as Ye,writeFileSync as Xe}from"fs";import{basename as Ze,dirname as Qe,join as D,resolve as $e}from"path";const et=[{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.
|
|
1
|
+
import{CLAUDE_MODELS as e,collectAssistantUsageMetadata as t,createAssistantMessage as n,createSystemMessage as r,createUserMessage as i,findProviderDefinition as a,formatEnvReference as o,formatEnvReference as s,formatTokenCount as c,getProviderCredentialRequirement as l,hasUsableSecretReference as u,hasUsableSecretReference as d,isEnvReference as f,messageToHistoryEntry as p,resolveEnvReference as m,resolveEnvReference as ee,runHooks as te}from"@robota-sdk/agent-core";import{BackgroundTaskManager as ne,SubagentManager as h,createDefaultBackgroundTaskRunners as re,createProviderFromConfig as ie,isTerminalBackgroundTaskStatus as ae,normalizeProviderConfig as oe}from"@robota-sdk/agent-executor";import{applyWorkspaceManifest as se,createBashTool as ce,createEditTool as le,createReadTool as ue,createWriteTool as de,createZodFunctionTool as fe,globTool as pe,grepTool as me,webFetchTool as he,webSearchTool as ge}from"@robota-sdk/agent-tools";import{z as g}from"zod";import{AUTO_COMPACT_THRESHOLD as _e,FileSessionLogger as ve,Session as ye,SessionStore as be,loadSessionLogEntries as xe,replaySessionLogEntries as Se,validateSessionReplayLogEntries as Ce}from"@robota-sdk/agent-session";import{createHash as we,randomUUID as _}from"node:crypto";import{constants as Te,cpSync as Ee,existsSync as v,lstatSync as De,mkdirSync as Oe,readFileSync as y,readdirSync as ke,renameSync as Ae,rmSync as je,statSync as Me,unlinkSync as Ne,writeFileSync as Pe}from"node:fs";import{access as Fe,copyFile as Ie,mkdir as Le,readFile as Re,readdir as ze,realpath as Be,rename as Ve,rm as He,stat as Ue,writeFile as We}from"node:fs/promises";import b,{basename as Ge,dirname as x,isAbsolute as Ke,join as S,relative as C,resolve as w,sep as qe}from"node:path";import{homedir as T}from"node:os";import{appendFileSync as Je,existsSync as E,mkdirSync as Ye,readFileSync as D,readdirSync as Xe,writeFileSync as Ze}from"fs";import{basename as Qe,dirname as $e,join as O,resolve as et}from"path";import{fileURLToPath as tt}from"node:url";const nt=1e3;var rt=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&&ae(n.status)&&this.captureTask(e,n)}}handleTaskEvent(e){let t=it(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,ot(t)],e.state.updatedAt=this.now(),!0)}evaluateCompletion(e){if(e.state.status===`completed`)return;if(!at(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 it(e){if(e.type===`background_task_completed`||e.type===`background_task_failed`||e.type===`background_task_cancelled`)return e.task}function at(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 ot(e){return{taskId:e.id,label:e.label,status:e.status,...e.result?.output?{summary:st(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 st(e){let t=e.trim();return t.length<=nt?t:`${t.slice(0,nt)}...`}function ct(e){let t=lt(e,`completed`),n=lt(e,`failed`),r=lt(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=>ut(e))}}function lt(e,t){return e.results.filter(e=>e.status===t).length}function ut(e){let t=dt(e),n=e.outputRef&&e.summary?` (output: ${e.outputRef})`:``;return`[${e.status}] ${e.label} ${e.taskId}: ${t}${n}`}function dt(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 ft(e){return[`main`,e].join(`:`)}function j(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 M(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??ft(e.sessionId),updatedAt:n[0]?.updatedAt??e.mainThread.updatedAt,entries:n}}function gt(e){return{id:ft(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:jt(e.preview),unread:!1,attention:`none`,visibility:`default`,updatedAt:e.updatedAt,controls:[`select`]}}function _t(e,t){return{id:j(e.id),sourceId:e.id,kind:`background_task`,parentId:e.parentTaskId?j(e.parentTaskId):ft(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=jt(e.results.map(e=>e.summary??e.error?.message).join(` `));return{id:pt(e.id),sourceId:e.id,kind:`background_group`,parentId:ft(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=Mt(e?.[A.kind]),r=N(e?.[A.sessionId]);return{kind:n??t.kind,sessionId:r??t.sessionId,turnId:N(e?.[A.turnId])??t.turnId,commandName:N(e?.[A.commandName])??t.commandName,toolCallId:N(e?.[A.toolCallId])??t.toolCallId,skillId:N(e?.[A.skillId])??t.skillId,label:N(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 ae(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`?jt(e.error?.message):e.status===`completed`?jt(e.result?.output):jt(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 jt(e){let t=e?.trim().replace(/\s+/g,` `);if(t)return t.length>120?`${t.slice(0,120)}...`:t}function N(e){return typeof e==`string`?e:void 0}function Mt(e){if(e===`user_prompt`||e===`slash_command`||e===`model_command`||e===`tool_call`||e===`skill`||e===`transport`||e===`system`)return e}function Nt(e){let t=Ft(e.cursor?.offset),n=e.history.slice(t,t+80),r=n.map(e=>({id:e.id,kind:e.category===`chat`?`message`:`progress`,text:It(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 Pt(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 Ft(e){return typeof e==`number`&&Number.isFinite(e)&&e>0?Math.floor(e):0}function It(e){return typeof e.data==`string`?e.data:e.type}function Lt(e){return{spawnAgent:t=>e.manager.spawn(Rt(e,t)),spawnProcess:t=>e.manager.spawn(zt(e,t)),createGroup:t=>e.groupOrchestrator.createGroup({parentSessionId:e.sessionId,waitPolicy:t.waitPolicy,taskIds:[...t.taskIds],label:t.label})}}function Rt(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 zt(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 Bt=new WeakMap;function Vt(e,t){Bt.set(e,t)}function Ht(e){return Bt.get(e)}function Ut(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
|
+
|
|
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 Wt(){return`agent_group_${Date.now()}_${Math.random().toString(36).slice(2,10)}`}function Gt(e,t){let n=e?.trim();return n&&n.length>0?n:t}function Kt(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:Gt(e.label,i?.name??r)}}function qt(e){return e.agentDef!==void 0}function Jt(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 Yt(e,t){try{let n=await t.manager.spawn(t.createSpawnRequest(e.job,e.agentType,e.agentDef,t.deps,e.label));return{...e,agentId:n.id}}catch(t){let n=t instanceof Error?t.message:String(t);return{...e,spawnError:n}}}function Xt(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 Zt(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 Qt(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 $t(e,t,n){if(e.agentId===void 0)return Xt(e,t);try{let r=await n.wait(e.agentId);return Zt({...e,agentId:e.agentId},t,r)}catch(n){let r=n instanceof Error?n.message:String(n);return Qt({...e,agentId:e.agentId},t,r)}}async function en(e){let t=Wt(),n=e.jobs.map((t,n)=>Kt(t,n,e)),r=n.filter(e=>!qt(e)).map(e=>Jt(e,t)),i=await Promise.all(n.filter(qt).map(t=>Yt(t,e))),a=await Promise.all(i.map(n=>$t(n,t,e.manager))),o=[...r,...a].sort((e,t)=>e.index-t.index);return Ut({groupId:t,requestedJobCount:e.jobs.length,jobs:o})}function tn(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 nn(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 rn(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 an=[{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.
|
|
2
4
|
|
|
3
5
|
Your role is to complete the assigned task thoroughly and accurately. Follow these guidelines:
|
|
4
6
|
|
|
@@ -31,71 +33,71 @@ Your role is to:
|
|
|
31
33
|
- Produce a structured implementation plan with clear steps, file lists, and ordering.
|
|
32
34
|
- Consider edge cases, error handling, and test coverage requirements.
|
|
33
35
|
|
|
34
|
-
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 on(e){return an.find(t=>t.name===e)}function sn(){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.
|
|
35
37
|
|
|
36
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.
|
|
37
39
|
|
|
38
|
-
Do not use emojis.`}function
|
|
40
|
+
Do not use emojis.`}function cn(){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:
|
|
39
41
|
- Scope: What was requested
|
|
40
42
|
- Result: What was done
|
|
41
43
|
- Key files: Relevant file paths (absolute)
|
|
42
44
|
- Files changed: List of modifications
|
|
43
|
-
- Issues: Any problems encountered`}function
|
|
45
|
+
- Issues: Any problems encountered`}function ln(e){let t=[e.agentBody];e.claudeMd&&t.push(e.claudeMd),e.agentsMd&&t.push(e.agentsMd);let n=e.isForkWorker?cn():sn();return t.push(n),t.join(`
|
|
44
46
|
|
|
45
|
-
`)}const
|
|
47
|
+
`)}const un=`robota_command_`,dn=/^[A-Za-z0-9_-]{1,64}$/;function fn(e){return e}function P(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function pn(e){let t=P(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=`${un}${n}`;if(dn.test(r))return r;let i=we(`sha256`).update(t).digest(`hex`).slice(0,8),a=`${un}${n.slice(0,40).replace(/[_-]+$/g,``)||`command`}_${i}`;if(!dn.test(a))throw Error(`Projected model command tool name is not provider-safe: ${a}`);return a}function mn(e){let t=new Set,n=new Map,r=new Map,i=[];for(let a of e){let e=P(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=pn(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:yn(e,a),descriptor:a})}return{commandTools:i,toolNameToCommandName:n,commandNameToToolName:r}}function hn(e){return`${e.toolName} — ${e.descriptor.description}`}function gn(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 _n(e){return mn(e.commandDescriptors).commandTools.map(t=>{let n=vn(t.descriptor);return fe(t.toolName,t.description,fn(n),async r=>{let i=n.parse(r);return e.isModelInvocable(t.commandName)?gn(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 vn(e){let t=e.argumentHint?`Arguments for the command. Expected grammar: ${e.argumentHint}`:`Arguments for the command as a single string.`;return g.object({args:g.string().optional().describe(t)})}function yn(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(`
|
|
46
48
|
|
|
47
|
-
`)}const ht={sonnet:`claude-sonnet-4-6`,haiku:`claude-haiku-4-5`,opus:`claude-opus-4-6`},gt=ct(`agent`);function _t(e,t){return ht[e]??e}function vt(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()!==gt),n}function yt(e){let{agentDefinition:t,parentConfig:n,parentContext:r,parentTools:i,terminal:a}=e,o=vt(i,t),s=t.model?_t(t.model,n.provider.model):n.provider.model,c=it({agentBody:t.systemPrompt,claudeMd:r.claudeMd,agentsMd:r.agentsMd,isForkWorker:e.isForkWorker??!1}),l=e.provider;return new ve({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 bt(e,t){let n=t?.(e)??tt(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function xt(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 St(e){if(!e)return;let t=Object.values(e)[0];if(t!==void 0)return typeof t==`object`?JSON.stringify(t):String(t)}function Ct(e){if(e.request.isolation===`worktree`)throw Error(`Worktree isolation requires a runtime shell subagent runner`)}function wt(e,t){if(t.type===`start`){e.emit?.({type:`background_task_tool_start`,toolName:t.toolName,firstArg:St(t.toolArgs)});return}e.emit?.({type:`background_task_tool_end`,toolName:t.toolName,success:t.success??!0})}function Tt(e){return{start(t){Ct(t);let n=yt({agentDefinition:xt(bt(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=>{wt(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 Et=1e3;var Dt=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&&me(n.status)&&this.captureTask(e,n)}}handleTaskEvent(e){let t=Ot(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,At(t)],e.state.updatedAt=this.now(),!0)}evaluateCompletion(e){if(e.state.status===`completed`)return;if(!kt(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 Ot(e){if(e.type===`background_task_completed`||e.type===`background_task_failed`||e.type===`background_task_cancelled`)return e.task}function kt(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 At(e){return{taskId:e.id,label:e.label,status:e.status,...e.result?.output?{summary:jt(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 jt(e){let t=e.trim();return t.length<=Et?t:`${t.slice(0,Et)}...`}function Mt(e){let t=Nt(e,`completed`),n=Nt(e,`failed`),r=Nt(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=>Pt(e))}}function Nt(e,t){return e.results.filter(e=>e.status===t).length}function Pt(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 N(e){return[`group`,e].join(`:`)}function It(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 P(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 Lt(e){let t=Ht(e.groups),n=[Rt(e.mainThread),...Qt(e.groups).map(e=>Bt(e)),...Zt(e.tasks).map(e=>zt(e,t.get(e.id)))].filter(t=>Xt(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 Rt(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:F(e.preview),unread:!1,attention:`none`,visibility:`default`,updatedAt:e.updatedAt,controls:[`select`]}}function zt(e,t){return{id:M(e.id),sourceId:e.id,kind:`background_task`,parentId:e.parentTaskId?M(e.parentTaskId):j(e.parentSessionId),...t?{groupId:N(t)}:{},origin:Vt(e.metadata,{kind:`system`,sessionId:e.parentSessionId}),taskKind:e.kind,status:e.status,title:e.label,subtitle:Wt(e),preview:Kt(e),currentAction:e.currentAction,unread:e.unread,attention:qt(e),visibility:Jt(e),updatedAt:e.lastActivityAt??e.updatedAt,controls:Ut(e)}}function Bt(e){let t=F(e.results.map(e=>e.summary??e.error?.message).join(` `));return{id:N(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:Yt(e),visibility:e.status===`completed`?`collapsed`:`default`,updatedAt:e.updatedAt,controls:e.status===`running`?[`select`,`wait`]:[`select`]}}function Vt(e,t){let n=$t(e?.[A.kind]),r=I(e?.[A.sessionId]);return{kind:n??t.kind,sessionId:r??t.sessionId,turnId:I(e?.[A.turnId])??t.turnId,commandName:I(e?.[A.commandName])??t.commandName,toolCallId:I(e?.[A.toolCallId])??t.toolCallId,skillId:I(e?.[A.skillId])??t.skillId,label:I(e?.[A.label])??t.label}}function Ht(e){return new Map(e.flatMap(e=>e.taskIds.map(t=>[t,e.id])))}function Ut(e){let t=[`select`];return me(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 Wt(e){return e.kind===`agent`?e.agentType??e.cwd:e.status===`sleeping`&&e.nextFireAt!==void 0?`next: ${Gt(e.nextFireAt)}`:e.cwd}function Gt(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 Kt(e){return e.status===`failed`?F(e.error?.message):e.status===`completed`?F(e.result?.output):F(e.promptPreview??e.commandPreview)}function qt(e){return e.status===`failed`?`failed`:e.status===`waiting_permission`?`permission`:e.unread?`unread`:e.status===`completed`?`completed`:`none`}function Jt(e){return e.status===`completed`&&!e.unread&&!e.error&&(e.result?.exitCode??0)===0&&!e.result?.signalCode&&!e.worktreePath&&!e.branchName?`collapsed`:`default`}function Yt(e){return e.results.some(e=>e.status===`failed`)?`failed`:e.status===`completed`?`completed`:`none`}function Xt(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 Zt(e){return[...e].sort((e,t)=>(t.lastActivityAt??t.updatedAt).localeCompare(e.lastActivityAt??e.updatedAt))}function Qt(e){return[...e].sort((e,t)=>t.updatedAt.localeCompare(e.updatedAt))}function F(e){let t=e?.trim().replace(/\s+/g,` `);if(t)return t.length>120?`${t.slice(0,120)}...`:t}function I(e){return typeof e==`string`?e:void 0}function $t(e){if(e===`user_prompt`||e===`slash_command`||e===`model_command`||e===`tool_call`||e===`skill`||e===`transport`||e===`system`)return e}function en(e){let t=nn(e.cursor?.offset),n=e.history.slice(t,t+80),r=n.map(e=>({id:e.id,kind:e.category===`chat`?`message`:`progress`,text:rn(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 tn(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 nn(e){return typeof e==`number`&&Number.isFinite(e)&&e>0?Math.floor(e):0}function rn(e){return typeof e.data==`string`?e.data:e.type}function an(e){return{spawnAgent:t=>e.manager.spawn(on(e,t)),spawnProcess:t=>e.manager.spawn(sn(e,t)),createGroup:t=>e.groupOrchestrator.createGroup({parentSessionId:e.sessionId,waitPolicy:t.waitPolicy,taskIds:[...t.taskIds],label:t.label})}}function on(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:P(e.origin)}}function sn(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:P(e.origin)}}function cn(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(`
|
|
49
|
+
`)}const bn={sonnet:`claude-sonnet-4-6`,haiku:`claude-haiku-4-5`,opus:`claude-opus-4-6`},xn=pn(`agent`);function Sn(e,t){return bn[e]??e}function Cn(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()!==xn),n}function wn(e){let{agentDefinition:t,parentConfig:n,parentContext:r,parentTools:i,terminal:a}=e,o=Cn(i,t),s=t.model?Sn(t.model,n.provider.model):n.provider.model,c=ln({agentBody:t.systemPrompt,claudeMd:r.claudeMd,agentsMd:r.agentsMd,isForkWorker:e.isForkWorker??!1}),l=e.provider;return new ye({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 Tn(e,t){let n=t?.(e)??on(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function En(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 Dn(e){if(!e)return;let t=Object.values(e)[0];if(t!==void 0)return typeof t==`object`?JSON.stringify(t):String(t)}function On(e){if(e.request.isolation===`worktree`)throw Error(`Worktree isolation requires a runtime shell subagent runner`)}function kn(e,t){if(t.type===`start`){e.emit?.({type:`background_task_tool_start`,toolName:t.toolName,firstArg:Dn(t.toolArgs)});return}e.emit?.({type:`background_task_tool_end`,toolName:t.toolName,success:t.success??!0})}function An(e){return{start(t){On(t);let n=wn({agentDefinition:En(Tn(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=>{kn(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 jn=[`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 Mn(e){return e}const Nn=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(),Pn=new WeakMap;function Fn(e,t){Pn.set(e,t)}function F(e){return Pn.get(e)}function In(e,t){if(t){let n=t(e);if(n)return n}let n=on(e);if(n)return n}function Ln(e){return e.subagentManager??new h({runner:An(e)})}function Rn(e,t,n,r,i=n.name){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})}}async function zn(e,t,n){if(typeof e.prompt!=`string`||e.prompt.length===0)return rn(`prompt is required when jobs is omitted`);let r={...e,prompt:e.prompt},i=e.subagent_type??`general-purpose`,a=In(i,t.customAgentRegistry);if(!a)return tn(i);let o;try{let e=await n.spawn(Rn(r,i,a,t));return o=e.id,nn(await n.wait(e.id))}catch(e){return rn(e instanceof Error?e.message:String(e),o)}}function Bn(e){let t=Ln(e);return fe(`Agent`,jn,Mn(Nn),async n=>{let r=n;return Array.isArray(r.jobs)&&r.jobs.length>0?en({jobs:r.jobs,deps:e,manager:t,resolveAgentDefinition:In,createSpawnRequest:Rn}):zn({prompt:r.prompt,...r.subagent_type===void 0?{}:{subagent_type:r.subagent_type},...r.model===void 0?{}:{model:r.model},...r.isolation===void 0?{}:{isolation:r.isolation}},e,t)})}var Vn=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=Ht(e)??F(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 rt({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 Pt({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 Pt({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 Pt({entryId:e,lines:ct(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`,Hn(e))}recordGroupEvent(e,t){this.backgroundJobGroups=this.getGroupSnapshots(),this.backgroundJobGroupEvents.push(e),this.persistSession(),this.onChanged(`background_group`,pt(e.group.id))}};function Hn(e){if(`task`in e)return j(e.task.id);if(`taskId`in e)return j(e.taskId)}function Un(e){let t=F(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 I(e){let t=Un(e);if(!t.subagentManager)throw Error(`Subagent manager is not available for this session.`);return t.subagentManager}function Wn(e,t){let n=t.customAgentRegistry?.(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function Gn(e){return(F(e)?.agentDefinitions??[]).map(e=>({name:e.name,description:e.description}))}async function Kn(e,t,n,r){let i=Un(e),a=Wn(t.agentType,i),o=e.getSessionId();return I(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 I(e).wait(t)}async function Jn(e,t,n){await I(e).send(t,n)}async function Yn(e,t,n){await I(e).cancel(t,n)}async function Xn(e,t){await I(e).close(t)}function Zn(e){return I(e).list()}function Qn(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 $n(e,t,n,r,i){let a=mt(e);if(!a)throw Error(`Unknown execution workspace entry: ${e}`);return a.kind===`main_thread`?Nt({entryId:e,history:t(),cursor:i}):a.kind===`background_group`?n.readGroupDetail(e,a.sourceId,r):n.readTaskDetail(e,a.sourceId,i)}function er(e,t,n,r){return Lt({manager:e.getManagerOrThrow(),groupOrchestrator:e.getOrchestratorOrThrow(t),sessionId:t,cwd:n,origin:{...r,sessionId:r.sessionId||t}})}var tr=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 Qn({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(),$n(e,()=>this.histTracker.getHistory(),this.bgTracker,this.getSessionOrThrow().getSessionId(),t)}createExecutionWorkspaceTaskSpawner(e){return er(this.bgTracker,this.getSessionOrThrow().getSessionId(),this.getCwd(),e)}listAgentDefinitions(){return Gn(this.getSessionOrThrow())}listAgentJobs(){return Zn(this.getSessionOrThrow())}async spawnAgentJob(e){return await this.ensureInitialized(),Kn(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 Jn(this.getSessionOrThrow(),e,t)}async cancelAgentJob(e,t){await this.ensureInitialized(),await Yn(this.getSessionOrThrow(),e,t)}async closeAgentJob(e){await this.ensureInitialized(),await Xn(this.getSessionOrThrow(),e)}},L=class{existsSync(e){return v(e)}readFileSync(e,t){return y(e,t)}writeFileSync(e,t,n){Pe(e,t,n??`utf8`)}mkdirSync(e,t){Oe(e,t)}readdirSync(e,t){return t?.withFileTypes?ke(e,{withFileTypes:!0}):ke(e)}statSync(e){return Me(e)}rmSync(e,t){je(e,t)}cpSync(e,t,n){Ee(e,t,n)}renameSync(e,t){Ae(e,t)}get constants(){return Te}},R=class{async access(e,t){await Fe(e,t)}async copyFile(e,t,n){await Ie(e,t,n)}async mkdir(e,t){await Le(e,t)}async readFile(e,t){return Re(e,t)}async readdir(e,t){return t?.withFileTypes?await ze(e,{withFileTypes:!0}):ze(e)}async realpath(e){return Be(e)}async rename(e,t){await Ve(e,t)}async rm(e,t){await He(e,t)}async stat(e){return Ue(e)}async writeFile(e,t,n){await We(e,t,n??`utf8`)}};function nr(e){return we(`sha256`).update(e,`utf-8`).digest(`hex`)}function rr(e,t=new L){let n=t.readFileSync(e,`utf-8`);return{filePath:e,content:n,contentHash:nr(n)}}async function ir(e,t=new L){let n=[],r=[];for(let i of e){if(!t.existsSync(i.filePath)){r.push(i);continue}nr(t.readFileSync(i.filePath,`utf-8`))===i.contentHash?r.push(i):n.push(i)}return{stale:n,fresh:r}}async function ar(e,t=new L){let{stale:n}=await ir(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:nr(n)}}),refreshed:i}}async function or(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 ar(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(`
|
|
48
50
|
|
|
49
|
-
`),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 ln(){return`agent_group_${Date.now()}_${Math.random().toString(36).slice(2,10)}`}function un(e,t){let n=e?.trim();return n&&n.length>0?n:t}function dn(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:un(e.label,i?.name??r)}}function fn(e){return e.agentDef!==void 0}function pn(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 mn(e,t){try{let n=await t.manager.spawn(t.createSpawnRequest(e.job,e.agentType,e.agentDef,t.deps,e.label));return{...e,agentId:n.id}}catch(t){let n=t instanceof Error?t.message:String(t);return{...e,spawnError:n}}}function hn(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 gn(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 _n(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 vn(e,t,n){if(e.agentId===void 0)return hn(e,t);try{let r=await n.wait(e.agentId);return gn({...e,agentId:e.agentId},t,r)}catch(n){let r=n instanceof Error?n.message:String(n);return _n({...e,agentId:e.agentId},t,r)}}async function yn(e){let t=ln(),n=e.jobs.map((t,n)=>dn(t,n,e)),r=n.filter(e=>!fn(e)).map(e=>pn(e,t)),i=await Promise.all(n.filter(fn).map(t=>mn(t,e))),a=await Promise.all(i.map(n=>vn(n,t,e.manager))),o=[...r,...a].sort((e,t)=>e.index-t.index);return cn({groupId:t,requestedJobCount:e.jobs.length,jobs:o})}function bn(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 xn(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 Sn(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 Cn=[`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 wn(e){return e}const Tn=_.object({prompt:_.string().optional().describe(`The task for a single subagent to perform. Required when jobs is omitted.`),subagent_type:_.string().optional().describe(`Agent type: "general-purpose", "Explore", "Plan", or a custom agent name`),model:_.string().optional().describe(`Optional model override`),isolation:_.enum([`none`,`worktree`]).optional().describe(`Optional runtime isolation mode. "worktree" runs in a Git worktree.`),jobs:_.array(_.object({label:_.string().optional().describe(`Stable role label for this batch job`),prompt:_.string().describe(`The task for this subagent to perform`),subagent_type:_.string().optional().describe(`Agent type for this job`),model:_.string().optional().describe(`Optional model override for this job`),isolation:_.enum([`none`,`worktree`]).optional().describe(`Isolation for this job`)}).passthrough()).optional().describe(`Batch of subagent jobs to start in one Agent tool call`)}).passthrough(),En=new WeakMap;function Dn(e,t){En.set(e,t)}function L(e){return En.get(e)}function On(e,t){if(t){let n=t(e);if(n)return n}let n=tt(e);if(n)return n}function kn(e){return e.subagentManager??new pe({runner:Tt(e)})}function An(e,t,n,r,i=n.name){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:P({kind:`tool_call`,sessionId:r.parentSessionId??`unknown-session`,label:i})}}async function jn(e,t,n){if(typeof e.prompt!=`string`||e.prompt.length===0)return Sn(`prompt is required when jobs is omitted`);let r={...e,prompt:e.prompt},i=e.subagent_type??`general-purpose`,a=On(i,t.customAgentRegistry);if(!a)return bn(i);let o;try{let e=await n.spawn(An(r,i,a,t));return o=e.id,xn(await n.wait(e.id))}catch(e){return Sn(e instanceof Error?e.message:String(e),o)}}function Mn(e){let t=kn(e);return se(`Agent`,Cn,wn(Tn),async n=>{let r=n;return Array.isArray(r.jobs)&&r.jobs.length>0?yn({jobs:r.jobs,deps:e,manager:t,resolveAgentDefinition:On,createSpawnRequest:An}):jn({prompt:r.prompt,...r.subagent_type===void 0?{}:{subagent_type:r.subagent_type},...r.model===void 0?{}:{model:r.model},...r.isolation===void 0?{}:{isolation:r.isolation}},e,t)})}function Nn(e,t,n){let r=L(n)?.customAgentRegistry?.(e)??tt(e);if(!r)throw Error(`Unknown agent type: ${e}`);return t.allowedTools?{...r,tools:t.allowedTools}:r}async function Pn(e,t,n){let r=L(n);if(!r)throw Error(`Fork execution is not available. Agent runtime deps may not be initialized.`);return yt({agentDefinition:Nn(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)}const Fn=new WeakMap;function In(e,t){Fn.set(e,t)}function Ln(e){return Fn.get(e)}function Rn(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(zn({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 zn(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},...Bn(e.backgroundState),...Vn(e.memoryState),...Hn(e.skillActivationState),...Un(e.contextReferenceState)}}function Bn(e){return e?{backgroundTasks:[...e.tasks],backgroundTaskEvents:[...e.events],backgroundJobGroups:[...e.groups??[]],backgroundJobGroupEvents:[...e.groupEvents??[]]}:{}}function Vn(e){return e?{memoryEvents:[...e.events],usedMemoryReferences:[...e.usedReferences]}:{}}function Hn(e){return e?{skillActivationEvents:[...e.events]}:{}}function Un(e){return e?{contextReferences:[...e.references]}:{}}function Wn(e,t){typeof t.content==`string`&&(t.role===`tool`?e.injectMessage(`tool`,t.content,{toolCallId:t.toolCallId,...t.name===void 0?{}:{name:t.name}}):e.injectMessage(t.role,t.content))}function Gn(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}=Kn(o,s),te=i.name,g=null;if(!n&&i.messages)if(r)for(let e of i.messages)Wn(r,e);else g=i.messages;return{history:a,sessionName:te,pendingRestoreMessages:g,backgroundTasks:h,backgroundTaskEvents:ee,backgroundJobGroups:c,backgroundJobGroupEvents:l,skillActivationEvents:u,memoryEvents:d,usedMemoryReferences:f,contextReferences:p,sandboxSnapshotId:m}}function Kn(e,t){let n=new Date().toISOString(),r=[];return{backgroundTasks:e.map(e=>{if(qn(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 qn(e){return e===`completed`||e===`failed`||e===`cancelled`}function Jn(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var Yn=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=Jn(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)}}}};function Xn(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var Zn=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=Xn(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)}}}};const Qn=[`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 $n(e={}){return[re(e),ae(e),oe(e),ie(e),ce,le,ue,de]}const er=new Set([`Write`,`Edit`]);function tr(e,t){return e.map(e=>er.has(e.getName())?new nr(e,t):e)}var nr=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=rr(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 rr(e){if(!e||typeof e!=`object`)return;let t=e.filePath;return typeof t==`string`&&t.length>0?t:void 0}const ir=new Set([`Write`,`Edit`]),ar=new Set([`Bash`,`BackgroundProcess`]),or=new Set([`Read`,`Glob`,`Grep`,`WebFetch`,`WebSearch`]);function sr(e){let t=e.toolName;return or.has(t)?{toolName:t,reversible:!0,sideEffect:`none`,rollbackLayer:`none`,status:`read-only`,message:`${t} does not mutate the local workspace.`}:ir.has(t)?e.context.isolation===`worktree`||e.context.isolation===`provider-sandbox`?ur(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.`}:ar.has(t)?ur(t,`shell-process`,e.context):t===`Agent`?dr(e.toolArgs,e.context):{toolName:t,reversible:!1,sideEffect:`unknown`,rollbackLayer:`none`,status:`unknown`,message:`${t} has no reversible execution contract.`}}function cr(e,t){let n={checkpointAvailable:t.checkpointAvailable,isolation:t.isolation??`none`},r=t.enforceUntrackedSideEffects??!0;return e.map(e=>new lr(e,{safetyContext:n,enforceUntrackedSideEffects:r}))}var lr=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=sr({toolName:this.getName(),toolArgs:hr(e),context:this.options.safetyContext});return!n.reversible&&this.options.enforceUntrackedSideEffects?gr(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 ur(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 dr(e,t){return t.isolation===`worktree`||t.isolation===`provider-sandbox`?ur(`Agent`,`subagent`,t):fr(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 fr(e){if(!e)return!1;let t=e.jobs;return Array.isArray(t)?t.length>0&&t.every(e=>mr(e)?pr(e)===`worktree`:!1):pr(e)===`worktree`}function pr(e){let t=e.isolation;return typeof t==`string`?t:void 0}function mr(e){return e!==void 0&&typeof e==`object`&&!Array.isArray(e)}function hr(e){if(!(!e||typeof e!=`object`||Array.isArray(e)))return e}function gr(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}}}var R=class{existsSync(e){return ke(e)}readFileSync(e,t){return je(e,t)}writeFileSync(e,t,n){Ie(e,t,n??`utf8`)}mkdirSync(e,t){Ae(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){Oe(e,t,n)}renameSync(e,t){Ne(e,t)}get constants(){return De}},z=class{async access(e,t){await Le(e,t)}async copyFile(e,t,n){await Re(e,t,n)}async mkdir(e,t){await ze(e,t)}async readFile(e,t){return Be(e,t)}async readdir(e,t){return t?.withFileTypes?await Ve(e,{withFileTypes:!0}):Ve(e)}async realpath(e){return He(e)}async rename(e,t){await Ue(e,t)}async rm(e,t){await We(e,t)}async stat(e){return Ge(e)}async writeFile(e,t,n){await Ke(e,t,n??`utf8`)}};const _r=new Set([`disable-model-invocation`,`user-invocable`]),vr=new Set([`allowed-tools`]);function yr(e){return e.replace(/-([a-z])/g,(e,t)=>t.toUpperCase())}function br(e){let t=e.includes(`,`)?/\s*,\s*/:/\s+/;return e.split(t).map(e=>e.trim()).filter(e=>e.length>0)}function xr(e){let t=e.split(`
|
|
50
|
-
`);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=yr(a);_r.has(a)?n[s]=o===`true`:vr.has(a)?n[s]=br(o):n[s]=o}return Object.keys(n).length>0?n:null}function Sr(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 Cr(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=x(e,i.name,`SKILL.md`);if(!t.existsSync(r))continue;let a=t.readFileSync(r,`utf-8`),o=xr(a);n.push(Sr(o,a,i.name))}return n}function wr(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=x(e,i.name),a=t.readFileSync(r,`utf-8`),o=xr(a),s=we(i.name,`.md`);n.push(Sr(o,a,s))}return n}var Tr=class{name=`skill`;cwd;home;fs;cachedCommands=null;constructor(e,t,n=new R){this.cwd=e,this.home=t??w(),this.fs=n}getCommands(){if(this.cachedCommands)return this.cachedCommands;let e=[Cr(x(this.cwd,`.claude`,`skills`),this.fs),wr(x(this.cwd,`.claude`,`commands`),this.fs),Cr(x(this.home,`.robota`,`skills`),this.fs),Cr(x(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)}};const Er=new Set([`tools`,`disallowedTools`]),Dr=new Set([`maxTurns`]);function Or(e){let t=e.includes(`,`)?/\s*,\s*/:/\s+/;return e.split(t).map(e=>e.trim()).filter(e=>e.length>0)}function kr(e){let t=e.split(`
|
|
51
|
-
`);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();Er.has(i)?r[i]=Or(a):Dr.has(i)?r[i]=parseInt(a,10):r[i]=a}let i=t.slice(n+1).join(`
|
|
52
|
-
`).trim();return{frontmatter:Object.keys(r).length>0?r:null,body:i}}function B(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=x(e,i.name),{frontmatter:a,body:o}=kr(t.readFileSync(r,`utf-8`)),s=we(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 Ar=class{cwd;home;fs;constructor(e,t,n=new R){this.cwd=e,this.home=t??w(),this.fs=n}loadAll(){let e=[B(x(this.cwd,`.robota`,`agents`),this.fs),B(x(this.cwd,`.agents`,`agents`),this.fs),B(x(this.cwd,`.claude`,`agents`),this.fs),B(x(this.home,`.robota`,`agents`),this.fs),B(x(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 et)t.has(e.name)||r.push(e);return r}getAgent(e){return this.loadAll().find(t=>t.name===e)}};function jr(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 Mr(e,t,n,r){let i=jr(e);!i||!(`task`in e)||g(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)}function Nr(e){return e}const Pr=_.object({command:_.string().describe(`The shell command to start in the background`),timeout:_.number().optional().describe(`Optional timeout in milliseconds. Default is 120000.`),workingDirectory:_.string().optional().describe(`Working directory for the command. Defaults to the current project directory.`),stdin:_.string().optional().describe(`Optional stdin to write after the process starts.`),outputLimitBytes:_.number().optional().describe(`Maximum captured output bytes kept in the task result.`)});function Fr(e,t,n){return JSON.stringify({success:!0,background:!0,output:``,taskId:e,status:t,command:n})}function Ir(e){return JSON.stringify({success:!1,background:!0,output:``,error:`Background process error: ${e}`})}async function Lr(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 Fr(n.id,n.status,e.command)}catch(e){return Ir(e instanceof Error?e.message:String(e))}}function Rr(e){return se(`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.`,Nr(Pr),async t=>Lr(t,e))}function zr(e){let t=e.content.trim();return e.title?[`## ${e.title}`,t].join(`
|
|
53
|
-
`):t}function Br(e){return[...e].filter(e=>e.content.trim().length>0).sort((e,t)=>e.priority-t.priority||e.id.localeCompare(t.id)).map(e=>zr(e)).join(`
|
|
51
|
+
`),d.map(e=>e.content).join(`
|
|
54
52
|
|
|
55
|
-
`)
|
|
56
|
-
`)
|
|
57
|
-
`),`tool`)}function Zr(e){let t=e.argumentHint?` ${e.argumentHint}`:``;return`- ${e.name}${t}: ${e.description}`}function Qr(e,t,n,r,i){let a=i.filter(t=>t.modelInvocable&&t.kind===e).map(Zr);if(a.length!==0)return V(`capability-${e}`,t,n,a.join(`
|
|
58
|
-
`),r)}function $r(e){let t=[],n=Qr(`builtin-command`,`Built-in Commands`,70,`command`,e),r=Qr(`skill`,`Skills`,80,`skill`,e),i=Qr(`agent`,`Agents`,90,`agent`,e),a=Qr(`tool`,`Tools`,100,`tool`,e);return n&&t.push(n),r&&t.push(r),i&&t.push(i),a&&t.push(a),t}function H(e,t){t!==void 0&&e.push(t)}function ei(e){return e.map(e=>({name:e.name,kind:`skill`,description:e.description,userInvocable:!0,modelInvocable:e.disableModelInvocation!==!0}))}function ti(e){return e.map(e=>({name:e.name,kind:`agent`,description:e.description,userInvocable:!1,modelInvocable:!0,safety:`background-agent`}))}function ni(e){return[...e.commandDescriptors??[],...e.skills?ei(e.skills):[],...e.agents?ti(e.agents):[]]}function ri(e){let t=[];return H(t,Kr(e.agentsMd)),H(t,qr(e.claudeMd)),H(t,Jr(e.memoryMd)),H(t,Yr(e.taskContext)),H(t,Hr(e.cwd)),t.push(Ur(e.projectInfo)),H(t,Gr(e.language)),t.push(Wr(e.trustLevel)),H(t,Xr(e.toolDescriptions)),t.push(...$r(ni(e))),Br(t)}function ii(e,t,n,r,i,a){let o,s=[],c;if(e.enableAgentRuntime){let l=new Ar(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 pe({runner:(e.subagentRunnerFactory??Tt)(o),backgroundTaskRunners:e.backgroundTaskRunners});o.subagentManager=u,c=u.getBackgroundTaskManager(),o.backgroundTaskManager=c}else c=new fe({runners:e.backgroundTaskRunners??[]});let l=e.sessionLogger;return l&&c.subscribe(e=>ci(l,t,e)),c.subscribe(t=>Mr(t,n,e.config.hooks,a.length>0?a:void 0)),{agentToolDeps:o,agentDefinitions:s,backgroundTaskManager:c}}function ai(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:P({kind:`tool_call`,sessionId:n,label:`BackgroundProcess`})};return i.push(Rr(a)),{backgroundProcessToolDeps:a}}function oi(e,t,n,r,i,a,o){let s=e.systemPromptBuilder??ri,c=[...Qn,...r?r.commandTools.map(ut):[]],l=e.toolDescriptions??(i?[...c,`BackgroundProcess — start long-running shell commands as managed background tasks`]:c),u={agentsMd:e.context.agentsMd,claudeMd:e.context.claudeMd,memoryMd:e.context.memoryMd,taskContext:e.context.taskContext,toolDescriptions:l,trustLevel:e.config.defaultTrustLevel,projectInfo:e.projectInfo??{type:`unknown`,language:`unknown`},cwd:t,language:e.config.language,skills:a.map(e=>({name:e.name,description:e.description,disableModelInvocation:e.disableModelInvocation})),...o.length>0?{agents:o.map(e=>({name:e.name,description:e.description}))}:{},commandDescriptors:e.commandDescriptors??[]},d=s(u);return{finalSystemMessage:e.appendSystemPrompt?`${d}\n\n${e.appendSystemPrompt}`:d,rebuildSystemMessage:(t,n)=>{let r=s({...u,agentsMd:t,claudeMd:n});return e.appendSystemPrompt?`${r}\n\n${e.appendSystemPrompt}`:r}}}function si(e,t,n,r){t&&(t.parentSessionId=e.getSessionId()),n&&(n.parentSessionId=e.getSessionId()),In(e,r),t&&Dn(e,t)}function ci(e,t,n){e.log(t,`background_task_event`,{backgroundEventType:n.type,backgroundEvent:n})}function li(e){return(e??[]).filter(e=>e.modelInvocable&&e.kind===`builtin-command`)}function ui(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function di(e,t){return e.some(e=>ui(e.name)===t)}function fi(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??pi(),i=new Tr(n),a=li(e.commandDescriptors),o=a.length>0&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0,s=o?lt(a):void 0,c=di(a,`skills`)?i.getModelInvocableSkills():[],l=$n({sandboxClient:e.sandboxClient}),u=e.editCheckpointRecorder!==void 0&&e.sandboxClient===void 0,d=[...u&&e.editCheckpointRecorder?tr(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?cr(d,{...f,checkpointAvailable:u}):d;o&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0&&p.push(...ft({execute:e.modelCommandExecutor,isModelInvocable:e.isModelCommandInvocable,commandDescriptors:a}));let m=[];e.providerFactory&&m.push(new Yn({providerFactory:e.providerFactory,defaultModel:e.config.provider.model})),e.sessionFactory&&m.push(new Zn({sessionFactory:e.sessionFactory})),e.additionalHookExecutors&&m.push(...e.additionalHookExecutors);let{agentToolDeps:h,agentDefinitions:ee,backgroundTaskManager:te}=ii(e,r,n,t,p,m),{backgroundProcessToolDeps:g}=ai(e,te,r,n,p),{finalSystemMessage:_,rebuildSystemMessage:ne}=oi(e,n,a,s,g,c,ee),re=[`Read(.agents/**)`,`Read(.claude/**)`,`Read(.robota/**)`,`Glob(.agents/**)`,`Glob(.claude/**)`,`Glob(.robota/**)`],ie=(e.allowedTools??[]).map(e=>`${e}(*)`),ae={allow:[...re,...e.config.permissions.allow??[],...ie],deny:e.config.permissions.deny??[]},oe=new ve({tools:p,provider:t,systemMessage:_,terminal:e.terminal,permissions:ae,hooks:e.config.hooks,permissionMode:e.permissionMode,defaultTrustLevel:e.config.defaultTrustLevel,model:e.config.provider.model,providerTimeout:e.config.provider.timeout??12e4,maxTurns:e.maxTurns,sessionStore:e.sessionStore,sessionId:r,permissionHandler:e.permissionHandler,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});return si(oe,h,g,te),{session:oe,rebuildSystemMessage:ne}}function pi(){return`session_${Date.now()}_${Math.random().toString(36).substr(2,9)}`}function mi(e,t,n,r=new R){let i=x(n,e,`subagents`);return r.mkdirSync(i,{recursive:!0}),new _e(i)}function hi(e,t){return x(t,e,`subagents`)}function U(e){let t=x(e,`.robota`);return{settings:x(t,`settings.json`),settingsLocal:x(t,`settings.local.json`),logs:x(t,`logs`),sessions:x(t,`sessions`),memory:x(t,`memory`),checkpoints:x(t,`checkpoints`)}}function gi(){let e=x(w(),`.robota`);return{settings:x(e,`settings.json`),sessions:x(e,`sessions`)}}const W=_.lazy(()=>_.union([_.string(),_.number(),_.boolean(),_.null(),_.undefined(),_.date(),_.array(W),_.record(W)])),_i=_.object({name:_.string().optional(),model:_.string().optional(),apiKey:_.string().optional(),baseURL:_.string().optional(),timeout:_.number().optional(),options:_.record(W).optional()}),vi=_.object({type:_.string().optional(),model:_.string().optional(),apiKey:_.string().optional(),baseURL:_.string().optional(),timeout:_.number().optional(),options:_.record(W).optional()}),yi=_.object({allow:_.array(_.string()).optional(),deny:_.array(_.string()).optional()}),bi=_.record(_.string()).optional(),xi=_.object({type:_.literal(`command`),command:_.string(),timeout:_.number().optional()}),Si=_.object({type:_.literal(`http`),url:_.string(),headers:_.record(_.string()).optional(),timeout:_.number().optional()}),Ci=_.object({type:_.literal(`prompt`),prompt:_.string(),model:_.string().optional()}),wi=_.object({type:_.literal(`agent`),agent:_.string(),maxTurns:_.number().optional(),timeout:_.number().optional()}),Ti=_.discriminatedUnion(`type`,[xi,Si,Ci,wi]),G=_.object({matcher:_.string(),hooks:_.array(Ti)}),Ei=_.object({PreToolUse:_.array(G).optional(),PostToolUse:_.array(G).optional(),SessionStart:_.array(G).optional(),SessionEnd:_.array(G).optional(),Stop:_.array(G).optional(),StopFailure:_.array(G).optional(),PreCompact:_.array(G).optional(),PostCompact:_.array(G).optional(),UserPromptSubmit:_.array(G).optional(),SubagentStart:_.array(G).optional(),SubagentStop:_.array(G).optional(),WorktreeCreate:_.array(G).optional(),WorktreeRemove:_.array(G).optional()}).optional(),Di=_.record(_.boolean()).optional(),Oi=_.object({source:_.object({type:_.enum([`github`,`git`,`local`,`url`]),repo:_.string().optional(),url:_.string().optional(),path:_.string().optional(),ref:_.string().optional()})}),ki=_.record(Oi).optional().catch(void 0),Ai=_.union([_.number().gt(0).lte(1),_.literal(!1)]).optional(),ji=_.object({enabled:_.boolean().optional(),options:_.record(W).optional()}),Mi=_.object({defaultTrustLevel:_.enum([`safe`,`moderate`,`full`]).optional(),language:_.string().optional(),currentProvider:_.string().optional(),providers:_.record(vi).optional(),provider:_i.optional(),permissions:yi.optional(),env:bi,hooks:Ei,enabledPlugins:Di,extraKnownMarketplaces:ki,autoCompactThreshold:Ai,transports:_.record(ji).optional()});function Ni(){return process.env.HOME??process.env.USERPROFILE??`/`}const K={defaultTrustLevel:`moderate`,provider:{name:`anthropic`,model:`claude-opus-4-5`,apiKey:void 0},permissions:{allow:[],deny:[]},env:{}};function Pi(e){if(!T(e))return;let t=E(e,`utf-8`).trim();if(t.length!==0)try{return JSON.parse(t)}catch{return}}function Fi(e){if(e.startsWith(`$ENV:`)){let t=e.slice(5);return process.env[t]??e}return e}function Ii(e){let t=e.provider?.apiKey===void 0?e.provider:Li(e.provider);if(e.providers!==void 0){let n=Object.fromEntries(Object.entries(e.providers).map(([e,t])=>[e,Li(t)]));return{...e,provider:t,providers:n}}return{...e,provider:t}}function Li(e){return{...e,...e.apiKey!==void 0&&{apiKey:Fi(e.apiKey)}}}function Ri(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?zi(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 zi(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Bi(e){if(e.currentProvider!==void 0)return Vi(e);if(e.provider!==void 0)throw Error(`Legacy flat "provider" settings are not supported. Migrate to "currentProvider" + "providers" format.`);return{...K.provider}}function Vi(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??K.provider.model,apiKey:n.apiKey??K.provider.apiKey,...n.baseURL!==void 0&&{baseURL:n.baseURL},...n.timeout!==void 0&&{timeout:n.timeout},...n.options!==void 0&&{options:n.options}}}function Hi(e){return{defaultTrustLevel:e.defaultTrustLevel??K.defaultTrustLevel,language:e.language,currentProvider:e.currentProvider,provider:Bi(e),permissions:{allow:e.permissions?.allow??K.permissions.allow,deny:e.permissions?.deny??K.permissions.deny},env:e.env??K.env,hooks:e.hooks??void 0,enabledPlugins:e.enabledPlugins??void 0,extraKnownMarketplaces:e.extraKnownMarketplaces??void 0,autoCompactThreshold:e.autoCompactThreshold}}function Ui(e){let t=Ni();return[D(t,`.robota`,`settings.json`),D(t,`.claude`,`settings.json`),D(e,`.robota`,`settings.json`),D(e,`.robota`,`settings.local.json`),D(e,`.claude`,`settings.json`),D(e,`.claude`,`settings.local.json`)]}async function Wi(e){let t=Ui(e),n=[];for(let e of t){let t=Pi(e);t!==void 0&&n.push({raw:t,path:e})}return Hi(Ri(n.map(({raw:e,path:t})=>{let n=Mi.safeParse(e);if(!n.success)throw Error(`Invalid settings in ${t}: ${n.error.message}`);return Ii(n.data)})))}const Gi=200,Ki=25600,qi=[`user`,`feedback`,`project`,`reference`];function Ji(e){return qi.includes(e)}function Yi(e){return D(e,`.robota`,`memory`)}function Xi(e,t){let n=Buffer.from(e,`utf8`);return n.byteLength<=t?e:n.subarray(0,t).toString(`utf8`)}function Zi(e,t){let n=e.split(/\r?\n/);return{content:n.slice(0,t).join(`
|
|
59
|
-
`).trimEnd(),truncated:n.length>t}}function Qi(e){return e.trim().toLowerCase().replace(/[^a-z0-9가-힣_-]+/g,`-`).replace(/^-+|-+$/g,``).slice(0,80)||`general`}function $i(e,t,n){let r=e.toISOString().slice(0,10),i=t.text.trim().replace(/\s+/g,` `);return`[${r}] (${t.type}/${n}) ${i}`}function ea(e){return e.trim().replace(/\s+/g,` `)}var ta=class{cwd;now;constructor(e,t=()=>new Date){this.cwd=e,this.now=t}getIndexPath(){return D(Yi(this.cwd),`MEMORY.md`)}getTopicsPath(){return D(Yi(this.cwd),`topics`)}loadStartupMemory(){let e=this.getIndexPath();if(!T(e))return{content:``,path:e,lineCount:0,truncated:!1};let t=E(e,`utf8`),n=Xi(t,Ki),r=Buffer.byteLength(t,`utf8`)>Ki,i=Zi(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=T(e)?Ye(e,{withFileTypes:!0}).filter(e=>e.isFile()&&e.name.endsWith(`.md`)).map(t=>({name:Ze(t.name,`.md`),path:D(e,t.name)})).sort((e,t)=>e.name.localeCompare(t.name)):[];return{indexPath:this.getIndexPath(),topicsPath:e,topics:t}}readTopic(e){let t=Qi(e),n=D(this.getTopicsPath(),`${t}.md`);return T(n)?E(n,`utf8`).trimEnd():``}append(e){let t=Qi(e.topic),n=Yi(this.cwd),r=this.getTopicsPath();Je(r,{recursive:!0});let i=this.getIndexPath(),a=D(r,`${t}.md`),o=$i(this.now(),e,t),s=T(a)?``:`# ${t}\n\n`,c=ea(e.text);return T(a)&&E(a,`utf8`).includes(`) ${c}`)?{indexPath:i,topicPath:a,topic:t,deduplicated:!0}:(T(i)||(Je(n,{recursive:!0}),Xe(i,`# Project Memory
|
|
53
|
+
`));i().updateSystemMessage(f);for(let e of l)a(`context_file_refreshed`,{filePath:e})}function sr(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 cr(e,t,n){let r=e.find(e=>e.sourcePath===t.sourcePath),i=e.filter(e=>e.sourcePath!==t.sourcePath),a=r?pr(r,t):t;return mr([...i,a],n)}function lr(e,t){let n=_r(t),r=e.find(e=>vr(e,n));return r?{references:e.filter(e=>e.sourcePath!==r.sourcePath),result:{removed:r}}:{references:[...e],result:{}}}function ur(e){return{removed:[...e]}}function dr(e){return e.filter(e=>e.status===`active`)}function fr(e){return e.map(e=>({originalReference:e.originalReference,sourcePath:e.sourcePath,relativePath:e.relativePath,reason:e.loadType,depth:0,byteLength:e.byteLength}))}function pr(e,t){return t.status===`active`?{...t,loadedAt:e.loadedAt}:{...e,byteLength:t.byteLength,originalReference:t.originalReference,lastUsedAt:t.lastUsedAt}}function mr(e,t){let n=t?.maxActiveReferences??8,r=t?.maxActiveBytes??262144,i=t?.maxObservedReferences??32,a=[],o=[...e];for(;hr(o)>n||gr(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 hr(e){return e.filter(e=>e.status===`active`).length}function gr(e){return e.reduce((e,t)=>e+(t.status===`active`?t.byteLength:0),0)}function _r(e){return e.startsWith(`@`)?e.slice(1):e}function vr(e,t){return e.relativePath===t||e.sourcePath===t||e.originalReference===t||e.originalReference===`@${t}`}function yr(e,t){return t.length===0?e:[e,`<robota_file_references>`,...t.map(e=>{let t=e.content.replaceAll(`</file>`,`<\\/file>`);return[`<file path="${Cr(e.relativePath)}" bytes="${e.byteLength}" reason="${e.reason}">`,t,`</file>`].join(`
|
|
54
|
+
`)}),`</robota_file_references>`].join(`
|
|
60
55
|
|
|
61
|
-
|
|
62
|
-
`)
|
|
63
|
-
|
|
56
|
+
`)}function br(e){return e.some(e=>e.severity===`error`)}function xr(e){return e.length===0?``:[`File reference error:`,...e.map(e=>`- ${e.reference}: ${e.message}`)].join(`
|
|
57
|
+
`)}function z(e){return e.map(({content:e,...t})=>t)}function Sr(e){let t=z(e);return{id:`prompt_file_reference_${_()}`,timestamp:new Date,category:`event`,type:`prompt-file-reference`,data:{message:wr(t),references:t}}}function Cr(e){return e.replaceAll(`&`,`&`).replaceAll(`"`,`"`).replaceAll(`<`,`<`).replaceAll(`>`,`>`)}function wr(e){return`Loaded file references: ${e.map(e=>`${e.relativePath} (${e.byteLength} B)`).join(`, `)}`}const Tr=/(^|[\s([{])@([^\s)\]}>,;"'`]+)/g;function Er(e){let t=[];for(let n of e.matchAll(Tr)){let e=Dr(n[2]??``);Or(e)&&t.push({original:`@${e}`,path:e,index:n.index??0})}return t}function Dr(e){let t=e.length;for(;t>0&&/[.,:;!?]/.test(e[t-1]??``);)--t;return e.slice(0,t)}function Or(e){return e.length===0||e.includes(`://`)?!1:e.startsWith(`./`)||e.startsWith(`../`)||e.startsWith(`/`)||e.startsWith(`~/`)||e.startsWith(`.`)||e.includes(`.`)}function kr(e,t){return e.startsWith(`~/`)?w(T(),e.slice(2)):Ke(e)?w(e):w(t,e)}function Ar(e,t){let n=C(t,e);return n===``||!n.startsWith(`..`)&&!Ke(n)}function jr(e,t){return C(e,t).split(qe).join(`/`)}const Mr=1024;64*Mr,256*Mr;async function Nr(e,t){let n=await Fr(t);for(let t of Er(e))await zr(t,0,[],n);return Ir(n)}async function Pr(e,t){let n=await Fr(t);for(let t of e)await zr({original:`@${t}`,path:t,index:0},0,[],n);return Ir(n)}async function Fr(e){let t=e.fsAsync??new R;return{rootPath:await Rr(e.cwd,t),limits:Lr(e.limits),reason:e.reason??`prompt-reference`,references:[],diagnostics:[],loadedPaths:new Set,totalBytes:0,fsAsync:t}}function Ir(e){return{references:e.references,diagnostics:e.diagnostics}}function Lr(e){return{maxDepth:e?.maxDepth??2,maxReferences:e?.maxReferences??8,maxFileBytes:e?.maxFileBytes??65536,maxTotalBytes:e?.maxTotalBytes??262144}}async function Rr(e,t){try{return await t.realpath(e)}catch{return w(e)}}async function zr(e,t,n,r){if(!Br(e,t,r))return;let i=await Vr(e,r);if(i===void 0||!Hr(e,i,n,r))return;let a=await Ur(e,i,r);if(a===void 0)return;let o=await Wr(e,i,r);o!==void 0&&(r.loadedPaths.add(i),r.totalBytes+=a.byteLength,r.references.push(Gr(e,a,t,o,r)),await Kr(o,t,[...n,i],r))}function Br(e,t,n){return n.references.length>=n.limits.maxReferences?(B(n,`too-many-references`,e,`Too many file references.`),!1):t>n.limits.maxDepth?(B(n,`max-depth`,e,`File reference nesting is too deep.`),!1):!0}async function Vr(e,t){let n=kr(e.path,t.rootPath);if(!Ar(n,t.rootPath)){B(t,`outside-root`,e,`Referenced path is outside the workspace.`);return}try{let r=await t.fsAsync.realpath(n);if(Ar(r,t.rootPath))return r;B(t,`outside-root`,e,`Referenced path resolves outside the workspace.`)}catch{B(t,`not-found`,e,`Referenced file was not found.`)}}function Hr(e,t,n,r){return n.includes(t)?(B(r,`circular-reference`,e,`Circular file reference detected.`),!1):!r.loadedPaths.has(t)}async function Ur(e,t,n){try{let r=await n.fsAsync.stat(t);if(r.isDirectory()){B(n,`directory-not-supported`,e,`Directory references are not supported.`);return}if(r.size>n.limits.maxFileBytes){B(n,`file-too-large`,e,`Referenced file exceeds the per-file size limit.`);return}if(n.totalBytes+r.size>n.limits.maxTotalBytes){B(n,`total-too-large`,e,`Referenced files exceed the total size limit.`);return}return{sourcePath:t,byteLength:r.size}}catch{B(n,`unreadable`,e,`Referenced file could not be inspected.`);return}}async function Wr(e,t,n){try{return await n.fsAsync.readFile(t,`utf8`)}catch{B(n,`unreadable`,e,`Referenced file could not be read.`);return}}function Gr(e,t,n,r,i){return{originalReference:e.original,sourcePath:t.sourcePath,relativePath:jr(i.rootPath,t.sourcePath),reason:i.reason,depth:n,byteLength:t.byteLength,content:r}}async function Kr(e,t,n,r){for(let i of Er(e))await zr(i,t+1,n,r)}function B(e,t,n,r){e.diagnostics.push({code:t,severity:`error`,reference:n.original,message:r,path:n.path})}function qr(e){return e instanceof DOMException&&e.name===`AbortError`||e instanceof Error&&(e.message.includes(`aborted`)||e.message.includes(`abort`))}function Jr(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 Yr(e,t,n,r,i,a){let o=Jr(t,r),s=ei(t,r,i);return{response:e,history:n,toolSummaries:o,contextState:i,...s&&{usage:s},...a&&a.length>0?{promptFileReferences:[...a]}:{}}}function Xr(e,t,n,r){let i=Jr(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=ei(e,n,r);return{response:a.join(`
|
|
58
|
+
|
|
59
|
+
`),history:t,toolSummaries:i,contextState:r,...o&&{usage:o}}}function Zr(e){return{id:`usage_${_()}`,timestamp:new Date,category:`event`,type:`usage-summary`,data:e}}async function Qr(e,t,n,r=[]){let i=await Pr(dr(r).map(e=>e.sourcePath),{cwd:t,reason:`manual`}),a=await Nr(e,{cwd:t}),o=[...i.diagnostics,...a.diagnostics];if(br(o))throw Error(xr(o));let s=yr(e,$r([...i.references,...a.references])),c=n??(s===e?void 0:e),l=z(i.references),u=z(a.references),d=a.references.length>0?Sr(a.references):void 0;return{modelInput:s,...c===void 0?{}:{hookInput:c},activeContextReferenceRecords:l,promptFileReferenceRecords:u,...d===void 0?{}:{promptFileReferenceEntry:d}}}function $r(e){return[...new Map(e.map(e=>[e.sourcePath,e])).values()]}function ei(e,n,r){let i=e.slice(n),a=0,o=0,s=!1;for(let e of i){if(e.role!==`assistant`)continue;let n=t(e);n&&(s=!0,a+=n.inputTokens,o+=n.outputTokens)}if(s)return{kind:`exact`,scope:`turn`,promptTokens:a,completionTokens:o,totalTokens:a+o,contextUsedTokens:r.usedTokens,contextMaxTokens:r.maxTokens,contextUsedPercentage:r.usedPercentage,costStatus:`unknown`}}const ti={write:()=>{},writeLine:()=>{},writeMarkdown:()=>{},writeError:()=>{},prompt:()=>Promise.resolve(``),select:()=>Promise.resolve(0),spinner:()=>({stop:()=>{},update:()=>{}})};function ni(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 ri(e,t,n){let r=e?.[t]??e?.[n];return typeof r==`string`?r:null}function ii(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 ai(e){if(e.toolName!==`Edit`)return{};let t=ri(e.toolArgs,`file_path`,`filePath`),n=ri(e.toolArgs,`old_string`,`oldString`),r=ri(e.toolArgs,`new_string`,`newString`);return!t||n===null||r===null||n===r?{}:{diffFile:t,diffLines:si(n,r,ii(e.toolResultData),t)}}function oi(e,t,n){return[...e.split(`
|
|
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 si(e,t,n,r,i=new L){let a=oi(e,t,n),o;try{o=i.readFileSync(r,`utf8`).split(`
|
|
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
|
+
`).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
|
+
`).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 ci(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:_(),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 li(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 ui(e,t){let n=ni(t.toolArgs),r={toolName:t.toolName,firstArg:n,isRunning:!0};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 di(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],...ai(t),isRunning:!1,result:n,toolResultData:t.toolResultData};return e.activeTools[r]=i,e.activeTools=li(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}async function fi(e,t,a,o){let s=o.getHistory();s.push(p(i(t??e))),o.onWorkspaceUpdated();let c=o.getSession().getHistory().length;o.resetUsedMemoryReferences();try{let r=await Qr(e,o.getCwd(),a,o.getContextReferences());r.promptFileReferenceEntry&&s.push(r.promptFileReferenceEntry),o.recordContextReferenceUsage(r.activeContextReferenceRecords),o.recordPromptContextReferences(r.promptFileReferenceRecords),await o.beginEditCheckpointTurn(t??e);let i=await o.getSession().run(r.modelInput,r.hookInput);o.flushStreaming(),ci({activeTools:o.getActiveTools(),history:s}),o.clearStreaming();let l=Yr(i||`(empty response)`,o.getSession().getHistory(),s,c,o.getSession().getContextState(),r.promptFileReferenceRecords);s.push(p(n(l.response))),l.usage&&s.push(Zr(l.usage)),o.onComplete(l),o.onContextUpdate()}catch(e){if(o.flushStreaming(),qr(e)){let e=Xr(o.getSession().getHistory(),s,c,o.getSession().getContextState());ci({activeTools:o.getActiveTools(),history:s}),o.clearStreaming(),e.response&&s.push(p(n(e.response))),e.usage&&s.push(Zr(e.usage)),s.push(p(r(`Interrupted by user.`))),o.onInterrupted(e)}else{ci({activeTools:o.getActiveTools(),history:s}),o.clearStreaming();let t=e instanceof Error?e.message:String(e);s.push(p(r(`Error: ${t}`))),o.onError(e instanceof Error?e:Error(t))}}}var pi=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(p(r(`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=ui(t,e);this.activeTools=t.activeTools,this.callbacks.emit(`tool_start`,n)}else{let n=di(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 or(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 fi(e,t,n,{getSession:()=>this.callbacks.getSessionOrThrow(),getCwd:()=>this.callbacks.getCwd(),getHistory:()=>this.histTracker.getHistory(),getContextReferences:()=>this.histTracker.listContextReferences(),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,a,o,s){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(p(i(n??`/${e.name}`))),this.emitExecutionWorkspaceUpdated(`main_thread`);try{let n=await this.skillRouter.executeSkillWithActivation(e,t,o,a);return await this.applyForkSkillResult(n.result??`(empty response)`),n}catch(e){let t=e instanceof Error?e:Error(String(e));return this.histTracker.append(p(r(`Error: ${t.message}`))),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(s)}}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(),ci({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(p(n(e))),this.callbacks.emit(`complete`,t),this.callbacks.emit(`context_update`,this.callbacks.getContextState())}};function mi(e,t,n){let r=F(n)?.customAgentRegistry?.(e)??on(e);if(!r)throw Error(`Unknown agent type: ${e}`);return t.allowedTools?{...r,tools:t.allowedTools}:r}async function hi(e,t,n){let r=F(n);if(!r)throw Error(`Fork execution is not available. Agent runtime deps may not be initialized.`);return wn({agentDefinition:mi(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 gi(e,t,n){let r=await Pr([t],{cwd:n,reason:`manual`});if(br(r.diagnostics))return{references:[...e],result:{evicted:[],diagnostics:[xr(r.diagnostics)]}};let i=r.references[0];if(!i)return{references:[...e],result:{evicted:[],diagnostics:[`No context reference was resolved.`]}};let a=sr(z([i])[0],`manual`,`active`),o=cr(e,a);return{references:o.references,result:{reference:a,evicted:o.evicted,diagnostics:[]}}}function _i(e,t,n){if(t.length===0)return[...e];let r=new Date().toISOString(),i=[...e];for(let e of t){let t=sr(e,n.loadType,n.status,r);i=cr(i,t).references}return i}function V(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 vi(){let e=S(T(),`.robota`);return{settings:S(e,`settings.json`),sessions:S(e,`sessions`)}}function yi(e){let t=e.fs??new L,n=e.manifests.filter(t=>t.sequence>e.target.sequence),r=e.manifests.filter(t=>t.sequence>=e.target.sequence);return{target:bi(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?Si(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:xi(n),rollbackThroughCheckpoint:xi(r)}}function bi(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function xi(e){return{checkpointIds:e.map(e=>e.id),fileCount:e.reduce((e,t)=>e+t.fileCount,0)}}function Si(e,t){try{return t.statSync(e)}catch{return}}const Ci=`manifest.json`,wi=`files`;var Ti=class{fs;fsAsync;cwd;rootDir;now;activeTurn=null;constructor(e,t=new L,n=new R){this.fs=t,this.fsAsync=n,this.cwd=w(e.cwd),this.rootDir=V(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,wi),{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},H(i)}async captureFile(e){if(!this.activeTurn)return;let t=w(this.cwd,e);if(this.activeTurn.capturedPaths.has(t)||Di(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),H(e.manifest)}list(e){return this.loadManifests(e).map(H)}inspect(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);return yi({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:H(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:H(r),restoredCheckpointCount:i.length,restoredFileCount:a,removedCheckpointCount:i.length}}async createFileRecord(e,t){if(!await Oi(this.fsAsync,this.fs,e))return{originalPath:e,existed:!1};let n=S(wi,`${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 ki(this.fs,t).map(e=>S(t,e,Ci)).map(e=>Ai(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,Ci),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,Ei(e))}checkpointDir(e,t){return S(this.sessionDir(e),Ei(t))}};function H(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function Ei(e){return e.replace(/[^a-zA-Z0-9._-]/g,`_`)}function Di(e,t){let n=C(e,t);return n.length===0||!n.startsWith(`..`)&&!n.startsWith(`/`)}async function Oi(e,t,n){try{return await e.access(n,t.constants.F_OK),!0}catch{return!1}}function ki(e,t){try{return e.readdirSync(t)}catch{return[]}}function Ai(e,t){try{let n=e.readFileSync(t,`utf8`);return JSON.parse(n)}catch{return}}function ji(e){return e.source===`plugin`?`plugin`:`skill`}function Mi(e){return e.context===`fork`?`fork`:`inject`}function Ni(e){return{type:`skill-activation`,skillName:e.skill.name,source:ji(e.skill),invocation:e.invocation,mode:Mi(e.skill),status:e.status,timestamp:new Date().toISOString(),...e.qualifiedName===void 0?{}:{qualifiedName:e.qualifiedName},...e.error===void 0?{}:{error:e.error}}}function Pi(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 Fi=class{cwd;getSessionId;getExecuting;persistSession;emitSkillActivation;history=[];editCheckpointStore=null;memoryEvents=[];usedMemoryReferences=[];contextReferences=[];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=_i(this.contextReferences,e,{loadType:`manual`,status:`active`}),this.persistSession()}recordPromptContextReferences(e){this.contextReferences=_i(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(p(r(`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(p(r(`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(p(r(`Checkpoint error: ${t.message}`))),t}}setEditCheckpointStore(e){this.editCheckpointStore=e}getUsedMemoryReferences(){return[...this.usedMemoryReferences]}recordMemoryEvent(e){this.memoryEvents.push(e),this.persistSession()}listContextReferences(){return[...this.contextReferences]}async addContextReference(e){let{references:t,result:n}=await gi(this.contextReferences,e,this.cwd);return this.contextReferences=t,this.persistSession(),n}removeContextReference(e){let t=lr(this.contextReferences,e);return this.contextReferences=t.references,this.persistSession(),t.result}clearContextReferences(){let e=ur(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:Pi(e)}}),this.emitSkillActivation(e),this.persistSession()}getCheckpointStore(){return this.editCheckpointStore||=new Ti({cwd:this.cwd}),this.editCheckpointStore}};function Ii(e){if(E(e))try{return JSON.parse(D(e,`utf-8`))}catch{return}}function Li(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 Ri(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=Ii(t),i=E(n)?`typescript`:`javascript`,a=Li(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 zi(e,t){typeof t.content==`string`&&(t.role===`tool`?e.injectMessage(`tool`,t.content,{toolCallId:t.toolCallId,...t.name===void 0?{}:{name:t.name}}):e.injectMessage(t.role,t.content))}function Bi(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:ee,backgroundTaskEvents:te}=Vi(o,s),ne=i.name,h=null;if(!n&&i.messages)if(r)for(let e of i.messages)zi(r,e);else h=i.messages;return{history:a,sessionName:ne,pendingRestoreMessages:h,backgroundTasks:ee,backgroundTaskEvents:te,backgroundJobGroups:c,backgroundJobGroupEvents:l,skillActivationEvents:u,memoryEvents:d,usedMemoryReferences:f,contextReferences:p,sandboxSnapshotId:m}}function Vi(e,t){let n=new Date().toISOString(),r=[];return{backgroundTasks:e.map(e=>{if(Hi(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 Hi(e){return e===`completed`||e===`failed`||e===`cancelled`}function Ui(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 Wi(e,t,n,r){let i=Ui(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 Gi=[`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 Ki(e={}){return[ce(e),ue(e),de(e),le(e),pe,me,he,ge]}const qi=new Set([`tools`,`disallowedTools`]),Ji=new Set([`maxTurns`]);function Yi(e){let t=e.includes(`,`)?/\s*,\s*/:/\s+/;return e.split(t).map(e=>e.trim()).filter(e=>e.length>0)}function Xi(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();qi.has(i)?r[i]=Yi(a):Ji.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 U(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=S(e,i.name),{frontmatter:a,body:o}=Xi(t.readFileSync(r,`utf-8`)),s=Ge(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 Zi=class{cwd;home;fs;constructor(e,t,n=new L){this.cwd=e,this.home=t??T(),this.fs=n}loadAll(){let e=[U(S(this.cwd,`.robota`,`agents`),this.fs),U(S(this.cwd,`.agents`,`agents`),this.fs),U(S(this.cwd,`.claude`,`agents`),this.fs),U(S(this.home,`.robota`,`agents`),this.fs),U(S(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 an)t.has(e.name)||r.push(e);return r}getAgent(e){return this.loadAll().find(t=>t.name===e)}};function Qi(e){let t=e.content.trim();return e.title?[`## ${e.title}`,t].join(`
|
|
69
|
+
`):t}function $i(e){return[...e].filter(e=>e.content.trim().length>0).sort((e,t)=>e.priority-t.priority||e.id.localeCompare(t.id)).map(e=>Qi(e)).join(`
|
|
70
|
+
|
|
71
|
+
`)}const ea={safe:`safe`,moderate:`moderate`,full:`full`};function W(e,t,n,r,i){return{id:e,title:t,priority:n,content:r,source:i}}function ta(e){if(e)return W(`runtime-cwd`,`Working Directory`,30,`\`${e}\``,`runtime`)}function na(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}`),W(`runtime-project`,`Current Project`,40,t.join(`
|
|
72
|
+
`),`runtime`)}function ra(e){return W(`permission-mode`,`Permission Mode`,50,`- **Trust level:** ${ea[e]}`,`permissions`)}function ia(e){if(!(e===void 0||e.trim().length===0))return W(`runtime-response-language`,`Response Language`,45,e,`runtime`)}function aa(e){if(e.trim().length!==0)return W(`project-agents-md`,`Agent Instructions`,10,e,`project-instructions`)}function oa(e){if(e.trim().length!==0)return W(`project-claude-md`,`Project Notes`,20,e,`project-instructions`)}function sa(e){if(!(e===void 0||e.trim().length===0))return W(`project-memory`,`Project Memory`,25,e,`project-instructions`)}function ca(e){if(!(e===void 0||e.trim().length===0))return W(`active-task-context`,`Active Task Context`,27,e,`project-instructions`)}function la(e){if(e.length!==0)return W(`tool-descriptions`,`Available Tools`,60,e.map(e=>`- ${e}`).join(`
|
|
73
|
+
`),`tool`)}function ua(e){let t=e.argumentHint?` ${e.argumentHint}`:``;return`- ${e.name}${t}: ${e.description}`}function da(e,t,n,r,i){let a=i.filter(t=>t.modelInvocable&&t.kind===e).map(ua);if(a.length!==0)return W(`capability-${e}`,t,n,a.join(`
|
|
74
|
+
`),r)}function fa(e){let t=[],n=da(`builtin-command`,`Built-in Commands`,70,`command`,e),r=da(`skill`,`Skills`,80,`skill`,e),i=da(`agent`,`Agents`,90,`agent`,e),a=da(`tool`,`Tools`,100,`tool`,e);return n&&t.push(n),r&&t.push(r),i&&t.push(i),a&&t.push(a),t}function G(e,t){t!==void 0&&e.push(t)}function pa(e){return e.map(e=>({name:e.name,kind:`skill`,description:e.description,userInvocable:!0,modelInvocable:e.disableModelInvocation!==!0}))}function ma(e){return e.map(e=>({name:e.name,kind:`agent`,description:e.description,userInvocable:!1,modelInvocable:!0,safety:`background-agent`}))}function ha(e){return[...e.commandDescriptors??[],...e.skills?pa(e.skills):[],...e.agents?ma(e.agents):[]]}function ga(e){let t=[];return G(t,aa(e.agentsMd)),G(t,oa(e.claudeMd)),G(t,sa(e.memoryMd)),G(t,ca(e.taskContext)),G(t,ta(e.cwd)),t.push(na(e.projectInfo)),G(t,ia(e.language)),t.push(ra(e.trustLevel)),G(t,la(e.toolDescriptions)),t.push(...fa(ha(e))),$i(t)}function _a(e){return e}const va=g.object({command:g.string().describe(`The shell command to start in the background`),timeout:g.number().optional().describe(`Optional timeout in milliseconds. Default is 120000.`),workingDirectory:g.string().optional().describe(`Working directory for the command. Defaults to the current project directory.`),stdin:g.string().optional().describe(`Optional stdin to write after the process starts.`),outputLimitBytes:g.number().optional().describe(`Maximum captured output bytes kept in the task result.`)});function ya(e,t,n){return JSON.stringify({success:!0,background:!0,output:``,taskId:e,status:t,command:n})}function ba(e){return JSON.stringify({success:!1,background:!0,output:``,error:`Background process error: ${e}`})}async function xa(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 ya(n.id,n.status,e.command)}catch(e){return ba(e instanceof Error?e.message:String(e))}}function Sa(e){return fe(`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.`,_a(va),async t=>xa(t,e))}function Ca(e,t,n,r,i,a){let o,s=[],c;if(e.enableAgentRuntime){let l=new Zi(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 h({runner:(e.subagentRunnerFactory??An)(o),backgroundTaskRunners:e.backgroundTaskRunners});o.subagentManager=u,c=u.getBackgroundTaskManager(),o.backgroundTaskManager=c}else c=new ne({runners:e.backgroundTaskRunners??[]});let l=e.sessionLogger;return l&&c.subscribe(e=>Da(l,t,e)),c.subscribe(t=>Wi(t,n,e.config.hooks,a.length>0?a:void 0)),{agentToolDeps:o,agentDefinitions:s,backgroundTaskManager:c}}function wa(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(Sa(a)),{backgroundProcessToolDeps:a}}function Ta(e,t,n,r,i,a,o){let s=e.systemPromptBuilder??ga,c=[...Gi,...r?r.commandTools.map(hn):[]],l=e.toolDescriptions??(i?[...c,`BackgroundProcess — start long-running shell commands as managed background tasks`]:c),u={agentsMd:e.context.agentsMd,claudeMd:e.context.claudeMd,memoryMd:e.context.memoryMd,taskContext:e.context.taskContext,toolDescriptions:l,trustLevel:e.config.defaultTrustLevel,projectInfo:e.projectInfo??{type:`unknown`,language:`unknown`},cwd:t,language:e.config.language,skills:a.map(e=>({name:e.name,description:e.description,disableModelInvocation:e.disableModelInvocation})),...o.length>0?{agents:o.map(e=>({name:e.name,description:e.description}))}:{},commandDescriptors:e.commandDescriptors??[]},d=s(u);return{finalSystemMessage:e.appendSystemPrompt?`${d}\n\n${e.appendSystemPrompt}`:d,rebuildSystemMessage:(t,n)=>{let r=s({...u,agentsMd:t,claudeMd:n});return e.appendSystemPrompt?`${r}\n\n${e.appendSystemPrompt}`:r}}}function Ea(e,t,n,r){t&&(t.parentSessionId=e.getSessionId()),n&&(n.parentSessionId=e.getSessionId()),Vt(e,r),t&&Fn(e,t)}function Da(e,t,n){e.log(t,`background_task_event`,{backgroundEventType:n.type,backgroundEvent:n})}const Oa=new Set([`Write`,`Edit`]);function ka(e,t){return e.map(e=>Oa.has(e.getName())?new Aa(e,t):e)}var Aa=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=ja(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 ja(e){if(!e||typeof e!=`object`)return;let t=e.filePath;return typeof t==`string`&&t.length>0?t:void 0}const Ma=new Set([`disable-model-invocation`,`user-invocable`]),Na=new Set([`allowed-tools`]);function Pa(e){return e.replace(/-([a-z])/g,(e,t)=>t.toUpperCase())}function Fa(e){let t=e.includes(`,`)?/\s*,\s*/:/\s+/;return e.split(t).map(e=>e.trim()).filter(e=>e.length>0)}function Ia(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=Pa(a);Ma.has(a)?n[s]=o===`true`:Na.has(a)?n[s]=Fa(o):n[s]=o}return Object.keys(n).length>0?n:null}function La(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 Ra(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=S(e,i.name,`SKILL.md`);if(!t.existsSync(r))continue;let a=t.readFileSync(r,`utf-8`),o=Ia(a);n.push(La(o,a,i.name))}return n}function za(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=S(e,i.name),a=t.readFileSync(r,`utf-8`),o=Ia(a),s=Ge(i.name,`.md`);n.push(La(o,a,s))}return n}var Ba=class{name=`skill`;cwd;home;fs;cachedCommands=null;constructor(e,t,n=new L){this.cwd=e,this.home=t??T(),this.fs=n}getCommands(){if(this.cachedCommands)return this.cachedCommands;let e=[Ra(S(this.cwd,`.claude`,`skills`),this.fs),za(S(this.cwd,`.claude`,`commands`),this.fs),Ra(S(this.home,`.robota`,`skills`),this.fs),Ra(S(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)}};function Va(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var Ha=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=Va(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 Ua(e){let t=/```(?:json)?\s*\n?([\s\S]*?)\n?\s*```/.exec(e);return t?t[1].trim():e.trim()}var Wa=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=Ua(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 Ga=new Set([`Write`,`Edit`]),Ka=new Set([`Bash`,`BackgroundProcess`]),qa=new Set([`Read`,`Glob`,`Grep`,`WebFetch`,`WebSearch`]);function Ja(e){let t=e.toolName;return qa.has(t)?{toolName:t,reversible:!0,sideEffect:`none`,rollbackLayer:`none`,status:`read-only`,message:`${t} does not mutate the local workspace.`}:Ga.has(t)?e.context.isolation===`worktree`||e.context.isolation===`provider-sandbox`?Za(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.`}:Ka.has(t)?Za(t,`shell-process`,e.context):t===`Agent`?Qa(e.toolArgs,e.context):{toolName:t,reversible:!1,sideEffect:`unknown`,rollbackLayer:`none`,status:`unknown`,message:`${t} has no reversible execution contract.`}}function Ya(e,t){let n={checkpointAvailable:t.checkpointAvailable,isolation:t.isolation??`none`},r=t.enforceUntrackedSideEffects??!0;return e.map(e=>new Xa(e,{safetyContext:n,enforceUntrackedSideEffects:r}))}var Xa=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=Ja({toolName:this.getName(),toolArgs:no(e),context:this.options.safetyContext});return!n.reversible&&this.options.enforceUntrackedSideEffects?ro(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 Za(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 Qa(e,t){return t.isolation===`worktree`||t.isolation===`provider-sandbox`?Za(`Agent`,`subagent`,t):$a(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 $a(e){if(!e)return!1;let t=e.jobs;return Array.isArray(t)?t.length>0&&t.every(e=>to(e)?eo(e)===`worktree`:!1):eo(e)===`worktree`}function eo(e){let t=e.isolation;return typeof t==`string`?t:void 0}function to(e){return e!==void 0&&typeof e==`object`&&!Array.isArray(e)}function no(e){if(!(!e||typeof e!=`object`||Array.isArray(e)))return e}function ro(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 io(e){return(e??[]).filter(e=>e.modelInvocable&&e.kind===`builtin-command`)}function ao(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function oo(e,t){return e.some(e=>ao(e.name)===t)}function so(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??co(),i=new Ba(n),a=io(e.commandDescriptors),o=a.length>0&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0,s=o?mn(a):void 0,c=oo(a,`skills`)?i.getModelInvocableSkills():[],l=Ki({sandboxClient:e.sandboxClient}),u=e.editCheckpointRecorder!==void 0&&e.sandboxClient===void 0,d=[...u&&e.editCheckpointRecorder?ka(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?Ya(d,{...f,checkpointAvailable:u}):d;o&&e.modelCommandExecutor!==void 0&&e.isModelCommandInvocable!==void 0&&p.push(..._n({execute:e.modelCommandExecutor,isModelInvocable:e.isModelCommandInvocable,commandDescriptors:a}));let m=[];e.providerFactory&&m.push(new Wa({providerFactory:e.providerFactory,defaultModel:e.config.provider.model})),e.sessionFactory&&m.push(new Ha({sessionFactory:e.sessionFactory})),e.additionalHookExecutors&&m.push(...e.additionalHookExecutors);let{agentToolDeps:ee,agentDefinitions:te,backgroundTaskManager:ne}=Ca(e,r,n,t,p,m),{backgroundProcessToolDeps:h}=wa(e,ne,r,n,p),{finalSystemMessage:re,rebuildSystemMessage:ie}=Ta(e,n,a,s,h,c,te),ae=[`Read(.agents/**)`,`Read(.claude/**)`,`Read(.robota/**)`,`Glob(.agents/**)`,`Glob(.claude/**)`,`Glob(.robota/**)`],oe=(e.allowedTools??[]).map(e=>`${e}(*)`),se={allow:[...ae,...e.config.permissions.allow??[],...oe],deny:e.config.permissions.deny??[]},ce=new ye({tools:p,provider:t,systemMessage:re,terminal:e.terminal,permissions:se,hooks:e.config.hooks,permissionMode:e.permissionMode,defaultTrustLevel:e.config.defaultTrustLevel,model:e.config.provider.model,providerTimeout:e.config.provider.timeout??12e4,maxTurns:e.maxTurns,sessionStore:e.sessionStore,sessionId:r,permissionHandler:e.permissionHandler,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});return Ea(ce,ee,h,ne),{session:ce,rebuildSystemMessage:ie}}function co(){return`session_${Date.now()}_${Math.random().toString(36).substr(2,9)}`}function lo(e,t,n,r=new L){let i=S(n,e,`subagents`);return r.mkdirSync(i,{recursive:!0}),new ve(i)}function uo(e,t){return S(t,e,`subagents`)}const K=g.lazy(()=>g.union([g.string(),g.number(),g.boolean(),g.null(),g.undefined(),g.date(),g.array(K),g.record(K)])),fo=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(K).optional()}),po=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(K).optional()}),mo=g.object({allow:g.array(g.string()).optional(),deny:g.array(g.string()).optional()}),ho=g.record(g.string()).optional(),go=g.object({type:g.literal(`command`),command:g.string(),timeout:g.number().optional()}),_o=g.object({type:g.literal(`http`),url:g.string(),headers:g.record(g.string()).optional(),timeout:g.number().optional()}),vo=g.object({type:g.literal(`prompt`),prompt:g.string(),model:g.string().optional()}),yo=g.object({type:g.literal(`agent`),agent:g.string(),maxTurns:g.number().optional(),timeout:g.number().optional()}),bo=g.discriminatedUnion(`type`,[go,_o,vo,yo]),q=g.object({matcher:g.string(),hooks:g.array(bo)}),xo=g.object({PreToolUse:g.array(q).optional(),PostToolUse:g.array(q).optional(),SessionStart:g.array(q).optional(),SessionEnd:g.array(q).optional(),Stop:g.array(q).optional(),StopFailure:g.array(q).optional(),PreCompact:g.array(q).optional(),PostCompact:g.array(q).optional(),UserPromptSubmit:g.array(q).optional(),SubagentStart:g.array(q).optional(),SubagentStop:g.array(q).optional(),WorktreeCreate:g.array(q).optional(),WorktreeRemove:g.array(q).optional()}).optional(),So=g.record(g.boolean()).optional(),Co=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()})}),wo=g.record(Co).optional().catch(void 0),To=g.union([g.number().gt(0).lte(1),g.literal(!1)]).optional(),Eo=g.object({enabled:g.boolean().optional(),options:g.record(K).optional()}),Do=g.object({defaultTrustLevel:g.enum([`safe`,`moderate`,`full`]).optional(),language:g.string().optional(),currentProvider:g.string().optional(),providers:g.record(po).optional(),provider:fo.optional(),permissions:mo.optional(),env:ho,hooks:xo,enabledPlugins:So,extraKnownMarketplaces:wo,autoCompactThreshold:To,transports:g.record(Eo).optional()});function Oo(){return process.env.HOME??process.env.USERPROFILE??`/`}const J={defaultTrustLevel:`moderate`,provider:{name:`anthropic`,model:`claude-opus-4-5`,apiKey:void 0},permissions:{allow:[],deny:[]},env:{}};function ko(e){if(!E(e))return;let t=D(e,`utf-8`).trim();if(t.length!==0)try{return JSON.parse(t)}catch{return}}function Ao(e){if(e.startsWith(`$ENV:`)){let t=e.slice(5);return process.env[t]??e}return e}function jo(e){let t=e.provider?.apiKey===void 0?e.provider:Mo(e.provider);if(e.providers!==void 0){let n=Object.fromEntries(Object.entries(e.providers).map(([e,t])=>[e,Mo(t)]));return{...e,provider:t,providers:n}}return{...e,provider:t}}function Mo(e){return{...e,...e.apiKey!==void 0&&{apiKey:Ao(e.apiKey)}}}function No(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?Po(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 Po(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Fo(e){if(e.currentProvider!==void 0)return Io(e);if(e.provider!==void 0)throw Error(`Legacy flat "provider" settings are not supported. Migrate to "currentProvider" + "providers" format.`);return{...J.provider}}function Io(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??J.provider.model,apiKey:n.apiKey??J.provider.apiKey,...n.baseURL!==void 0&&{baseURL:n.baseURL},...n.timeout!==void 0&&{timeout:n.timeout},...n.options!==void 0&&{options:n.options}}}function Lo(e){return{defaultTrustLevel:e.defaultTrustLevel??J.defaultTrustLevel,language:e.language,currentProvider:e.currentProvider,provider:Fo(e),permissions:{allow:e.permissions?.allow??J.permissions.allow,deny:e.permissions?.deny??J.permissions.deny},env:e.env??J.env,hooks:e.hooks??void 0,enabledPlugins:e.enabledPlugins??void 0,extraKnownMarketplaces:e.extraKnownMarketplaces??void 0,autoCompactThreshold:e.autoCompactThreshold}}function Ro(e){let t=Oo();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 zo(e){let t=Ro(e),n=[];for(let e of t){let t=ko(e);t!==void 0&&n.push({raw:t,path:e})}return Lo(No(n.map(({raw:e,path:t})=>{let n=Do.safeParse(e);if(!n.success)throw Error(`Invalid settings in ${t}: ${n.error.message}`);return jo(n.data)})))}const Bo=S(`.agents`,`tasks`),Vo={"in-progress":1,todo:2,blocked:3,unknown:4,completed:5};function Ho(e){let t=e?.trim().toLowerCase();return t===`todo`||t===`in-progress`||t===`blocked`||t===`completed`?t:`unknown`}function Uo(e,t){return e.split(/\r?\n/).find(e=>/^#\s+/.test(e))?.replace(/^#\s+/,``).trim()||Ge(t,`.md`)}function Wo(e,t){return RegExp(`^- \\*\\*${t}\\*\\*:\\s*(.+)$`,`im`).exec(e)?.[1]?.trim()}function Go(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(`
|
|
76
|
+
`).trim();return o.length>0?o:void 0}function Ko(e){return e.split(/\r?\n/).map(e=>/^- \[ \]\s+(.+)$/.exec(e)?.[1]?.trim()).filter(e=>e!==void 0&&e.length>0)}function qo(e,t){return t&&e.branch===t?0:Vo[e.status]}function Jo(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(`
|
|
77
|
+
`)}function Yo(e){return e.toISOString().slice(0,10)}function Xo(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(`
|
|
64
78
|
`)):(n.length>0&&/^#\s+/.test(n[0])?n.splice(1,0,``,r):n.unshift(r,``),n.join(`
|
|
65
|
-
`))}function
|
|
79
|
+
`))}function Zo(e,t,n){let r=[`### ${Yo(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(`
|
|
66
80
|
`);let o=i.findIndex((e,t)=>t>a&&/^##\s+/.test(e));return o<0?[...i,``,...r,``].join(`
|
|
67
81
|
`):(i.splice(o,0,``,...r,``),i.join(`
|
|
68
|
-
`))}function
|
|
82
|
+
`))}function Qo(e,t){let n=w(e),r=!1;for(;!r;){let e=S(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 Ke(r)?r:w(n,r)}let i=x(n);r=i===n,n=i}}function $o(e,t=new L){let n=Qo(e,t);if(!n)return;let r=S(n,`HEAD`);if(t.existsSync(r))return(t.readFileSync(r,`utf8`).trim().match(/^ref:\s+refs\/heads\/(.+)$/)?.[1])?.trim()}function es(e,t=new L){let n=S(e,Bo);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=>S(n,e)):[]}function ts(e,t,n=new L){let r=n.readFileSync(e,`utf8`);return{path:e,relativePath:C(t,e),title:Uo(r,e),status:Ho(Wo(r,`Status`)),branch:Wo(r,`Branch`),scope:Wo(r,`Scope`),objective:Go(r,`Objective`),openItems:Ko(r)}}function ns(e,t={}){let n=t.maxTasks??3;return[...e].filter(e=>e.status!==`completed`).sort((e,n)=>qo(e,t.currentBranch)-qo(n,t.currentBranch)||e.relativePath.localeCompare(n.relativePath)).slice(0,n)}function rs(e){return e.map(Jo).join(`
|
|
69
83
|
|
|
70
|
-
`)}function
|
|
84
|
+
`)}function is(e,t={},n=new L){let r=t.currentBranch??$o(e,n);return rs(ns(es(e,n).map(t=>ts(t,e,n)),{...t,currentBranch:r}))}function as(e,t,n={},r=new L){let i=Xo(r.readFileSync(e,`utf8`),t),a=n.progressMessage?Zo(i,n.now??new Date,n.progressMessage):i;r.writeFileSync(e,a,`utf8`)}const os=200,ss=25600,cs=[`user`,`feedback`,`project`,`reference`];function ls(e){return cs.includes(e)}function us(e){return O(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 fs(e,t){let n=e.split(/\r?\n/);return{content:n.slice(0,t).join(`
|
|
85
|
+
`).trimEnd(),truncated:n.length>t}}function ps(e){return e.trim().toLowerCase().replace(/[^a-z0-9가-힣_-]+/g,`-`).replace(/^-+|-+$/g,``).slice(0,80)||`general`}function ms(e,t,n){let r=e.toISOString().slice(0,10),i=t.text.trim().replace(/\s+/g,` `);return`[${r}] (${t.type}/${n}) ${i}`}function hs(e){return e.trim().replace(/\s+/g,` `)}var gs=class{cwd;now;constructor(e,t=()=>new Date){this.cwd=e,this.now=t}getIndexPath(){return O(us(this.cwd),`MEMORY.md`)}getTopicsPath(){return O(us(this.cwd),`topics`)}loadStartupMemory(){let e=this.getIndexPath();if(!E(e))return{content:``,path:e,lineCount:0,truncated:!1};let t=D(e,`utf8`),n=ds(t,ss),r=Buffer.byteLength(t,`utf8`)>ss,i=fs(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=E(e)?Xe(e,{withFileTypes:!0}).filter(e=>e.isFile()&&e.name.endsWith(`.md`)).map(t=>({name:Qe(t.name,`.md`),path:O(e,t.name)})).sort((e,t)=>e.name.localeCompare(t.name)):[];return{indexPath:this.getIndexPath(),topicsPath:e,topics:t}}readTopic(e){let t=ps(e),n=O(this.getTopicsPath(),`${t}.md`);return E(n)?D(n,`utf8`).trimEnd():``}append(e){let t=ps(e.topic),n=us(this.cwd),r=this.getTopicsPath();Ye(r,{recursive:!0});let i=this.getIndexPath(),a=O(r,`${t}.md`),o=ms(this.now(),e,t),s=E(a)?``:`# ${t}\n\n`,c=hs(e.text);return E(a)&&D(a,`utf8`).includes(`) ${c}`)?{indexPath:i,topicPath:a,topic:t,deduplicated:!0}:(E(i)||(Ye(n,{recursive:!0}),Ze(i,`# Project Memory
|
|
86
|
+
|
|
87
|
+
`,`utf8`)),Je(i,`- ${o}\n`,`utf8`),Je(a,`${s}- ${o}\n`,`utf8`),{indexPath:i,topicPath:a,topic:t,deduplicated:!1})}};function _s(e,t){let n=[],r=et(e),i=!1;for(;!i;){let e=O(r,t);E(e)&&n.push(e);let a=$e(r);i=a===r,i||(r=a)}return n.reverse()}function vs(e){let t=e.split(`
|
|
71
88
|
`),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(`
|
|
72
|
-
`).trim()||void 0}async function
|
|
89
|
+
`).trim()||void 0}async function ys(e){let t=_s(e,`AGENTS.md`),n=_s(e,`CLAUDE.md`),r=t.map(e=>rr(e)),i=n.map(e=>rr(e)),a=r.map(e=>e.content).join(`
|
|
73
90
|
|
|
74
91
|
`),o=i.map(e=>e.content).join(`
|
|
75
92
|
|
|
76
|
-
`),s=
|
|
77
|
-
`)){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 Pa(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 Fa(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 Ia=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=x(this.pluginsDir,`cache`);if(!this.fs.existsSync(e))return[];let t=[],n=Fa(e,this.fs);for(let r of n){let n=x(e,r),i=Fa(n,this.fs);for(let e of i){let i=x(n,e),a=Fa(i,this.fs);if(a.length===0)continue;let o=a[a.length-1],s=x(i,o),c=x(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 Pa(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=x(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=x(n,e.name,`SKILL.md`);if(!this.fs.existsSync(t))continue;let{metadata:r,content:a}=Na(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=x(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}=Na(this.fs.readFileSync(x(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=x(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=x(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=x(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$/,``)):[]}},La=class{pluginsDir;cacheDir;registryPath;settingsStore;marketplaceClient;exec;fs;constructor(e){this.pluginsDir=e.pluginsDir,this.cacheDir=x(this.pluginsDir,`cache`),this.registryPath=x(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=x(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=x(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=b(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 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 Ra(e,t,n=new R){let r=b(e);n.existsSync(r)||n.mkdirSync(r,{recursive:!0}),n.writeFileSync(e,JSON.stringify(t,null,2),`utf-8`)}function za(e,t,n=new R){let r=x(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=b(r);n.existsSync(e)||n.mkdirSync(e,{recursive:!0}),n.writeFileSync(r,JSON.stringify(i,null,2),`utf-8`)}}const Ba=6e4;var Va=class{pluginsDir;exec;marketplacesDir;registryPath;fs;constructor(e){this.pluginsDir=e.pluginsDir,this.exec=e.exec,this.marketplacesDir=x(this.pluginsDir,`marketplaces`),this.registryPath=x(this.pluginsDir,`known_marketplaces.json`),this.fs=e.fs??new R}addMarketplace(e){let t=`temp-`+Date.now().toString(36),n=x(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:Ba,stdio:`pipe`})}catch(e){let t=e instanceof Error?e.message:String(e);throw Error(`Failed to clone marketplace: ${t}`)}}let r=x(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=x(this.marketplacesDir,i);return this.fs.renameSync(n,o),a[i]={source:e,installLocation:o,lastUpdated:new Date().toISOString()},Ra(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`);za(this.pluginsDir,e,this.fs),this.fs.existsSync(n.installLocation)&&this.fs.rmSync(n.installLocation,{recursive:!0,force:!0}),delete t[e],Ra(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:Ba,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(),Ra(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=x(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:Ba,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 Ha(e){let t=x(b(b(e.pluginDir)),`data`,e.manifest.name);return{CLAUDE_PLUGIN_ROOT:e.pluginDir,CLAUDE_PLUGIN_PATH:e.pluginDir,CLAUDE_PLUGIN_DATA:t}}function Ua(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 Wa(e){let t={};for(let n of e){let e=n.hooks;if(!e)continue;let r=Ha(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=Ua(e,n.pluginDir);return t.env=r,t});t[e].push(...i)}}return t}function Ga(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}function Ka(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 qa(e,t,n){let r=e.find(e=>e.sourcePath===t.sourcePath),i=e.filter(e=>e.sourcePath!==t.sourcePath),a=r?Qa(r,t):t;return $a([...i,a],n)}function Ja(e,t){let n=no(t),r=e.find(e=>ro(e,n));return r?{references:e.filter(e=>e.sourcePath!==r.sourcePath),result:{removed:r}}:{references:[...e],result:{}}}function Ya(e){return{removed:[...e]}}function Xa(e){return e.filter(e=>e.status===`active`)}function Za(e){return e.map(e=>({originalReference:e.originalReference,sourcePath:e.sourcePath,relativePath:e.relativePath,reason:e.loadType,depth:0,byteLength:e.byteLength}))}function Qa(e,t){return t.status===`active`?{...t,loadedAt:e.loadedAt}:{...e,byteLength:t.byteLength,originalReference:t.originalReference,lastUsedAt:t.lastUsedAt}}function $a(e,t){let n=t?.maxActiveReferences??8,r=t?.maxActiveBytes??262144,i=t?.maxObservedReferences??32,a=[],o=[...e];for(;eo(o)>n||to(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 eo(e){return e.filter(e=>e.status===`active`).length}function to(e){return e.reduce((e,t)=>e+(t.status===`active`?t.byteLength:0),0)}function no(e){return e.startsWith(`@`)?e.slice(1):e}function ro(e,t){return e.relativePath===t||e.sourcePath===t||e.originalReference===t||e.originalReference===`@${t}`}function io(e,t){return t.length===0?e:[e,`<robota_file_references>`,...t.map(e=>{let t=e.content.replaceAll(`</file>`,`<\\/file>`);return[`<file path="${co(e.relativePath)}" bytes="${e.byteLength}" reason="${e.reason}">`,t,`</file>`].join(`
|
|
78
|
-
`)})
|
|
79
|
-
|
|
80
|
-
`)}function
|
|
81
|
-
`)}
|
|
82
|
-
|
|
83
|
-
`),history:t,toolSummaries:i,contextState:r,...o&&{usage:o}}}function Lo(e){return{id:`usage_${v()}`,timestamp:new Date,category:`event`,type:`usage-summary`,data:e}}async function Ro(e,t,n,r=[]){let i=await bo(Xa(r).map(e=>e.sourcePath),{cwd:t,reason:`manual`}),a=await yo(e,{cwd:t}),o=[...i.diagnostics,...a.diagnostics];if(ao(o))throw Error(oo(o));let s=io(e,zo([...i.references,...a.references])),c=n??(s===e?void 0:e),l=J(i.references),u=J(a.references),d=a.references.length>0?so(a.references):void 0;return{modelInput:s,...c===void 0?{}:{hookInput:c},activeContextReferenceRecords:l,promptFileReferenceRecords:u,...d===void 0?{}:{promptFileReferenceEntry:d}}}function zo(e){return[...new Map(e.map(e=>[e.sourcePath,e])).values()]}function Bo(e,n,r){let i=e.slice(n),a=0,o=0,s=!1;for(let e of i){if(e.role!==`assistant`)continue;let n=t(e);n&&(s=!0,a+=n.inputTokens,o+=n.outputTokens)}if(s)return{kind:`exact`,scope:`turn`,promptTokens:a,completionTokens:o,totalTokens:a+o,contextUsedTokens:r.usedTokens,contextMaxTokens:r.maxTokens,contextUsedPercentage:r.usedPercentage,costStatus:`unknown`}}const Vo={write:()=>{},writeLine:()=>{},writeMarkdown:()=>{},writeError:()=>{},prompt:()=>Promise.resolve(``),select:()=>Promise.resolve(0),spinner:()=>({stop:()=>{},update:()=>{}})};function Ho(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:Uo(e.target),capturedFiles:e.target.files.map(n=>{let r=n.snapshotFile?x(e.checkpointDir(e.sessionId,e.target.id),n.snapshotFile):void 0,i=r?Go(r,t):void 0;return{originalPath:n.originalPath,relativePath:S(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:Wo(n),rollbackThroughCheckpoint:Wo(r)}}function Uo(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function Wo(e){return{checkpointIds:e.map(e=>e.id),fileCount:e.reduce((e,t)=>e+t.fileCount,0)}}function Go(e,t){try{return t.statSync(e)}catch{return}}const Ko=`manifest.json`,qo=`files`;var Jo=class{fs;fsAsync;cwd;rootDir;now;activeTurn=null;constructor(e,t=new R,n=new z){this.fs=t,this.fsAsync=n,this.cwd=C(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=x(this.sessionDir(e.sessionId),n);await this.fsAsync.mkdir(x(r,qo),{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},X(i)}async captureFile(e){if(!this.activeTurn)return;let t=C(this.cwd,e);if(this.activeTurn.capturedPaths.has(t)||Xo(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),X(e.manifest)}list(e){return this.loadManifests(e).map(X)}inspect(e,t){let n=this.loadManifests(e),r=n.find(e=>e.id===t);if(!r)throw Error(`Unknown edit checkpoint: ${t}`);return Ho({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:X(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:X(r),restoredCheckpointCount:i.length,restoredFileCount:a,removedCheckpointCount:i.length}}async createFileRecord(e,t){if(!await Zo(this.fsAsync,this.fs,e))return{originalPath:e,existed:!1};let n=x(qo,`${String(t.manifest.files.length+1).padStart(6,`0`)}.content`);return await this.fsAsync.copyFile(e,x(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(b(n.originalPath),{recursive:!0}),await this.fsAsync.copyFile(x(this.checkpointDir(e,t),n.snapshotFile),n.originalPath)}loadManifests(e){let t=this.sessionDir(e);return Qo(this.fs,t).map(e=>x(t,e,Ko)).map(e=>$o(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=x(e,Ko),r=`${n}.tmp`;await this.fsAsync.writeFile(r,JSON.stringify(t,null,2),`utf8`),await this.fsAsync.rename(r,n)}sessionDir(e){return x(this.rootDir,Yo(e))}checkpointDir(e,t){return x(this.sessionDir(e),Yo(t))}};function X(e){return{id:e.id,sessionId:e.sessionId,sequence:e.sequence,prompt:e.prompt,createdAt:e.createdAt,fileCount:e.fileCount}}function Yo(e){return e.replace(/[^a-zA-Z0-9._-]/g,`_`)}function Xo(e,t){let n=S(e,t);return n.length===0||!n.startsWith(`..`)&&!n.startsWith(`/`)}async function Zo(e,t,n){try{return await e.access(n,t.constants.F_OK),!0}catch{return!1}}function Qo(e,t){try{return e.readdirSync(t)}catch{return[]}}function $o(e,t){try{let n=e.readFileSync(t,`utf8`);return JSON.parse(n)}catch{return}}async function es(e){let t=e.cwd,[n,r,i]=await Promise.all([e.config?Promise.resolve(e.config):Wi(t),e.bare?Promise.resolve({agentsMd:``,claudeMd:``,agentsFileEntries:[],claudeFileEntries:[]}):Oa(t),e.bare?Promise.resolve({type:`unknown`,language:`unknown`}):ja(t)]),a=e.language?{...n,language:e.language}:n,o=new Ia(x(w(),`.robota`,`plugins`));if(!e.bare)try{let e=o.loadPluginsSync();if(e.length>0){let t=Wa(e);a={...a,hooks:Ga(a.hooks,t)}}}catch{}let s=U(t);await ns(e)||await ts(e,t);let c=e.resumeSessionId&&!e.forkSession?e.resumeSessionId:void 0,{session:l,rebuildSystemMessage:u}=fi({config:a,cwd:t,context:r,projectInfo:i,permissionMode:e.permissionMode,maxTurns:e.maxTurns,terminal:Vo,sessionLogger:new _e(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,appendSystemPrompt:e.appendSystemPrompt,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});return{session:l,agentsFileEntries:r.agentsFileEntries??[],claudeFileEntries:r.claudeFileEntries??[],rebuildSystemMessage:u}}async function ts(e,t){if(e.workspaceManifest){if(!e.sandboxClient)throw Error(`workspaceManifest requires sandboxClient.`);await ne(e.sandboxClient,e.workspaceManifest,{hostRoot:t,...e.sandboxWorkspaceRoot?{targetRoot:e.sandboxWorkspaceRoot}:{}})}}async function ns(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 rs(e,t){let n=e.config??await Wi(e.cwd),r=n.autoCompactThreshold===void 0?`default`:`settings`,i=new Jo({cwd:e.cwd});t.setEditCheckpointStore(i);let a=await es({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,appendSystemPrompt:e.appendSystemPrompt,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}:{},commandDescriptors:t.commandDescriptors,...t.commandDescriptors.length>0?{modelCommandExecutor:t.executeModelCommand,isModelCommandInvocable:t.isModelCommandInvocable}:{}});if(t.pendingRestoreMessages)for(let e of t.pendingRestoreMessages)Wn(a.session,e);return{session:a.session,agentsFileEntries:a.agentsFileEntries,claudeFileEntries:a.claudeFileEntries,rebuildSystemMessage:a.rebuildSystemMessage,autoCompactThresholdSource:r}}var is=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=Ln(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 Dt({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 tn({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 tn({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 tn({entryId:e,lines:Mt(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`,as(e))}recordGroupEvent(e,t){this.backgroundJobGroups=this.getGroupSnapshots(),this.backgroundJobGroupEvents.push(e),this.persistSession(),this.onChanged(`background_group`,N(e.group.id))}};function as(e){if(`task`in e)return M(e.task.id);if(`taskId`in e)return M(e.taskId)}async function os(e,t,n){let r=await bo([t],{cwd:n,reason:`manual`});if(ao(r.diagnostics))return{references:[...e],result:{evicted:[],diagnostics:[oo(r.diagnostics)]}};let i=r.references[0];if(!i)return{references:[...e],result:{evicted:[],diagnostics:[`No context reference was resolved.`]}};let a=Ka(J([i])[0],`manual`,`active`),o=qa(e,a);return{references:o.references,result:{reference:a,evicted:o.evicted,diagnostics:[]}}}function ss(e,t,n){if(t.length===0)return[...e];let r=new Date().toISOString(),i=[...e];for(let e of t){let t=Ka(e,n.loadType,n.status,r);i=qa(i,t).references}return i}function cs(e){return e.source===`plugin`?`plugin`:`skill`}function ls(e){return e.context===`fork`?`fork`:`inject`}function us(e){return{type:`skill-activation`,skillName:e.skill.name,source:cs(e.skill),invocation:e.invocation,mode:ls(e.skill),status:e.status,timestamp:new Date().toISOString(),...e.qualifiedName===void 0?{}:{qualifiedName:e.qualifiedName},...e.error===void 0?{}:{error:e.error}}}function ds(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 fs=class{cwd;getSessionId;getExecuting;persistSession;emitSkillActivation;history=[];editCheckpointStore=null;memoryEvents=[];usedMemoryReferences=[];contextReferences=[];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=ss(this.contextReferences,e,{loadType:`manual`,status:`active`}),this.persistSession()}recordPromptContextReferences(e){this.contextReferences=ss(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(r(`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(r(`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(r(`Checkpoint error: ${t.message}`))),t}}setEditCheckpointStore(e){this.editCheckpointStore=e}getUsedMemoryReferences(){return[...this.usedMemoryReferences]}recordMemoryEvent(e){this.memoryEvents.push(e),this.persistSession()}listContextReferences(){return[...this.contextReferences]}async addContextReference(e){let{references:t,result:n}=await os(this.contextReferences,e,this.cwd);return this.contextReferences=t,this.persistSession(),n}removeContextReference(e){let t=Ja(this.contextReferences,e);return this.contextReferences=t.references,this.persistSession(),t.result}clearContextReferences(){let e=Ya(this.contextReferences);return this.contextReferences=[],this.persistSession(),e}getSkillActivationEvents(){return[...this.skillActivationEvents]}recordSkillActivationEvent(e,t){this.skillActivationEvents.push(e),t&&this.history.push({id:v(),timestamp:new Date(e.timestamp),category:`event`,type:`skill-activation`,data:{...e,message:ds(e)}}),this.emitSkillActivation(e),this.persistSession()}getCheckpointStore(){return this.editCheckpointStore||=new Jo({cwd:this.cwd}),this.editCheckpointStore}};function ps(e){return e.source===`skill`||e.source===`plugin`&&e.skillContent?`skill`:`builtin-command`}function ms(e){let t=e.source===`skill`||e.source===`plugin`&&!!e.skillContent;return{name:e.name,kind:ps(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 hs=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=>ms(e))}},gs=class{commands;constructor(e){this.commands=new Map;for(let t of e??_s())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}:{}}))}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 _s(){return[]}function vs(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 ys=class{name=`builtin`;commands;constructor(e=_s()){this.commands=e.map(vs)}getCommands(){return this.commands}};function bs(){let e=_s();return{name:`sdk-builtin`,commandSources:[new ys(e)],systemCommands:e}}function xs(e,t,n){return{...e,providers:{...e.providers??{},[t]:n}}}function Ss(e,t){if(!e.providers?.[t])throw Error(`Provider profile "${t}" was not found`);return{...e,currentProvider:t}}function Cs(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 ws(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=o(n.providerDefinitions??[],t.type),i=d(r);if(i!==void 0&&!ks(t,r?.defaults,i))throw Error(`Provider profile "${e}" is missing ${js(i)}`)}function Ts(e,t={}){let n=Es(e,t);return ws(e.profile,n,t),{...e.setCurrent&&{currentProvider:e.profile},providers:{[e.profile]:n}}}function Es(e,t={}){let n=Os(e.type,t.providerDefinitions??[]),r=e.apiKeyEnv===void 0?e.apiKey??n.apiKey:c(e.apiKeyEnv),i=e.baseURL??n.baseURL;return{type:e.type,model:e.model??n.model,...Ms(r)&&{apiKey:r},...i!==void 0&&{baseURL:i},...e.timeout!==void 0&&{timeout:e.timeout}}}function Ds(e,t){let[n,r]=Object.entries(t.providers)[0]??[];if(!n||!r)return e;let i=xs(e,n,r);return t.currentProvider?Ss(i,t.currentProvider):i}function Os(e,t){return o(t,e)?.defaults??{}}function ks(e,t,n){return n.anyOf.some(n=>p(As(n,e,t)))}function As(e,t,n){return t[e]??n?.[e]}function js(e){return e.anyOf.join(` or `)}function Ms(e){return e!==void 0&&e.length>0}async function Ns(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{ws(i,a,{providerDefinitions:r.providerDefinitions})}catch(e){return{message:e instanceof Error?e.message:String(e),success:!1}}let s=await((a.type?o(r.providerDefinitions,a.type):void 0)?.probeProfile??Ps)(a);return{message:s.ok?`Provider "${i}" test passed: ${s.message}`:`Provider "${i}" test failed: ${s.message}; manual configuration can continue.`,success:!0,data:{providerTest:{profile:i}}}}async function Ps(e){return{ok:!0,message:`Profile fields are valid; no endpoint probe configured.`}}function Fs(e,t=[]){return Is(e,t)?`valid`:`incomplete`}function Is(e,t){if(typeof e.currentProvider==`string`){let n=e.providers?.[e.currentProvider];return Ls(n?.type,n,t)}return!!(e.provider&&Ls(e.provider.name,e.provider,t))}function Ls(e,t,n){if(!t)return!1;if(!e)return p(t.apiKey);let r=o(n,e);if(r===void 0)return!1;let i=d(r);return i===void 0?!0:Rs(t,r,i)}function Rs(e,t,n){return n.anyOf.some(n=>p(zs(n,e,t)))}function zs(e,t,n){return t[e]??n.defaults?.[e]}function Bs(e,t=new R){return e.reduce((e,n)=>{let r=Vs(n,t);return r===void 0?e:Hs(e,r)},{})}function Vs(e,t){if(t.existsSync(e))try{let n=t.readFileSync(e,`utf8`);return JSON.parse(n)}catch{return}}function Hs(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?Us(e.providers,t.providers):void 0}}function Us(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Ws(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 he({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 he({name:i.name,model:i.model,apiKey:i.apiKey,baseURL:i.baseURL,timeout:i.timeout,options:i.options},n)}var Gs=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 Ks=ge,qs=`autoCompactThreshold`;function Js(e){return e.getContextState()}function Ys(e){return e.getAutoCompactThreshold()}function Xs(e){return e.getAutoCompactThresholdSource?.()??`session`}function Zs(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 Qs(e,t){let n=ac(e);return n?(n.write({...n.read(),[qs]:t}),!0):!1}function $s(e){let t=ac(e);if(!t)return!1;let n={...t.read()};return delete n[qs],t.write(n),!0}async function ec(e,t){let n=Js(e);return await e.compactContext(t),{before:n,after:Js(e)}}function tc(e){return e.listContextReferences?.()??[]}async function nc(e,t){return e.addContextReference?e.addContextReference(t):{evicted:[],diagnostics:[`Command host does not support context reference additions.`]}}function rc(e,t){return e.removeContextReference?.(t)??{}}function ic(e){return e.clearContextReferences?.()??{removed:[]}}function ac(e){return e.getCommandHostAdapters?.().settings}function oc(e,t={}){let n=sc(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 sc(e){let t=e?.trim().toLowerCase().replace(/[^a-z0-9]+/g,`-`).replace(/^-+|-+$/g,``);return t!==void 0&&t.length>0?t:void 0}const cc=`Show available commands`;function lc(e){return e.listCommands?.()??[]}function uc(e){return[`Available commands:`,...lc(e).map(e=>{let t=e.displayName??e.name,n=`/${e.name}`;return` ${(e.displayName?`${t} (${n})`:n).padEnd(32)} — ${e.description}`})].join(`
|
|
84
|
-
`)}
|
|
85
|
-
`)}function gc(e){if(!e)return;let t=Number.parseInt(e,10);return Number.isNaN(t)?void 0:{offset:t}}function _c(e){let t=[];return e.worktreePath&&t.push(`worktree=${e.worktreePath}`),e.branchName&&t.push(`branch=${e.branchName}`),e.worktreeStatus&&t.push(`worktreeStatus="${vc(e.worktreeStatus)}"`),e.worktreeNextAction&&t.push(`next="${vc(e.worktreeNextAction)}"`),t.length===0?``:` ${t.join(` `)}`}function vc(e){let t=e.trim().replace(/\s+/g,` `);return t.length>160?`${t.slice(0,160)}...`:t}function yc(e,t){return e.listBackgroundTasks(t)}function bc(e,t,n){return e.readBackgroundTaskLog(t,n)}function xc(e,t,n){return e.cancelBackgroundTask(t,n)}function Sc(e,t){return e.closeBackgroundTask(t)}const Cc=`Change AI model`,wc=`<model-id>`;function Tc(e=`model`){let t=typeof e==`string`?{source:e}:e,n=t.source??`model`,r=Oc(t.settings,t.providerDefinitions);return r===void 0?t.settings===void 0?Ac(n):[]:jc(r,n)}function Ec(e={}){let t=Nc(e.settings,e.providerDefinitions);return Bc(t===void 0?void 0:Fc(t))}async function Dc(e={}){return Bc(await kc(e))}function Oc(e,t=[]){return Nc(e,t)?.catalog}async function kc(e){let t=Nc(e.settings,e.providerDefinitions);if(t!==void 0){if(!(e.refresh===!0||Ic(t.catalog,t.definition?.modelCatalogCacheTtlSeconds))||t.definition?.refreshModelCatalog===void 0)return Fc(t);try{let e=await t.definition.refreshModelCatalog({profile:Lc(t)});return e.status===`unavailable`?{providerType:t.providerType,catalog:t.catalog??e,refreshAttempted:!0,...e.message===void 0?{}:{refreshMessage:e.message}}:{providerType:t.providerType,catalog:e,refreshAttempted:!0}}catch(e){return{providerType:t.providerType,...t.catalog===void 0?{}:{catalog:t.catalog},refreshAttempted:!0,refreshMessage:e instanceof Error?e.message:String(e)}}}}function Ac(t){let n=new Set,r=[];for(let i of Object.values(e))n.has(i.name)||(n.add(i.name),r.push({name:i.id,description:`${i.name} (${l(i.contextWindow).toUpperCase()})`,source:t}));return r}function jc(e,t){return(e.entries??[]).filter(e=>e.lifecycle!==`unavailable`).map(e=>({name:e.id,description:Mc(e),source:t}))}function Mc(e){return e.contextWindow===void 0?e.displayName:`${e.displayName} (${l(e.contextWindow).toUpperCase()})`}function Nc(e,t=[]){let n=Pc(e),r=n?.type??n?.name;if(r===void 0)return;let i=o(t,r);return{providerType:r,...n===void 0?{}:{profile:n},...i===void 0?{}:{definition:i},...i?.modelCatalog===void 0?{}:{catalog:i.modelCatalog}}}function Pc(e){return e?.currentProvider===void 0?e?.provider:e.providers?.[e.currentProvider]}function Fc(e){return{providerType:e.providerType,...e.catalog===void 0?{}:{catalog:e.catalog},refreshAttempted:!1}}function Ic(e,t){return e===void 0||t===void 0||e.lastVerifiedAt===void 0?!1:Date.now()-new Date(e.lastVerifiedAt).getTime()>t*1e3}function Lc(e){let t=e.profile,n=e.definition?.defaults,r=zc(t?.apiKey??n?.apiKey),i=Rc(t?.model,n?.model),a=Rc(t?.baseURL,n?.baseURL),o=Rc(t?.timeout,n?.timeout),s=Rc(t?.options,n?.options),c={type:t?.type??e.providerType};return i!==void 0&&(c.model=i),r!==void 0&&(c.apiKey=r),a!==void 0&&(c.baseURL=a),o!==void 0&&(c.timeout=o),s!==void 0&&(c.options=s),c}function Rc(e,t){return e??t}function zc(e){return e===void 0?void 0:te(e)}function Bc(e){let t=e?.providerType!==void 0&&(e.catalog?.entries===void 0||e.catalog.entries.length===0)?`No model catalog available for provider ${e.providerType}. Usage: model <model-id>`:`Usage: model <model-id>`,n=Vc(e);return n===void 0?t:`${t}\n${n}`}function Vc(e){let t=e?.catalog;if(t===void 0)return;let n=[`Catalog: ${t.status}`];t.entries!==void 0&&n.push(`${t.entries.length} model(s)`),t.lastVerifiedAt!==void 0&&n.push(`verified ${t.lastVerifiedAt}`),t.sourceUrl!==void 0&&n.push(`source ${t.sourceUrl}`);let r=e?.refreshMessage;return r===void 0?t.message!==void 0&&n.push(t.message):n.push(`refresh ${r}`),n.join(`; `)}const Hc=`Set response language`,Uc=`<code>`,Wc=[{code:`ko`,description:`Korean`},{code:`en`,description:`English`},{code:`ja`,description:`Japanese`},{code:`zh`,description:`Chinese`}];function Gc(e=`language`){return Wc.map(t=>({name:t.code,description:t.description,source:e}))}function Kc(e){let t=e.trim().split(/\s+/)[0];return t!==void 0&&t.length>0?t:void 0}function qc(e=`language`){return`Usage: ${e} <code> (e.g., ko, en, ja, zh)`}const Jc=`Show/change permission mode`,Yc=`plan | default | acceptEdits | bypassPermissions`,Xc=`Show/change permission mode and permission rules`,Zc=[`plan`,`default`,`acceptEdits`,`bypassPermissions`];function Qc(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 $c(e){let t=e.trim().split(/\s+/)[0];return t!==void 0&&t.length>0?t:void 0}function el(e){return Zc.includes(e)}function tl(){return`Invalid mode. Valid: ${Zc.join(` | `)}`}function nl(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 rl(e){return nl(e).getPermissionMode()}function il(e,t){nl(e).setPermissionMode(t)}function al(e){return nl(e).listSessionAllowedTools()}function ol(e){return{mode:rl(e),sessionAllowed:al(e)}}function sl(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(`
|
|
86
|
-
`)}const cl=`Configure TUI status-line visibility and fields such as model, context, tokens, session, and git branch.`,ll=`on | off | reset | git on | git off`,ul={enabled:!0,gitBranch:!0};function dl(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 fl(e){return(e.enabled===void 0||typeof e.enabled==`boolean`)&&(e.gitBranch===void 0||typeof e.gitBranch==`boolean`)}const pl=`Manage plugins`,ml=`manage | install <name@marketplace> | uninstall <name@marketplace> | enable <name@marketplace> | disable <name@marketplace> | marketplace <action>`,hl=`Reload all plugin resources`;function gl(){return{type:`plugin-tui-requested`}}function _l(){return{type:`plugin-registry-reload-requested`}}function vl(e){return e.getCommandHostAdapters?.().plugin}function yl(){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 bl=`Clear conversation history`,xl=`Rename the current session`,Sl=`Usage: rename <name>`,Cl=`Resume a previous session`,wl=`Show session info`,Tl=`Validate current session replay log`,El=`Exit CLI`;function Dl(e){if(e.clearConversationHistory!==void 0){e.clearConversationHistory();return}e.getSession().clearHistory()}function Ol(e){let t=e.trim();return t.length>0?t:void 0}function kl(e){return{type:`session-renamed`,name:e}}function Al(){return{type:`session-picker-requested`}}function jl(){return{type:`session-exit-requested`}}function Ml(e){let t=e.getSession();return{sessionId:t.getSessionId(),messageCount:t.getMessageCount()}}function Nl(e){let t=e.validateCurrentSessionReplayLog?.();if(t!==void 0)return t;let n=e.getSession().getSessionId(),r=x(U(e.getCwd()).logs,`${n}.jsonl`),i=be(r);return{logFile:r,entryCount:i.length,validation:Se(i)}}function Pl(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(`
|
|
87
|
-
`);let r=e.validation.issues.map((e,t)=>{let n=Fl(e);return`${t+1}. ${e.code}${n}: ${e.message}`});return[t,...n,``,...r].join(`
|
|
88
|
-
`)}function Fl(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 Il=`List, inspect, restore, or rollback edit checkpoints.`,Ll=`list | inspect CHECKPOINT_ID | restore CHECKPOINT_ID | code CHECKPOINT_ID | rollback CHECKPOINT_ID`;function Rl(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 zl(e){return e.listEditCheckpoints()}function Bl(e,t){if(!e.inspectEditCheckpoint)throw Error(`Checkpoint inspection is not available in this command host.`);return e.inspectEditCheckpoint(t)}function Vl(e,t){return e.restoreEditCheckpoint(t)}function Hl(e,t){return e.rollbackEditCheckpoint(t)}const Ul=[/\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 Wl(e){return Ul.some(t=>t.test(e))}function Gl(e){return x(e,`.robota`,`memory`)}function Kl(){return{version:1,records:[]}}var ql=class{fs;path;now;constructor(e,t=()=>new Date,n=new R){this.fs=n,this.path=x(Gl(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 Kl();try{return{version:1,records:JSON.parse(this.fs.readFileSync(this.path,`utf8`)).records??[]}}catch{return Kl()}}write(e){this.fs.mkdirSync(b(this.path),{recursive:!0}),this.fs.writeFileSync(this.path,JSON.stringify(e,null,2),`utf8`)}};const Jl=`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.`,Yl=`list | show [topic] | add <user|feedback|project|reference> <topic> <text> | pending | approve <id> | reject <id> | used`,Xl=`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 Zl(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 Ql(e,t){return new ta(e,t)}function $l(e,t){return new ql(e,t)}function eu(e,t){let n=e.getCwd();return{project:Ql(n,t),pending:$l(n,t)}}function tu(e){return Ji(e)}function nu(e){return Wl(e)}function ru(e){return e.getUsedMemoryReferences()}function iu(e,t,n=()=>new Date){e.recordMemoryEvent({...t,at:n().toISOString()})}function au(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 ou(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 su(e,t,n,r){return e.skillContent?au(await ou(e.skillContent,n.shellExec),t,r):null}async function cu(e,t,n,r){let i=await su(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 lu(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 su(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 cu(e,t,n,r)}}function uu(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function du(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function fu(e,t){let n=t.trim();return n.length>0?`${e} ${n}`:e}function pu(e){if(!e?.startsWith(`/`))return;let t=e.slice(1).trim().split(/\s+/)[0];return t&&t.length>0?t:void 0}var mu=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 gs(e.flatMap(e=>e.systemCommands??[])),this.skillCommandSource=new Tr(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}))}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=uu(e);return this.skillCommandSource.getCommands().find(e=>e.name.toLowerCase()===t.toLowerCase())}async executeCommand(e,t){let n=du(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,fu(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=pu(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 lu(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=us({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)}`}}}};async function hu(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 Ta(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(`
|
|
89
|
-
|
|
90
|
-
`),d.map(e=>e.content).join(`
|
|
91
|
-
|
|
92
|
-
`));i().updateSystemMessage(f);for(let e of l)a(`context_file_refreshed`,{filePath:e})}function gu(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 _u(e,t,n){let r=e?.[t]??e?.[n];return typeof r==`string`?r:null}function vu(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 yu(e){if(e.toolName!==`Edit`)return{};let t=_u(e.toolArgs,`file_path`,`filePath`),n=_u(e.toolArgs,`old_string`,`oldString`),r=_u(e.toolArgs,`new_string`,`newString`);return!t||n===null||r===null||n===r?{}:{diffFile:t,diffLines:xu(n,r,vu(e.toolResultData),t)}}function bu(e,t,n){return[...e.split(`
|
|
93
|
-
`).map((e,t)=>({type:`remove`,text:e,lineNumber:n+t})),...t.split(`
|
|
94
|
-
`).map((e,t)=>({type:`add`,text:e,lineNumber:n+t}))]}function xu(e,t,n,r,i=new R){let a=bu(e,t,n),o;try{o=i.readFileSync(r,`utf8`).split(`
|
|
95
|
-
`)}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(`
|
|
96
|
-
`).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(`
|
|
97
|
-
`).length,p=t.split(`
|
|
98
|
-
`).length;return[{type:`hunk`,text:`@@ -${d},${s.length+f+l.length} +${d},${s.length+p+l.length} @@`,lineNumber:d},...s,...a,...l]}function Su(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(`
|
|
99
|
-
`);e.history.push({id:v(),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 Cu(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 wu(e,t){let n=gu(t.toolArgs),r={toolName:t.toolName,firstArg:n,isRunning:!0};return e.activeTools.push(r),e.history.push({id:v(),timestamp:new Date,category:`event`,type:`tool-start`,data:{toolName:t.toolName,firstArg:n,isRunning:!0}}),r}function Tu(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],...yu(t),isRunning:!1,result:n,toolResultData:t.toolResultData};return e.activeTools[r]=i,e.activeTools=Cu(e.activeTools),e.history.push({id:v(),timestamp:new Date,category:`event`,type:`tool-end`,data:{toolName:i.toolName,firstArg:i.firstArg,isRunning:!1,result:n,toolResultData:t.toolResultData}}),i}async function Eu(e,t,a,o){let s=o.getHistory();s.push(h(i(t??e))),o.onWorkspaceUpdated();let c=o.getSession().getHistory().length;o.resetUsedMemoryReferences();try{let r=await Ro(e,o.getCwd(),a,o.getContextReferences());r.promptFileReferenceEntry&&s.push(r.promptFileReferenceEntry),o.recordContextReferenceUsage(r.activeContextReferenceRecords),o.recordPromptContextReferences(r.promptFileReferenceRecords),await o.beginEditCheckpointTurn(t??e);let i=await o.getSession().run(r.modelInput,r.hookInput);o.flushStreaming(),Su({activeTools:o.getActiveTools(),history:s}),o.clearStreaming();let l=Fo(i||`(empty response)`,o.getSession().getHistory(),s,c,o.getSession().getContextState(),r.promptFileReferenceRecords);s.push(h(n(l.response))),l.usage&&s.push(Lo(l.usage)),o.onComplete(l),o.onContextUpdate()}catch(e){if(o.flushStreaming(),No(e)){let e=Io(o.getSession().getHistory(),s,c,o.getSession().getContextState());Su({activeTools:o.getActiveTools(),history:s}),o.clearStreaming(),e.response&&s.push(h(n(e.response))),e.usage&&s.push(Lo(e.usage)),s.push(h(r(`Interrupted by user.`))),o.onInterrupted(e)}else{Su({activeTools:o.getActiveTools(),history:s}),o.clearStreaming();let t=e instanceof Error?e.message:String(e);s.push(h(r(`Error: ${t}`))),o.onError(e instanceof Error?e:Error(t))}}}var Du=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(r(`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=wu(t,e);this.activeTools=t.activeTools,this.callbacks.emit(`tool_start`,n)}else{let n=Tu(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 hu(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 Eu(e,t,n,{getSession:()=>this.callbacks.getSessionOrThrow(),getCwd:()=>this.callbacks.getCwd(),getHistory:()=>this.histTracker.getHistory(),getContextReferences:()=>this.histTracker.listContextReferences(),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,a,o,s){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(i(n??`/${e.name}`))),this.emitExecutionWorkspaceUpdated(`main_thread`);try{let n=await this.skillRouter.executeSkillWithActivation(e,t,o,a);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(r(`Error: ${t.message}`))),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(s)}}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(),Su({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(n(e))),this.callbacks.emit(`complete`,t),this.callbacks.emit(`context_update`,this.callbacks.getContextState())}};function Ou(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 Z(e){let t=Ou(e);if(!t.subagentManager)throw Error(`Subagent manager is not available for this session.`);return t.subagentManager}function ku(e,t){let n=t.customAgentRegistry?.(e);if(!n)throw Error(`Unknown agent type: ${e}`);return n}function Au(e){return(L(e)?.agentDefinitions??[]).map(e=>({name:e.name,description:e.description}))}async function ju(e,t,n,r){let i=Ou(e),a=ku(t.agentType,i),o=e.getSessionId();return Z(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:P({kind:r===`model`?`model_command`:`slash_command`,sessionId:o,commandName:`agent`,label:t.label})})}async function Mu(e,t){return Z(e).wait(t)}async function Nu(e,t,n){await Z(e).send(t,n)}async function Pu(e,t,n){await Z(e).cancel(t,n)}async function Fu(e,t){await Z(e).close(t)}function Iu(e){return Z(e).list()}function Lu(e,t={}){let{sessionId:n,execCtrl:r,histTracker:i,bgTracker:a}=e,o=i.getHistory();return Lt({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 Ru(e,t,n,r,i){let a=It(e);if(!a)throw Error(`Unknown execution workspace entry: ${e}`);return a.kind===`main_thread`?en({entryId:e,history:t(),cursor:i}):a.kind===`background_group`?n.readGroupDetail(e,a.sourceId,r):n.readTaskDetail(e,a.sourceId,i)}function zu(e,t,n,r){return an({manager:e.getManagerOrThrow(),groupOrchestrator:e.getOrchestratorOrThrow(t),sessionId:t,cwd:n,origin:{...r,sessionId:r.sessionId||t}})}var Bu=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 Lu({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(),Ru(e,()=>this.histTracker.getHistory(),this.bgTracker,this.getSessionOrThrow().getSessionId(),t)}createExecutionWorkspaceTaskSpawner(e){return zu(this.bgTracker,this.getSessionOrThrow().getSessionId(),this.getCwd(),e)}listAgentDefinitions(){return Au(this.getSessionOrThrow())}listAgentJobs(){return Iu(this.getSessionOrThrow())}async spawnAgentJob(e){return await this.ensureInitialized(),ju(this.getSessionOrThrow(),e,this.getCwd(),this.skillRouter.getCommandInvocationSource())}async waitAgentJob(e){return await this.ensureInitialized(),Mu(this.getSessionOrThrow(),e)}async sendAgentJob(e,t){await this.ensureInitialized(),await Nu(this.getSessionOrThrow(),e,t)}async cancelAgentJob(e,t){await this.ensureInitialized(),await Pu(this.getSessionOrThrow(),e,t)}async closeAgentJob(e){await this.ensureInitialized(),await Fu(this.getSessionOrThrow(),e)}},Vu=class extends Bu{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;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 Jo({cwd:t})),this.bgTracker=new is(()=>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 fs(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 mu(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)=>Pn(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 Du(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()});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=Gn(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}startAsyncInitializationIfNeeded(e,t){if(t)return;let n=e;this.initPromise=this.initializeAsync(n)}async initializeAsync(e){let t=await rs(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.pendingRestoreMessages=null,this.initialized=!0,this.bgTracker.subscribe(this.session),this.persistCurrentSession()}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},(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.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 Ln(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(r(`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();Rn(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})}};function Hu(e,t=new R){let n=U(e);return new Ku(n.sessions,n.logs,t)}function Uu(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:qu(e.messages)}))}function Wu(e,t){return Uu(e,t)[0]?.id}function Gu(e,t){return(e?.list()??[]).find(e=>e.id===t||e.name===t)?.id}var Ku=class{store;logsDir;fs;constructor(e,t,n=new R){this.store=new ye(e),this.logsDir=t,this.fs=n}save(e){this.store.save(Ju(e))}load(e){let t=this.store.load(e);return t===void 0?this.loadFromReplayLog(e):Yu(t)}list(){let e=this.store.list().map(Yu),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=xe(be(x(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:Xu(n),backgroundTaskEvents:n,backgroundJobGroups:Qu(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 qu(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 Ju(e){return{...e}}function Yu(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 Xu(e){let t=new Map;for(let n of e){let e=Zu(n);e&&t.set(e.id,e)}return[...t.values()]}function Zu(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 Qu(e){let t=new Map;for(let n of e)t.set(n.group.id,n.group);return[...t.values()]}function $u(e){let t=new Vu({cwd:e.cwd??process.cwd(),provider:e.provider,permissionMode:e.permissionMode??`bypassPermissions`,maxTurns:e.maxTurns,permissionHandler:e.permissionHandler});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 ed=[`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 nd(e){return e.toISOString()}function rd(e,t){if(t.trim().length===0)throw Error(`${e} must not be empty.`);if(!y.isAbsolute(t))throw Error(`${e} must be an absolute path: ${t}`)}function id(){return process.env.HOME??w()}function ad(e,t){let n=y.relative(e,t);return n===``||!n.startsWith(`..`)&&!y.isAbsolute(n)}async function od(e,t){let n=e;for(;y.dirname(n)!==n;)try{let r=await t.realpath(n),i=y.relative(n,e);return y.resolve(r,i)}catch{n=y.dirname(n)}try{return await t.realpath(n)}catch{return y.resolve(e)}}async function sd(e){let t=e.fsAsync??new z,n=y.resolve(e.activeRepositoryRoot);rd(`activeRepositoryRoot`,n);let r=e.storageRoot===void 0?y.join(e.homeDir??id(),`.robota`):e.storageRoot;rd(`userLocalStorageRoot`,r);let i=y.resolve(r),a=await od(i,t);if(ad(await od(n,t),a))throw Error(`User-local storage root must be outside the active repository: ${i}`);return i}function cd(e,t){return y.join(e,t)}async function ld(e,t,n){let r=cd(e,t),i;try{i=await n.readdir(r,{withFileTypes:!0})}catch{return[]}return(await Promise.all(i.map(async i=>{let a=y.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:nd(new Date(o.birthtimeMs)),lastUsedAt:nd(new Date(o.mtimeMs)),enabled:!0,deleteAvailable:!0,disableAvailable:!1}}))).sort((e,t)=>e.key.localeCompare(t.key))}async function ud(e){let t=e.fsAsync??new z,n=await sd(e),r=y.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=cd(n,e.category);i&&await t.mkdir(r,{recursive:!0});let a=await ld(n,e.category,t);return{category:e.category,purpose:e.purpose,mayExecuteCommands:e.mayExecuteCommands,storageLocation:r,itemCount:a.length,items:a}})),generatedAt:nd((e.now??(()=>new Date))())}}const dd=[`view-preference`,`last-visible-cwd`,`background-selection`,`task-association`,`display-preference`,`inspection-choice`],fd=`.json`,pd=/^[a-z0-9][a-z0-9._-]*$/u,md={"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 hd(e){return e.toISOString()}function gd(e){return dd.includes(e)}function _d(e){if(!gd(e))throw Error(`Unsupported user-local memory category: ${e}`);return e}function vd(e,t){let n=t.trim();if(n.length===0)throw Error(`${e} must not be empty.`);if(n.length>80||!pd.test(n))throw Error(`${e} must use lowercase letters, numbers, dots, underscores, or hyphens: ${t}`);return n}function Q(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 yd(e){return Q(`value`,e,240)}function bd(e,t){return`${e}__${t}${fd}`}async function xd(e){let t=await sd(e);return{root:t,memoryRoot:y.join(t,`memory-projections`)}}function Sd(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:_d(r),key:$(n,`key`),value:$(n,`value`),summary:$(n,`summary`),source:$(n,`source`),scope:$(n,`scope`),createdAt:$(n,`createdAt`),lastUsedAt:$(n,`lastUsedAt`),enabled:Cd(n,`enabled`)}}function $(e,t){let n=e[t];if(typeof n!=`string`)throw Error(`Invalid user-local memory field: ${t}`);return n}function Cd(e,t){let n=e[t];if(typeof n!=`boolean`)throw Error(`Invalid user-local memory field: ${t}`);return n}function wd(e,t,n){return{root:e,category:n.category,key:n.key,summary:n.summary,valueSummary:yd(n.value),source:n.source,scope:n.scope,storageLocation:t,createdAt:n.createdAt,lastUsedAt:n.lastUsedAt,enabled:n.enabled,displayNavigationRule:md[n.category],commandExecutionEffect:`none`,deleteAvailable:!0,disableAvailable:!0}}async function Td(e,t,n){return wd(e,t,Sd(await n.readFile(t,`utf8`),t))}async function Ed(e){let t=_d(e.category),n=vd(`key`,e.key),{root:r,memoryRoot:i}=await xd(e);return{root:r,storageLocation:y.join(i,bd(t,n))}}async function Dd(e){let t=e.fsAsync??new z,n=_d(e.category),r=vd(`key`,e.key),i=Q(`summary`,e.summary,240),a=Q(`source`,e.source,80),o=Q(`scope`,e.scope??`user`,120),s=yd(e.value),c=hd((e.now??(()=>new Date))()),{root:l,memoryRoot:u}=await xd(e),d=y.join(u,bd(n,r)),f=c;try{f=Sd(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`),wd(l,d,p)}async function Od(e){let t=e.fsAsync??new z,{root:n,memoryRoot:r}=await xd(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(fd)).map(e=>Td(n,y.join(r,e.name),t)));return{root:n,activeRepositoryRoot:y.resolve(e.activeRepositoryRoot),items:a.sort((e,t)=>`${e.category}/${e.key}`.localeCompare(`${t.category}/${t.key}`))}}async function kd(e){let t=e.fsAsync??new z,{root:n,storageLocation:r}=await Ed(e);return Td(n,r,t)}async function Ad(e){let t=e.fsAsync??new z,{root:n,storageLocation:r}=await Ed(e),i={...Sd(await t.readFile(r,`utf8`),r),enabled:!1,lastUsedAt:hd((e.now??(()=>new Date))())};return await t.writeFile(r,`${JSON.stringify(i,null,2)}\n`,`utf8`),wd(n,r,i)}async function jd(e){let t=e.fsAsync??new z,{storageLocation:n}=await Ed(e);return await t.rm(n),{category:e.category,key:e.key,deleted:!0}}async function Md(e){let t=await kd(e);return t.enabled?t:null}const Nd=[`test`,`typecheck`,`build`],Pd={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 Fd(e){return e?Array.from(new Set(e.map(e=>e.trim()).filter(Boolean))):[]}function Id(e){return e.flatMap(e=>Nd.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 Ld(){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 Rd(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 zd(){return{id:`rollback-on-failure`,phase:`recover`,description:`Use the existing edit checkpoint restore path if verification fails.`,required:!0}}function Bd(e){if(e.changedFiles.length===0)throw Error(`Self-hosting verification requires at least one changed file.`);let t=e.baseRef??`origin/develop`,n=Fd(e.packageScopes),r=[...Ld(),...Id(n),Rd(t),zd()];return{changedFiles:[...e.changedFiles],packageScopes:n,baseRef:t,steps:r}}function Vd(e,t){let n=Pd[e][t];if(!n)throw Error(`Invalid self-hosting loop transition: ${e} -> ${t}`);return n}function Hd(e){return e}function Ud(e){if(!e||e.length===0)return;let[t,...n]=e;if(t!==void 0)return[t,...n]}function Wd(e){let t=Ud(e),n=t===void 0?_.string().describe(`Registered model-invocable command name to execute`):_.enum(t).describe(`Registered model-invocable command name to execute`);return _.object({command:n,args:_.string().optional().describe(`Arguments to pass to the command`)})}function Gd(e){if(e.commandNames!==void 0)return e.commandNames;if(e.commandDescriptors!==void 0)return e.commandDescriptors.map(e=>O(e.name))}function Kd(e){return`- ${O(e.name)}${e.argumentHint?` ${e.argumentHint}`:``}: ${e.description}`}function qd(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(Kd)].join(`
|
|
100
|
-
`)}function Jd(e){let t=Wd(Gd(e));return se(`ExecuteCommand`,qd(e.commandDescriptors),Hd(t),async n=>{let r=t.parse(n),i=O(r.command);return e.isModelInvocable(i)?dt(i,await e.execute(i,r.args??``)):JSON.stringify({success:!1,command:i,error:`Command is not model-invocable: ${i}`})})}const Yd=[`Allow`,`Deny`];function Xd(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 Zd(e,t,n){return e.writeLine(``),e.writeError(`[Permission Required] Tool: ${t}`),e.writeLine(` ${Xd(n)}`),e.writeLine(``),await e.select(Yd,0)===0}const Qd={usedTokens:0,maxTokens:2e5,usedPercentage:0,remainingPercentage:100},$d={sessionId:`test-session-id`,updatedAt:new Date().toISOString(),entries:[]},ef={id:``,parentSessionId:`test-session-id`,waitPolicy:`wait_all`,taskIds:[],status:`completed`,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString(),results:[]};function tf(e){return{submit:()=>Promise.resolve(),abort:()=>{},cancelQueue:()=>{},shutdown:()=>Promise.resolve(),isExecuting:()=>!1,getPendingPrompt:()=>null,getMessages:()=>[],getContextState:()=>({...Qd}),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:()=>({...ef}),waitBackgroundJobGroup:()=>Promise.resolve({...ef}),getExecutionWorkspaceSnapshot:()=>({...$d}),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}}export{qs as AUTO_COMPACT_THRESHOLD_SETTINGS_KEY,Zn as AgentExecutor,dc as BACKGROUND_COMMAND_DESCRIPTION,fc as BACKGROUND_COMMAND_USAGE,et as BUILT_IN_AGENTS,Dt as BackgroundJobOrchestrator,ys as BuiltinCommandSource,La as BundlePluginInstaller,Ia as BundlePluginLoader,bl as CLEAR_COMMAND_DESCRIPTION,wl as COST_COMMAND_DESCRIPTION,hs as CommandRegistry,Ks as DEFAULT_AUTO_COMPACT_THRESHOLD,ul as DEFAULT_STATUS_LINE_COMMAND_SETTINGS,A as EXECUTION_ORIGIN_METADATA_KEYS,El as EXIT_COMMAND_DESCRIPTION,Jo as EditCheckpointStore,cc as HELP_COMMAND_DESCRIPTION,Vu as InteractiveSession,Uc as LANGUAGE_COMMAND_ARGUMENT_HINT,Hc as LANGUAGE_COMMAND_DESCRIPTION,Yl as MEMORY_COMMAND_ARGUMENT_HINT,Jl as MEMORY_COMMAND_DESCRIPTION,Xl as MEMORY_COMMAND_USAGE,Ki as MEMORY_INDEX_MAX_BYTES,Gi as MEMORY_INDEX_MAX_LINES,wc as MODEL_COMMAND_ARGUMENT_HINT,Cc as MODEL_COMMAND_DESCRIPTION,at as MODEL_COMMAND_TOOL_PREFIX,Va as MarketplaceClient,Xc as PERMISSIONS_COMMAND_DESCRIPTION,Yc as PERMISSION_MODE_ARGUMENT_HINT,Jc as PERMISSION_MODE_COMMAND_DESCRIPTION,ml as PLUGIN_COMMAND_ARGUMENT_HINT,pl as PLUGIN_COMMAND_DESCRIPTION,ot as PROVIDER_SAFE_TOOL_NAME_PATTERN,Gs as PluginCommandSource,Ma as PluginSettingsStore,ta as ProjectMemoryStore,Yn as PromptExecutor,Wc as RECOMMENDED_RESPONSE_LANGUAGES,hl as RELOAD_PLUGINS_COMMAND_DESCRIPTION,xl as RENAME_COMMAND_DESCRIPTION,Sl as RENAME_COMMAND_USAGE,Cl as RESUME_COMMAND_DESCRIPTION,Ll as REWIND_COMMAND_ARGUMENT_HINT,Il as REWIND_COMMAND_DESCRIPTION,ll as STATUSLINE_COMMAND_ARGUMENT_HINT,cl as STATUSLINE_COMMAND_DESCRIPTION,Tr as SkillCommandSource,gs as SystemCommandExecutor,dd as USER_LOCAL_MEMORY_CATEGORIES,ed as USER_LOCAL_STORAGE_CATEGORIES,td as USER_LOCAL_STORAGE_CATEGORY_DEFINITIONS,Tl as VALIDATE_SESSION_COMMAND_DESCRIPTION,Zc as VALID_PERMISSION_MODES,nc as addCommandContextReference,it as assembleSubagentPrompt,pc as buildBackgroundCommandSubcommands,Gc as buildLanguageCommandSubcommands,Zl as buildMemoryCommandSubcommands,Tc as buildModelCommandSubcommands,Qc as buildPermissionModeSubcommands,yl as buildPluginCommandSubcommands,io as buildPromptWithFileReferences,Es as buildProviderProfile,Ts as buildProviderSetupPatch,Rl as buildRewindCommandSubcommands,dl as buildStatusLineCommandSubcommands,xc as cancelCommandBackgroundTask,Fs as checkSettingsDocument,ic as clearCommandContextReferences,Ya as clearContextReferences,Dl as clearConversationHistory,Sc as closeCommandBackgroundTask,ec as compactCommandContext,Mn as createAgentTool,N as createBackgroundGroupExecutionEntryId,Rr as createBackgroundProcessTool,M as createBackgroundTaskExecutionEntryId,bs as createBuiltinCommandModule,Jd as createCommandExecutionTool,eu as createCommandMemoryStores,$l as createCommandPendingMemoryStore,Ql as createCommandProjectMemoryStore,Ka as createContextReferenceItem,$n as createDefaultTools,P as createExecutionOriginMetadata,Lt as createExecutionWorkspaceSnapshot,an as createExecutionWorkspaceTaskSpawner,Tt as createInProcessSubagentRunner,tn as createLineDetailPage,en as createMainThreadDetailPage,j as createMainThreadExecutionEntryId,lt as createModelCommandToolProjection,_l as createPluginRegistryReloadRequestedEffect,gl as createPluginTuiRequestedEffect,Hu as createProjectSessionStore,ft as createProjectedCommandExecutionTools,so as createPromptFileReferenceHistoryEntry,ct as createProviderSafeModelCommandToolName,$u as createQuery,jl as createSessionExitRequestedEffect,Al as createSessionPickerRequestedEffect,kl as createSessionRenamedEffect,mi as createSubagentLogger,yt as createSubagentSession,_s as createSystemCommands,tf as createTestInteractiveSession,Cs as deleteProviderProfile,jd as deleteUserLocalMemoryItem,Ad as disableUserLocalMemoryItem,ga as discoverTaskFiles,sr as evaluateReversibleToolSafety,lu as executeSkill,a as findProviderDefinition,mc as formatCommandBackgroundTask,hc as formatCommandBackgroundTaskList,uc as formatCommandHelpMessage,sl as formatCommandPermissionsMessage,Pl as formatCommandSessionReplayValidationReport,s as formatEnvReference,tl as formatInvalidPermissionModeMessage,qc as formatLanguageUsageMessage,Ec as formatModelCommandUsageMessage,Dc as formatModelCommandUsageMessageAsync,ut as formatProjectedModelCommandToolPromptDescription,oo as formatPromptFileReferenceDiagnostics,ya as formatTaskContext,tt as getBuiltInAgent,rt as getForkWorkerSuffix,u as getProviderCredentialRequirement,nt as getSubagentSuffix,ao as hasBlockingPromptFileReferenceDiagnostics,nu as hasSensitiveCommandMemoryContent,f as hasUsableSecretReference,Bl as inspectCommandEditCheckpoint,kd as inspectUserLocalMemoryItem,ud as inspectUserLocalStorage,tu as isCommandMemoryType,m as isEnvReference,Ji as isMemoryType,el as isPermissionMode,fl as isStatusLineCommandSettingsPatch,Xa as listActiveContextReferences,yc as listCommandBackgroundTasks,tc as listCommandContextReferences,zl as listCommandEditCheckpoints,al as listCommandSessionAllowedTools,ru as listCommandUsedMemoryReferences,Uu as listResumableSessionSummaries,Od as listUserLocalMemoryItems,ba as loadTaskContext,Ds as mergeProviderPatch,Us as mergeProviders,Hs as mergeSettings,O as normalizeModelCommandName,gc as parseCommandBackgroundLogCursor,It as parseExecutionWorkspaceEntryId,xr as parseFrontmatter,Kc as parseLanguageArgument,$c as parsePermissionModeArgument,fo as parsePromptFileReferences,Ol as parseSessionNameArgument,_a as parseTaskFile,Bd as planSelfHostingVerification,ou as preprocessShellCommands,Ps as probeProviderProfile,U as projectPaths,Zd as promptForApproval,Ys as readAutoCompactThreshold,Xs as readAutoCompactThresholdSource,bc as readCommandBackgroundTaskLog,Js as readCommandContextState,rl as readCommandPermissionMode,ol as readCommandPermissionsState,Ml as readCommandSessionInfo,ha as readCurrentGitBranch,Md as readEnabledUserLocalMemoryItem,Bs as readMergedProviderSettingsFromPaths,iu as recordCommandMemoryEvent,rc as removeCommandContextReference,Ja as removeContextReference,$s as resetAutoCompactThresholdSetting,Ws as resolveActiveProvider,Oc as resolveActiveProviderModelCatalog,kc as resolveActiveProviderModelCatalogState,ee as resolveEnvReference,Wu as resolveLatestSessionId,nl as resolvePermissionModeAdapter,vl as resolvePluginCommandAdapter,bo as resolvePromptFileReferencePaths,yo as resolvePromptFileReferences,Gu as resolveSessionIdByIdOrName,hi as resolveSubagentLogDir,sd as resolveUserLocalStorageRoot,Vl as restoreCommandEditCheckpoint,L as retrieveAgentToolDeps,Hl as rollbackCommandEditCheckpoint,sc as sanitizeProviderProfileName,va as selectRelevantTasks,Zs as setCommandAutoCompactThreshold,Ss as setCurrentProvider,Dd as setUserLocalMemoryItem,Dn as storeAgentToolDeps,au as substituteVariables,oc as suggestProviderProfileName,Mt as summarizeBackgroundJobGroup,Ns as testProviderProfileCommand,Za as toContextReferenceRecords,J as toPromptFileReferenceRecords,Vd as transitionSelfHostingLoop,xa as updateTaskFileStatus,qa as upsertContextReference,xs as upsertProviderProfile,gi as userPaths,Nl as validateCommandSessionReplayLog,ws as validateProviderProfile,tr as wrapEditCheckpointTools,cr as wrapReversibleExecutionTools,Qs as writeAutoCompactThresholdSetting,il as writeCommandPermissionMode};
|
|
93
|
+
`),s=vs(o),c=new gs(e).loadStartupMemory().content||void 0,l=is(e);return{agentsMd:a,claudeMd:o,memoryMd:c,taskContext:l.trim().length>0?l:void 0,compactInstructions:s,agentsFileEntries:r,claudeFileEntries:i}}var bs=class{settingsPath;fs;constructor(e,t=new L){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=x(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 xs(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(`
|
|
94
|
+
`)){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 Ss(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 Cs(e,t=new L){if(!t.existsSync(e))return[];try{return t.readdirSync(e,{withFileTypes:!0}).filter(e=>e.isDirectory()).map(e=>e.name).sort()}catch{return[]}}var ws=class{pluginsDir;enabledPlugins;fs;constructor(e,t,n=new L){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=Cs(e,this.fs);for(let r of n){let n=S(e,r),i=Cs(n,this.fs);for(let e of i){let i=S(n,e),a=Cs(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 Ss(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}=xs(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}=xs(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$/,``)):[]}},Ts=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 L}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 Y(e,t=new L){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 Es(e,t,n=new L){let r=x(e);n.existsSync(r)||n.mkdirSync(r,{recursive:!0}),n.writeFileSync(e,JSON.stringify(t,null,2),`utf-8`)}function Ds(e,t,n=new L){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 Os=6e4;var ks=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 L}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:Os,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=Y(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()},Es(this.registryPath,a,this.fs),i}removeMarketplace(e){let t=Y(this.registryPath,this.fs),n=t[e];if(!n)throw Error(`Marketplace "${e}" not found`);Ds(this.pluginsDir,e,this.fs),this.fs.existsSync(n.installLocation)&&this.fs.rmSync(n.installLocation,{recursive:!0,force:!0}),delete t[e],Es(this.registryPath,t,this.fs)}updateMarketplace(e){let t=Y(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:Os,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(),Es(this.registryPath,t,this.fs)}listMarketplaces(){let e=Y(this.registryPath,this.fs);return Object.entries(e).map(([e,t])=>({name:e,source:t.source,lastUpdated:t.lastUpdated}))}fetchManifest(e){let t=Y(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=Y(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:Os,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 As(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 js(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 Ms(e){let t={};for(let n of e){let e=n.hooks;if(!e)continue;let r=As(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=js(e,n.pluginDir);return t.env=r,t});t[e].push(...i)}}return t}function Ns(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 Ps(e){let t=e.cwd,[n,r,i]=await Promise.all([e.config?Promise.resolve(e.config):zo(t),e.bare?Promise.resolve({agentsMd:``,claudeMd:``,agentsFileEntries:[],claudeFileEntries:[]}):ys(t),e.bare?Promise.resolve({type:`unknown`,language:`unknown`}):Ri(t)]),a=e.language?{...n,language:e.language}:n,o=new ws(S(T(),`.robota`,`plugins`));if(!e.bare)try{let e=o.loadPluginsSync();if(e.length>0){let t=Ms(e);a={...a,hooks:Ns(a.hooks,t)}}}catch{}let s=V(t);await Is(e)||await Fs(e,t);let c=e.resumeSessionId&&!e.forkSession?e.resumeSessionId:void 0,{session:l,rebuildSystemMessage:u}=so({config:a,cwd:t,context:r,projectInfo:i,permissionMode:e.permissionMode,maxTurns:e.maxTurns,terminal:ti,sessionLogger:new ve(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,appendSystemPrompt:e.appendSystemPrompt,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});return{session:l,agentsFileEntries:r.agentsFileEntries??[],claudeFileEntries:r.claudeFileEntries??[],rebuildSystemMessage:u}}async function Fs(e,t){if(e.workspaceManifest){if(!e.sandboxClient)throw Error(`workspaceManifest requires sandboxClient.`);await se(e.sandboxClient,e.workspaceManifest,{hostRoot:t,...e.sandboxWorkspaceRoot?{targetRoot:e.sandboxWorkspaceRoot}:{}})}}async function Is(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 Ls(e,t){let n=e.config??await zo(e.cwd),r=n.autoCompactThreshold===void 0?`default`:`settings`,i=new Ti({cwd:e.cwd});t.setEditCheckpointStore(i);let a=await Ps({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,appendSystemPrompt:e.appendSystemPrompt,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}:{},commandDescriptors:t.commandDescriptors,...t.commandDescriptors.length>0?{modelCommandExecutor:t.executeModelCommand,isModelCommandInvocable:t.isModelCommandInvocable}:{}});if(t.pendingRestoreMessages)for(let e of t.pendingRestoreMessages)zi(a.session,e);return{session:a.session,agentsFileEntries:a.agentsFileEntries,claudeFileEntries:a.claudeFileEntries,rebuildSystemMessage:a.rebuildSystemMessage,autoCompactThresholdSource:r}}function Rs(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(zs({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 zs(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},...Bs(e.backgroundState),...Vs(e.memoryState),...Hs(e.skillActivationState),...Us(e.contextReferenceState)}}function Bs(e){return e?{backgroundTasks:[...e.tasks],backgroundTaskEvents:[...e.events],backgroundJobGroups:[...e.groups??[]],backgroundJobGroupEvents:[...e.groupEvents??[]]}:{}}function Vs(e){return e?{memoryEvents:[...e.events],usedMemoryReferences:[...e.usedReferences]}:{}}function Hs(e){return e?{skillActivationEvents:[...e.events]}:{}}function Us(e){return e?{contextReferences:[...e.references]}:{}}function Ws(e){return e.source===`skill`||e.source===`plugin`&&e.skillContent?`skill`:`builtin-command`}function Gs(e){let t=e.source===`skill`||e.source===`plugin`&&!!e.skillContent;return{name:e.name,kind:Ws(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 Ks=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=>Gs(e))}},qs=class{commands;constructor(e){this.commands=new Map;for(let t of e??Js())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}:{}}))}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 Js(){return[]}function Ys(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 Xs=class{name=`builtin`;commands;constructor(e=Js()){this.commands=e.map(Ys)}getCommands(){return this.commands}};function Zs(){let e=Js();return{name:`sdk-builtin`,commandSources:[new Xs(e)],systemCommands:e}}function Qs(e,t,n){return{...e,providers:{...e.providers??{},[t]:n}}}function $s(e,t){if(!e.providers?.[t])throw Error(`Provider profile "${t}" was not found`);return{...e,currentProvider:t}}function ec(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 tc(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=a(n.providerDefinitions??[],t.type),i=l(r);if(i!==void 0&&!oc(t,r?.defaults,i))throw Error(`Provider profile "${e}" is missing ${cc(i)}`)}function nc(e,t={}){let n=rc(e,t);return tc(e.profile,n,t),{...e.setCurrent&&{currentProvider:e.profile},providers:{[e.profile]:n}}}function rc(e,t={}){let n=ac(e.type,t.providerDefinitions??[]),r=e.apiKeyEnv===void 0?e.apiKey??n.apiKey:s(e.apiKeyEnv),i=e.baseURL??n.baseURL;return{type:e.type,model:e.model??n.model,...lc(r)&&{apiKey:r},...i!==void 0&&{baseURL:i},...e.timeout!==void 0&&{timeout:e.timeout}}}function ic(e,t){let[n,r]=Object.entries(t.providers)[0]??[];if(!n||!r)return e;let i=Qs(e,n,r);return t.currentProvider?$s(i,t.currentProvider):i}function ac(e,t){return a(t,e)?.defaults??{}}function oc(e,t,n){return n.anyOf.some(n=>d(sc(n,e,t)))}function sc(e,t,n){return t[e]??n?.[e]}function cc(e){return e.anyOf.join(` or `)}function lc(e){return e!==void 0&&e.length>0}async function uc(e,t,n,r){let i=n??e;if(!i)return{message:`No provider profile selected.`,success:!1};let o=t?.[i];if(!o)return{message:`Provider profile "${i}" was not found.`,success:!1};try{tc(i,o,{providerDefinitions:r.providerDefinitions})}catch(e){return{message:e instanceof Error?e.message:String(e),success:!1}}let s=await((o.type?a(r.providerDefinitions,o.type):void 0)?.probeProfile??dc)(o);return{message:s.ok?`Provider "${i}" test passed: ${s.message}`:`Provider "${i}" test failed: ${s.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 fc(e,t=[]){return pc(e,t)?`valid`:`incomplete`}function pc(e,t){if(typeof e.currentProvider==`string`){let n=e.providers?.[e.currentProvider];return mc(n?.type,n,t)}return!!(e.provider&&mc(e.provider.name,e.provider,t))}function mc(e,t,n){if(!t)return!1;if(!e)return d(t.apiKey);let r=a(n,e);if(r===void 0)return!1;let i=l(r);return i===void 0?!0:hc(t,r,i)}function hc(e,t,n){return n.anyOf.some(n=>d(gc(n,e,t)))}function gc(e,t,n){return t[e]??n.defaults?.[e]}function _c(e,t=[]){if(!v(e))return`missing`;try{let n=y(e,`utf8`).trim();return n.length===0?`incomplete`:fc(JSON.parse(n),t)}catch{return`corrupt`}}function vc(e,t=new L){return e.reduce((e,n)=>{let r=yc(n,t);return r===void 0?e:bc(e,r)},{})}function yc(e,t){if(t.existsSync(e))try{let n=t.readFileSync(e,`utf8`);return JSON.parse(n)}catch{return}}function bc(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?xc(e.providers,t.providers):void 0}}function xc(e,t){let n={...e??{}};for(let[e,r]of Object.entries(t??{}))n[e]={...n[e],...r};return n}function Sc(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 oe({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 oe({name:i.name,model:i.model,apiKey:i.apiKey,baseURL:i.baseURL,timeout:i.timeout,options:i.options},n)}function Cc(){return process.env.HOME??process.env.USERPROFILE??`/`}function wc(e){let t=Cc();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 Tc(){return S(process.env.HOME??process.env.USERPROFILE??`/`,`.robota`,`settings.json`)}function Ec(e,t){return t===void 0||t===`user`?Tc():S(e,`.robota`,`settings.local.json`)}function X(e){if(!v(e))return{};let t=y(e,`utf8`);try{return JSON.parse(t)}catch{return process.stderr.write(`Warning: corrupt settings file at ${e}, resetting to defaults\n`),{}}}function Z(e,t){Oe(x(e),{recursive:!0}),Pe(e,JSON.stringify(t,null,2)+`
|
|
95
|
+
`,`utf8`)}function Dc(e,t){let n=X(e),r=n.currentProvider,i=n.providers;if(typeof r==`string`&&Oc(i)){let e=i;e[r]={...Oc(e[r])?e[r]:{},model:t},n.providers=e}else n.provider={...Oc(n.provider)?n.provider:{},model:t};Z(e,n)}function Oc(e){return typeof e==`object`&&!!e&&!Array.isArray(e)&&!(e instanceof Date)}function kc(e){return v(e)?(Ne(e),!0):!1}function Ac(e,t={}){let n=t.settingsPaths??wc(e),r=Ic(n)??n[0];if(r===void 0)throw Error(`No settings path available for provider update`);return r}function Q(e){return X(e)}function jc(e,t,n={}){let r=ic(Q(e),nc(t,n));return Z(e,r),r}function Mc(e,t,n={}){let r=Q(e),i=r.providers?.[t]!==void 0,a=n.knownProviders?.[t]!==void 0,o=i||a?{...r,currentProvider:t}:$s(r,t);return Z(e,o),o}function Nc(e,t,n={}){let r=n.settingsPaths??wc(e),i=vc(r),a=n.providerOverride??i.currentProvider;if(typeof a!=`string`)throw Error(`Cannot update model: no active provider profile. Set "currentProvider" in settings.`);return Pc(r,a,t)}function Pc(e,t,n){let r=Fc(e,t)??e[0];if(r===void 0)throw Error(`No settings path available for model update`);let i=Q(r),a=i.providers??{},o=a[t]??{},s={...i,providers:{...a,[t]:{...o,model:n}}};return Z(r,s),{settingsPath:r,settings:s,profileName:t}}function Fc(e,t){for(let n=e.length-1;n>=0;--n){let r=e[n];if(r!==void 0&&Q(r).providers?.[t]!==void 0)return r}}function Ic(e){for(let t=e.length-1;t>=0;--t){let n=e[t];if(n!==void 0&&Q(n).currentProvider!==void 0)return n}}function Lc(e){return vc(wc(e))}function Rc(e,t={}){let n=Sc(Lc(e),t.providerOverride,t.providerDefinitions??[]);if(n!==void 0)return n;throw Error("No provider configuration found. Run `robota` to set up.")}function zc(e,t,n={}){let r=n.providerDefinitions??[],i=Rc(e,{...n,providerDefinitions:r}),a=t??i.model;return ie({...i,model:a},r)}var Bc=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 Vc=_e,Hc=`autoCompactThreshold`;function Uc(e){return e.getContextState()}function Wc(e){return e.getAutoCompactThreshold()}function Gc(e){return e.getAutoCompactThresholdSource?.()??`session`}function Kc(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 qc(e,t){let n=el(e);return n?(n.write({...n.read(),[Hc]:t}),!0):!1}function Jc(e){let t=el(e);if(!t)return!1;let n={...t.read()};return delete n[Hc],t.write(n),!0}async function Yc(e,t){let n=Uc(e);return await e.compactContext(t),{before:n,after:Uc(e)}}function Xc(e){return e.listContextReferences?.()??[]}async function Zc(e,t){return e.addContextReference?e.addContextReference(t):{evicted:[],diagnostics:[`Command host does not support context reference additions.`]}}function Qc(e,t){return e.removeContextReference?.(t)??{}}function $c(e){return e.clearContextReferences?.()??{removed:[]}}function el(e){return e.getCommandHostAdapters?.().settings}function tl(e,t={}){let n=nl(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 nl(e){let t=e?.trim().toLowerCase().replace(/[^a-z0-9]+/g,`-`).replace(/^-+|-+$/g,``);return t!==void 0&&t.length>0?t:void 0}const rl=`Show available commands`;function il(e){return e.listCommands?.()??[]}function al(e){return[`Available commands:`,...il(e).map(e=>{let t=e.displayName??e.name,n=`/${e.name}`;return` ${(e.displayName?`${t} (${n})`:n).padEnd(32)} — ${e.description}`})].join(`
|
|
96
|
+
`)}const ol=`List and control background tasks`,sl=`Usage: background list | background read <task-id> [offset] | background cancel <task-id> | background close <task-id>`;function cl(){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 ll(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=fl(e),s=t?` — ${t}`:``;return`${e.id} [${e.status}${n}${i}${a}${o}] ${e.kind}:${e.label}${r}${s}`}function ul(e){return e.length===0?`No background tasks.`:[`Background tasks:`,...e.map(e=>` ${ll(e)}`)].join(`
|
|
97
|
+
`)}function dl(e){if(!e)return;let t=Number.parseInt(e,10);return Number.isNaN(t)?void 0:{offset:t}}function fl(e){let t=[];return e.worktreePath&&t.push(`worktree=${e.worktreePath}`),e.branchName&&t.push(`branch=${e.branchName}`),e.worktreeStatus&&t.push(`worktreeStatus="${pl(e.worktreeStatus)}"`),e.worktreeNextAction&&t.push(`next="${pl(e.worktreeNextAction)}"`),t.length===0?``:` ${t.join(` `)}`}function pl(e){let t=e.trim().replace(/\s+/g,` `);return t.length>160?`${t.slice(0,160)}...`:t}function ml(e,t){return e.listBackgroundTasks(t)}function hl(e,t,n){return e.readBackgroundTaskLog(t,n)}function gl(e,t,n){return e.cancelBackgroundTask(t,n)}function _l(e,t){return e.closeBackgroundTask(t)}const vl=`Change AI model`,yl=`<model-id>`;function bl(e=`model`){let t=typeof e==`string`?{source:e}:e,n=t.source??`model`,r=Cl(t.settings,t.providerDefinitions);return r===void 0?t.settings===void 0?Tl(n):[]:El(r,n)}function xl(e={}){let t=Ol(e.settings,e.providerDefinitions);return Fl(t===void 0?void 0:Al(t))}async function Sl(e={}){return Fl(await wl(e))}function Cl(e,t=[]){return Ol(e,t)?.catalog}async function wl(e){let t=Ol(e.settings,e.providerDefinitions);if(t!==void 0){if(!(e.refresh===!0||jl(t.catalog,t.definition?.modelCatalogCacheTtlSeconds))||t.definition?.refreshModelCatalog===void 0)return Al(t);try{let e=await t.definition.refreshModelCatalog({profile:Ml(t)});return e.status===`unavailable`?{providerType:t.providerType,catalog:t.catalog??e,refreshAttempted:!0,...e.message===void 0?{}:{refreshMessage:e.message}}:{providerType:t.providerType,catalog:e,refreshAttempted:!0}}catch(e){return{providerType:t.providerType,...t.catalog===void 0?{}:{catalog:t.catalog},refreshAttempted:!0,refreshMessage:e instanceof Error?e.message:String(e)}}}}function Tl(t){let n=new Set,r=[];for(let i of Object.values(e))n.has(i.name)||(n.add(i.name),r.push({name:i.id,description:`${i.name} (${c(i.contextWindow).toUpperCase()})`,source:t}));return r}function El(e,t){return(e.entries??[]).filter(e=>e.lifecycle!==`unavailable`).map(e=>({name:e.id,description:Dl(e),source:t}))}function Dl(e){return e.contextWindow===void 0?e.displayName:`${e.displayName} (${c(e.contextWindow).toUpperCase()})`}function Ol(e,t=[]){let n=kl(e),r=n?.type??n?.name;if(r===void 0)return;let i=a(t,r);return{providerType:r,...n===void 0?{}:{profile:n},...i===void 0?{}:{definition:i},...i?.modelCatalog===void 0?{}:{catalog:i.modelCatalog}}}function kl(e){return e?.currentProvider===void 0?e?.provider:e.providers?.[e.currentProvider]}function Al(e){return{providerType:e.providerType,...e.catalog===void 0?{}:{catalog:e.catalog},refreshAttempted:!1}}function jl(e,t){return e===void 0||t===void 0||e.lastVerifiedAt===void 0?!1:Date.now()-new Date(e.lastVerifiedAt).getTime()>t*1e3}function Ml(e){let t=e.profile,n=e.definition?.defaults,r=Pl(t?.apiKey??n?.apiKey),i=Nl(t?.model,n?.model),a=Nl(t?.baseURL,n?.baseURL),o=Nl(t?.timeout,n?.timeout),s=Nl(t?.options,n?.options),c={type:t?.type??e.providerType};return i!==void 0&&(c.model=i),r!==void 0&&(c.apiKey=r),a!==void 0&&(c.baseURL=a),o!==void 0&&(c.timeout=o),s!==void 0&&(c.options=s),c}function Nl(e,t){return e??t}function Pl(e){return e===void 0?void 0:ee(e)}function Fl(e){let t=e?.providerType!==void 0&&(e.catalog?.entries===void 0||e.catalog.entries.length===0)?`No model catalog available for provider ${e.providerType}. Usage: model <model-id>`:`Usage: model <model-id>`,n=Il(e);return n===void 0?t:`${t}\n${n}`}function Il(e){let t=e?.catalog;if(t===void 0)return;let n=[`Catalog: ${t.status}`];t.entries!==void 0&&n.push(`${t.entries.length} model(s)`),t.lastVerifiedAt!==void 0&&n.push(`verified ${t.lastVerifiedAt}`),t.sourceUrl!==void 0&&n.push(`source ${t.sourceUrl}`);let r=e?.refreshMessage;return r===void 0?t.message!==void 0&&n.push(t.message):n.push(`refresh ${r}`),n.join(`; `)}const Ll=`Set response language`,Rl=`<code>`,zl=[{code:`ko`,description:`Korean`},{code:`en`,description:`English`},{code:`ja`,description:`Japanese`},{code:`zh`,description:`Chinese`}];function Bl(e=`language`){return zl.map(t=>({name:t.code,description:t.description,source:e}))}function Vl(e){let t=e.trim().split(/\s+/)[0];return t!==void 0&&t.length>0?t:void 0}function Hl(e=`language`){return`Usage: ${e} <code> (e.g., ko, en, ja, zh)`}const Ul=`Show/change permission mode`,Wl=`plan | default | acceptEdits | bypassPermissions`,Gl=`Show/change permission mode and permission rules`,Kl=[`plan`,`default`,`acceptEdits`,`bypassPermissions`];function ql(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 Jl(e){let t=e.trim().split(/\s+/)[0];return t!==void 0&&t.length>0?t:void 0}function Yl(e){return Kl.includes(e)}function Xl(){return`Invalid mode. Valid: ${Kl.join(` | `)}`}function Zl(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 Zl(e).getPermissionMode()}function $l(e,t){Zl(e).setPermissionMode(t)}function eu(e){return Zl(e).listSessionAllowedTools()}function tu(e){return{mode:Ql(e),sessionAllowed:eu(e)}}function nu(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 ru=`Configure TUI status-line visibility and fields such as model, context, tokens, session, and git branch.`,iu=`on | off | reset | git on | git off`,au={enabled:!0,gitBranch:!0};function ou(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 su(e){return(e.enabled===void 0||typeof e.enabled==`boolean`)&&(e.gitBranch===void 0||typeof e.gitBranch==`boolean`)}function cu(e){let t=e.statusline;return uu(t)?{enabled:typeof t.enabled==`boolean`?t.enabled:au.enabled,gitBranch:typeof t.gitBranch==`boolean`?t.gitBranch:au.gitBranch}:{...au}}function lu(e,t){let n=X(e),r={...cu(n),...t};return n.statusline=r,Z(e,n),r}function uu(e){return typeof e==`object`&&!!e&&!Array.isArray(e)&&!(e instanceof Date)}const du=`Manage plugins`,fu=`manage | install <name@marketplace> | uninstall <name@marketplace> | enable <name@marketplace> | disable <name@marketplace> | marketplace <action>`,pu=`Reload all plugin resources`;function mu(){return{type:`plugin-tui-requested`}}function hu(){return{type:`plugin-registry-reload-requested`}}function gu(e){return e.getCommandHostAdapters?.().plugin}function _u(){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 vu=`Clear conversation history`,yu=`Rename the current session`,bu=`Usage: rename <name>`,xu=`Resume a previous session`,Su=`Show session info`,Cu=`Validate current session replay log`,wu=`Exit CLI`;function Tu(e){if(e.clearConversationHistory!==void 0){e.clearConversationHistory();return}e.getSession().clearHistory()}function Eu(e){let t=e.trim();return t.length>0?t:void 0}function Du(e){return{type:`session-renamed`,name:e}}function Ou(){return{type:`session-picker-requested`}}function ku(){return{type:`session-exit-requested`}}function Au(e){let t=e.getSession();return{sessionId:t.getSessionId(),messageCount:t.getMessageCount()}}function ju(e){let t=e.validateCurrentSessionReplayLog?.();if(t!==void 0)return t;let n=e.getSession().getSessionId(),r=S(V(e.getCwd()).logs,`${n}.jsonl`),i=xe(r);return{logFile:r,entryCount:i.length,validation:Ce(i)}}function Mu(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=Nu(e);return`${t+1}. ${e.code}${n}: ${e.message}`});return[t,...n,``,...r].join(`
|
|
100
|
+
`)}function Nu(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 Pu=`List, inspect, restore, or rollback edit checkpoints.`,Fu=`list | inspect CHECKPOINT_ID | restore CHECKPOINT_ID | code CHECKPOINT_ID | rollback CHECKPOINT_ID`;function Iu(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 Lu(e){return e.listEditCheckpoints()}function Ru(e,t){if(!e.inspectEditCheckpoint)throw Error(`Checkpoint inspection is not available in this command host.`);return e.inspectEditCheckpoint(t)}function zu(e,t){return e.restoreEditCheckpoint(t)}function Bu(e,t){return e.rollbackEditCheckpoint(t)}const Vu=[/\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 Hu(e){return Vu.some(t=>t.test(e))}function Uu(e){return S(e,`.robota`,`memory`)}function Wu(){return{version:1,records:[]}}var Gu=class{fs;path;now;constructor(e,t=()=>new Date,n=new L){this.fs=n,this.path=S(Uu(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 Wu();try{return{version:1,records:JSON.parse(this.fs.readFileSync(this.path,`utf8`)).records??[]}}catch{return Wu()}}write(e){this.fs.mkdirSync(x(this.path),{recursive:!0}),this.fs.writeFileSync(this.path,JSON.stringify(e,null,2),`utf8`)}};const Ku=`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.`,qu=`list | show [topic] | add <user|feedback|project|reference> <topic> <text> | pending | approve <id> | reject <id> | used`,Ju=`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 Yu(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 Xu(e,t){return new gs(e,t)}function Zu(e,t){return new Gu(e,t)}function Qu(e,t){let n=e.getCwd();return{project:Xu(n,t),pending:Zu(n,t)}}function $u(e){return ls(e)}function ed(e){return Hu(e)}function td(e){return e.getUsedMemoryReferences()}function nd(e,t,n=()=>new Date){e.recordMemoryEvent({...t,at:n().toISOString()})}function rd(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 id(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 ad(e,t,n,r){return e.skillContent?rd(await id(e.skillContent,n.shellExec),t,r):null}async function od(e,t,n,r){let i=await ad(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 sd(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 ad(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 od(e,t,n,r)}}function cd(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function ld(e){return e.trim().replace(/^\/+/,``).split(/\s+/)[0]??``}function ud(e,t){let n=t.trim();return n.length>0?`${e} ${n}`:e}function dd(e){if(!e?.startsWith(`/`))return;let t=e.slice(1).trim().split(/\s+/)[0];return t&&t.length>0?t:void 0}var fd=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 qs(e.flatMap(e=>e.systemCommands??[])),this.skillCommandSource=new Ba(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}))}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=cd(e);return this.skillCommandSource.getCommands().find(e=>e.name.toLowerCase()===t.toLowerCase())}async executeCommand(e,t){let n=ld(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,ud(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=dd(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 sd(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=Ni({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)}`}}}},pd=class extends tr{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;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 Ti({cwd:t})),this.bgTracker=new Vn(()=>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 Fi(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 fd(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)=>hi(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 pi(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()});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=Bi(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}startAsyncInitializationIfNeeded(e,t){if(t)return;let n=e;this.initPromise=this.initializeAsync(n)}async initializeAsync(e){let t=await Ls(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.pendingRestoreMessages=null,this.initialized=!0,this.bgTracker.subscribe(this.session),this.persistCurrentSession()}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},(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.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 Ht(this.session)??F(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(p(r(`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();Rs(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})}};function md(e,t=new L){let n=V(e);return new vd(n.sessions,n.logs,t)}function hd(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:yd(e.messages)}))}function gd(e,t){return hd(e,t)[0]?.id}function _d(e,t){return(e?.list()??[]).find(e=>e.id===t||e.name===t)?.id}var vd=class{store;logsDir;fs;constructor(e,t,n=new L){this.store=new be(e),this.logsDir=t,this.fs=n}save(e){this.store.save(bd(e))}load(e){let t=this.store.load(e);return t===void 0?this.loadFromReplayLog(e):xd(t)}list(){let e=this.store.list().map(xd),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=Se(xe(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:Sd(n),backgroundTaskEvents:n,backgroundJobGroups:wd(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 yd(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 bd(e){return{...e}}function xd(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 Sd(e){let t=new Map;for(let n of e){let e=Cd(n);e&&t.set(e.id,e)}return[...t.values()]}function Cd(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 wd(e){let t=new Map;for(let n of e)t.set(n.group.id,n.group);return[...t.values()]}function Td(e){let t=new pd({cwd:e.cwd??process.cwd(),provider:e.provider,permissionMode:e.permissionMode??`bypassPermissions`,maxTurns:e.maxTurns,permissionHandler:e.permissionHandler});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 Ed=[`preferences`,`view-state`,`memory-projections`,`task-associations`,`workflow-metadata`,`inspection-index`],Dd=[{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 Od(e){return e.toISOString()}function kd(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 Ad(){return process.env.HOME??T()}function jd(e,t){let n=b.relative(e,t);return n===``||!n.startsWith(`..`)&&!b.isAbsolute(n)}async function Md(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 Nd(e){let t=e.fsAsync??new R,n=b.resolve(e.activeRepositoryRoot);kd(`activeRepositoryRoot`,n);let r=e.storageRoot===void 0?b.join(e.homeDir??Ad(),`.robota`):e.storageRoot;kd(`userLocalStorageRoot`,r);let i=b.resolve(r),a=await Md(i,t);if(jd(await Md(n,t),a))throw Error(`User-local storage root must be outside the active repository: ${i}`);return i}function Pd(e,t){return b.join(e,t)}async function Fd(e,t,n){let r=Pd(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:Od(new Date(o.birthtimeMs)),lastUsedAt:Od(new Date(o.mtimeMs)),enabled:!0,deleteAvailable:!0,disableAvailable:!1}}))).sort((e,t)=>e.key.localeCompare(t.key))}async function Id(e){let t=e.fsAsync??new R,n=await Nd(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(Dd.map(async e=>{let r=Pd(n,e.category);i&&await t.mkdir(r,{recursive:!0});let a=await Fd(n,e.category,t);return{category:e.category,purpose:e.purpose,mayExecuteCommands:e.mayExecuteCommands,storageLocation:r,itemCount:a.length,items:a}})),generatedAt:Od((e.now??(()=>new Date))())}}const Ld=[`view-preference`,`last-visible-cwd`,`background-selection`,`task-association`,`display-preference`,`inspection-choice`],Rd=`.json`,zd=/^[a-z0-9][a-z0-9._-]*$/u,Bd={"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 Vd(e){return e.toISOString()}function Hd(e){return Ld.includes(e)}function Ud(e){if(!Hd(e))throw Error(`Unsupported user-local memory category: ${e}`);return e}function Wd(e,t){let n=t.trim();if(n.length===0)throw Error(`${e} must not be empty.`);if(n.length>80||!zd.test(n))throw Error(`${e} must use lowercase letters, numbers, dots, underscores, or hyphens: ${t}`);return n}function Gd(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 Kd(e){return Gd(`value`,e,240)}function qd(e,t){return`${e}__${t}${Rd}`}async function Jd(e){let t=await Nd(e);return{root:t,memoryRoot:b.join(t,`memory-projections`)}}function Yd(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:Ud(r),key:$(n,`key`),value:$(n,`value`),summary:$(n,`summary`),source:$(n,`source`),scope:$(n,`scope`),createdAt:$(n,`createdAt`),lastUsedAt:$(n,`lastUsedAt`),enabled:Xd(n,`enabled`)}}function $(e,t){let n=e[t];if(typeof n!=`string`)throw Error(`Invalid user-local memory field: ${t}`);return n}function Xd(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:Kd(n.value),source:n.source,scope:n.scope,storageLocation:t,createdAt:n.createdAt,lastUsedAt:n.lastUsedAt,enabled:n.enabled,displayNavigationRule:Bd[n.category],commandExecutionEffect:`none`,deleteAvailable:!0,disableAvailable:!0}}async function Qd(e,t,n){return Zd(e,t,Yd(await n.readFile(t,`utf8`),t))}async function $d(e){let t=Ud(e.category),n=Wd(`key`,e.key),{root:r,memoryRoot:i}=await Jd(e);return{root:r,storageLocation:b.join(i,qd(t,n))}}async function ef(e){let t=e.fsAsync??new R,n=Ud(e.category),r=Wd(`key`,e.key),i=Gd(`summary`,e.summary,240),a=Gd(`source`,e.source,80),o=Gd(`scope`,e.scope??`user`,120),s=Kd(e.value),c=Vd((e.now??(()=>new Date))()),{root:l,memoryRoot:u}=await Jd(e),d=b.join(u,qd(n,r)),f=c;try{f=Yd(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 tf(e){let t=e.fsAsync??new R,{root:n,memoryRoot:r}=await Jd(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(Rd)).map(e=>Qd(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 nf(e){let t=e.fsAsync??new R,{root:n,storageLocation:r}=await $d(e);return Qd(n,r,t)}async function rf(e){let t=e.fsAsync??new R,{root:n,storageLocation:r}=await $d(e),i={...Yd(await t.readFile(r,`utf8`),r),enabled:!1,lastUsedAt:Vd((e.now??(()=>new Date))())};return await t.writeFile(r,`${JSON.stringify(i,null,2)}\n`,`utf8`),Zd(n,r,i)}async function af(e){let t=e.fsAsync??new R,{storageLocation:n}=await $d(e);return await t.rm(n),{category:e.category,key:e.key,deleted:!0}}async function of(e){let t=await nf(e);return t.enabled?t:null}const sf=[`test`,`typecheck`,`build`],cf={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 lf(e){return e?Array.from(new Set(e.map(e=>e.trim()).filter(Boolean))):[]}function uf(e){return e.flatMap(e=>sf.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 df(){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 ff(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 pf(){return{id:`rollback-on-failure`,phase:`recover`,description:`Use the existing edit checkpoint restore path if verification fails.`,required:!0}}function mf(e){if(e.changedFiles.length===0)throw Error(`Self-hosting verification requires at least one changed file.`);let t=e.baseRef??`origin/develop`,n=lf(e.packageScopes),r=[...df(),...uf(n),ff(t),pf()];return{changedFiles:[...e.changedFiles],packageScopes:n,baseRef:t,steps:r}}function hf(e,t){let n=cf[e][t];if(!n)throw Error(`Invalid self-hosting loop transition: ${e} -> ${t}`);return n}function gf(e){return e}function _f(e){if(!e||e.length===0)return;let[t,...n]=e;if(t!==void 0)return[t,...n]}function vf(e){let t=_f(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 yf(e){if(e.commandNames!==void 0)return e.commandNames;if(e.commandDescriptors!==void 0)return e.commandDescriptors.map(e=>P(e.name))}function bf(e){return`- ${P(e.name)}${e.argumentHint?` ${e.argumentHint}`:``}: ${e.description}`}function xf(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(bf)].join(`
|
|
101
|
+
`)}function Sf(e){let t=vf(yf(e));return fe(`ExecuteCommand`,xf(e.commandDescriptors),gf(t),async n=>{let r=t.parse(n),i=P(r.command);return e.isModelInvocable(i)?gn(i,await e.execute(i,r.args??``)):JSON.stringify({success:!1,command:i,error:`Command is not model-invocable: ${i}`})})}const Cf=[`Allow`,`Deny`];function wf(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 Tf(e,t,n){return e.writeLine(``),e.writeError(`[Permission Required] Tool: ${t}`),e.writeLine(` ${wf(n)}`),e.writeLine(``),await e.select(Cf,0)===0}const Ef={usedTokens:0,maxTokens:2e5,usedPercentage:0,remainingPercentage:100},Df={sessionId:`test-session-id`,updatedAt:new Date().toISOString(),entries:[]},Of={id:``,parentSessionId:`test-session-id`,waitPolicy:`wait_all`,taskIds:[],status:`completed`,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString(),results:[]};function kf(e){return{submit:()=>Promise.resolve(),abort:()=>{},cancelQueue:()=>{},shutdown:()=>Promise.resolve(),isExecuting:()=>!1,getPendingPrompt:()=>null,getMessages:()=>[],getContextState:()=>({...Ef}),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:()=>({...Of}),waitBackgroundJobGroup:()=>Promise.resolve({...Of}),getExecutionWorkspaceSnapshot:()=>({...Df}),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 Af(){let e=Tc();return{deleted:kc(e),path:e}}function jf(e){try{let t=Mf(e);if(!t)return;let n=y(S(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 Mf(e){let t=w(e),n=x(t);for(;n!==t;){let e=Nf(S(t,`.git`),t);if(e)return e;t=n,n=x(t)}return Nf(S(t,`.git`),t)}function Nf(e,t){if(!v(e))return;let n=De(e);if(n.isDirectory())return e;if(!n.isFile())return;let r=y(e,`utf8`).trim();if(!r.startsWith(`gitdir:`))return;let i=r.slice(7).trim();return Ke(i)?i:w(t,i)}function Pf(e,t){let n=If(e),r=If(t);if(n===void 0||r===void 0)return Math.sign(e.localeCompare(t));let i=Rf(n.major,r.major)||Rf(n.minor,r.minor)||Rf(n.patch,r.patch);return i===0?zf(n.prerelease,r.prerelease):i}function Ff(e,t){return Pf(e,t)>0}function If(e){let[t,n]=(e.trim().replace(/^v/,``).split(`+`)[0]??``).split(`-`,2),[r,i,a]=t.split(`.`),o=Lf(r),s=Lf(i),c=Lf(a);if(!(o===void 0||s===void 0||c===void 0))return{major:o,minor:s,patch:c,prerelease:n?n.split(`.`):[]}}function Lf(e){if(!(e===void 0||!/^\d+$/.test(e)))return Number(e)}function Rf(e,t){return Math.sign(e-t)}function zf(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=Bf(n,i);if(a!==0)return a}return 0}function Bf(e,t){let n=Lf(e),r=Lf(t);return n!==void 0&&r!==void 0?Rf(n,r):n===void 0?r===void 0?Math.sign(e.localeCompare(t)):1:-1}function Vf(e){let t=Tc();return{cwd:e.cwd,provider:e.provider,commandModules:e.commandModules??[],commandHostAdapters:e.commandHostAdapters??{settings:{read:()=>X(t),write:e=>Z(t,e)}},backgroundTaskRunners:e.backgroundTaskRunners??re(),subagentRunnerFactory:e.subagentRunnerFactory,sessionStore:`sessionStore`in e?e.sessionStore:md(e.cwd),transportRegistry:e.transportRegistry,reloadPluginCommandSource:e.reloadPluginCommandSource??(()=>{})}}function Hf(e){let t=x(tt(e)),n=[S(t,`..`,`..`,`package.json`),S(t,`..`,`package.json`)];for(let e of n)try{let t=y(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 Uf=`@robota-sdk/agent-cli`,Wf=`https://registry.npmjs.org`,Gf=1440*60*1e3,Kf=1500;function qf(e=process.env.HOME??process.env.USERPROFILE??`/`){return S(e,`.robota`,`update-check.json`)}function Jf(e){if(v(e))try{return lp(JSON.parse(y(e,`utf8`)))}catch{return}}function Yf(e,t){Oe(x(e),{recursive:!0}),Pe(e,JSON.stringify(t,null,2)+`
|
|
102
|
+
`,`utf8`)}async function Xf(e){if(e.disabled===!0)return{status:`skipped`,reason:`disabled`};let t=e.packageName??`@robota-sdk/agent-cli`,n=e.cachePath??qf(),r=e.now??new Date,i=e.ttlMs??864e5;if(e.force!==!0){let a=Jf(n);if(a!==void 0&&ap(a,r,i,t))return rp(a,e.currentVersion)}let a=await Zf(e,t,n,r);return typeof a==`string`?ip(e.currentVersion,a):a}async function Zf(e,t,n,r){let i=await op({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{Yf(e,t)}catch{}}async function $f(e){let t=await Xf(e);return t.status===`update_available`?t.notice:void 0}function ep(e){return e.printMode===!1&&e.disableUpdateCheck===!1}function tp(e){return[`Robota update available: ${e.currentVersion} -> ${e.latestVersion}.`,`Run ${e.installCommand}`].join(` `)}function np(e){return e.status===`update_available`?tp(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 rp(e,t){return e.errorMessage===void 0?e.latestVersion===void 0?{status:`error`,errorMessage:`Cached update check has no latest version`}:ip(t,e.latestVersion):{status:`error`,errorMessage:e.errorMessage}}function ip(e,t){return Ff(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 ap(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 op(e){try{return{ok:!0,version:await sp(e)}}catch(e){return{ok:!1,errorMessage:e instanceof Error?e.message:String(e)}}}async function sp(e){let t=new AbortController,n=setTimeout(()=>t.abort(),e.timeoutMs);try{let n=cp(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 cp(e,t){return`${e.replace(/\/+$/,``)}/${encodeURIComponent(t)}`}function lp(e){if(!up(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 up(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}export{Hc as AUTO_COMPACT_THRESHOLD_SETTINGS_KEY,Ha as AgentExecutor,ol as BACKGROUND_COMMAND_DESCRIPTION,sl as BACKGROUND_COMMAND_USAGE,an as BUILT_IN_AGENTS,rt as BackgroundJobOrchestrator,Xs as BuiltinCommandSource,Ts as BundlePluginInstaller,ws as BundlePluginLoader,vu as CLEAR_COMMAND_DESCRIPTION,Gf as CLI_UPDATE_CACHE_TTL_MS,Uf as CLI_UPDATE_PACKAGE_NAME,Wf as CLI_UPDATE_REGISTRY_URL,Kf as CLI_UPDATE_TIMEOUT_MS,Su as COST_COMMAND_DESCRIPTION,Ks as CommandRegistry,Vc as DEFAULT_AUTO_COMPACT_THRESHOLD,au as DEFAULT_STATUS_LINE_COMMAND_SETTINGS,A as EXECUTION_ORIGIN_METADATA_KEYS,wu as EXIT_COMMAND_DESCRIPTION,Ti as EditCheckpointStore,rl as HELP_COMMAND_DESCRIPTION,pd as InteractiveSession,Rl as LANGUAGE_COMMAND_ARGUMENT_HINT,Ll as LANGUAGE_COMMAND_DESCRIPTION,qu as MEMORY_COMMAND_ARGUMENT_HINT,Ku as MEMORY_COMMAND_DESCRIPTION,Ju as MEMORY_COMMAND_USAGE,ss as MEMORY_INDEX_MAX_BYTES,os as MEMORY_INDEX_MAX_LINES,yl as MODEL_COMMAND_ARGUMENT_HINT,vl as MODEL_COMMAND_DESCRIPTION,un as MODEL_COMMAND_TOOL_PREFIX,ks as MarketplaceClient,Gl as PERMISSIONS_COMMAND_DESCRIPTION,Wl as PERMISSION_MODE_ARGUMENT_HINT,Ul as PERMISSION_MODE_COMMAND_DESCRIPTION,fu as PLUGIN_COMMAND_ARGUMENT_HINT,du as PLUGIN_COMMAND_DESCRIPTION,dn as PROVIDER_SAFE_TOOL_NAME_PATTERN,Bc as PluginCommandSource,bs as PluginSettingsStore,gs as ProjectMemoryStore,Wa as PromptExecutor,zl as RECOMMENDED_RESPONSE_LANGUAGES,pu as RELOAD_PLUGINS_COMMAND_DESCRIPTION,yu as RENAME_COMMAND_DESCRIPTION,bu as RENAME_COMMAND_USAGE,xu as RESUME_COMMAND_DESCRIPTION,Fu as REWIND_COMMAND_ARGUMENT_HINT,Pu as REWIND_COMMAND_DESCRIPTION,iu as STATUSLINE_COMMAND_ARGUMENT_HINT,ru as STATUSLINE_COMMAND_DESCRIPTION,Ba as SkillCommandSource,qs as SystemCommandExecutor,Ld as USER_LOCAL_MEMORY_CATEGORIES,Ed as USER_LOCAL_STORAGE_CATEGORIES,Dd as USER_LOCAL_STORAGE_CATEGORY_DEFINITIONS,Cu as VALIDATE_SESSION_COMMAND_DESCRIPTION,Kl as VALID_PERMISSION_MODES,Zc as addCommandContextReference,Nc as applyActiveModelChange,jc as applyProviderConfiguration,Mc as applyProviderSwitch,lu as applyStatusLineSettings,ln as assembleSubagentPrompt,cl as buildBackgroundCommandSubcommands,Bl as buildLanguageCommandSubcommands,Yu as buildMemoryCommandSubcommands,bl as buildModelCommandSubcommands,ql as buildPermissionModeSubcommands,_u as buildPluginCommandSubcommands,yr as buildPromptWithFileReferences,rc as buildProviderProfile,nc as buildProviderSetupPatch,Iu as buildRewindCommandSubcommands,ou as buildStatusLineCommandSubcommands,gl as cancelCommandBackgroundTask,Xf as checkForCliUpdate,fc as checkSettingsDocument,_c as checkSettingsFile,$c as clearCommandContextReferences,ur as clearContextReferences,Tu as clearConversationHistory,_l as closeCommandBackgroundTask,Yc as compactCommandContext,Pf as compareSemverVersions,Vf as createAgentRuntime,Bn as createAgentTool,pt as createBackgroundGroupExecutionEntryId,Sa as createBackgroundProcessTool,j as createBackgroundTaskExecutionEntryId,Zs as createBuiltinCommandModule,Sf as createCommandExecutionTool,Qu as createCommandMemoryStores,Zu as createCommandPendingMemoryStore,Xu as createCommandProjectMemoryStore,sr as createContextReferenceItem,Ki as createDefaultTools,M as createExecutionOriginMetadata,ht as createExecutionWorkspaceSnapshot,Lt as createExecutionWorkspaceTaskSpawner,An as createInProcessSubagentRunner,Pt as createLineDetailPage,Nt as createMainThreadDetailPage,ft as createMainThreadExecutionEntryId,mn as createModelCommandToolProjection,hu as createPluginRegistryReloadRequestedEffect,mu as createPluginTuiRequestedEffect,md as createProjectSessionStore,_n as createProjectedCommandExecutionTools,Sr as createPromptFileReferenceHistoryEntry,zc as createProviderFromSettings,pn as createProviderSafeModelCommandToolName,Td as createQuery,ku as createSessionExitRequestedEffect,Ou as createSessionPickerRequestedEffect,Du as createSessionRenamedEffect,lo as createSubagentLogger,wn as createSubagentSession,Js as createSystemCommands,kf as createTestInteractiveSession,ec as deleteProviderProfile,kc as deleteSettings,af as deleteUserLocalMemoryItem,rf as disableUserLocalMemoryItem,es as discoverTaskFiles,Ja as evaluateReversibleToolSafety,sd as executeSkill,np as formatCliUpdateCheckMessage,tp as formatCliUpdateNotice,ll as formatCommandBackgroundTask,ul as formatCommandBackgroundTaskList,al as formatCommandHelpMessage,nu as formatCommandPermissionsMessage,Mu as formatCommandSessionReplayValidationReport,o as formatEnvReference,Xl as formatInvalidPermissionModeMessage,Hl as formatLanguageUsageMessage,xl as formatModelCommandUsageMessage,Sl as formatModelCommandUsageMessageAsync,hn as formatProjectedModelCommandToolPromptDescription,xr as formatPromptFileReferenceDiagnostics,rs as formatTaskContext,on as getBuiltInAgent,cn as getForkWorkerSuffix,wc as getProviderSettingsPaths,$f as getStartupCliUpdateNotice,sn as getSubagentSuffix,Tc as getUserSettingsPath,qf as getUserUpdateCheckCachePath,br as hasBlockingPromptFileReferenceDiagnostics,ed as hasSensitiveCommandMemoryContent,u as hasUsableSecretReference,Ru as inspectCommandEditCheckpoint,nf as inspectUserLocalMemoryItem,Id as inspectUserLocalStorage,$u as isCommandMemoryType,f as isEnvReference,ls as isMemoryType,Ff as isNewerSemverVersion,Yl as isPermissionMode,su as isStatusLineCommandSettingsPatch,dr as listActiveContextReferences,ml as listCommandBackgroundTasks,Xc as listCommandContextReferences,Lu as listCommandEditCheckpoints,eu as listCommandSessionAllowedTools,td as listCommandUsedMemoryReferences,hd as listResumableSessionSummaries,tf as listUserLocalMemoryItems,is as loadTaskContext,ic as mergeProviderPatch,xc as mergeProviders,bc as mergeSettings,P as normalizeModelCommandName,dl as parseCommandBackgroundLogCursor,mt as parseExecutionWorkspaceEntryId,Ia as parseFrontmatter,Vl as parseLanguageArgument,Jl as parsePermissionModeArgument,Er as parsePromptFileReferences,Eu as parseSessionNameArgument,ts as parseTaskFile,mf as planSelfHostingVerification,id as preprocessShellCommands,dc as probeProviderProfile,V as projectPaths,Tf as promptForApproval,Wc as readAutoCompactThreshold,Gc as readAutoCompactThresholdSource,hl as readCommandBackgroundTaskLog,Uc as readCommandContextState,Ql as readCommandPermissionMode,tu as readCommandPermissionsState,Au as readCommandSessionInfo,$o as readCurrentGitBranch,of as readEnabledUserLocalMemoryItem,Lc as readMergedProviderSettings,vc as readMergedProviderSettingsFromPaths,Hf as readPackageVersion,Rc as readProviderSettings,X as readSettings,cu as readStatusLineSettings,Jf as readUpdateCheckCache,nd as recordCommandMemoryEvent,Qc as removeCommandContextReference,lr as removeContextReference,Jc as resetAutoCompactThresholdSetting,Af as resetUserConfig,Sc as resolveActiveProvider,Cl as resolveActiveProviderModelCatalog,wl as resolveActiveProviderModelCatalogState,m as resolveEnvReference,jf as resolveGitBranch,gd as resolveLatestSessionId,Zl as resolvePermissionModeAdapter,gu as resolvePluginCommandAdapter,Pr as resolvePromptFileReferencePaths,Nr as resolvePromptFileReferences,Ac as resolveProviderSettingsWriteTargetPath,_d as resolveSessionIdByIdOrName,Ec as resolveSettingsPathForScope,uo as resolveSubagentLogDir,Nd as resolveUserLocalStorageRoot,zu as restoreCommandEditCheckpoint,F as retrieveAgentToolDeps,Bu as rollbackCommandEditCheckpoint,nl as sanitizeProviderProfileName,ns as selectRelevantTasks,Kc as setCommandAutoCompactThreshold,$s as setCurrentProvider,ef as setUserLocalMemoryItem,ep as shouldRunStartupCliUpdateCheck,Fn as storeAgentToolDeps,rd as substituteVariables,tl as suggestProviderProfileName,ct as summarizeBackgroundJobGroup,uc as testProviderProfileCommand,fr as toContextReferenceRecords,z as toPromptFileReferenceRecords,hf as transitionSelfHostingLoop,Dc as updateModelInSettings,as as updateTaskFileStatus,cr as upsertContextReference,Qs as upsertProviderProfile,vi as userPaths,ju as validateCommandSessionReplayLog,tc as validateProviderProfile,ka as wrapEditCheckpointTools,Ya as wrapReversibleExecutionTools,qc as writeAutoCompactThresholdSetting,$l as writeCommandPermissionMode,Z as writeSettings,Yf as writeUpdateCheckCache};
|
|
101
103
|
//# sourceMappingURL=index.js.map
|