openclaw-code-agent 2.2.0 → 2.3.0

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/README.md CHANGED
@@ -43,7 +43,7 @@ For the current version-pinned breakdown, see [docs/ACP-COMPARISON.md](docs/ACP-
43
43
 
44
44
  - **Multi-session management** — Run multiple concurrent coding agent sessions, each with a unique ID and human-readable name
45
45
  - **Plan → Execute workflow** — Claude Code sessions expose plan mode; Codex uses a soft first-turn planning prompt while staying externally in implement mode
46
- - **Real Codex approval policy support** — Codex sessions default to the real Codex SDK/CLI `approvalPolicy: "on-request"` and can be pinned back to `"never"` in plugin config
46
+ - **Real Codex approval policy support** — Codex sessions default to the real Codex SDK/CLI `approvalPolicy: "on-request"` and can be pinned back to `"never"` via `harnesses.codex.approvalPolicy`
47
47
  - **Thread-based routing** — Notifications go to the Telegram thread/topic where the session was launched
48
48
  - **Pause + auto-resume** — Non-question turn completion pauses sessions (`done`) and next `agent_respond` auto-resumes with context intact
49
49
  - **Turn-end wake signaling** — Every turn end emits a deterministic wake signal with output preview and waiting hint
@@ -83,7 +83,19 @@ Add to `~/.openclaw/openclaw.json` under `plugins.entries["openclaw-code-agent"]
83
83
  "enabled": true,
84
84
  "config": {
85
85
  "fallbackChannel": "telegram|my-bot|123456789",
86
- "maxSessions": 20
86
+ "maxSessions": 20,
87
+ "harnesses": {
88
+ "codex": {
89
+ "defaultModel": "gpt-5.4",
90
+ "allowedModels": ["gpt-5.4"],
91
+ "reasoningEffort": "medium",
92
+ "approvalPolicy": "on-request"
93
+ },
94
+ "claude-code": {
95
+ "defaultModel": "sonnet",
96
+ "allowedModels": ["sonnet", "opus"]
97
+ }
98
+ }
87
99
  }
88
100
  }
89
101
  }
@@ -164,13 +176,14 @@ The plugin sends targeted notifications to the originating Telegram thread:
164
176
  | Emoji | Event | Description |
165
177
  |-------|-------|-------------|
166
178
  | 🚀 | Launched | Session started with prompt summary |
167
- | 🔔 | Agent asks | Session is waiting for user input |
179
+ | | Waiting for input | Session is waiting for user input |
168
180
  | 📋 | Plan ready | Plan approval requested — reply "go" to approve |
169
- | 🔄 | Turn done | Turn completed, session paused (auto-resumable) |
181
+ | ⏸️ | Paused after turn | Turn completed, session paused (auto-resumable) |
182
+ | ▶️ | Auto-resumed | Session resumed on the next `agent_respond` |
170
183
  | ✅ | Completed | Completion summary with cost and duration |
171
184
  | ❌ | Failed | Error notification with hint |
172
- | | Killed | Session terminated with kill reason |
173
- | 💤 | Idle-killed | Auto-resumes on next respond |
185
+ | 💤 | Idle timeout | Session timed out while waiting; auto-resumes on next respond |
186
+ | | Stopped | Session was stopped by user, shutdown, or another forced stop |
174
187
 
175
188
  ---
176
189
 
@@ -179,7 +192,7 @@ The plugin sends targeted notifications to the originating Telegram thread:
179
192
  - **Claude Code** starts in `plan` mode by default. Approve a pending plan with `agent_respond(..., approve=true)` and the session switches to `bypassPermissions`.
180
193
  - **Codex** does not surface `plan` or `awaiting-plan-approval` in session state. When launched with `permissionMode: "plan"`, its first turn is prompted to return a plan and ask whether to proceed, while the exposed session phase remains implementation-oriented.
181
194
  - For **Codex**, plugin `permissionMode` is a plugin-orchestrated planning/approval workflow. It is not the same thing as the Codex SDK/CLI `approvalPolicy`.
182
- - The real Codex SDK/CLI approval behavior is controlled by plugin config `codexApprovalPolicy`. Supported values are `"on-request"` (default) and `"never"`.
195
+ - The real Codex SDK/CLI approval behavior is controlled by `harnesses.codex.approvalPolicy`. Supported values are `"on-request"` (default) and `"never"`.
183
196
 
184
197
  On approval, the plugin prepends a system instruction telling the agent to exit plan mode and implement with full permissions.
185
198
 
@@ -219,11 +232,8 @@ Set values in `~/.openclaw/openclaw.json` under `plugins.entries["openclaw-code-
219
232
  | `sessionGcAgeMinutes` | `number` | `1440` | TTL for completed/failed/killed runtime sessions before GC eviction |
220
233
  | `maxPersistedSessions` | `number` | `10000` | Max completed sessions kept for resume; the 24h GC TTL (`sessionGcAgeMinutes`) is the primary retention control |
221
234
  | `planApproval` | `string` | `"delegate"` | `"approve"` (orchestrator can auto-approve) / `"ask"` (always forward to user) / `"delegate"` (orchestrator decides) |
222
- | `codexApprovalPolicy` | `string` | `"on-request"` | Codex-only real SDK/CLI approval policy: `"on-request"` by default, or `"never"` for fully non-interactive Codex approval behavior |
223
235
  | `defaultHarness` | `string` | `"claude-code"` | Default harness for new sessions (`"claude-code"` / `"codex"`) |
224
- | `model` | `string` | | Codex-only model override for new sessions (for example `"gpt-5.3-codex"`). Used when no explicit `model` is passed to `agent_launch`; falls back to `defaultModel` if unset |
225
- | `reasoningEffort` | `string` | `"medium"` | Codex-only reasoning effort: `"low"`, `"medium"`, or `"high"` |
226
- | `defaultModel` | `string` | — | Default model for new sessions (e.g. `"sonnet"`, `"opus"`) |
236
+ | `harnesses` | `object` | built-in defaults | Per-harness defaults and restrictions. Built-in defaults: `claude-code.defaultModel = "sonnet"`, `claude-code.allowedModels = ["sonnet","opus"]`, `codex.defaultModel = "gpt-5.4"`, `codex.allowedModels = ["gpt-5.4"]`, `codex.reasoningEffort = "medium"`, `codex.approvalPolicy = "on-request"` |
227
237
  | `defaultWorkdir` | `string` | — | Default working directory for new sessions |
228
238
 
229
239
  ### Permission Mode Mapping By Harness
@@ -234,8 +244,8 @@ Permission modes are shared at the plugin API, but each harness maps them differ
234
244
  - `default`, `plan`, `acceptEdits`, `bypassPermissions` are passed through the SDK
235
245
  - **Codex harness**
236
246
  - Always runs with SDK thread option `sandboxMode: "danger-full-access"`
237
- - Uses Codex SDK/CLI `approvalPolicy: "on-request"` by default, or `"never"` when `codexApprovalPolicy` is set
238
- - Supports plugin config `model`, `reasoningEffort`, and `codexApprovalPolicy` defaults for Codex SDK thread launches
247
+ - Uses Codex SDK/CLI `approvalPolicy: "on-request"` by default, or `"never"` when `harnesses.codex.approvalPolicy` is set
248
+ - Supports `harnesses.codex.defaultModel`, `harnesses.codex.allowedModels`, `harnesses.codex.reasoningEffort`, and `harnesses.codex.approvalPolicy`
239
249
  - In `bypassPermissions`, the harness adds filesystem root (`/` on POSIX) to Codex `additionalDirectories`, plus optional extras from `OPENCLAW_CODEX_BYPASS_ADDITIONAL_DIRS` (comma-separated)
240
250
  - `setPermissionMode()` is applied by recreating the thread on the next turn via `resumeThread` (same thread ID)
241
251
  - `plan` / `acceptEdits` remain plugin behavioral orchestration constraints (planning/approval flow), not Codex sandbox or SDK approval settings
@@ -264,10 +274,18 @@ Permission modes are shared at the plugin API, but each harness maps them differ
264
274
  "enabled": true,
265
275
  "config": {
266
276
  "maxSessions": 3,
267
- "model": "gpt-5.3-codex",
268
- "reasoningEffort": "high",
269
- "codexApprovalPolicy": "on-request",
270
- "defaultModel": "sonnet",
277
+ "harnesses": {
278
+ "codex": {
279
+ "defaultModel": "gpt-5.4",
280
+ "allowedModels": ["gpt-5.4"],
281
+ "reasoningEffort": "high",
282
+ "approvalPolicy": "on-request"
283
+ },
284
+ "claude-code": {
285
+ "defaultModel": "sonnet",
286
+ "allowedModels": ["sonnet", "opus"]
287
+ }
288
+ },
271
289
  "permissionMode": "plan",
272
290
  "fallbackChannel": "telegram|my-bot|123456789",
273
291
  "agentChannels": {
package/dist/index.js CHANGED
@@ -1,66 +1,66 @@
1
- var ma=Object.defineProperty;var Qr=(e,t)=>{for(var r in t)ma(e,r,{get:t[r],enumerable:!0})};import{existsSync as Bc}from"fs";var Q={};Qr(Q,{HasPropertyKey:()=>nr,IsArray:()=>K,IsAsyncIterator:()=>Zr,IsBigInt:()=>Ut,IsBoolean:()=>ve,IsDate:()=>rt,IsFunction:()=>en,IsIterator:()=>tn,IsNull:()=>rn,IsNumber:()=>ue,IsObject:()=>P,IsRegExp:()=>Nt,IsString:()=>M,IsSymbol:()=>nn,IsUint8Array:()=>Ke,IsUndefined:()=>L});function nr(e,t){return t in e}function Zr(e){return P(e)&&!K(e)&&!Ke(e)&&Symbol.asyncIterator in e}function K(e){return Array.isArray(e)}function Ut(e){return typeof e=="bigint"}function ve(e){return typeof e=="boolean"}function rt(e){return e instanceof globalThis.Date}function en(e){return typeof e=="function"}function tn(e){return P(e)&&!K(e)&&!Ke(e)&&Symbol.iterator in e}function rn(e){return e===null}function ue(e){return typeof e=="number"}function P(e){return typeof e=="object"&&e!==null}function Nt(e){return e instanceof globalThis.RegExp}function M(e){return typeof e=="string"}function nn(e){return typeof e=="symbol"}function Ke(e){return e instanceof globalThis.Uint8Array}function L(e){return e===void 0}function ca(e){return e.map(t=>or(t))}function pa(e){return new Date(e.getTime())}function la(e){return new Uint8Array(e)}function fa(e){return new RegExp(e.source,e.flags)}function ga(e){let t={};for(let r of Object.getOwnPropertyNames(e))t[r]=or(e[r]);for(let r of Object.getOwnPropertySymbols(e))t[r]=or(e[r]);return t}function or(e){return K(e)?ca(e):rt(e)?pa(e):Ke(e)?la(e):Nt(e)?fa(e):P(e)?ga(e):e}function F(e){return or(e)}function lt(e,t){return t===void 0?F(e):F({...t,...e})}function Jn(e){return e!==null&&typeof e=="object"}function Xn(e){return globalThis.Array.isArray(e)&&!globalThis.ArrayBuffer.isView(e)}function Qn(e){return e===void 0}function Zn(e){return typeof e=="number"}var sr;(function(e){e.InstanceMode="default",e.ExactOptionalPropertyTypes=!1,e.AllowArrayObject=!1,e.AllowNaN=!1,e.AllowNullVoid=!1;function t(i,m){return e.ExactOptionalPropertyTypes?m in i:i[m]!==void 0}e.IsExactOptionalProperty=t;function r(i){let m=Jn(i);return e.AllowArrayObject?m:m&&!Xn(i)}e.IsObjectLike=r;function n(i){return r(i)&&!(i instanceof Date)&&!(i instanceof Uint8Array)}e.IsRecordLike=n;function o(i){return e.AllowNaN?Zn(i):Number.isFinite(i)}e.IsNumberLike=o;function s(i){let m=Qn(i);return e.AllowNullVoid?m||i===null:m}e.IsVoidLike=s})(sr||(sr={}));function Ia(e){return globalThis.Object.freeze(e).map(t=>_t(t))}function ha(e){let t={};for(let r of Object.getOwnPropertyNames(e))t[r]=_t(e[r]);for(let r of Object.getOwnPropertySymbols(e))t[r]=_t(e[r]);return globalThis.Object.freeze(t)}function _t(e){return K(e)?Ia(e):rt(e)?e:Ke(e)?e:Nt(e)?e:P(e)?ha(e):e}function u(e,t){let r=t!==void 0?{...t,...e}:e;switch(sr.InstanceMode){case"freeze":return _t(r);case"clone":return F(r);default:return r}}var q=class extends Error{constructor(t){super(t)}};var G=Symbol.for("TypeBox.Transform"),Te=Symbol.for("TypeBox.Readonly"),J=Symbol.for("TypeBox.Optional"),ge=Symbol.for("TypeBox.Hint"),c=Symbol.for("TypeBox.Kind");function ft(e){return P(e)&&e[Te]==="Readonly"}function re(e){return P(e)&&e[J]==="Optional"}function on(e){return y(e,"Any")}function sn(e){return y(e,"Argument")}function be(e){return y(e,"Array")}function nt(e){return y(e,"AsyncIterator")}function ot(e){return y(e,"BigInt")}function Le(e){return y(e,"Boolean")}function Ae(e){return y(e,"Computed")}function we(e){return y(e,"Constructor")}function ya(e){return y(e,"Date")}function Pe(e){return y(e,"Function")}function Oe(e){return y(e,"Integer")}function U(e){return y(e,"Intersect")}function st(e){return y(e,"Iterator")}function y(e,t){return P(e)&&c in e&&e[c]===t}function ir(e){return ve(e)||ue(e)||M(e)}function de(e){return y(e,"Literal")}function me(e){return y(e,"MappedKey")}function $(e){return y(e,"MappedResult")}function Ve(e){return y(e,"Never")}function xa(e){return y(e,"Not")}function vt(e){return y(e,"Null")}function Re(e){return y(e,"Number")}function j(e){return y(e,"Object")}function it(e){return y(e,"Promise")}function at(e){return y(e,"Record")}function v(e){return y(e,"Ref")}function an(e){return y(e,"RegExp")}function je(e){return y(e,"String")}function Kt(e){return y(e,"Symbol")}function ce(e){return y(e,"TemplateLiteral")}function Sa(e){return y(e,"This")}function Be(e){return P(e)&&G in e}function pe(e){return y(e,"Tuple")}function Lt(e){return y(e,"Undefined")}function x(e){return y(e,"Union")}function Ta(e){return y(e,"Uint8Array")}function ba(e){return y(e,"Unknown")}function Aa(e){return y(e,"Unsafe")}function wa(e){return y(e,"Void")}function Pa(e){return P(e)&&c in e&&M(e[c])}function le(e){return on(e)||sn(e)||be(e)||Le(e)||ot(e)||nt(e)||Ae(e)||we(e)||ya(e)||Pe(e)||Oe(e)||U(e)||st(e)||de(e)||me(e)||$(e)||Ve(e)||xa(e)||vt(e)||Re(e)||j(e)||it(e)||at(e)||v(e)||an(e)||je(e)||Kt(e)||ce(e)||Sa(e)||pe(e)||Lt(e)||x(e)||Ta(e)||ba(e)||Aa(e)||wa(e)||Pa(e)}var a={};Qr(a,{IsAny:()=>no,IsArgument:()=>oo,IsArray:()=>so,IsAsyncIterator:()=>io,IsBigInt:()=>ao,IsBoolean:()=>uo,IsComputed:()=>mo,IsConstructor:()=>co,IsDate:()=>po,IsFunction:()=>lo,IsImport:()=>Ea,IsInteger:()=>fo,IsIntersect:()=>go,IsIterator:()=>Io,IsKind:()=>Go,IsKindOf:()=>I,IsLiteral:()=>Dt,IsLiteralBoolean:()=>Fa,IsLiteralNumber:()=>yo,IsLiteralString:()=>ho,IsLiteralValue:()=>xo,IsMappedKey:()=>So,IsMappedResult:()=>To,IsNever:()=>bo,IsNot:()=>Ao,IsNull:()=>wo,IsNumber:()=>Po,IsObject:()=>Oo,IsOptional:()=>ka,IsPromise:()=>Ro,IsProperties:()=>ar,IsReadonly:()=>Ma,IsRecord:()=>Co,IsRecursive:()=>$a,IsRef:()=>Mo,IsRegExp:()=>ko,IsSchema:()=>z,IsString:()=>Eo,IsSymbol:()=>Fo,IsTemplateLiteral:()=>$o,IsThis:()=>Uo,IsTransform:()=>No,IsTuple:()=>_o,IsUint8Array:()=>Ko,IsUndefined:()=>vo,IsUnion:()=>cn,IsUnionLiteral:()=>Ua,IsUnknown:()=>Lo,IsUnsafe:()=>jo,IsVoid:()=>Do,TypeGuardUnknownTypeError:()=>un});var un=class extends q{},Oa=["Argument","Any","Array","AsyncIterator","BigInt","Boolean","Computed","Constructor","Date","Enum","Function","Integer","Intersect","Iterator","Literal","MappedKey","MappedResult","Not","Null","Number","Object","Promise","Record","Ref","RegExp","String","Symbol","TemplateLiteral","This","Tuple","Undefined","Union","Uint8Array","Unknown","Void"];function eo(e){try{return new RegExp(e),!0}catch{return!1}}function dn(e){if(!M(e))return!1;for(let t=0;t<e.length;t++){let r=e.charCodeAt(t);if(r>=7&&r<=13||r===27||r===127)return!1}return!0}function to(e){return mn(e)||z(e)}function jt(e){return L(e)||Ut(e)}function k(e){return L(e)||ue(e)}function mn(e){return L(e)||ve(e)}function O(e){return L(e)||M(e)}function Ra(e){return L(e)||M(e)&&dn(e)&&eo(e)}function Ca(e){return L(e)||M(e)&&dn(e)}function ro(e){return L(e)||z(e)}function Ma(e){return P(e)&&e[Te]==="Readonly"}function ka(e){return P(e)&&e[J]==="Optional"}function no(e){return I(e,"Any")&&O(e.$id)}function oo(e){return I(e,"Argument")&&ue(e.index)}function so(e){return I(e,"Array")&&e.type==="array"&&O(e.$id)&&z(e.items)&&k(e.minItems)&&k(e.maxItems)&&mn(e.uniqueItems)&&ro(e.contains)&&k(e.minContains)&&k(e.maxContains)}function io(e){return I(e,"AsyncIterator")&&e.type==="AsyncIterator"&&O(e.$id)&&z(e.items)}function ao(e){return I(e,"BigInt")&&e.type==="bigint"&&O(e.$id)&&jt(e.exclusiveMaximum)&&jt(e.exclusiveMinimum)&&jt(e.maximum)&&jt(e.minimum)&&jt(e.multipleOf)}function uo(e){return I(e,"Boolean")&&e.type==="boolean"&&O(e.$id)}function mo(e){return I(e,"Computed")&&M(e.target)&&K(e.parameters)&&e.parameters.every(t=>z(t))}function co(e){return I(e,"Constructor")&&e.type==="Constructor"&&O(e.$id)&&K(e.parameters)&&e.parameters.every(t=>z(t))&&z(e.returns)}function po(e){return I(e,"Date")&&e.type==="Date"&&O(e.$id)&&k(e.exclusiveMaximumTimestamp)&&k(e.exclusiveMinimumTimestamp)&&k(e.maximumTimestamp)&&k(e.minimumTimestamp)&&k(e.multipleOfTimestamp)}function lo(e){return I(e,"Function")&&e.type==="Function"&&O(e.$id)&&K(e.parameters)&&e.parameters.every(t=>z(t))&&z(e.returns)}function Ea(e){return I(e,"Import")&&nr(e,"$defs")&&P(e.$defs)&&ar(e.$defs)&&nr(e,"$ref")&&M(e.$ref)&&e.$ref in e.$defs}function fo(e){return I(e,"Integer")&&e.type==="integer"&&O(e.$id)&&k(e.exclusiveMaximum)&&k(e.exclusiveMinimum)&&k(e.maximum)&&k(e.minimum)&&k(e.multipleOf)}function ar(e){return P(e)&&Object.entries(e).every(([t,r])=>dn(t)&&z(r))}function go(e){return I(e,"Intersect")&&!(M(e.type)&&e.type!=="object")&&K(e.allOf)&&e.allOf.every(t=>z(t)&&!No(t))&&O(e.type)&&(mn(e.unevaluatedProperties)||ro(e.unevaluatedProperties))&&O(e.$id)}function Io(e){return I(e,"Iterator")&&e.type==="Iterator"&&O(e.$id)&&z(e.items)}function I(e,t){return P(e)&&c in e&&e[c]===t}function ho(e){return Dt(e)&&M(e.const)}function yo(e){return Dt(e)&&ue(e.const)}function Fa(e){return Dt(e)&&ve(e.const)}function Dt(e){return I(e,"Literal")&&O(e.$id)&&xo(e.const)}function xo(e){return ve(e)||ue(e)||M(e)}function So(e){return I(e,"MappedKey")&&K(e.keys)&&e.keys.every(t=>ue(t)||M(t))}function To(e){return I(e,"MappedResult")&&ar(e.properties)}function bo(e){return I(e,"Never")&&P(e.not)&&Object.getOwnPropertyNames(e.not).length===0}function Ao(e){return I(e,"Not")&&z(e.not)}function wo(e){return I(e,"Null")&&e.type==="null"&&O(e.$id)}function Po(e){return I(e,"Number")&&e.type==="number"&&O(e.$id)&&k(e.exclusiveMaximum)&&k(e.exclusiveMinimum)&&k(e.maximum)&&k(e.minimum)&&k(e.multipleOf)}function Oo(e){return I(e,"Object")&&e.type==="object"&&O(e.$id)&&ar(e.properties)&&to(e.additionalProperties)&&k(e.minProperties)&&k(e.maxProperties)}function Ro(e){return I(e,"Promise")&&e.type==="Promise"&&O(e.$id)&&z(e.item)}function Co(e){return I(e,"Record")&&e.type==="object"&&O(e.$id)&&to(e.additionalProperties)&&P(e.patternProperties)&&(t=>{let r=Object.getOwnPropertyNames(t.patternProperties);return r.length===1&&eo(r[0])&&P(t.patternProperties)&&z(t.patternProperties[r[0]])})(e)}function $a(e){return P(e)&&ge in e&&e[ge]==="Recursive"}function Mo(e){return I(e,"Ref")&&O(e.$id)&&M(e.$ref)}function ko(e){return I(e,"RegExp")&&O(e.$id)&&M(e.source)&&M(e.flags)&&k(e.maxLength)&&k(e.minLength)}function Eo(e){return I(e,"String")&&e.type==="string"&&O(e.$id)&&k(e.minLength)&&k(e.maxLength)&&Ra(e.pattern)&&Ca(e.format)}function Fo(e){return I(e,"Symbol")&&e.type==="symbol"&&O(e.$id)}function $o(e){return I(e,"TemplateLiteral")&&e.type==="string"&&M(e.pattern)&&e.pattern[0]==="^"&&e.pattern[e.pattern.length-1]==="$"}function Uo(e){return I(e,"This")&&O(e.$id)&&M(e.$ref)}function No(e){return P(e)&&G in e}function _o(e){return I(e,"Tuple")&&e.type==="array"&&O(e.$id)&&ue(e.minItems)&&ue(e.maxItems)&&e.minItems===e.maxItems&&(L(e.items)&&L(e.additionalItems)&&e.minItems===0||K(e.items)&&e.items.every(t=>z(t)))}function vo(e){return I(e,"Undefined")&&e.type==="undefined"&&O(e.$id)}function Ua(e){return cn(e)&&e.anyOf.every(t=>ho(t)||yo(t))}function cn(e){return I(e,"Union")&&O(e.$id)&&P(e)&&K(e.anyOf)&&e.anyOf.every(t=>z(t))}function Ko(e){return I(e,"Uint8Array")&&e.type==="Uint8Array"&&O(e.$id)&&k(e.minByteLength)&&k(e.maxByteLength)}function Lo(e){return I(e,"Unknown")&&O(e.$id)}function jo(e){return I(e,"Unsafe")}function Do(e){return I(e,"Void")&&e.type==="void"&&O(e.$id)}function Go(e){return P(e)&&c in e&&M(e[c])&&!Oa.includes(e[c])}function z(e){return P(e)&&(no(e)||oo(e)||so(e)||uo(e)||ao(e)||io(e)||mo(e)||co(e)||po(e)||lo(e)||fo(e)||go(e)||Io(e)||Dt(e)||So(e)||To(e)||bo(e)||Ao(e)||wo(e)||Po(e)||Oo(e)||Ro(e)||Co(e)||Mo(e)||ko(e)||Eo(e)||Fo(e)||$o(e)||Uo(e)||_o(e)||vo(e)||cn(e)||Ko(e)||Lo(e)||jo(e)||Do(e)||Go(e))}var pn="(true|false)",Gt="(0|[1-9][0-9]*)",ln="(.*)",Na="(?!.*)",ff=`^${pn}$`,He=`^${Gt}$`,We=`^${ln}$`,Vo=`^${Na}$`;function Bo(e,t){return e.includes(t)}function Ho(e){return[...new Set(e)]}function _a(e,t){return e.filter(r=>t.includes(r))}function va(e,t){return e.reduce((r,n)=>_a(r,n),t)}function Wo(e){return e.length===1?e[0]:e.length>1?va(e.slice(1),e[0]):[]}function qo(e){let t=[];for(let r of e)t.push(...r);return t}function qe(e){return u({[c]:"Any"},e)}function gt(e,t){return u({[c]:"Array",type:"array",items:e},t)}function zo(e){return u({[c]:"Argument",index:e})}function It(e,t){return u({[c]:"AsyncIterator",type:"AsyncIterator",items:e},t)}function E(e,t,r){return u({[c]:"Computed",target:e,parameters:t},r)}function Ka(e,t){let{[t]:r,...n}=e;return n}function N(e,t){return t.reduce((r,n)=>Ka(r,n),e)}function S(e){return u({[c]:"Never",not:{}},e)}function T(e){return u({[c]:"MappedResult",properties:e})}function ht(e,t,r){return u({[c]:"Constructor",type:"Constructor",parameters:e,returns:t},r)}function $e(e,t,r){return u({[c]:"Function",type:"Function",parameters:e,returns:t},r)}function Vt(e,t){return u({[c]:"Union",anyOf:e},t)}function La(e){return e.some(t=>re(t))}function Yo(e){return e.map(t=>re(t)?ja(t):t)}function ja(e){return N(e,[J])}function Da(e,t){return La(e)?Z(Vt(Yo(e),t)):Vt(Yo(e),t)}function Ue(e,t){return e.length===1?u(e[0],t):e.length===0?S(t):Da(e,t)}function w(e,t){return e.length===0?S(t):e.length===1?u(e[0],t):Vt(e,t)}var ur=class extends q{};function Ga(e){return e.replace(/\\\$/g,"$").replace(/\\\*/g,"*").replace(/\\\^/g,"^").replace(/\\\|/g,"|").replace(/\\\(/g,"(").replace(/\\\)/g,")")}function fn(e,t,r){return e[t]===r&&e.charCodeAt(t-1)!==92}function Ge(e,t){return fn(e,t,"(")}function Bt(e,t){return fn(e,t,")")}function Jo(e,t){return fn(e,t,"|")}function Va(e){if(!(Ge(e,0)&&Bt(e,e.length-1)))return!1;let t=0;for(let r=0;r<e.length;r++)if(Ge(e,r)&&(t+=1),Bt(e,r)&&(t-=1),t===0&&r!==e.length-1)return!1;return!0}function Ba(e){return e.slice(1,e.length-1)}function Ha(e){let t=0;for(let r=0;r<e.length;r++)if(Ge(e,r)&&(t+=1),Bt(e,r)&&(t-=1),Jo(e,r)&&t===0)return!0;return!1}function Wa(e){for(let t=0;t<e.length;t++)if(Ge(e,t))return!0;return!1}function qa(e){let[t,r]=[0,0],n=[];for(let s=0;s<e.length;s++)if(Ge(e,s)&&(t+=1),Bt(e,s)&&(t-=1),Jo(e,s)&&t===0){let i=e.slice(r,s);i.length>0&&n.push(yt(i)),r=s+1}let o=e.slice(r);return o.length>0&&n.push(yt(o)),n.length===0?{type:"const",const:""}:n.length===1?n[0]:{type:"or",expr:n}}function za(e){function t(o,s){if(!Ge(o,s))throw new ur("TemplateLiteralParser: Index must point to open parens");let i=0;for(let m=s;m<o.length;m++)if(Ge(o,m)&&(i+=1),Bt(o,m)&&(i-=1),i===0)return[s,m];throw new ur("TemplateLiteralParser: Unclosed group parens in expression")}function r(o,s){for(let i=s;i<o.length;i++)if(Ge(o,i))return[s,i];return[s,o.length]}let n=[];for(let o=0;o<e.length;o++)if(Ge(e,o)){let[s,i]=t(e,o),m=e.slice(s,i+1);n.push(yt(m)),o=i}else{let[s,i]=r(e,o),m=e.slice(s,i);m.length>0&&n.push(yt(m)),o=i-1}return n.length===0?{type:"const",const:""}:n.length===1?n[0]:{type:"and",expr:n}}function yt(e){return Va(e)?yt(Ba(e)):Ha(e)?qa(e):Wa(e)?za(e):{type:"const",const:Ga(e)}}function xt(e){return yt(e.slice(1,e.length-1))}var gn=class extends q{};function Ya(e){return e.type==="or"&&e.expr.length===2&&e.expr[0].type==="const"&&e.expr[0].const==="0"&&e.expr[1].type==="const"&&e.expr[1].const==="[1-9][0-9]*"}function Ja(e){return e.type==="or"&&e.expr.length===2&&e.expr[0].type==="const"&&e.expr[0].const==="true"&&e.expr[1].type==="const"&&e.expr[1].const==="false"}function Xa(e){return e.type==="const"&&e.const===".*"}function ut(e){return Ya(e)||Xa(e)?!1:Ja(e)?!0:e.type==="and"?e.expr.every(t=>ut(t)):e.type==="or"?e.expr.every(t=>ut(t)):e.type==="const"?!0:(()=>{throw new gn("Unknown expression type")})()}function Xo(e){let t=xt(e.pattern);return ut(t)}var In=class extends q{};function*Qo(e){if(e.length===1)return yield*e[0];for(let t of e[0])for(let r of Qo(e.slice(1)))yield`${t}${r}`}function*Qa(e){return yield*Qo(e.expr.map(t=>[...Ht(t)]))}function*Za(e){for(let t of e.expr)yield*Ht(t)}function*eu(e){return yield e.const}function*Ht(e){return e.type==="and"?yield*Qa(e):e.type==="or"?yield*Za(e):e.type==="const"?yield*eu(e):(()=>{throw new In("Unknown expression")})()}function dr(e){let t=xt(e.pattern);return ut(t)?[...Ht(t)]:[]}function b(e,t){return u({[c]:"Literal",const:e,type:typeof e},t)}function mr(e){return u({[c]:"Boolean",type:"boolean"},e)}function St(e){return u({[c]:"BigInt",type:"bigint"},e)}function Ie(e){return u({[c]:"Number",type:"number"},e)}function Ce(e){return u({[c]:"String",type:"string"},e)}function*tu(e){let t=e.trim().replace(/"|'/g,"");return t==="boolean"?yield mr():t==="number"?yield Ie():t==="bigint"?yield St():t==="string"?yield Ce():yield(()=>{let r=t.split("|").map(n=>b(n.trim()));return r.length===0?S():r.length===1?r[0]:Ue(r)})()}function*ru(e){if(e[1]!=="{"){let t=b("$"),r=hn(e.slice(1));return yield*[t,...r]}for(let t=2;t<e.length;t++)if(e[t]==="}"){let r=tu(e.slice(2,t)),n=hn(e.slice(t+1));return yield*[...r,...n]}yield b(e)}function*hn(e){for(let t=0;t<e.length;t++)if(e[t]==="$"){let r=b(e.slice(0,t)),n=ru(e.slice(t));return yield*[r,...n]}yield b(e)}function Zo(e){return[...hn(e)]}var yn=class extends q{};function nu(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function es(e,t){return ce(e)?e.pattern.slice(1,e.pattern.length-1):x(e)?`(${e.anyOf.map(r=>es(r,t)).join("|")})`:Re(e)?`${t}${Gt}`:Oe(e)?`${t}${Gt}`:ot(e)?`${t}${Gt}`:je(e)?`${t}${ln}`:de(e)?`${t}${nu(e.const.toString())}`:Le(e)?`${t}${pn}`:(()=>{throw new yn(`Unexpected Kind '${e[c]}'`)})()}function xn(e){return`^${e.map(t=>es(t,"")).join("")}$`}function dt(e){let r=dr(e).map(n=>b(n));return Ue(r)}function cr(e,t){let r=M(e)?xn(Zo(e)):xn(e);return u({[c]:"TemplateLiteral",type:"string",pattern:r},t)}function ou(e){return dr(e).map(r=>r.toString())}function su(e){let t=[];for(let r of e)t.push(...ne(r));return t}function iu(e){return[e.toString()]}function ne(e){return[...new Set(ce(e)?ou(e):x(e)?su(e.anyOf):de(e)?iu(e.const):Re(e)?["[number]"]:Oe(e)?["[number]"]:[])]}function au(e,t,r){let n={};for(let o of Object.getOwnPropertyNames(t))n[o]=ze(e,ne(t[o]),r);return n}function uu(e,t,r){return au(e,t.properties,r)}function ts(e,t,r){let n=uu(e,t,r);return T(n)}function ns(e,t){return e.map(r=>os(r,t))}function du(e){return e.filter(t=>!Ve(t))}function mu(e,t){return pr(du(ns(e,t)))}function cu(e){return e.some(t=>Ve(t))?[]:e}function pu(e,t){return Ue(cu(ns(e,t)))}function lu(e,t){return t in e?e[t]:t==="[number]"?Ue(e):S()}function fu(e,t){return t==="[number]"?e:S()}function gu(e,t){return t in e?e[t]:S()}function os(e,t){return U(e)?mu(e.allOf,t):x(e)?pu(e.anyOf,t):pe(e)?lu(e.items??[],t):be(e)?fu(e.items,t):j(e)?gu(e.properties,t):S()}function Sn(e,t){return t.map(r=>os(e,r))}function rs(e,t){return Ue(Sn(e,t))}function ze(e,t,r){if(v(e)||v(t)){let n="Index types using Ref parameters require both Type and Key to be of TSchema";if(!le(e)||!le(t))throw new q(n);return E("Index",[e,t])}return $(t)?ts(e,t,r):me(t)?ss(e,t,r):u(le(t)?rs(e,ne(t)):rs(e,t),r)}function Iu(e,t,r){return{[t]:ze(e,[t],F(r))}}function hu(e,t,r){return t.reduce((n,o)=>({...n,...Iu(e,o,r)}),{})}function yu(e,t,r){return hu(e,t.keys,r)}function ss(e,t,r){let n=yu(e,t,r);return T(n)}function Tt(e,t){return u({[c]:"Iterator",type:"Iterator",items:e},t)}function xu(e){return globalThis.Object.keys(e).filter(t=>!re(e[t]))}function Su(e,t){let r=xu(e),n=r.length>0?{[c]:"Object",type:"object",required:r,properties:e}:{[c]:"Object",type:"object",properties:e};return u(n,t)}var R=Su;function lr(e,t){return u({[c]:"Promise",type:"Promise",item:e},t)}function Tu(e){return u(N(e,[Te]))}function bu(e){return u({...e,[Te]:"Readonly"})}function Au(e,t){return t===!1?Tu(e):bu(e)}function oe(e,t){let r=t??!0;return $(e)?is(e,r):Au(e,r)}function wu(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(e))r[n]=oe(e[n],t);return r}function Pu(e,t){return wu(e.properties,t)}function is(e,t){let r=Pu(e,t);return T(r)}function he(e,t){return u(e.length>0?{[c]:"Tuple",type:"array",items:e,additionalItems:!1,minItems:e.length,maxItems:e.length}:{[c]:"Tuple",type:"array",minItems:e.length,maxItems:e.length},t)}function as(e,t){return e in t?ye(e,t[e]):T(t)}function Ou(e){return{[e]:b(e)}}function Ru(e){let t={};for(let r of e)t[r]=b(r);return t}function Cu(e,t){return Bo(t,e)?Ou(e):Ru(t)}function Mu(e,t){let r=Cu(e,t);return as(e,r)}function Wt(e,t){return t.map(r=>ye(e,r))}function ku(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(t))r[n]=ye(e,t[n]);return r}function ye(e,t){let r={...t};return re(t)?Z(ye(e,N(t,[J]))):ft(t)?oe(ye(e,N(t,[Te]))):$(t)?as(e,t.properties):me(t)?Mu(e,t.keys):we(t)?ht(Wt(e,t.parameters),ye(e,t.returns),r):Pe(t)?$e(Wt(e,t.parameters),ye(e,t.returns),r):nt(t)?It(ye(e,t.items),r):st(t)?Tt(ye(e,t.items),r):U(t)?ee(Wt(e,t.allOf),r):x(t)?w(Wt(e,t.anyOf),r):pe(t)?he(Wt(e,t.items??[]),r):j(t)?R(ku(e,t.properties),r):be(t)?gt(ye(e,t.items),r):it(t)?lr(ye(e,t.item),r):t}function Eu(e,t){let r={};for(let n of e)r[n]=ye(n,t);return r}function us(e,t,r){let n=le(e)?ne(e):e,o=t({[c]:"MappedKey",keys:n}),s=Eu(n,o);return R(s,r)}function Fu(e){return u(N(e,[J]))}function $u(e){return u({...e,[J]:"Optional"})}function Uu(e,t){return t===!1?Fu(e):$u(e)}function Z(e,t){let r=t??!0;return $(e)?ds(e,r):Uu(e,r)}function Nu(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(e))r[n]=Z(e[n],t);return r}function _u(e,t){return Nu(e.properties,t)}function ds(e,t){let r=_u(e,t);return T(r)}function qt(e,t={}){let r=e.every(o=>j(o)),n=le(t.unevaluatedProperties)?{unevaluatedProperties:t.unevaluatedProperties}:{};return u(t.unevaluatedProperties===!1||le(t.unevaluatedProperties)||r?{...n,[c]:"Intersect",type:"object",allOf:e}:{...n,[c]:"Intersect",allOf:e},t)}function vu(e){return e.every(t=>re(t))}function Ku(e){return N(e,[J])}function ms(e){return e.map(t=>re(t)?Ku(t):t)}function Lu(e,t){return vu(e)?Z(qt(ms(e),t)):qt(ms(e),t)}function pr(e,t={}){if(e.length===1)return u(e[0],t);if(e.length===0)return S(t);if(e.some(r=>Be(r)))throw new Error("Cannot intersect transform types");return Lu(e,t)}function ee(e,t){if(e.length===1)return u(e[0],t);if(e.length===0)return S(t);if(e.some(r=>Be(r)))throw new Error("Cannot intersect transform types");return qt(e,t)}function Ne(...e){let[t,r]=typeof e[0]=="string"?[e[0],e[1]]:[e[0].$id,e[1]];if(typeof t!="string")throw new q("Ref: $ref must be a string");return u({[c]:"Ref",$ref:t},r)}function ju(e,t){return E("Awaited",[E(e,t)])}function Du(e){return E("Awaited",[Ne(e)])}function Gu(e){return ee(cs(e))}function Vu(e){return w(cs(e))}function Bu(e){return bt(e)}function cs(e){return e.map(t=>bt(t))}function bt(e,t){return u(Ae(e)?ju(e.target,e.parameters):U(e)?Gu(e.allOf):x(e)?Vu(e.anyOf):it(e)?Bu(e.item):v(e)?Du(e.$ref):e,t)}function ps(e){let t=[];for(let r of e)t.push(zt(r));return t}function Hu(e){let t=ps(e);return qo(t)}function Wu(e){let t=ps(e);return Wo(t)}function qu(e){return e.map((t,r)=>r.toString())}function zu(e){return["[number]"]}function Yu(e){return globalThis.Object.getOwnPropertyNames(e)}function Ju(e){return Xu?globalThis.Object.getOwnPropertyNames(e).map(r=>r[0]==="^"&&r[r.length-1]==="$"?r.slice(1,r.length-1):r):[]}function zt(e){return U(e)?Hu(e.allOf):x(e)?Wu(e.anyOf):pe(e)?qu(e.items??[]):be(e)?zu(e.items):j(e)?Yu(e.properties):at(e)?Ju(e.patternProperties):[]}var Xu=!1;function Qu(e,t){return E("KeyOf",[E(e,t)])}function Zu(e){return E("KeyOf",[Ne(e)])}function ed(e,t){let r=zt(e),n=td(r),o=Ue(n);return u(o,t)}function td(e){return e.map(t=>t==="[number]"?Ie():b(t))}function At(e,t){return Ae(e)?Qu(e.target,e.parameters):v(e)?Zu(e.$ref):$(e)?ls(e,t):ed(e,t)}function rd(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(e))r[n]=At(e[n],F(t));return r}function nd(e,t){return rd(e.properties,t)}function ls(e,t){let r=nd(e,t);return T(r)}function od(e){let t=[];for(let r of e)t.push(...zt(r));return Ho(t)}function sd(e){return e.filter(t=>!Ve(t))}function id(e,t){let r=[];for(let n of e)r.push(...Sn(n,[t]));return sd(r)}function ad(e,t){let r={};for(let n of t)r[n]=pr(id(e,n));return r}function fs(e,t){let r=od(e),n=ad(e,r);return R(n,t)}function fr(e){return u({[c]:"Date",type:"Date"},e)}function gr(e){return u({[c]:"Null",type:"null"},e)}function Ir(e){return u({[c]:"Symbol",type:"symbol"},e)}function hr(e){return u({[c]:"Undefined",type:"undefined"},e)}function yr(e){return u({[c]:"Uint8Array",type:"Uint8Array"},e)}function Ye(e){return u({[c]:"Unknown"},e)}function ud(e){return e.map(t=>Tn(t,!1))}function dd(e){let t={};for(let r of globalThis.Object.getOwnPropertyNames(e))t[r]=oe(Tn(e[r],!1));return t}function xr(e,t){return t===!0?e:oe(e)}function Tn(e,t){return Zr(e)?xr(qe(),t):tn(e)?xr(qe(),t):K(e)?oe(he(ud(e))):Ke(e)?yr():rt(e)?fr():P(e)?xr(R(dd(e)),t):en(e)?xr($e([],Ye()),t):L(e)?hr():rn(e)?gr():nn(e)?Ir():Ut(e)?St():ue(e)?b(e):ve(e)?b(e):M(e)?b(e):R({})}function gs(e,t){return u(Tn(e,!0),t)}function Is(e,t){return we(e)?he(e.parameters,t):S(t)}function hs(e,t){if(L(e))throw new Error("Enum undefined or empty");let r=globalThis.Object.getOwnPropertyNames(e).filter(s=>isNaN(s)).map(s=>e[s]),o=[...new Set(r)].map(s=>b(s));return w(o,{...t,[ge]:"Enum"})}var An=class extends q{},d;(function(e){e[e.Union=0]="Union",e[e.True=1]="True",e[e.False=2]="False"})(d||(d={}));function xe(e){return e===d.False?e:d.True}function wt(e){throw new An(e)}function V(e){return a.IsNever(e)||a.IsIntersect(e)||a.IsUnion(e)||a.IsUnknown(e)||a.IsAny(e)}function B(e,t){return a.IsNever(t)?ws(e,t):a.IsIntersect(t)?Sr(e,t):a.IsUnion(t)?Rn(e,t):a.IsUnknown(t)?Cs(e,t):a.IsAny(t)?On(e,t):wt("StructuralRight")}function On(e,t){return d.True}function md(e,t){return a.IsIntersect(t)?Sr(e,t):a.IsUnion(t)&&t.anyOf.some(r=>a.IsAny(r)||a.IsUnknown(r))?d.True:a.IsUnion(t)?d.Union:a.IsUnknown(t)||a.IsAny(t)?d.True:d.Union}function cd(e,t){return a.IsUnknown(e)?d.False:a.IsAny(e)?d.Union:a.IsNever(e)?d.True:d.False}function pd(e,t){return a.IsObject(t)&&Tr(t)?d.True:V(t)?B(e,t):a.IsArray(t)?xe(C(e.items,t.items)):d.False}function ld(e,t){return V(t)?B(e,t):a.IsAsyncIterator(t)?xe(C(e.items,t.items)):d.False}function fd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsBigInt(t)?d.True:d.False}function bs(e,t){return a.IsLiteralBoolean(e)||a.IsBoolean(e)?d.True:d.False}function gd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsBoolean(t)?d.True:d.False}function Id(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsConstructor(t)?e.parameters.length>t.parameters.length?d.False:e.parameters.every((r,n)=>xe(C(t.parameters[n],r))===d.True)?xe(C(e.returns,t.returns)):d.False:d.False}function hd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsDate(t)?d.True:d.False}function yd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsFunction(t)?e.parameters.length>t.parameters.length?d.False:e.parameters.every((r,n)=>xe(C(t.parameters[n],r))===d.True)?xe(C(e.returns,t.returns)):d.False:d.False}function As(e,t){return a.IsLiteral(e)&&Q.IsNumber(e.const)||a.IsNumber(e)||a.IsInteger(e)?d.True:d.False}function xd(e,t){return a.IsInteger(t)||a.IsNumber(t)?d.True:V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):d.False}function Sr(e,t){return t.allOf.every(r=>C(e,r)===d.True)?d.True:d.False}function Sd(e,t){return e.allOf.some(r=>C(r,t)===d.True)?d.True:d.False}function Td(e,t){return V(t)?B(e,t):a.IsIterator(t)?xe(C(e.items,t.items)):d.False}function bd(e,t){return a.IsLiteral(t)&&t.const===e.const?d.True:V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsString(t)?Rs(e,t):a.IsNumber(t)?Ps(e,t):a.IsInteger(t)?As(e,t):a.IsBoolean(t)?bs(e,t):d.False}function ws(e,t){return d.False}function Ad(e,t){return d.True}function ys(e){let[t,r]=[e,0];for(;a.IsNot(t);)t=t.not,r+=1;return r%2===0?t:Ye()}function wd(e,t){return a.IsNot(e)?C(ys(e),t):a.IsNot(t)?C(e,ys(t)):wt("Invalid fallthrough for Not")}function Pd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsNull(t)?d.True:d.False}function Ps(e,t){return a.IsLiteralNumber(e)||a.IsNumber(e)||a.IsInteger(e)?d.True:d.False}function Od(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsInteger(t)||a.IsNumber(t)?d.True:d.False}function se(e,t){return Object.getOwnPropertyNames(e.properties).length===t}function xs(e){return Tr(e)}function Ss(e){return se(e,0)||se(e,1)&&"description"in e.properties&&a.IsUnion(e.properties.description)&&e.properties.description.anyOf.length===2&&(a.IsString(e.properties.description.anyOf[0])&&a.IsUndefined(e.properties.description.anyOf[1])||a.IsString(e.properties.description.anyOf[1])&&a.IsUndefined(e.properties.description.anyOf[0]))}function bn(e){return se(e,0)}function Ts(e){return se(e,0)}function Rd(e){return se(e,0)}function Cd(e){return se(e,0)}function Md(e){return Tr(e)}function kd(e){let t=Ie();return se(e,0)||se(e,1)&&"length"in e.properties&&xe(C(e.properties.length,t))===d.True}function Ed(e){return se(e,0)}function Tr(e){let t=Ie();return se(e,0)||se(e,1)&&"length"in e.properties&&xe(C(e.properties.length,t))===d.True}function Fd(e){let t=$e([qe()],qe());return se(e,0)||se(e,1)&&"then"in e.properties&&xe(C(e.properties.then,t))===d.True}function Os(e,t){return C(e,t)===d.False||a.IsOptional(e)&&!a.IsOptional(t)?d.False:d.True}function te(e,t){return a.IsUnknown(e)?d.False:a.IsAny(e)?d.Union:a.IsNever(e)||a.IsLiteralString(e)&&xs(t)||a.IsLiteralNumber(e)&&bn(t)||a.IsLiteralBoolean(e)&&Ts(t)||a.IsSymbol(e)&&Ss(t)||a.IsBigInt(e)&&Rd(t)||a.IsString(e)&&xs(t)||a.IsSymbol(e)&&Ss(t)||a.IsNumber(e)&&bn(t)||a.IsInteger(e)&&bn(t)||a.IsBoolean(e)&&Ts(t)||a.IsUint8Array(e)&&Md(t)||a.IsDate(e)&&Cd(t)||a.IsConstructor(e)&&Ed(t)||a.IsFunction(e)&&kd(t)?d.True:a.IsRecord(e)&&a.IsString(wn(e))?t[ge]==="Record"?d.True:d.False:a.IsRecord(e)&&a.IsNumber(wn(e))&&se(t,0)?d.True:d.False}function $d(e,t){return V(t)?B(e,t):a.IsRecord(t)?Se(e,t):a.IsObject(t)?(()=>{for(let r of Object.getOwnPropertyNames(t.properties)){if(!(r in e.properties)&&!a.IsOptional(t.properties[r]))return d.False;if(a.IsOptional(t.properties[r]))return d.True;if(Os(e.properties[r],t.properties[r])===d.False)return d.False}return d.True})():d.False}function Ud(e,t){return V(t)?B(e,t):a.IsObject(t)&&Fd(t)?d.True:a.IsPromise(t)?xe(C(e.item,t.item)):d.False}function wn(e){return He in e.patternProperties?Ie():We in e.patternProperties?Ce():wt("Unknown record key pattern")}function Pn(e){return He in e.patternProperties?e.patternProperties[He]:We in e.patternProperties?e.patternProperties[We]:wt("Unable to get record value schema")}function Se(e,t){let[r,n]=[wn(t),Pn(t)];return a.IsLiteralString(e)&&a.IsNumber(r)&&xe(C(e,n))===d.True?d.True:a.IsUint8Array(e)&&a.IsNumber(r)||a.IsString(e)&&a.IsNumber(r)||a.IsArray(e)&&a.IsNumber(r)?C(e,n):a.IsObject(e)?(()=>{for(let o of Object.getOwnPropertyNames(e.properties))if(Os(n,e.properties[o])===d.False)return d.False;return d.True})():d.False}function Nd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?C(Pn(e),Pn(t)):d.False}function _d(e,t){let r=a.IsRegExp(e)?Ce():e,n=a.IsRegExp(t)?Ce():t;return C(r,n)}function Rs(e,t){return a.IsLiteral(e)&&Q.IsString(e.const)||a.IsString(e)?d.True:d.False}function vd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsString(t)?d.True:d.False}function Kd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsSymbol(t)?d.True:d.False}function Ld(e,t){return a.IsTemplateLiteral(e)?C(dt(e),t):a.IsTemplateLiteral(t)?C(e,dt(t)):wt("Invalid fallthrough for TemplateLiteral")}function jd(e,t){return a.IsArray(t)&&e.items!==void 0&&e.items.every(r=>C(r,t.items)===d.True)}function Dd(e,t){return a.IsNever(e)?d.True:a.IsUnknown(e)?d.False:a.IsAny(e)?d.Union:d.False}function Gd(e,t){return V(t)?B(e,t):a.IsObject(t)&&Tr(t)||a.IsArray(t)&&jd(e,t)?d.True:a.IsTuple(t)?Q.IsUndefined(e.items)&&!Q.IsUndefined(t.items)||!Q.IsUndefined(e.items)&&Q.IsUndefined(t.items)?d.False:Q.IsUndefined(e.items)&&!Q.IsUndefined(t.items)||e.items.every((r,n)=>C(r,t.items[n])===d.True)?d.True:d.False:d.False}function Vd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsUint8Array(t)?d.True:d.False}function Bd(e,t){return V(t)?B(e,t):a.IsObject(t)?te(e,t):a.IsRecord(t)?Se(e,t):a.IsVoid(t)?qd(e,t):a.IsUndefined(t)?d.True:d.False}function Rn(e,t){return t.anyOf.some(r=>C(e,r)===d.True)?d.True:d.False}function Hd(e,t){return e.anyOf.every(r=>C(r,t)===d.True)?d.True:d.False}function Cs(e,t){return d.True}function Wd(e,t){return a.IsNever(t)?ws(e,t):a.IsIntersect(t)?Sr(e,t):a.IsUnion(t)?Rn(e,t):a.IsAny(t)?On(e,t):a.IsString(t)?Rs(e,t):a.IsNumber(t)?Ps(e,t):a.IsInteger(t)?As(e,t):a.IsBoolean(t)?bs(e,t):a.IsArray(t)?cd(e,t):a.IsTuple(t)?Dd(e,t):a.IsObject(t)?te(e,t):a.IsUnknown(t)?d.True:d.False}function qd(e,t){return a.IsUndefined(e)||a.IsUndefined(e)?d.True:d.False}function zd(e,t){return a.IsIntersect(t)?Sr(e,t):a.IsUnion(t)?Rn(e,t):a.IsUnknown(t)?Cs(e,t):a.IsAny(t)?On(e,t):a.IsObject(t)?te(e,t):a.IsVoid(t)?d.True:d.False}function C(e,t){return a.IsTemplateLiteral(e)||a.IsTemplateLiteral(t)?Ld(e,t):a.IsRegExp(e)||a.IsRegExp(t)?_d(e,t):a.IsNot(e)||a.IsNot(t)?wd(e,t):a.IsAny(e)?md(e,t):a.IsArray(e)?pd(e,t):a.IsBigInt(e)?fd(e,t):a.IsBoolean(e)?gd(e,t):a.IsAsyncIterator(e)?ld(e,t):a.IsConstructor(e)?Id(e,t):a.IsDate(e)?hd(e,t):a.IsFunction(e)?yd(e,t):a.IsInteger(e)?xd(e,t):a.IsIntersect(e)?Sd(e,t):a.IsIterator(e)?Td(e,t):a.IsLiteral(e)?bd(e,t):a.IsNever(e)?Ad(e,t):a.IsNull(e)?Pd(e,t):a.IsNumber(e)?Od(e,t):a.IsObject(e)?$d(e,t):a.IsRecord(e)?Nd(e,t):a.IsString(e)?vd(e,t):a.IsSymbol(e)?Kd(e,t):a.IsTuple(e)?Gd(e,t):a.IsPromise(e)?Ud(e,t):a.IsUint8Array(e)?Vd(e,t):a.IsUndefined(e)?Bd(e,t):a.IsUnion(e)?Hd(e,t):a.IsUnknown(e)?Wd(e,t):a.IsVoid(e)?zd(e,t):wt(`Unknown left type operand '${e[c]}'`)}function Je(e,t){return C(e,t)}function Yd(e,t,r,n,o){let s={};for(let i of globalThis.Object.getOwnPropertyNames(e))s[i]=Pt(e[i],t,r,n,F(o));return s}function Jd(e,t,r,n,o){return Yd(e.properties,t,r,n,o)}function Ms(e,t,r,n,o){let s=Jd(e,t,r,n,o);return T(s)}function Xd(e,t,r,n){let o=Je(e,t);return o===d.Union?w([r,n]):o===d.True?r:n}function Pt(e,t,r,n,o){return $(e)?Ms(e,t,r,n,o):me(e)?u(ks(e,t,r,n,o)):u(Xd(e,t,r,n),o)}function Qd(e,t,r,n,o){return{[e]:Pt(b(e),t,r,n,F(o))}}function Zd(e,t,r,n,o){return e.reduce((s,i)=>({...s,...Qd(i,t,r,n,o)}),{})}function em(e,t,r,n,o){return Zd(e.keys,t,r,n,o)}function ks(e,t,r,n,o){let s=em(e,t,r,n,o);return T(s)}function Es(e,t){return Ot(dt(e),t)}function tm(e,t){let r=e.filter(n=>Je(n,t)===d.False);return r.length===1?r[0]:w(r)}function Ot(e,t,r={}){return ce(e)?u(Es(e,t),r):$(e)?u(Fs(e,t),r):u(x(e)?tm(e.anyOf,t):Je(e,t)!==d.False?S():e,r)}function rm(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(e))r[n]=Ot(e[n],t);return r}function nm(e,t){return rm(e.properties,t)}function Fs(e,t){let r=nm(e,t);return T(r)}function $s(e,t){return Rt(dt(e),t)}function om(e,t){let r=e.filter(n=>Je(n,t)!==d.False);return r.length===1?r[0]:w(r)}function Rt(e,t,r){return ce(e)?u($s(e,t),r):$(e)?u(Us(e,t),r):u(x(e)?om(e.anyOf,t):Je(e,t)!==d.False?e:S(),r)}function sm(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(e))r[n]=Rt(e[n],t);return r}function im(e,t){return sm(e.properties,t)}function Us(e,t){let r=im(e,t);return T(r)}function Ns(e,t){return we(e)?u(e.returns,t):S(t)}function br(e){return oe(Z(e))}function mt(e,t,r){return u({[c]:"Record",type:"object",patternProperties:{[e]:t}},r)}function Cn(e,t,r){let n={};for(let o of e)n[o]=t;return R(n,{...r,[ge]:"Record"})}function am(e,t,r){return Xo(e)?Cn(ne(e),t,r):mt(e.pattern,t,r)}function um(e,t,r){return Cn(ne(w(e)),t,r)}function dm(e,t,r){return Cn([e.toString()],t,r)}function mm(e,t,r){return mt(e.source,t,r)}function cm(e,t,r){let n=L(e.pattern)?We:e.pattern;return mt(n,t,r)}function pm(e,t,r){return mt(We,t,r)}function lm(e,t,r){return mt(Vo,t,r)}function fm(e,t,r){return R({true:t,false:t},r)}function gm(e,t,r){return mt(He,t,r)}function Im(e,t,r){return mt(He,t,r)}function Ar(e,t,r={}){return x(e)?um(e.anyOf,t,r):ce(e)?am(e,t,r):de(e)?dm(e.const,t,r):Le(e)?fm(e,t,r):Oe(e)?gm(e,t,r):Re(e)?Im(e,t,r):an(e)?mm(e,t,r):je(e)?cm(e,t,r):on(e)?pm(e,t,r):Ve(e)?lm(e,t,r):S(r)}function wr(e){return globalThis.Object.getOwnPropertyNames(e.patternProperties)[0]}function _s(e){let t=wr(e);return t===We?Ce():t===He?Ie():Ce({pattern:t})}function Pr(e){return e.patternProperties[wr(e)]}function hm(e,t){return t.parameters=Yt(e,t.parameters),t.returns=Me(e,t.returns),t}function ym(e,t){return t.parameters=Yt(e,t.parameters),t.returns=Me(e,t.returns),t}function xm(e,t){return t.allOf=Yt(e,t.allOf),t}function Sm(e,t){return t.anyOf=Yt(e,t.anyOf),t}function Tm(e,t){return L(t.items)||(t.items=Yt(e,t.items)),t}function bm(e,t){return t.items=Me(e,t.items),t}function Am(e,t){return t.items=Me(e,t.items),t}function wm(e,t){return t.items=Me(e,t.items),t}function Pm(e,t){return t.item=Me(e,t.item),t}function Om(e,t){let r=km(e,t.properties);return{...t,...R(r)}}function Rm(e,t){let r=Me(e,_s(t)),n=Me(e,Pr(t)),o=Ar(r,n);return{...t,...o}}function Cm(e,t){return t.index in e?e[t.index]:Ye()}function Mm(e,t){let r=ft(t),n=re(t),o=Me(e,t);return r&&n?br(o):r&&!n?oe(o):!r&&n?Z(o):o}function km(e,t){return globalThis.Object.getOwnPropertyNames(t).reduce((r,n)=>({...r,[n]:Mm(e,t[n])}),{})}function Yt(e,t){return t.map(r=>Me(e,r))}function Me(e,t){return we(t)?hm(e,t):Pe(t)?ym(e,t):U(t)?xm(e,t):x(t)?Sm(e,t):pe(t)?Tm(e,t):be(t)?bm(e,t):nt(t)?Am(e,t):st(t)?wm(e,t):it(t)?Pm(e,t):j(t)?Om(e,t):at(t)?Rm(e,t):sn(t)?Cm(e,t):t}function vs(e,t){return Me(t,lt(e))}function Ks(e){return u({[c]:"Integer",type:"integer"},e)}function Em(e,t,r){return{[e]:ke(b(e),t,F(r))}}function Fm(e,t,r){return e.reduce((o,s)=>({...o,...Em(s,t,r)}),{})}function $m(e,t,r){return Fm(e.keys,t,r)}function Ls(e,t,r){let n=$m(e,t,r);return T(n)}function Um(e){let[t,r]=[e.slice(0,1),e.slice(1)];return[t.toLowerCase(),r].join("")}function Nm(e){let[t,r]=[e.slice(0,1),e.slice(1)];return[t.toUpperCase(),r].join("")}function _m(e){return e.toUpperCase()}function vm(e){return e.toLowerCase()}function Km(e,t,r){let n=xt(e.pattern);if(!ut(n))return{...e,pattern:js(e.pattern,t)};let i=[...Ht(n)].map(f=>b(f)),m=Ds(i,t),p=w(m);return cr([p],r)}function js(e,t){return typeof e=="string"?t==="Uncapitalize"?Um(e):t==="Capitalize"?Nm(e):t==="Uppercase"?_m(e):t==="Lowercase"?vm(e):e:e.toString()}function Ds(e,t){return e.map(r=>ke(r,t))}function ke(e,t,r={}){return me(e)?Ls(e,t,r):ce(e)?Km(e,t,r):x(e)?w(Ds(e.anyOf,t),r):de(e)?b(js(e.const,t),r):u(e,r)}function Gs(e,t={}){return ke(e,"Capitalize",t)}function Vs(e,t={}){return ke(e,"Lowercase",t)}function Bs(e,t={}){return ke(e,"Uncapitalize",t)}function Hs(e,t={}){return ke(e,"Uppercase",t)}function Lm(e,t,r){let n={};for(let o of globalThis.Object.getOwnPropertyNames(e))n[o]=Xe(e[o],t,F(r));return n}function jm(e,t,r){return Lm(e.properties,t,r)}function Ws(e,t,r){let n=jm(e,t,r);return T(n)}function Dm(e,t){return e.map(r=>Mn(r,t))}function Gm(e,t){return e.map(r=>Mn(r,t))}function Vm(e,t){let{[t]:r,...n}=e;return n}function Bm(e,t){return t.reduce((r,n)=>Vm(r,n),e)}function Hm(e,t,r){let n=N(e,[G,"$id","required","properties"]),o=Bm(r,t);return R(o,n)}function Wm(e){let t=e.reduce((r,n)=>ir(n)?[...r,b(n)]:r,[]);return w(t)}function Mn(e,t){return U(e)?ee(Dm(e.allOf,t)):x(e)?w(Gm(e.anyOf,t)):j(e)?Hm(e,t,e.properties):R({})}function Xe(e,t,r){let n=K(t)?Wm(t):t,o=le(t)?ne(t):t,s=v(e),i=v(t);return $(e)?Ws(e,o,r):me(t)?qs(e,t,r):s&&i?E("Omit",[e,n],r):!s&&i?E("Omit",[e,n],r):s&&!i?E("Omit",[e,n],r):u({...Mn(e,o),...r})}function qm(e,t,r){return{[t]:Xe(e,[t],F(r))}}function zm(e,t,r){return t.reduce((n,o)=>({...n,...qm(e,o,r)}),{})}function Ym(e,t,r){return zm(e,t.keys,r)}function qs(e,t,r){let n=Ym(e,t,r);return T(n)}function Jm(e,t,r){let n={};for(let o of globalThis.Object.getOwnPropertyNames(e))n[o]=Qe(e[o],t,F(r));return n}function Xm(e,t,r){return Jm(e.properties,t,r)}function zs(e,t,r){let n=Xm(e,t,r);return T(n)}function Qm(e,t){return e.map(r=>kn(r,t))}function Zm(e,t){return e.map(r=>kn(r,t))}function ec(e,t){let r={};for(let n of t)n in e&&(r[n]=e[n]);return r}function tc(e,t,r){let n=N(e,[G,"$id","required","properties"]),o=ec(r,t);return R(o,n)}function rc(e){let t=e.reduce((r,n)=>ir(n)?[...r,b(n)]:r,[]);return w(t)}function kn(e,t){return U(e)?ee(Qm(e.allOf,t)):x(e)?w(Zm(e.anyOf,t)):j(e)?tc(e,t,e.properties):R({})}function Qe(e,t,r){let n=K(t)?rc(t):t,o=le(t)?ne(t):t,s=v(e),i=v(t);return $(e)?zs(e,o,r):me(t)?Ys(e,t,r):s&&i?E("Pick",[e,n],r):!s&&i?E("Pick",[e,n],r):s&&!i?E("Pick",[e,n],r):u({...kn(e,o),...r})}function nc(e,t,r){return{[t]:Qe(e,[t],F(r))}}function oc(e,t,r){return t.reduce((n,o)=>({...n,...nc(e,o,r)}),{})}function sc(e,t,r){return oc(e,t.keys,r)}function Ys(e,t,r){let n=sc(e,t,r);return T(n)}function ic(e,t){return E("Partial",[E(e,t)])}function ac(e){return E("Partial",[Ne(e)])}function uc(e){let t={};for(let r of globalThis.Object.getOwnPropertyNames(e))t[r]=Z(e[r]);return t}function dc(e,t){let r=N(e,[G,"$id","required","properties"]),n=uc(t);return R(n,r)}function Js(e){return e.map(t=>Xs(t))}function Xs(e){return Ae(e)?ic(e.target,e.parameters):v(e)?ac(e.$ref):U(e)?ee(Js(e.allOf)):x(e)?w(Js(e.anyOf)):j(e)?dc(e,e.properties):ot(e)||Le(e)||Oe(e)||de(e)||vt(e)||Re(e)||je(e)||Kt(e)||Lt(e)?e:R({})}function Ct(e,t){return $(e)?Qs(e,t):u({...Xs(e),...t})}function mc(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(e))r[n]=Ct(e[n],F(t));return r}function cc(e,t){return mc(e.properties,t)}function Qs(e,t){let r=cc(e,t);return T(r)}function pc(e,t){return E("Required",[E(e,t)])}function lc(e){return E("Required",[Ne(e)])}function fc(e){let t={};for(let r of globalThis.Object.getOwnPropertyNames(e))t[r]=N(e[r],[J]);return t}function gc(e,t){let r=N(e,[G,"$id","required","properties"]),n=fc(t);return R(n,r)}function Zs(e){return e.map(t=>ei(t))}function ei(e){return Ae(e)?pc(e.target,e.parameters):v(e)?lc(e.$ref):U(e)?ee(Zs(e.allOf)):x(e)?w(Zs(e.anyOf)):j(e)?gc(e,e.properties):ot(e)||Le(e)||Oe(e)||de(e)||vt(e)||Re(e)||je(e)||Kt(e)||Lt(e)?e:R({})}function Mt(e,t){return $(e)?ti(e,t):u({...ei(e),...t})}function Ic(e,t){let r={};for(let n of globalThis.Object.getOwnPropertyNames(e))r[n]=Mt(e[n],t);return r}function hc(e,t){return Ic(e.properties,t)}function ti(e,t){let r=hc(e,t);return T(r)}function yc(e,t){return t.map(r=>v(r)?En(e,r.$ref):fe(e,r))}function En(e,t){return t in e?v(e[t])?En(e,e[t].$ref):fe(e,e[t]):S()}function xc(e){return bt(e[0])}function Sc(e){return ze(e[0],e[1])}function Tc(e){return At(e[0])}function bc(e){return Ct(e[0])}function Ac(e){return Xe(e[0],e[1])}function wc(e){return Qe(e[0],e[1])}function Pc(e){return Mt(e[0])}function Oc(e,t,r){let n=yc(e,r);return t==="Awaited"?xc(n):t==="Index"?Sc(n):t==="KeyOf"?Tc(n):t==="Partial"?bc(n):t==="Omit"?Ac(n):t==="Pick"?wc(n):t==="Required"?Pc(n):S()}function Rc(e,t){return gt(fe(e,t))}function Cc(e,t){return It(fe(e,t))}function Mc(e,t,r){return ht(Jt(e,t),fe(e,r))}function kc(e,t,r){return $e(Jt(e,t),fe(e,r))}function Ec(e,t){return ee(Jt(e,t))}function Fc(e,t){return Tt(fe(e,t))}function $c(e,t){return R(globalThis.Object.keys(t).reduce((r,n)=>({...r,[n]:fe(e,t[n])}),{}))}function Uc(e,t){let[r,n]=[fe(e,Pr(t)),wr(t)],o=lt(t);return o.patternProperties[n]=r,o}function Nc(e,t){return v(t)?{...En(e,t.$ref),[G]:t[G]}:t}function _c(e,t){return he(Jt(e,t))}function vc(e,t){return w(Jt(e,t))}function Jt(e,t){return t.map(r=>fe(e,r))}function fe(e,t){return re(t)?u(fe(e,N(t,[J])),t):ft(t)?u(fe(e,N(t,[Te])),t):Be(t)?u(Nc(e,t),t):be(t)?u(Rc(e,t.items),t):nt(t)?u(Cc(e,t.items),t):Ae(t)?u(Oc(e,t.target,t.parameters)):we(t)?u(Mc(e,t.parameters,t.returns),t):Pe(t)?u(kc(e,t.parameters,t.returns),t):U(t)?u(Ec(e,t.allOf),t):st(t)?u(Fc(e,t.items),t):j(t)?u($c(e,t.properties),t):at(t)?u(Uc(e,t)):pe(t)?u(_c(e,t.items||[]),t):x(t)?u(vc(e,t.anyOf),t):t}function Kc(e,t){return t in e?fe(e,e[t]):S()}function ri(e){return globalThis.Object.getOwnPropertyNames(e).reduce((t,r)=>({...t,[r]:Kc(e,r)}),{})}var Fn=class{constructor(t){let r=ri(t),n=this.WithIdentifiers(r);this.$defs=n}Import(t,r){let n={...this.$defs,[t]:u(this.$defs[t],r)};return u({[c]:"Import",$defs:n,$ref:t})}WithIdentifiers(t){return globalThis.Object.getOwnPropertyNames(t).reduce((r,n)=>({...r,[n]:{...t[n],$id:n}}),{})}};function ni(e){return new Fn(e)}function oi(e,t){return u({[c]:"Not",not:e},t)}function si(e,t){return Pe(e)?he(e.parameters,t):S()}var Lc=0;function ii(e,t={}){L(t.$id)&&(t.$id=`T${Lc++}`);let r=lt(e({[c]:"This",$ref:`${t.$id}`}));return r.$id=t.$id,u({[ge]:"Recursive",...r},t)}function ai(e,t){let r=M(e)?new globalThis.RegExp(e):e;return u({[c]:"RegExp",type:"RegExp",source:r.source,flags:r.flags},t)}function jc(e){return U(e)?e.allOf:x(e)?e.anyOf:pe(e)?e.items??[]:[]}function ui(e){return jc(e)}function di(e,t){return Pe(e)?u(e.returns,t):S(t)}var $n=class{constructor(t){this.schema=t}Decode(t){return new Un(this.schema,t)}},Un=class{constructor(t,r){this.schema=t,this.decode=r}EncodeTransform(t,r){let s={Encode:i=>r[G].Encode(t(i)),Decode:i=>this.decode(r[G].Decode(i))};return{...r,[G]:s}}EncodeSchema(t,r){let n={Decode:this.decode,Encode:t};return{...r,[G]:n}}Encode(t){return Be(this.schema)?this.EncodeTransform(t,this.schema):this.EncodeSchema(t,this.schema)}};function mi(e){return new $n(e)}function ci(e={}){return u({[c]:e[c]??"Unsafe"},e)}function pi(e){return u({[c]:"Void",type:"void"},e)}var Nn={};Qr(Nn,{Any:()=>qe,Argument:()=>zo,Array:()=>gt,AsyncIterator:()=>It,Awaited:()=>bt,BigInt:()=>St,Boolean:()=>mr,Capitalize:()=>Gs,Composite:()=>fs,Const:()=>gs,Constructor:()=>ht,ConstructorParameters:()=>Is,Date:()=>fr,Enum:()=>hs,Exclude:()=>Ot,Extends:()=>Pt,Extract:()=>Rt,Function:()=>$e,Index:()=>ze,InstanceType:()=>Ns,Instantiate:()=>vs,Integer:()=>Ks,Intersect:()=>ee,Iterator:()=>Tt,KeyOf:()=>At,Literal:()=>b,Lowercase:()=>Vs,Mapped:()=>us,Module:()=>ni,Never:()=>S,Not:()=>oi,Null:()=>gr,Number:()=>Ie,Object:()=>R,Omit:()=>Xe,Optional:()=>Z,Parameters:()=>si,Partial:()=>Ct,Pick:()=>Qe,Promise:()=>lr,Readonly:()=>oe,ReadonlyOptional:()=>br,Record:()=>Ar,Recursive:()=>ii,Ref:()=>Ne,RegExp:()=>ai,Required:()=>Mt,Rest:()=>ui,ReturnType:()=>di,String:()=>Ce,Symbol:()=>Ir,TemplateLiteral:()=>cr,Transform:()=>mi,Tuple:()=>he,Uint8Array:()=>yr,Uncapitalize:()=>Bs,Undefined:()=>hr,Union:()=>w,Unknown:()=>Ye,Unsafe:()=>ci,Uppercase:()=>Hs,Void:()=>pi});var l=Nn;var g=null;function _n(e){g=e}import{readFileSync as Dc}from"fs";import{homedir as Gc}from"os";import{join as Vc}from"path";var Xt;function li(){if(Xt!==void 0)return Xt;try{let e=Dc(Vc(Gc(),".claude.json"),"utf-8");Xt=JSON.parse(e).mcpServers??{}}catch{Xt={}}return Xt}var h={maxSessions:20,idleTimeoutMinutes:15,sessionGcAgeMinutes:1440,maxPersistedSessions:1e4,maxAutoResponds:10,permissionMode:"plan",codexApprovalPolicy:"on-request",planApproval:"delegate",reasoningEffort:"medium"};function fi(e){h={maxSessions:e.maxSessions??20,defaultModel:e.defaultModel,model:e.model,reasoningEffort:e.reasoningEffort??"medium",defaultWorkdir:e.defaultWorkdir,idleTimeoutMinutes:e.idleTimeoutMinutes??15,sessionGcAgeMinutes:e.sessionGcAgeMinutes??1440,maxPersistedSessions:e.maxPersistedSessions??1e4,fallbackChannel:e.fallbackChannel,agentChannels:e.agentChannels,maxAutoResponds:e.maxAutoResponds??10,permissionMode:e.permissionMode??"plan",codexApprovalPolicy:e.codexApprovalPolicy??"on-request",planApproval:e.planApproval??"delegate",defaultHarness:e.defaultHarness}}function gi(e){if(e.messageChannel){let t=e.messageChannel.split("|");if(t.length>=3)return e.messageChannel;if(e.agentAccountId&&t.length>=2)return`${t[0]}|${e.agentAccountId}|${t.slice(1).join("|")}`;if(t.length===1&&e.chatId)return`${t[0]}|${e.chatId}`;if(t.length===1&&e.senderId)return`${t[0]}|${e.senderId}`}if(e.workspaceDir){let t=Qt(e.workspaceDir);if(t)return t}if(e.messageChannel&&e.messageChannel.includes("|"))return e.messageChannel}function kt(e,t){if(t&&String(t).includes("|"))return String(t);if(e?.channelId&&String(e.channelId).includes("|"))return String(e.channelId);if(e?.messageChannel){let r=String(e.messageChannel);if(r.includes("|"))return r;if(e.chatId)return`${r}|${e.chatId}`;if(e.senderId)return`${r}|${e.senderId}`}return e?.channel&&e?.chatId?`${e.channel}|${e.chatId}`:e?.channel&&e?.senderId?`${e.channel}|${e.senderId}`:e?.id&&/^-?\d+$/.test(String(e.id))?`telegram|${e.id}`:h.fallbackChannel??"unknown"}function Et(e){return e?.messageThreadId??void 0}function Qt(e){let t=h.agentChannels;if(!t)return;let r=s=>s.replace(/\/+$/,""),n=r(e),o=Object.entries(t).sort((s,i)=>i[0].length-s[0].length);for(let[s,i]of o)if(n===r(s)||n.startsWith(r(s)+"/"))return i}function Ii(e){if(!e)return;let t=e.match(/:topic:(\d+)$/);return t?parseInt(t[1],10):void 0}function Ft(e){let{requestedResumeSessionId:t,activeSession:r,persistedSession:n}=e;return t?r?{resumeSessionId:t,clearedPersistedCodexResume:!1}:n?.harness==="codex"?{resumeSessionId:void 0,clearedPersistedCodexResume:!0}:{resumeSessionId:t,clearedPersistedCodexResume:!1}:{resumeSessionId:void 0,clearedPersistedCodexResume:!1}}function Hc(e){return e instanceof Error?e.message:String(e)}function Wc(e){return!e||typeof e!="object"?!1:typeof e.prompt=="string"}function hi(e){return{name:"agent_launch",description:"Launch a coding agent session in background to execute a development task. Sessions are multi-turn by default \u2014 they stay open for follow-up messages via agent_respond. Set multi_turn_disabled: true for fire-and-forget sessions. Supports resuming previous sessions. Returns a session ID and name for tracking.",parameters:l.Object({prompt:l.String({description:"The task prompt to execute"}),name:l.Optional(l.String({description:"Short human-readable name for the session (kebab-case, e.g. 'fix-auth'). Auto-generated from prompt if omitted."})),workdir:l.Optional(l.String({description:"Working directory (defaults to cwd)"})),model:l.Optional(l.String({description:"Model name to use"})),system_prompt:l.Optional(l.String({description:"Additional system prompt"})),allowed_tools:l.Optional(l.Array(l.String(),{description:"List of allowed tools"})),resume_session_id:l.Optional(l.String({description:"Session ID to resume (from a previous session's harnessSessionId). Continues the conversation from where it left off."})),fork_session:l.Optional(l.Boolean({description:"When resuming, fork to a new session instead of continuing the existing one. Use with resume_session_id."})),multi_turn_disabled:l.Optional(l.Boolean({description:"Disable multi-turn mode. By default sessions stay open for follow-up messages. Set to true for fire-and-forget sessions."})),permission_mode:l.Optional(l.Union([l.Literal("default"),l.Literal("plan"),l.Literal("acceptEdits"),l.Literal("bypassPermissions")],{description:"Permission mode for the session. This is the plugin's orchestration mode, not the Codex SDK approval policy. Defaults to plugin config (plan by default)."})),harness:l.Optional(l.String({description:"Agent harness to use (e.g. 'claude-code'). Defaults to 'claude-code'."}))}),async execute(t,r){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};if(!Wc(r))return{content:[{type:"text",text:"Error: Invalid parameters. Expected at least { prompt }."}]};r.agentId&&console.warn(`[agent_launch] \u26A0\uFE0F agentId="${r.agentId}" was passed as a parameter \u2014 this is WRONG. agentId is only for sessions_spawn (OpenClaw sub-agents), not agent_launch (CC sessions). The field is being ignored. ctx.agentId="${e.agentId}" will be used for origin routing instead.`);let n=r.workdir||e.workspaceDir||h.defaultWorkdir||process.cwd();if(!Bc(n))return{content:[{type:"text",text:`Error: Working directory does not exist: ${n}`}]};try{let o=r.harness??h.defaultHarness,s=o==="codex"?h.model??h.defaultModel:h.defaultModel,i=r.resume_session_id,m=i?g.resolve(i):void 0,p=i?g.getPersistedSession(i):void 0;if(i){let Fe=g.resolveHarnessSessionId(i);if(!Fe)return{content:[{type:"text",text:`Error: Could not resolve resume_session_id "${i}" to a session ID. Use agent_sessions to list available sessions.`}]};i=Fe}let{resumeSessionId:f,clearedPersistedCodexResume:A}=Ft({requestedResumeSessionId:i,activeSession:m?{harnessSessionId:m.harnessSessionId}:void 0,persistedSession:p?{harness:p.harness}:void 0}),_=gi(e),ie=kt(e,_||Qt(n)),Y=e.sessionKey||void 0;!Y&&e.agentId&&console.warn(`[agent_launch] ctx.sessionKey is not populated. ctx fields: agentId=${e.agentId}, messageChannel=${e.messageChannel}, agentAccountId=${e.agentAccountId}, workspaceDir=${e.workspaceDir}`);let H=g.spawn({prompt:r.prompt,name:r.name,workdir:n,model:r.model??s,reasoningEffort:h.reasoningEffort,systemPrompt:r.system_prompt,allowedTools:r.allowed_tools,resumeSessionId:f,forkSession:f?r.fork_session:!1,multiTurn:!r.multi_turn_disabled,permissionMode:r.permission_mode,codexApprovalPolicy:o==="codex"?h.codexApprovalPolicy:void 0,originChannel:ie,originThreadId:Ii(Y)??Et(e),originAgentId:e.agentId||void 0,originSessionKey:Y,harness:o}),W=r.prompt.length>80?r.prompt.slice(0,80)+"...":r.prompt,X=["Session launched successfully.",` Name: ${H.name}`,` ID: ${H.id}`,` Dir: ${n}`,` Model: ${H.model??"default"}`,` Prompt: "${W}"`];return o==="codex"&&X.push(` Codex approval policy: ${H.codexApprovalPolicy??h.codexApprovalPolicy}`),r.resume_session_id&&(X.push(` Resume: ${r.resume_session_id}${r.fork_session?" (forked)":""}`),A&&X.push(" Thread state: historical Codex state cleared; starting a fresh thread.")),X.push(r.multi_turn_disabled?" Mode: single-turn (fire-and-forget)":" Mode: multi-turn (use agent_respond to send follow-up messages)"),X.push("","Use agent_sessions to check status, agent_output to see output."),{content:[{type:"text",text:X.join(`
2
- `)}]}}catch(o){let s=Hc(o),i=s.includes("Max sessions")?"":`
1
+ var xa=Object.defineProperty;var sr=(e,t)=>{for(var n in t)xa(e,n,{get:t[n],enumerable:!0})};import{existsSync as Zm}from"fs";var J={};sr(J,{HasPropertyKey:()=>dn,IsArray:()=>K,IsAsyncIterator:()=>ir,IsBigInt:()=>Dt,IsBoolean:()=>Ke,IsDate:()=>it,IsFunction:()=>ar,IsIterator:()=>ur,IsNull:()=>dr,IsNumber:()=>ue,IsObject:()=>A,IsRegExp:()=>jt,IsString:()=>C,IsSymbol:()=>cr,IsUint8Array:()=>De,IsUndefined:()=>D});function dn(e,t){return t in e}function ir(e){return A(e)&&!K(e)&&!De(e)&&Symbol.asyncIterator in e}function K(e){return Array.isArray(e)}function Dt(e){return typeof e=="bigint"}function Ke(e){return typeof e=="boolean"}function it(e){return e instanceof globalThis.Date}function ar(e){return typeof e=="function"}function ur(e){return A(e)&&!K(e)&&!De(e)&&Symbol.iterator in e}function dr(e){return e===null}function ue(e){return typeof e=="number"}function A(e){return typeof e=="object"&&e!==null}function jt(e){return e instanceof globalThis.RegExp}function C(e){return typeof e=="string"}function cr(e){return typeof e=="symbol"}function De(e){return e instanceof globalThis.Uint8Array}function D(e){return e===void 0}function Sa(e){return e.map(t=>cn(t))}function Ta(e){return new Date(e.getTime())}function ba(e){return new Uint8Array(e)}function wa(e){return new RegExp(e.source,e.flags)}function Aa(e){let t={};for(let n of Object.getOwnPropertyNames(e))t[n]=cn(e[n]);for(let n of Object.getOwnPropertySymbols(e))t[n]=cn(e[n]);return t}function cn(e){return K(e)?Sa(e):it(e)?Ta(e):De(e)?ba(e):jt(e)?wa(e):A(e)?Aa(e):e}function F(e){return cn(e)}function yt(e,t){return t===void 0?F(e):F({...t,...e})}function no(e){return e!==null&&typeof e=="object"}function ro(e){return globalThis.Array.isArray(e)&&!globalThis.ArrayBuffer.isView(e)}function oo(e){return e===void 0}function so(e){return typeof e=="number"}var mn;(function(e){e.InstanceMode="default",e.ExactOptionalPropertyTypes=!1,e.AllowArrayObject=!1,e.AllowNaN=!1,e.AllowNullVoid=!1;function t(s,c){return e.ExactOptionalPropertyTypes?c in s:s[c]!==void 0}e.IsExactOptionalProperty=t;function n(s){let c=no(s);return e.AllowArrayObject?c:c&&!ro(s)}e.IsObjectLike=n;function r(s){return n(s)&&!(s instanceof Date)&&!(s instanceof Uint8Array)}e.IsRecordLike=r;function o(s){return e.AllowNaN?so(s):Number.isFinite(s)}e.IsNumberLike=o;function i(s){let c=oo(s);return e.AllowNullVoid?c||s===null:c}e.IsVoidLike=i})(mn||(mn={}));function Pa(e){return globalThis.Object.freeze(e).map(t=>Gt(t))}function Ra(e){let t={};for(let n of Object.getOwnPropertyNames(e))t[n]=Gt(e[n]);for(let n of Object.getOwnPropertySymbols(e))t[n]=Gt(e[n]);return globalThis.Object.freeze(t)}function Gt(e){return K(e)?Pa(e):it(e)?e:De(e)?e:jt(e)?e:A(e)?Ra(e):e}function u(e,t){let n=t!==void 0?{...t,...e}:e;switch(mn.InstanceMode){case"freeze":return Gt(n);case"clone":return F(n);default:return n}}var W=class extends Error{constructor(t){super(t)}};var V=Symbol.for("TypeBox.Transform"),Ae=Symbol.for("TypeBox.Readonly"),Y=Symbol.for("TypeBox.Optional"),Ie=Symbol.for("TypeBox.Hint"),m=Symbol.for("TypeBox.Kind");function xt(e){return A(e)&&e[Ae]==="Readonly"}function re(e){return A(e)&&e[Y]==="Optional"}function mr(e){return h(e,"Any")}function pr(e){return h(e,"Argument")}function Pe(e){return h(e,"Array")}function at(e){return h(e,"AsyncIterator")}function ut(e){return h(e,"BigInt")}function je(e){return h(e,"Boolean")}function Re(e){return h(e,"Computed")}function Oe(e){return h(e,"Constructor")}function Oa(e){return h(e,"Date")}function Ce(e){return h(e,"Function")}function Me(e){return h(e,"Integer")}function v(e){return h(e,"Intersect")}function dt(e){return h(e,"Iterator")}function h(e,t){return A(e)&&m in e&&e[m]===t}function pn(e){return Ke(e)||ue(e)||C(e)}function de(e){return h(e,"Literal")}function ce(e){return h(e,"MappedKey")}function $(e){return h(e,"MappedResult")}function We(e){return h(e,"Never")}function Ca(e){return h(e,"Not")}function Vt(e){return h(e,"Null")}function Ee(e){return h(e,"Number")}function j(e){return h(e,"Object")}function ct(e){return h(e,"Promise")}function mt(e){return h(e,"Record")}function L(e){return h(e,"Ref")}function lr(e){return h(e,"RegExp")}function Ge(e){return h(e,"String")}function Ht(e){return h(e,"Symbol")}function me(e){return h(e,"TemplateLiteral")}function Ma(e){return h(e,"This")}function qe(e){return A(e)&&V in e}function pe(e){return h(e,"Tuple")}function Bt(e){return h(e,"Undefined")}function y(e){return h(e,"Union")}function Ea(e){return h(e,"Uint8Array")}function ka(e){return h(e,"Unknown")}function Fa(e){return h(e,"Unsafe")}function $a(e){return h(e,"Void")}function va(e){return A(e)&&m in e&&C(e[m])}function le(e){return mr(e)||pr(e)||Pe(e)||je(e)||ut(e)||at(e)||Re(e)||Oe(e)||Oa(e)||Ce(e)||Me(e)||v(e)||dt(e)||de(e)||ce(e)||$(e)||We(e)||Ca(e)||Vt(e)||Ee(e)||j(e)||ct(e)||mt(e)||L(e)||lr(e)||Ge(e)||Ht(e)||me(e)||Ma(e)||pe(e)||Bt(e)||y(e)||Ea(e)||ka(e)||Fa(e)||$a(e)||va(e)}var a={};sr(a,{IsAny:()=>co,IsArgument:()=>mo,IsArray:()=>po,IsAsyncIterator:()=>lo,IsBigInt:()=>fo,IsBoolean:()=>go,IsComputed:()=>Io,IsConstructor:()=>ho,IsDate:()=>yo,IsFunction:()=>xo,IsImport:()=>Da,IsInteger:()=>So,IsIntersect:()=>To,IsIterator:()=>bo,IsKind:()=>zo,IsKindOf:()=>I,IsLiteral:()=>qt,IsLiteralBoolean:()=>ja,IsLiteralNumber:()=>Ao,IsLiteralString:()=>wo,IsLiteralValue:()=>Po,IsMappedKey:()=>Ro,IsMappedResult:()=>Oo,IsNever:()=>Co,IsNot:()=>Mo,IsNull:()=>Eo,IsNumber:()=>ko,IsObject:()=>Fo,IsOptional:()=>Ka,IsPromise:()=>$o,IsProperties:()=>ln,IsReadonly:()=>La,IsRecord:()=>vo,IsRecursive:()=>Ga,IsRef:()=>No,IsRegExp:()=>Uo,IsSchema:()=>q,IsString:()=>_o,IsSymbol:()=>Lo,IsTemplateLiteral:()=>Ko,IsThis:()=>Do,IsTransform:()=>jo,IsTuple:()=>Go,IsUint8Array:()=>Ho,IsUndefined:()=>Vo,IsUnion:()=>hr,IsUnionLiteral:()=>Va,IsUnknown:()=>Bo,IsUnsafe:()=>Wo,IsVoid:()=>qo,TypeGuardUnknownTypeError:()=>fr});var fr=class extends W{},Na=["Argument","Any","Array","AsyncIterator","BigInt","Boolean","Computed","Constructor","Date","Enum","Function","Integer","Intersect","Iterator","Literal","MappedKey","MappedResult","Not","Null","Number","Object","Promise","Record","Ref","RegExp","String","Symbol","TemplateLiteral","This","Tuple","Undefined","Union","Uint8Array","Unknown","Void"];function io(e){try{return new RegExp(e),!0}catch{return!1}}function gr(e){if(!C(e))return!1;for(let t=0;t<e.length;t++){let n=e.charCodeAt(t);if(n>=7&&n<=13||n===27||n===127)return!1}return!0}function ao(e){return Ir(e)||q(e)}function Wt(e){return D(e)||Dt(e)}function M(e){return D(e)||ue(e)}function Ir(e){return D(e)||Ke(e)}function P(e){return D(e)||C(e)}function Ua(e){return D(e)||C(e)&&gr(e)&&io(e)}function _a(e){return D(e)||C(e)&&gr(e)}function uo(e){return D(e)||q(e)}function La(e){return A(e)&&e[Ae]==="Readonly"}function Ka(e){return A(e)&&e[Y]==="Optional"}function co(e){return I(e,"Any")&&P(e.$id)}function mo(e){return I(e,"Argument")&&ue(e.index)}function po(e){return I(e,"Array")&&e.type==="array"&&P(e.$id)&&q(e.items)&&M(e.minItems)&&M(e.maxItems)&&Ir(e.uniqueItems)&&uo(e.contains)&&M(e.minContains)&&M(e.maxContains)}function lo(e){return I(e,"AsyncIterator")&&e.type==="AsyncIterator"&&P(e.$id)&&q(e.items)}function fo(e){return I(e,"BigInt")&&e.type==="bigint"&&P(e.$id)&&Wt(e.exclusiveMaximum)&&Wt(e.exclusiveMinimum)&&Wt(e.maximum)&&Wt(e.minimum)&&Wt(e.multipleOf)}function go(e){return I(e,"Boolean")&&e.type==="boolean"&&P(e.$id)}function Io(e){return I(e,"Computed")&&C(e.target)&&K(e.parameters)&&e.parameters.every(t=>q(t))}function ho(e){return I(e,"Constructor")&&e.type==="Constructor"&&P(e.$id)&&K(e.parameters)&&e.parameters.every(t=>q(t))&&q(e.returns)}function yo(e){return I(e,"Date")&&e.type==="Date"&&P(e.$id)&&M(e.exclusiveMaximumTimestamp)&&M(e.exclusiveMinimumTimestamp)&&M(e.maximumTimestamp)&&M(e.minimumTimestamp)&&M(e.multipleOfTimestamp)}function xo(e){return I(e,"Function")&&e.type==="Function"&&P(e.$id)&&K(e.parameters)&&e.parameters.every(t=>q(t))&&q(e.returns)}function Da(e){return I(e,"Import")&&dn(e,"$defs")&&A(e.$defs)&&ln(e.$defs)&&dn(e,"$ref")&&C(e.$ref)&&e.$ref in e.$defs}function So(e){return I(e,"Integer")&&e.type==="integer"&&P(e.$id)&&M(e.exclusiveMaximum)&&M(e.exclusiveMinimum)&&M(e.maximum)&&M(e.minimum)&&M(e.multipleOf)}function ln(e){return A(e)&&Object.entries(e).every(([t,n])=>gr(t)&&q(n))}function To(e){return I(e,"Intersect")&&!(C(e.type)&&e.type!=="object")&&K(e.allOf)&&e.allOf.every(t=>q(t)&&!jo(t))&&P(e.type)&&(Ir(e.unevaluatedProperties)||uo(e.unevaluatedProperties))&&P(e.$id)}function bo(e){return I(e,"Iterator")&&e.type==="Iterator"&&P(e.$id)&&q(e.items)}function I(e,t){return A(e)&&m in e&&e[m]===t}function wo(e){return qt(e)&&C(e.const)}function Ao(e){return qt(e)&&ue(e.const)}function ja(e){return qt(e)&&Ke(e.const)}function qt(e){return I(e,"Literal")&&P(e.$id)&&Po(e.const)}function Po(e){return Ke(e)||ue(e)||C(e)}function Ro(e){return I(e,"MappedKey")&&K(e.keys)&&e.keys.every(t=>ue(t)||C(t))}function Oo(e){return I(e,"MappedResult")&&ln(e.properties)}function Co(e){return I(e,"Never")&&A(e.not)&&Object.getOwnPropertyNames(e.not).length===0}function Mo(e){return I(e,"Not")&&q(e.not)}function Eo(e){return I(e,"Null")&&e.type==="null"&&P(e.$id)}function ko(e){return I(e,"Number")&&e.type==="number"&&P(e.$id)&&M(e.exclusiveMaximum)&&M(e.exclusiveMinimum)&&M(e.maximum)&&M(e.minimum)&&M(e.multipleOf)}function Fo(e){return I(e,"Object")&&e.type==="object"&&P(e.$id)&&ln(e.properties)&&ao(e.additionalProperties)&&M(e.minProperties)&&M(e.maxProperties)}function $o(e){return I(e,"Promise")&&e.type==="Promise"&&P(e.$id)&&q(e.item)}function vo(e){return I(e,"Record")&&e.type==="object"&&P(e.$id)&&ao(e.additionalProperties)&&A(e.patternProperties)&&(t=>{let n=Object.getOwnPropertyNames(t.patternProperties);return n.length===1&&io(n[0])&&A(t.patternProperties)&&q(t.patternProperties[n[0]])})(e)}function Ga(e){return A(e)&&Ie in e&&e[Ie]==="Recursive"}function No(e){return I(e,"Ref")&&P(e.$id)&&C(e.$ref)}function Uo(e){return I(e,"RegExp")&&P(e.$id)&&C(e.source)&&C(e.flags)&&M(e.maxLength)&&M(e.minLength)}function _o(e){return I(e,"String")&&e.type==="string"&&P(e.$id)&&M(e.minLength)&&M(e.maxLength)&&Ua(e.pattern)&&_a(e.format)}function Lo(e){return I(e,"Symbol")&&e.type==="symbol"&&P(e.$id)}function Ko(e){return I(e,"TemplateLiteral")&&e.type==="string"&&C(e.pattern)&&e.pattern[0]==="^"&&e.pattern[e.pattern.length-1]==="$"}function Do(e){return I(e,"This")&&P(e.$id)&&C(e.$ref)}function jo(e){return A(e)&&V in e}function Go(e){return I(e,"Tuple")&&e.type==="array"&&P(e.$id)&&ue(e.minItems)&&ue(e.maxItems)&&e.minItems===e.maxItems&&(D(e.items)&&D(e.additionalItems)&&e.minItems===0||K(e.items)&&e.items.every(t=>q(t)))}function Vo(e){return I(e,"Undefined")&&e.type==="undefined"&&P(e.$id)}function Va(e){return hr(e)&&e.anyOf.every(t=>wo(t)||Ao(t))}function hr(e){return I(e,"Union")&&P(e.$id)&&A(e)&&K(e.anyOf)&&e.anyOf.every(t=>q(t))}function Ho(e){return I(e,"Uint8Array")&&e.type==="Uint8Array"&&P(e.$id)&&M(e.minByteLength)&&M(e.maxByteLength)}function Bo(e){return I(e,"Unknown")&&P(e.$id)}function Wo(e){return I(e,"Unsafe")}function qo(e){return I(e,"Void")&&e.type==="void"&&P(e.$id)}function zo(e){return A(e)&&m in e&&C(e[m])&&!Na.includes(e[m])}function q(e){return A(e)&&(co(e)||mo(e)||po(e)||go(e)||fo(e)||lo(e)||Io(e)||ho(e)||yo(e)||xo(e)||So(e)||To(e)||bo(e)||qt(e)||Ro(e)||Oo(e)||Co(e)||Mo(e)||Eo(e)||ko(e)||Fo(e)||$o(e)||vo(e)||No(e)||Uo(e)||_o(e)||Lo(e)||Ko(e)||Do(e)||Go(e)||Vo(e)||hr(e)||Ho(e)||Bo(e)||Wo(e)||qo(e)||zo(e))}var yr="(true|false)",zt="(0|[1-9][0-9]*)",xr="(.*)",Ha="(?!.*)",wf=`^${yr}$`,ze=`^${zt}$`,Ye=`^${xr}$`,Yo=`^${Ha}$`;function Jo(e,t){return e.includes(t)}function Xo(e){return[...new Set(e)]}function Ba(e,t){return e.filter(n=>t.includes(n))}function Wa(e,t){return e.reduce((n,r)=>Ba(n,r),t)}function Qo(e){return e.length===1?e[0]:e.length>1?Wa(e.slice(1),e[0]):[]}function Zo(e){let t=[];for(let n of e)t.push(...n);return t}function Je(e){return u({[m]:"Any"},e)}function St(e,t){return u({[m]:"Array",type:"array",items:e},t)}function es(e){return u({[m]:"Argument",index:e})}function Tt(e,t){return u({[m]:"AsyncIterator",type:"AsyncIterator",items:e},t)}function k(e,t,n){return u({[m]:"Computed",target:e,parameters:t},n)}function qa(e,t){let{[t]:n,...r}=e;return r}function N(e,t){return t.reduce((n,r)=>qa(n,r),e)}function x(e){return u({[m]:"Never",not:{}},e)}function S(e){return u({[m]:"MappedResult",properties:e})}function bt(e,t,n){return u({[m]:"Constructor",type:"Constructor",parameters:e,returns:t},n)}function Ne(e,t,n){return u({[m]:"Function",type:"Function",parameters:e,returns:t},n)}function Yt(e,t){return u({[m]:"Union",anyOf:e},t)}function za(e){return e.some(t=>re(t))}function ts(e){return e.map(t=>re(t)?Ya(t):t)}function Ya(e){return N(e,[Y])}function Ja(e,t){return za(e)?X(Yt(ts(e),t)):Yt(ts(e),t)}function Ue(e,t){return e.length===1?u(e[0],t):e.length===0?x(t):Ja(e,t)}function w(e,t){return e.length===0?x(t):e.length===1?u(e[0],t):Yt(e,t)}var fn=class extends W{};function Xa(e){return e.replace(/\\\$/g,"$").replace(/\\\*/g,"*").replace(/\\\^/g,"^").replace(/\\\|/g,"|").replace(/\\\(/g,"(").replace(/\\\)/g,")")}function Sr(e,t,n){return e[t]===n&&e.charCodeAt(t-1)!==92}function He(e,t){return Sr(e,t,"(")}function Jt(e,t){return Sr(e,t,")")}function ns(e,t){return Sr(e,t,"|")}function Qa(e){if(!(He(e,0)&&Jt(e,e.length-1)))return!1;let t=0;for(let n=0;n<e.length;n++)if(He(e,n)&&(t+=1),Jt(e,n)&&(t-=1),t===0&&n!==e.length-1)return!1;return!0}function Za(e){return e.slice(1,e.length-1)}function eu(e){let t=0;for(let n=0;n<e.length;n++)if(He(e,n)&&(t+=1),Jt(e,n)&&(t-=1),ns(e,n)&&t===0)return!0;return!1}function tu(e){for(let t=0;t<e.length;t++)if(He(e,t))return!0;return!1}function nu(e){let[t,n]=[0,0],r=[];for(let i=0;i<e.length;i++)if(He(e,i)&&(t+=1),Jt(e,i)&&(t-=1),ns(e,i)&&t===0){let s=e.slice(n,i);s.length>0&&r.push(wt(s)),n=i+1}let o=e.slice(n);return o.length>0&&r.push(wt(o)),r.length===0?{type:"const",const:""}:r.length===1?r[0]:{type:"or",expr:r}}function ru(e){function t(o,i){if(!He(o,i))throw new fn("TemplateLiteralParser: Index must point to open parens");let s=0;for(let c=i;c<o.length;c++)if(He(o,c)&&(s+=1),Jt(o,c)&&(s-=1),s===0)return[i,c];throw new fn("TemplateLiteralParser: Unclosed group parens in expression")}function n(o,i){for(let s=i;s<o.length;s++)if(He(o,s))return[i,s];return[i,o.length]}let r=[];for(let o=0;o<e.length;o++)if(He(e,o)){let[i,s]=t(e,o),c=e.slice(i,s+1);r.push(wt(c)),o=s}else{let[i,s]=n(e,o),c=e.slice(i,s);c.length>0&&r.push(wt(c)),o=s-1}return r.length===0?{type:"const",const:""}:r.length===1?r[0]:{type:"and",expr:r}}function wt(e){return Qa(e)?wt(Za(e)):eu(e)?nu(e):tu(e)?ru(e):{type:"const",const:Xa(e)}}function At(e){return wt(e.slice(1,e.length-1))}var Tr=class extends W{};function ou(e){return e.type==="or"&&e.expr.length===2&&e.expr[0].type==="const"&&e.expr[0].const==="0"&&e.expr[1].type==="const"&&e.expr[1].const==="[1-9][0-9]*"}function su(e){return e.type==="or"&&e.expr.length===2&&e.expr[0].type==="const"&&e.expr[0].const==="true"&&e.expr[1].type==="const"&&e.expr[1].const==="false"}function iu(e){return e.type==="const"&&e.const===".*"}function pt(e){return ou(e)||iu(e)?!1:su(e)?!0:e.type==="and"?e.expr.every(t=>pt(t)):e.type==="or"?e.expr.every(t=>pt(t)):e.type==="const"?!0:(()=>{throw new Tr("Unknown expression type")})()}function rs(e){let t=At(e.pattern);return pt(t)}var br=class extends W{};function*os(e){if(e.length===1)return yield*e[0];for(let t of e[0])for(let n of os(e.slice(1)))yield`${t}${n}`}function*au(e){return yield*os(e.expr.map(t=>[...Xt(t)]))}function*uu(e){for(let t of e.expr)yield*Xt(t)}function*du(e){return yield e.const}function*Xt(e){return e.type==="and"?yield*au(e):e.type==="or"?yield*uu(e):e.type==="const"?yield*du(e):(()=>{throw new br("Unknown expression")})()}function gn(e){let t=At(e.pattern);return pt(t)?[...Xt(t)]:[]}function b(e,t){return u({[m]:"Literal",const:e,type:typeof e},t)}function In(e){return u({[m]:"Boolean",type:"boolean"},e)}function Pt(e){return u({[m]:"BigInt",type:"bigint"},e)}function he(e){return u({[m]:"Number",type:"number"},e)}function ke(e){return u({[m]:"String",type:"string"},e)}function*cu(e){let t=e.trim().replace(/"|'/g,"");return t==="boolean"?yield In():t==="number"?yield he():t==="bigint"?yield Pt():t==="string"?yield ke():yield(()=>{let n=t.split("|").map(r=>b(r.trim()));return n.length===0?x():n.length===1?n[0]:Ue(n)})()}function*mu(e){if(e[1]!=="{"){let t=b("$"),n=wr(e.slice(1));return yield*[t,...n]}for(let t=2;t<e.length;t++)if(e[t]==="}"){let n=cu(e.slice(2,t)),r=wr(e.slice(t+1));return yield*[...n,...r]}yield b(e)}function*wr(e){for(let t=0;t<e.length;t++)if(e[t]==="$"){let n=b(e.slice(0,t)),r=mu(e.slice(t));return yield*[n,...r]}yield b(e)}function ss(e){return[...wr(e)]}var Ar=class extends W{};function pu(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function is(e,t){return me(e)?e.pattern.slice(1,e.pattern.length-1):y(e)?`(${e.anyOf.map(n=>is(n,t)).join("|")})`:Ee(e)?`${t}${zt}`:Me(e)?`${t}${zt}`:ut(e)?`${t}${zt}`:Ge(e)?`${t}${xr}`:de(e)?`${t}${pu(e.const.toString())}`:je(e)?`${t}${yr}`:(()=>{throw new Ar(`Unexpected Kind '${e[m]}'`)})()}function Pr(e){return`^${e.map(t=>is(t,"")).join("")}$`}function lt(e){let n=gn(e).map(r=>b(r));return Ue(n)}function hn(e,t){let n=C(e)?Pr(ss(e)):Pr(e);return u({[m]:"TemplateLiteral",type:"string",pattern:n},t)}function lu(e){return gn(e).map(n=>n.toString())}function fu(e){let t=[];for(let n of e)t.push(...oe(n));return t}function gu(e){return[e.toString()]}function oe(e){return[...new Set(me(e)?lu(e):y(e)?fu(e.anyOf):de(e)?gu(e.const):Ee(e)?["[number]"]:Me(e)?["[number]"]:[])]}function Iu(e,t,n){let r={};for(let o of Object.getOwnPropertyNames(t))r[o]=Xe(e,oe(t[o]),n);return r}function hu(e,t,n){return Iu(e,t.properties,n)}function as(e,t,n){let r=hu(e,t,n);return S(r)}function ds(e,t){return e.map(n=>cs(n,t))}function yu(e){return e.filter(t=>!We(t))}function xu(e,t){return yn(yu(ds(e,t)))}function Su(e){return e.some(t=>We(t))?[]:e}function Tu(e,t){return Ue(Su(ds(e,t)))}function bu(e,t){return t in e?e[t]:t==="[number]"?Ue(e):x()}function wu(e,t){return t==="[number]"?e:x()}function Au(e,t){return t in e?e[t]:x()}function cs(e,t){return v(e)?xu(e.allOf,t):y(e)?Tu(e.anyOf,t):pe(e)?bu(e.items??[],t):Pe(e)?wu(e.items,t):j(e)?Au(e.properties,t):x()}function Rr(e,t){return t.map(n=>cs(e,n))}function us(e,t){return Ue(Rr(e,t))}function Xe(e,t,n){if(L(e)||L(t)){let r="Index types using Ref parameters require both Type and Key to be of TSchema";if(!le(e)||!le(t))throw new W(r);return k("Index",[e,t])}return $(t)?as(e,t,n):ce(t)?ms(e,t,n):u(le(t)?us(e,oe(t)):us(e,t),n)}function Pu(e,t,n){return{[t]:Xe(e,[t],F(n))}}function Ru(e,t,n){return t.reduce((r,o)=>({...r,...Pu(e,o,n)}),{})}function Ou(e,t,n){return Ru(e,t.keys,n)}function ms(e,t,n){let r=Ou(e,t,n);return S(r)}function Rt(e,t){return u({[m]:"Iterator",type:"Iterator",items:e},t)}function Cu(e){return globalThis.Object.keys(e).filter(t=>!re(e[t]))}function Mu(e,t){let n=Cu(e),r=n.length>0?{[m]:"Object",type:"object",required:n,properties:e}:{[m]:"Object",type:"object",properties:e};return u(r,t)}var R=Mu;function xn(e,t){return u({[m]:"Promise",type:"Promise",item:e},t)}function Eu(e){return u(N(e,[Ae]))}function ku(e){return u({...e,[Ae]:"Readonly"})}function Fu(e,t){return t===!1?Eu(e):ku(e)}function se(e,t){let n=t??!0;return $(e)?ps(e,n):Fu(e,n)}function $u(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=se(e[r],t);return n}function vu(e,t){return $u(e.properties,t)}function ps(e,t){let n=vu(e,t);return S(n)}function ye(e,t){return u(e.length>0?{[m]:"Tuple",type:"array",items:e,additionalItems:!1,minItems:e.length,maxItems:e.length}:{[m]:"Tuple",type:"array",minItems:e.length,maxItems:e.length},t)}function ls(e,t){return e in t?xe(e,t[e]):S(t)}function Nu(e){return{[e]:b(e)}}function Uu(e){let t={};for(let n of e)t[n]=b(n);return t}function _u(e,t){return Jo(t,e)?Nu(e):Uu(t)}function Lu(e,t){let n=_u(e,t);return ls(e,n)}function Qt(e,t){return t.map(n=>xe(e,n))}function Ku(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(t))n[r]=xe(e,t[r]);return n}function xe(e,t){let n={...t};return re(t)?X(xe(e,N(t,[Y]))):xt(t)?se(xe(e,N(t,[Ae]))):$(t)?ls(e,t.properties):ce(t)?Lu(e,t.keys):Oe(t)?bt(Qt(e,t.parameters),xe(e,t.returns),n):Ce(t)?Ne(Qt(e,t.parameters),xe(e,t.returns),n):at(t)?Tt(xe(e,t.items),n):dt(t)?Rt(xe(e,t.items),n):v(t)?Q(Qt(e,t.allOf),n):y(t)?w(Qt(e,t.anyOf),n):pe(t)?ye(Qt(e,t.items??[]),n):j(t)?R(Ku(e,t.properties),n):Pe(t)?St(xe(e,t.items),n):ct(t)?xn(xe(e,t.item),n):t}function Du(e,t){let n={};for(let r of e)n[r]=xe(r,t);return n}function fs(e,t,n){let r=le(e)?oe(e):e,o=t({[m]:"MappedKey",keys:r}),i=Du(r,o);return R(i,n)}function ju(e){return u(N(e,[Y]))}function Gu(e){return u({...e,[Y]:"Optional"})}function Vu(e,t){return t===!1?ju(e):Gu(e)}function X(e,t){let n=t??!0;return $(e)?gs(e,n):Vu(e,n)}function Hu(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=X(e[r],t);return n}function Bu(e,t){return Hu(e.properties,t)}function gs(e,t){let n=Bu(e,t);return S(n)}function Zt(e,t={}){let n=e.every(o=>j(o)),r=le(t.unevaluatedProperties)?{unevaluatedProperties:t.unevaluatedProperties}:{};return u(t.unevaluatedProperties===!1||le(t.unevaluatedProperties)||n?{...r,[m]:"Intersect",type:"object",allOf:e}:{...r,[m]:"Intersect",allOf:e},t)}function Wu(e){return e.every(t=>re(t))}function qu(e){return N(e,[Y])}function Is(e){return e.map(t=>re(t)?qu(t):t)}function zu(e,t){return Wu(e)?X(Zt(Is(e),t)):Zt(Is(e),t)}function yn(e,t={}){if(e.length===1)return u(e[0],t);if(e.length===0)return x(t);if(e.some(n=>qe(n)))throw new Error("Cannot intersect transform types");return zu(e,t)}function Q(e,t){if(e.length===1)return u(e[0],t);if(e.length===0)return x(t);if(e.some(n=>qe(n)))throw new Error("Cannot intersect transform types");return Zt(e,t)}function _e(...e){let[t,n]=typeof e[0]=="string"?[e[0],e[1]]:[e[0].$id,e[1]];if(typeof t!="string")throw new W("Ref: $ref must be a string");return u({[m]:"Ref",$ref:t},n)}function Yu(e,t){return k("Awaited",[k(e,t)])}function Ju(e){return k("Awaited",[_e(e)])}function Xu(e){return Q(hs(e))}function Qu(e){return w(hs(e))}function Zu(e){return Ot(e)}function hs(e){return e.map(t=>Ot(t))}function Ot(e,t){return u(Re(e)?Yu(e.target,e.parameters):v(e)?Xu(e.allOf):y(e)?Qu(e.anyOf):ct(e)?Zu(e.item):L(e)?Ju(e.$ref):e,t)}function ys(e){let t=[];for(let n of e)t.push(en(n));return t}function ed(e){let t=ys(e);return Zo(t)}function td(e){let t=ys(e);return Qo(t)}function nd(e){return e.map((t,n)=>n.toString())}function rd(e){return["[number]"]}function od(e){return globalThis.Object.getOwnPropertyNames(e)}function sd(e){return id?globalThis.Object.getOwnPropertyNames(e).map(n=>n[0]==="^"&&n[n.length-1]==="$"?n.slice(1,n.length-1):n):[]}function en(e){return v(e)?ed(e.allOf):y(e)?td(e.anyOf):pe(e)?nd(e.items??[]):Pe(e)?rd(e.items):j(e)?od(e.properties):mt(e)?sd(e.patternProperties):[]}var id=!1;function ad(e,t){return k("KeyOf",[k(e,t)])}function ud(e){return k("KeyOf",[_e(e)])}function dd(e,t){let n=en(e),r=cd(n),o=Ue(r);return u(o,t)}function cd(e){return e.map(t=>t==="[number]"?he():b(t))}function Ct(e,t){return Re(e)?ad(e.target,e.parameters):L(e)?ud(e.$ref):$(e)?xs(e,t):dd(e,t)}function md(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=Ct(e[r],F(t));return n}function pd(e,t){return md(e.properties,t)}function xs(e,t){let n=pd(e,t);return S(n)}function ld(e){let t=[];for(let n of e)t.push(...en(n));return Xo(t)}function fd(e){return e.filter(t=>!We(t))}function gd(e,t){let n=[];for(let r of e)n.push(...Rr(r,[t]));return fd(n)}function Id(e,t){let n={};for(let r of t)n[r]=yn(gd(e,r));return n}function Ss(e,t){let n=ld(e),r=Id(e,n);return R(r,t)}function Sn(e){return u({[m]:"Date",type:"Date"},e)}function Tn(e){return u({[m]:"Null",type:"null"},e)}function bn(e){return u({[m]:"Symbol",type:"symbol"},e)}function wn(e){return u({[m]:"Undefined",type:"undefined"},e)}function An(e){return u({[m]:"Uint8Array",type:"Uint8Array"},e)}function Qe(e){return u({[m]:"Unknown"},e)}function hd(e){return e.map(t=>Or(t,!1))}function yd(e){let t={};for(let n of globalThis.Object.getOwnPropertyNames(e))t[n]=se(Or(e[n],!1));return t}function Pn(e,t){return t===!0?e:se(e)}function Or(e,t){return ir(e)?Pn(Je(),t):ur(e)?Pn(Je(),t):K(e)?se(ye(hd(e))):De(e)?An():it(e)?Sn():A(e)?Pn(R(yd(e)),t):ar(e)?Pn(Ne([],Qe()),t):D(e)?wn():dr(e)?Tn():cr(e)?bn():Dt(e)?Pt():ue(e)?b(e):Ke(e)?b(e):C(e)?b(e):R({})}function Ts(e,t){return u(Or(e,!0),t)}function bs(e,t){return Oe(e)?ye(e.parameters,t):x(t)}function ws(e,t){if(D(e))throw new Error("Enum undefined or empty");let n=globalThis.Object.getOwnPropertyNames(e).filter(i=>isNaN(i)).map(i=>e[i]),o=[...new Set(n)].map(i=>b(i));return w(o,{...t,[Ie]:"Enum"})}var Mr=class extends W{},d;(function(e){e[e.Union=0]="Union",e[e.True=1]="True",e[e.False=2]="False"})(d||(d={}));function Se(e){return e===d.False?e:d.True}function Mt(e){throw new Mr(e)}function H(e){return a.IsNever(e)||a.IsIntersect(e)||a.IsUnion(e)||a.IsUnknown(e)||a.IsAny(e)}function B(e,t){return a.IsNever(t)?Es(e,t):a.IsIntersect(t)?Rn(e,t):a.IsUnion(t)?$r(e,t):a.IsUnknown(t)?vs(e,t):a.IsAny(t)?Fr(e,t):Mt("StructuralRight")}function Fr(e,t){return d.True}function xd(e,t){return a.IsIntersect(t)?Rn(e,t):a.IsUnion(t)&&t.anyOf.some(n=>a.IsAny(n)||a.IsUnknown(n))?d.True:a.IsUnion(t)?d.Union:a.IsUnknown(t)||a.IsAny(t)?d.True:d.Union}function Sd(e,t){return a.IsUnknown(e)?d.False:a.IsAny(e)?d.Union:a.IsNever(e)?d.True:d.False}function Td(e,t){return a.IsObject(t)&&On(t)?d.True:H(t)?B(e,t):a.IsArray(t)?Se(O(e.items,t.items)):d.False}function bd(e,t){return H(t)?B(e,t):a.IsAsyncIterator(t)?Se(O(e.items,t.items)):d.False}function wd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsBigInt(t)?d.True:d.False}function Cs(e,t){return a.IsLiteralBoolean(e)||a.IsBoolean(e)?d.True:d.False}function Ad(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsBoolean(t)?d.True:d.False}function Pd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsConstructor(t)?e.parameters.length>t.parameters.length?d.False:e.parameters.every((n,r)=>Se(O(t.parameters[r],n))===d.True)?Se(O(e.returns,t.returns)):d.False:d.False}function Rd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsDate(t)?d.True:d.False}function Od(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsFunction(t)?e.parameters.length>t.parameters.length?d.False:e.parameters.every((n,r)=>Se(O(t.parameters[r],n))===d.True)?Se(O(e.returns,t.returns)):d.False:d.False}function Ms(e,t){return a.IsLiteral(e)&&J.IsNumber(e.const)||a.IsNumber(e)||a.IsInteger(e)?d.True:d.False}function Cd(e,t){return a.IsInteger(t)||a.IsNumber(t)?d.True:H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):d.False}function Rn(e,t){return t.allOf.every(n=>O(e,n)===d.True)?d.True:d.False}function Md(e,t){return e.allOf.some(n=>O(n,t)===d.True)?d.True:d.False}function Ed(e,t){return H(t)?B(e,t):a.IsIterator(t)?Se(O(e.items,t.items)):d.False}function kd(e,t){return a.IsLiteral(t)&&t.const===e.const?d.True:H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsString(t)?$s(e,t):a.IsNumber(t)?ks(e,t):a.IsInteger(t)?Ms(e,t):a.IsBoolean(t)?Cs(e,t):d.False}function Es(e,t){return d.False}function Fd(e,t){return d.True}function As(e){let[t,n]=[e,0];for(;a.IsNot(t);)t=t.not,n+=1;return n%2===0?t:Qe()}function $d(e,t){return a.IsNot(e)?O(As(e),t):a.IsNot(t)?O(e,As(t)):Mt("Invalid fallthrough for Not")}function vd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsNull(t)?d.True:d.False}function ks(e,t){return a.IsLiteralNumber(e)||a.IsNumber(e)||a.IsInteger(e)?d.True:d.False}function Nd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsInteger(t)||a.IsNumber(t)?d.True:d.False}function ie(e,t){return Object.getOwnPropertyNames(e.properties).length===t}function Ps(e){return On(e)}function Rs(e){return ie(e,0)||ie(e,1)&&"description"in e.properties&&a.IsUnion(e.properties.description)&&e.properties.description.anyOf.length===2&&(a.IsString(e.properties.description.anyOf[0])&&a.IsUndefined(e.properties.description.anyOf[1])||a.IsString(e.properties.description.anyOf[1])&&a.IsUndefined(e.properties.description.anyOf[0]))}function Cr(e){return ie(e,0)}function Os(e){return ie(e,0)}function Ud(e){return ie(e,0)}function _d(e){return ie(e,0)}function Ld(e){return On(e)}function Kd(e){let t=he();return ie(e,0)||ie(e,1)&&"length"in e.properties&&Se(O(e.properties.length,t))===d.True}function Dd(e){return ie(e,0)}function On(e){let t=he();return ie(e,0)||ie(e,1)&&"length"in e.properties&&Se(O(e.properties.length,t))===d.True}function jd(e){let t=Ne([Je()],Je());return ie(e,0)||ie(e,1)&&"then"in e.properties&&Se(O(e.properties.then,t))===d.True}function Fs(e,t){return O(e,t)===d.False||a.IsOptional(e)&&!a.IsOptional(t)?d.False:d.True}function Z(e,t){return a.IsUnknown(e)?d.False:a.IsAny(e)?d.Union:a.IsNever(e)||a.IsLiteralString(e)&&Ps(t)||a.IsLiteralNumber(e)&&Cr(t)||a.IsLiteralBoolean(e)&&Os(t)||a.IsSymbol(e)&&Rs(t)||a.IsBigInt(e)&&Ud(t)||a.IsString(e)&&Ps(t)||a.IsSymbol(e)&&Rs(t)||a.IsNumber(e)&&Cr(t)||a.IsInteger(e)&&Cr(t)||a.IsBoolean(e)&&Os(t)||a.IsUint8Array(e)&&Ld(t)||a.IsDate(e)&&_d(t)||a.IsConstructor(e)&&Dd(t)||a.IsFunction(e)&&Kd(t)?d.True:a.IsRecord(e)&&a.IsString(Er(e))?t[Ie]==="Record"?d.True:d.False:a.IsRecord(e)&&a.IsNumber(Er(e))&&ie(t,0)?d.True:d.False}function Gd(e,t){return H(t)?B(e,t):a.IsRecord(t)?Te(e,t):a.IsObject(t)?(()=>{for(let n of Object.getOwnPropertyNames(t.properties)){if(!(n in e.properties)&&!a.IsOptional(t.properties[n]))return d.False;if(a.IsOptional(t.properties[n]))return d.True;if(Fs(e.properties[n],t.properties[n])===d.False)return d.False}return d.True})():d.False}function Vd(e,t){return H(t)?B(e,t):a.IsObject(t)&&jd(t)?d.True:a.IsPromise(t)?Se(O(e.item,t.item)):d.False}function Er(e){return ze in e.patternProperties?he():Ye in e.patternProperties?ke():Mt("Unknown record key pattern")}function kr(e){return ze in e.patternProperties?e.patternProperties[ze]:Ye in e.patternProperties?e.patternProperties[Ye]:Mt("Unable to get record value schema")}function Te(e,t){let[n,r]=[Er(t),kr(t)];return a.IsLiteralString(e)&&a.IsNumber(n)&&Se(O(e,r))===d.True?d.True:a.IsUint8Array(e)&&a.IsNumber(n)||a.IsString(e)&&a.IsNumber(n)||a.IsArray(e)&&a.IsNumber(n)?O(e,r):a.IsObject(e)?(()=>{for(let o of Object.getOwnPropertyNames(e.properties))if(Fs(r,e.properties[o])===d.False)return d.False;return d.True})():d.False}function Hd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?O(kr(e),kr(t)):d.False}function Bd(e,t){let n=a.IsRegExp(e)?ke():e,r=a.IsRegExp(t)?ke():t;return O(n,r)}function $s(e,t){return a.IsLiteral(e)&&J.IsString(e.const)||a.IsString(e)?d.True:d.False}function Wd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsString(t)?d.True:d.False}function qd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsSymbol(t)?d.True:d.False}function zd(e,t){return a.IsTemplateLiteral(e)?O(lt(e),t):a.IsTemplateLiteral(t)?O(e,lt(t)):Mt("Invalid fallthrough for TemplateLiteral")}function Yd(e,t){return a.IsArray(t)&&e.items!==void 0&&e.items.every(n=>O(n,t.items)===d.True)}function Jd(e,t){return a.IsNever(e)?d.True:a.IsUnknown(e)?d.False:a.IsAny(e)?d.Union:d.False}function Xd(e,t){return H(t)?B(e,t):a.IsObject(t)&&On(t)||a.IsArray(t)&&Yd(e,t)?d.True:a.IsTuple(t)?J.IsUndefined(e.items)&&!J.IsUndefined(t.items)||!J.IsUndefined(e.items)&&J.IsUndefined(t.items)?d.False:J.IsUndefined(e.items)&&!J.IsUndefined(t.items)||e.items.every((n,r)=>O(n,t.items[r])===d.True)?d.True:d.False:d.False}function Qd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsUint8Array(t)?d.True:d.False}function Zd(e,t){return H(t)?B(e,t):a.IsObject(t)?Z(e,t):a.IsRecord(t)?Te(e,t):a.IsVoid(t)?nc(e,t):a.IsUndefined(t)?d.True:d.False}function $r(e,t){return t.anyOf.some(n=>O(e,n)===d.True)?d.True:d.False}function ec(e,t){return e.anyOf.every(n=>O(n,t)===d.True)?d.True:d.False}function vs(e,t){return d.True}function tc(e,t){return a.IsNever(t)?Es(e,t):a.IsIntersect(t)?Rn(e,t):a.IsUnion(t)?$r(e,t):a.IsAny(t)?Fr(e,t):a.IsString(t)?$s(e,t):a.IsNumber(t)?ks(e,t):a.IsInteger(t)?Ms(e,t):a.IsBoolean(t)?Cs(e,t):a.IsArray(t)?Sd(e,t):a.IsTuple(t)?Jd(e,t):a.IsObject(t)?Z(e,t):a.IsUnknown(t)?d.True:d.False}function nc(e,t){return a.IsUndefined(e)||a.IsUndefined(e)?d.True:d.False}function rc(e,t){return a.IsIntersect(t)?Rn(e,t):a.IsUnion(t)?$r(e,t):a.IsUnknown(t)?vs(e,t):a.IsAny(t)?Fr(e,t):a.IsObject(t)?Z(e,t):a.IsVoid(t)?d.True:d.False}function O(e,t){return a.IsTemplateLiteral(e)||a.IsTemplateLiteral(t)?zd(e,t):a.IsRegExp(e)||a.IsRegExp(t)?Bd(e,t):a.IsNot(e)||a.IsNot(t)?$d(e,t):a.IsAny(e)?xd(e,t):a.IsArray(e)?Td(e,t):a.IsBigInt(e)?wd(e,t):a.IsBoolean(e)?Ad(e,t):a.IsAsyncIterator(e)?bd(e,t):a.IsConstructor(e)?Pd(e,t):a.IsDate(e)?Rd(e,t):a.IsFunction(e)?Od(e,t):a.IsInteger(e)?Cd(e,t):a.IsIntersect(e)?Md(e,t):a.IsIterator(e)?Ed(e,t):a.IsLiteral(e)?kd(e,t):a.IsNever(e)?Fd(e,t):a.IsNull(e)?vd(e,t):a.IsNumber(e)?Nd(e,t):a.IsObject(e)?Gd(e,t):a.IsRecord(e)?Hd(e,t):a.IsString(e)?Wd(e,t):a.IsSymbol(e)?qd(e,t):a.IsTuple(e)?Xd(e,t):a.IsPromise(e)?Vd(e,t):a.IsUint8Array(e)?Qd(e,t):a.IsUndefined(e)?Zd(e,t):a.IsUnion(e)?ec(e,t):a.IsUnknown(e)?tc(e,t):a.IsVoid(e)?rc(e,t):Mt(`Unknown left type operand '${e[m]}'`)}function Ze(e,t){return O(e,t)}function oc(e,t,n,r,o){let i={};for(let s of globalThis.Object.getOwnPropertyNames(e))i[s]=Et(e[s],t,n,r,F(o));return i}function sc(e,t,n,r,o){return oc(e.properties,t,n,r,o)}function Ns(e,t,n,r,o){let i=sc(e,t,n,r,o);return S(i)}function ic(e,t,n,r){let o=Ze(e,t);return o===d.Union?w([n,r]):o===d.True?n:r}function Et(e,t,n,r,o){return $(e)?Ns(e,t,n,r,o):ce(e)?u(Us(e,t,n,r,o)):u(ic(e,t,n,r),o)}function ac(e,t,n,r,o){return{[e]:Et(b(e),t,n,r,F(o))}}function uc(e,t,n,r,o){return e.reduce((i,s)=>({...i,...ac(s,t,n,r,o)}),{})}function dc(e,t,n,r,o){return uc(e.keys,t,n,r,o)}function Us(e,t,n,r,o){let i=dc(e,t,n,r,o);return S(i)}function _s(e,t){return kt(lt(e),t)}function cc(e,t){let n=e.filter(r=>Ze(r,t)===d.False);return n.length===1?n[0]:w(n)}function kt(e,t,n={}){return me(e)?u(_s(e,t),n):$(e)?u(Ls(e,t),n):u(y(e)?cc(e.anyOf,t):Ze(e,t)!==d.False?x():e,n)}function mc(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=kt(e[r],t);return n}function pc(e,t){return mc(e.properties,t)}function Ls(e,t){let n=pc(e,t);return S(n)}function Ks(e,t){return Ft(lt(e),t)}function lc(e,t){let n=e.filter(r=>Ze(r,t)!==d.False);return n.length===1?n[0]:w(n)}function Ft(e,t,n){return me(e)?u(Ks(e,t),n):$(e)?u(Ds(e,t),n):u(y(e)?lc(e.anyOf,t):Ze(e,t)!==d.False?e:x(),n)}function fc(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=Ft(e[r],t);return n}function gc(e,t){return fc(e.properties,t)}function Ds(e,t){let n=gc(e,t);return S(n)}function js(e,t){return Oe(e)?u(e.returns,t):x(t)}function Cn(e){return se(X(e))}function ft(e,t,n){return u({[m]:"Record",type:"object",patternProperties:{[e]:t}},n)}function vr(e,t,n){let r={};for(let o of e)r[o]=t;return R(r,{...n,[Ie]:"Record"})}function Ic(e,t,n){return rs(e)?vr(oe(e),t,n):ft(e.pattern,t,n)}function hc(e,t,n){return vr(oe(w(e)),t,n)}function yc(e,t,n){return vr([e.toString()],t,n)}function xc(e,t,n){return ft(e.source,t,n)}function Sc(e,t,n){let r=D(e.pattern)?Ye:e.pattern;return ft(r,t,n)}function Tc(e,t,n){return ft(Ye,t,n)}function bc(e,t,n){return ft(Yo,t,n)}function wc(e,t,n){return R({true:t,false:t},n)}function Ac(e,t,n){return ft(ze,t,n)}function Pc(e,t,n){return ft(ze,t,n)}function Mn(e,t,n={}){return y(e)?hc(e.anyOf,t,n):me(e)?Ic(e,t,n):de(e)?yc(e.const,t,n):je(e)?wc(e,t,n):Me(e)?Ac(e,t,n):Ee(e)?Pc(e,t,n):lr(e)?xc(e,t,n):Ge(e)?Sc(e,t,n):mr(e)?Tc(e,t,n):We(e)?bc(e,t,n):x(n)}function En(e){return globalThis.Object.getOwnPropertyNames(e.patternProperties)[0]}function Gs(e){let t=En(e);return t===Ye?ke():t===ze?he():ke({pattern:t})}function kn(e){return e.patternProperties[En(e)]}function Rc(e,t){return t.parameters=tn(e,t.parameters),t.returns=Fe(e,t.returns),t}function Oc(e,t){return t.parameters=tn(e,t.parameters),t.returns=Fe(e,t.returns),t}function Cc(e,t){return t.allOf=tn(e,t.allOf),t}function Mc(e,t){return t.anyOf=tn(e,t.anyOf),t}function Ec(e,t){return D(t.items)||(t.items=tn(e,t.items)),t}function kc(e,t){return t.items=Fe(e,t.items),t}function Fc(e,t){return t.items=Fe(e,t.items),t}function $c(e,t){return t.items=Fe(e,t.items),t}function vc(e,t){return t.item=Fe(e,t.item),t}function Nc(e,t){let n=Kc(e,t.properties);return{...t,...R(n)}}function Uc(e,t){let n=Fe(e,Gs(t)),r=Fe(e,kn(t)),o=Mn(n,r);return{...t,...o}}function _c(e,t){return t.index in e?e[t.index]:Qe()}function Lc(e,t){let n=xt(t),r=re(t),o=Fe(e,t);return n&&r?Cn(o):n&&!r?se(o):!n&&r?X(o):o}function Kc(e,t){return globalThis.Object.getOwnPropertyNames(t).reduce((n,r)=>({...n,[r]:Lc(e,t[r])}),{})}function tn(e,t){return t.map(n=>Fe(e,n))}function Fe(e,t){return Oe(t)?Rc(e,t):Ce(t)?Oc(e,t):v(t)?Cc(e,t):y(t)?Mc(e,t):pe(t)?Ec(e,t):Pe(t)?kc(e,t):at(t)?Fc(e,t):dt(t)?$c(e,t):ct(t)?vc(e,t):j(t)?Nc(e,t):mt(t)?Uc(e,t):pr(t)?_c(e,t):t}function Vs(e,t){return Fe(t,yt(e))}function Hs(e){return u({[m]:"Integer",type:"integer"},e)}function Dc(e,t,n){return{[e]:$e(b(e),t,F(n))}}function jc(e,t,n){return e.reduce((o,i)=>({...o,...Dc(i,t,n)}),{})}function Gc(e,t,n){return jc(e.keys,t,n)}function Bs(e,t,n){let r=Gc(e,t,n);return S(r)}function Vc(e){let[t,n]=[e.slice(0,1),e.slice(1)];return[t.toLowerCase(),n].join("")}function Hc(e){let[t,n]=[e.slice(0,1),e.slice(1)];return[t.toUpperCase(),n].join("")}function Bc(e){return e.toUpperCase()}function Wc(e){return e.toLowerCase()}function qc(e,t,n){let r=At(e.pattern);if(!pt(r))return{...e,pattern:Ws(e.pattern,t)};let s=[...Xt(r)].map(f=>b(f)),c=qs(s,t),p=w(c);return hn([p],n)}function Ws(e,t){return typeof e=="string"?t==="Uncapitalize"?Vc(e):t==="Capitalize"?Hc(e):t==="Uppercase"?Bc(e):t==="Lowercase"?Wc(e):e:e.toString()}function qs(e,t){return e.map(n=>$e(n,t))}function $e(e,t,n={}){return ce(e)?Bs(e,t,n):me(e)?qc(e,t,n):y(e)?w(qs(e.anyOf,t),n):de(e)?b(Ws(e.const,t),n):u(e,n)}function zs(e,t={}){return $e(e,"Capitalize",t)}function Ys(e,t={}){return $e(e,"Lowercase",t)}function Js(e,t={}){return $e(e,"Uncapitalize",t)}function Xs(e,t={}){return $e(e,"Uppercase",t)}function zc(e,t,n){let r={};for(let o of globalThis.Object.getOwnPropertyNames(e))r[o]=et(e[o],t,F(n));return r}function Yc(e,t,n){return zc(e.properties,t,n)}function Qs(e,t,n){let r=Yc(e,t,n);return S(r)}function Jc(e,t){return e.map(n=>Nr(n,t))}function Xc(e,t){return e.map(n=>Nr(n,t))}function Qc(e,t){let{[t]:n,...r}=e;return r}function Zc(e,t){return t.reduce((n,r)=>Qc(n,r),e)}function em(e,t,n){let r=N(e,[V,"$id","required","properties"]),o=Zc(n,t);return R(o,r)}function tm(e){let t=e.reduce((n,r)=>pn(r)?[...n,b(r)]:n,[]);return w(t)}function Nr(e,t){return v(e)?Q(Jc(e.allOf,t)):y(e)?w(Xc(e.anyOf,t)):j(e)?em(e,t,e.properties):R({})}function et(e,t,n){let r=K(t)?tm(t):t,o=le(t)?oe(t):t,i=L(e),s=L(t);return $(e)?Qs(e,o,n):ce(t)?Zs(e,t,n):i&&s?k("Omit",[e,r],n):!i&&s?k("Omit",[e,r],n):i&&!s?k("Omit",[e,r],n):u({...Nr(e,o),...n})}function nm(e,t,n){return{[t]:et(e,[t],F(n))}}function rm(e,t,n){return t.reduce((r,o)=>({...r,...nm(e,o,n)}),{})}function om(e,t,n){return rm(e,t.keys,n)}function Zs(e,t,n){let r=om(e,t,n);return S(r)}function sm(e,t,n){let r={};for(let o of globalThis.Object.getOwnPropertyNames(e))r[o]=tt(e[o],t,F(n));return r}function im(e,t,n){return sm(e.properties,t,n)}function ei(e,t,n){let r=im(e,t,n);return S(r)}function am(e,t){return e.map(n=>Ur(n,t))}function um(e,t){return e.map(n=>Ur(n,t))}function dm(e,t){let n={};for(let r of t)r in e&&(n[r]=e[r]);return n}function cm(e,t,n){let r=N(e,[V,"$id","required","properties"]),o=dm(n,t);return R(o,r)}function mm(e){let t=e.reduce((n,r)=>pn(r)?[...n,b(r)]:n,[]);return w(t)}function Ur(e,t){return v(e)?Q(am(e.allOf,t)):y(e)?w(um(e.anyOf,t)):j(e)?cm(e,t,e.properties):R({})}function tt(e,t,n){let r=K(t)?mm(t):t,o=le(t)?oe(t):t,i=L(e),s=L(t);return $(e)?ei(e,o,n):ce(t)?ti(e,t,n):i&&s?k("Pick",[e,r],n):!i&&s?k("Pick",[e,r],n):i&&!s?k("Pick",[e,r],n):u({...Ur(e,o),...n})}function pm(e,t,n){return{[t]:tt(e,[t],F(n))}}function lm(e,t,n){return t.reduce((r,o)=>({...r,...pm(e,o,n)}),{})}function fm(e,t,n){return lm(e,t.keys,n)}function ti(e,t,n){let r=fm(e,t,n);return S(r)}function gm(e,t){return k("Partial",[k(e,t)])}function Im(e){return k("Partial",[_e(e)])}function hm(e){let t={};for(let n of globalThis.Object.getOwnPropertyNames(e))t[n]=X(e[n]);return t}function ym(e,t){let n=N(e,[V,"$id","required","properties"]),r=hm(t);return R(r,n)}function ni(e){return e.map(t=>ri(t))}function ri(e){return Re(e)?gm(e.target,e.parameters):L(e)?Im(e.$ref):v(e)?Q(ni(e.allOf)):y(e)?w(ni(e.anyOf)):j(e)?ym(e,e.properties):ut(e)||je(e)||Me(e)||de(e)||Vt(e)||Ee(e)||Ge(e)||Ht(e)||Bt(e)?e:R({})}function $t(e,t){return $(e)?oi(e,t):u({...ri(e),...t})}function xm(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=$t(e[r],F(t));return n}function Sm(e,t){return xm(e.properties,t)}function oi(e,t){let n=Sm(e,t);return S(n)}function Tm(e,t){return k("Required",[k(e,t)])}function bm(e){return k("Required",[_e(e)])}function wm(e){let t={};for(let n of globalThis.Object.getOwnPropertyNames(e))t[n]=N(e[n],[Y]);return t}function Am(e,t){let n=N(e,[V,"$id","required","properties"]),r=wm(t);return R(r,n)}function si(e){return e.map(t=>ii(t))}function ii(e){return Re(e)?Tm(e.target,e.parameters):L(e)?bm(e.$ref):v(e)?Q(si(e.allOf)):y(e)?w(si(e.anyOf)):j(e)?Am(e,e.properties):ut(e)||je(e)||Me(e)||de(e)||Vt(e)||Ee(e)||Ge(e)||Ht(e)||Bt(e)?e:R({})}function vt(e,t){return $(e)?ai(e,t):u({...ii(e),...t})}function Pm(e,t){let n={};for(let r of globalThis.Object.getOwnPropertyNames(e))n[r]=vt(e[r],t);return n}function Rm(e,t){return Pm(e.properties,t)}function ai(e,t){let n=Rm(e,t);return S(n)}function Om(e,t){return t.map(n=>L(n)?_r(e,n.$ref):fe(e,n))}function _r(e,t){return t in e?L(e[t])?_r(e,e[t].$ref):fe(e,e[t]):x()}function Cm(e){return Ot(e[0])}function Mm(e){return Xe(e[0],e[1])}function Em(e){return Ct(e[0])}function km(e){return $t(e[0])}function Fm(e){return et(e[0],e[1])}function $m(e){return tt(e[0],e[1])}function vm(e){return vt(e[0])}function Nm(e,t,n){let r=Om(e,n);return t==="Awaited"?Cm(r):t==="Index"?Mm(r):t==="KeyOf"?Em(r):t==="Partial"?km(r):t==="Omit"?Fm(r):t==="Pick"?$m(r):t==="Required"?vm(r):x()}function Um(e,t){return St(fe(e,t))}function _m(e,t){return Tt(fe(e,t))}function Lm(e,t,n){return bt(nn(e,t),fe(e,n))}function Km(e,t,n){return Ne(nn(e,t),fe(e,n))}function Dm(e,t){return Q(nn(e,t))}function jm(e,t){return Rt(fe(e,t))}function Gm(e,t){return R(globalThis.Object.keys(t).reduce((n,r)=>({...n,[r]:fe(e,t[r])}),{}))}function Vm(e,t){let[n,r]=[fe(e,kn(t)),En(t)],o=yt(t);return o.patternProperties[r]=n,o}function Hm(e,t){return L(t)?{..._r(e,t.$ref),[V]:t[V]}:t}function Bm(e,t){return ye(nn(e,t))}function Wm(e,t){return w(nn(e,t))}function nn(e,t){return t.map(n=>fe(e,n))}function fe(e,t){return re(t)?u(fe(e,N(t,[Y])),t):xt(t)?u(fe(e,N(t,[Ae])),t):qe(t)?u(Hm(e,t),t):Pe(t)?u(Um(e,t.items),t):at(t)?u(_m(e,t.items),t):Re(t)?u(Nm(e,t.target,t.parameters)):Oe(t)?u(Lm(e,t.parameters,t.returns),t):Ce(t)?u(Km(e,t.parameters,t.returns),t):v(t)?u(Dm(e,t.allOf),t):dt(t)?u(jm(e,t.items),t):j(t)?u(Gm(e,t.properties),t):mt(t)?u(Vm(e,t)):pe(t)?u(Bm(e,t.items||[]),t):y(t)?u(Wm(e,t.anyOf),t):t}function qm(e,t){return t in e?fe(e,e[t]):x()}function ui(e){return globalThis.Object.getOwnPropertyNames(e).reduce((t,n)=>({...t,[n]:qm(e,n)}),{})}var Lr=class{constructor(t){let n=ui(t),r=this.WithIdentifiers(n);this.$defs=r}Import(t,n){let r={...this.$defs,[t]:u(this.$defs[t],n)};return u({[m]:"Import",$defs:r,$ref:t})}WithIdentifiers(t){return globalThis.Object.getOwnPropertyNames(t).reduce((n,r)=>({...n,[r]:{...t[r],$id:r}}),{})}};function di(e){return new Lr(e)}function ci(e,t){return u({[m]:"Not",not:e},t)}function mi(e,t){return Ce(e)?ye(e.parameters,t):x()}var zm=0;function pi(e,t={}){D(t.$id)&&(t.$id=`T${zm++}`);let n=yt(e({[m]:"This",$ref:`${t.$id}`}));return n.$id=t.$id,u({[Ie]:"Recursive",...n},t)}function li(e,t){let n=C(e)?new globalThis.RegExp(e):e;return u({[m]:"RegExp",type:"RegExp",source:n.source,flags:n.flags},t)}function Ym(e){return v(e)?e.allOf:y(e)?e.anyOf:pe(e)?e.items??[]:[]}function fi(e){return Ym(e)}function gi(e,t){return Ce(e)?u(e.returns,t):x(t)}var Kr=class{constructor(t){this.schema=t}Decode(t){return new Dr(this.schema,t)}},Dr=class{constructor(t,n){this.schema=t,this.decode=n}EncodeTransform(t,n){let i={Encode:s=>n[V].Encode(t(s)),Decode:s=>this.decode(n[V].Decode(s))};return{...n,[V]:i}}EncodeSchema(t,n){let r={Decode:this.decode,Encode:t};return{...n,[V]:r}}Encode(t){return qe(this.schema)?this.EncodeTransform(t,this.schema):this.EncodeSchema(t,this.schema)}};function Ii(e){return new Kr(e)}function hi(e={}){return u({[m]:e[m]??"Unsafe"},e)}function yi(e){return u({[m]:"Void",type:"void"},e)}var jr={};sr(jr,{Any:()=>Je,Argument:()=>es,Array:()=>St,AsyncIterator:()=>Tt,Awaited:()=>Ot,BigInt:()=>Pt,Boolean:()=>In,Capitalize:()=>zs,Composite:()=>Ss,Const:()=>Ts,Constructor:()=>bt,ConstructorParameters:()=>bs,Date:()=>Sn,Enum:()=>ws,Exclude:()=>kt,Extends:()=>Et,Extract:()=>Ft,Function:()=>Ne,Index:()=>Xe,InstanceType:()=>js,Instantiate:()=>Vs,Integer:()=>Hs,Intersect:()=>Q,Iterator:()=>Rt,KeyOf:()=>Ct,Literal:()=>b,Lowercase:()=>Ys,Mapped:()=>fs,Module:()=>di,Never:()=>x,Not:()=>ci,Null:()=>Tn,Number:()=>he,Object:()=>R,Omit:()=>et,Optional:()=>X,Parameters:()=>mi,Partial:()=>$t,Pick:()=>tt,Promise:()=>xn,Readonly:()=>se,ReadonlyOptional:()=>Cn,Record:()=>Mn,Recursive:()=>pi,Ref:()=>_e,RegExp:()=>li,Required:()=>vt,Rest:()=>fi,ReturnType:()=>gi,String:()=>ke,Symbol:()=>bn,TemplateLiteral:()=>hn,Transform:()=>Ii,Tuple:()=>ye,Uint8Array:()=>An,Uncapitalize:()=>Js,Undefined:()=>wn,Union:()=>w,Unknown:()=>Qe,Unsafe:()=>hi,Uppercase:()=>Xs,Void:()=>yi});var l=jr;var g=null;function Gr(e){g=e}import{readFileSync as Jm}from"fs";import{homedir as Xm}from"os";import{join as Qm}from"path";var rn,xi="claude-code",Fn={"claude-code":{defaultModel:"sonnet",allowedModels:["sonnet","opus"]},codex:{defaultModel:"gpt-5.4",allowedModels:["gpt-5.4"],reasoningEffort:"medium",approvalPolicy:"on-request"}};function Si(){if(rn!==void 0)return rn;try{let e=Jm(Qm(Xm(),".claude.json"),"utf-8");rn=JSON.parse(e).mcpServers??{}}catch{rn={}}return rn}var E={maxSessions:20,idleTimeoutMinutes:15,sessionGcAgeMinutes:1440,maxPersistedSessions:1e4,maxAutoResponds:10,permissionMode:"plan",planApproval:"delegate",codexApprovalPolicy:"on-request",harnesses:{"claude-code":{...Fn["claude-code"]},codex:{...Fn.codex}}};function Ti(e){let t=e.defaultHarness??xi,n={};for(let[r,o]of Object.entries(Fn))n[r]={...o,allowedModels:o.allowedModels?[...o.allowedModels]:void 0};for(let[r,o]of Object.entries(e.harnesses??{})){let s={...n[r]??{},...o};o.allowedModels!==void 0?s.allowedModels=o.allowedModels?[...o.allowedModels]:o.allowedModels:o.defaultModel!==void 0&&(s.allowedModels=void 0),n[r]=s}if(e.defaultModel!==void 0){let r=n[t]??{};n[t]={...r,defaultModel:e.harnesses?.[t]?.defaultModel??e.defaultModel,allowedModels:e.harnesses?.[t]?.allowedModels!==void 0?r.allowedModels:e.allowedModels},console.warn(`[openclaw-code-agent] config.defaultModel is deprecated; use harnesses.${t}.defaultModel instead.`)}if(e.model!==void 0){let r=n.codex??{};n.codex={...r,defaultModel:e.harnesses?.codex?.defaultModel??e.model,allowedModels:e.harnesses?.codex?.allowedModels!==void 0?r.allowedModels:e.allowedModels},console.warn("[openclaw-code-agent] config.model is deprecated; use harnesses.codex.defaultModel instead.")}if(e.reasoningEffort!==void 0){let r=n.codex??{};n.codex={...r,reasoningEffort:e.harnesses?.codex?.reasoningEffort??e.reasoningEffort},console.warn("[openclaw-code-agent] config.reasoningEffort is deprecated; use harnesses.codex.reasoningEffort instead.")}if(e.codexApprovalPolicy!==void 0){let r=n.codex??{};n.codex={...r,approvalPolicy:e.harnesses?.codex?.approvalPolicy??e.codexApprovalPolicy},console.warn("[openclaw-code-agent] config.codexApprovalPolicy is deprecated; use harnesses.codex.approvalPolicy instead.")}if(e.allowedModels!==void 0){console.warn("[openclaw-code-agent] config.allowedModels is deprecated; use harnesses.<name>.allowedModels instead.");for(let[r,o]of Object.entries(n))e.harnesses?.[r]?.allowedModels===void 0&&(n[r]={...o,allowedModels:void 0})}E={maxSessions:e.maxSessions??20,defaultWorkdir:e.defaultWorkdir,idleTimeoutMinutes:e.idleTimeoutMinutes??15,sessionGcAgeMinutes:e.sessionGcAgeMinutes??1440,maxPersistedSessions:e.maxPersistedSessions??1e4,fallbackChannel:e.fallbackChannel,agentChannels:e.agentChannels,maxAutoResponds:e.maxAutoResponds??10,permissionMode:e.permissionMode??"plan",codexApprovalPolicy:e.codexApprovalPolicy??"on-request",planApproval:e.planApproval??"delegate",defaultHarness:t,harnesses:n,allowedModels:e.allowedModels}}function nt(){return E.defaultHarness??xi}function Vr(e){let t=Fn[e],n=E.harnesses[e];return{...t,...n,allowedModels:n?.allowedModels??t?.allowedModels}}function rt(e){return Vr(e).defaultModel}function bi(e){return E.harnesses[e]?.allowedModels??E.allowedModels}function Nt(e){return Vr(e).reasoningEffort}function gt(e){return Vr(e).approvalPolicy}function wi(e){if(e.messageChannel){let t=e.messageChannel.split("|");if(t.length>=3)return e.messageChannel;if(e.agentAccountId&&t.length>=2)return`${t[0]}|${e.agentAccountId}|${t.slice(1).join("|")}`;if(t.length===1&&e.chatId)return`${t[0]}|${e.chatId}`;if(t.length===1&&e.senderId)return`${t[0]}|${e.senderId}`}if(e.workspaceDir){let t=on(e.workspaceDir);if(t)return t}if(e.messageChannel&&e.messageChannel.includes("|"))return e.messageChannel}function Ut(e,t){if(t&&String(t).includes("|"))return String(t);if(e?.channelId&&String(e.channelId).includes("|"))return String(e.channelId);if(e?.messageChannel){let n=String(e.messageChannel);if(n.includes("|"))return n;if(e.chatId)return`${n}|${e.chatId}`;if(e.senderId)return`${n}|${e.senderId}`}return e?.channel&&e?.chatId?`${e.channel}|${e.chatId}`:e?.channel&&e?.senderId?`${e.channel}|${e.senderId}`:e?.id&&/^-?\d+$/.test(String(e.id))?`telegram|${e.id}`:E.fallbackChannel??"unknown"}function _t(e){return e?.messageThreadId??void 0}function on(e){let t=E.agentChannels;if(!t)return;let n=i=>i.replace(/\/+$/,""),r=n(e),o=Object.entries(t).sort((i,s)=>s[0].length-i[0].length);for(let[i,s]of o)if(r===n(i)||r.startsWith(n(i)+"/"))return s}function Ai(e){if(!e)return;let t=e.match(/:topic:(\d+)$/);return t?parseInt(t[1],10):void 0}function Lt(e){let{requestedResumeSessionId:t,activeSession:n,persistedSession:r}=e;return t?n?{resumeSessionId:t,clearedPersistedCodexResume:!1}:r?.harness==="codex"?{resumeSessionId:void 0,clearedPersistedCodexResume:!0}:{resumeSessionId:t,clearedPersistedCodexResume:!1}:{resumeSessionId:void 0,clearedPersistedCodexResume:!1}}function ep(e){return e instanceof Error?e.message:String(e)}function tp(e){return!e||typeof e!="object"?!1:typeof e.prompt=="string"}function np(e,t){if(!t||t.length===0)return!0;if(!e)return!1;let n=e.toLowerCase();return t.some(r=>n.includes(r.toLowerCase()))}function Pi(e){return{name:"agent_launch",description:"Launch a coding agent session in background to execute a development task. Sessions are multi-turn by default \u2014 they stay open for follow-up messages via agent_respond. Set multi_turn_disabled: true for fire-and-forget sessions. Supports resuming previous sessions. Returns a session ID and name for tracking.",parameters:l.Object({prompt:l.String({description:"The task prompt to execute"}),name:l.Optional(l.String({description:"Short human-readable name for the session (kebab-case, e.g. 'fix-auth'). Auto-generated from prompt if omitted."})),workdir:l.Optional(l.String({description:"Working directory (defaults to cwd)"})),model:l.Optional(l.String({description:"Model name to use"})),system_prompt:l.Optional(l.String({description:"Additional system prompt"})),allowed_tools:l.Optional(l.Array(l.String(),{description:"List of allowed tools"})),resume_session_id:l.Optional(l.String({description:"Session ID to resume (from a previous session's harnessSessionId). Continues the conversation from where it left off."})),fork_session:l.Optional(l.Boolean({description:"When resuming, fork to a new session instead of continuing the existing one. Use with resume_session_id."})),multi_turn_disabled:l.Optional(l.Boolean({description:"Disable multi-turn mode. By default sessions stay open for follow-up messages. Set to true for fire-and-forget sessions."})),permission_mode:l.Optional(l.Union([l.Literal("default"),l.Literal("plan"),l.Literal("acceptEdits"),l.Literal("bypassPermissions")],{description:"Permission mode for the session. This is the plugin's orchestration mode, not the Codex SDK approval policy. Defaults to plugin config (plan by default)."})),harness:l.Optional(l.String({description:"Agent harness to use (e.g. 'claude-code'). Defaults to 'claude-code'."}))}),async execute(t,n){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};if(!tp(n))return{content:[{type:"text",text:"Error: Invalid parameters. Expected at least { prompt }."}]};n.agentId&&console.warn(`[agent_launch] \u26A0\uFE0F agentId="${n.agentId}" was passed as a parameter \u2014 this is WRONG. agentId is only for sessions_spawn (OpenClaw sub-agents), not agent_launch (CC sessions). The field is being ignored. ctx.agentId="${e.agentId}" will be used for origin routing instead.`);let r=n.workdir||e.workspaceDir||E.defaultWorkdir||process.cwd();if(!Zm(r))return{content:[{type:"text",text:`Error: Working directory does not exist: ${r}`}]};try{let o=n.harness??nt(),i=rt(o),s=n.model??i,c=n.model!==void 0;if(!s)return{content:[{type:"text",text:`Error: No default model configured for harness "${o}". Set plugins.entries["openclaw-code-agent"].config.harnesses.${o}.defaultModel or pass model explicitly.`}]};let p=bi(o);if(p&&p.length>0&&!np(s,p))return{content:[{type:"text",text:c?`Error: Model "${s}" is not allowed. Permitted models: ${p.join(", ")}`:`Error: Default model "${s||"undefined"}" is not in allowedModels (${p.join(", ")}). Update your plugin config to set a compatible defaultModel.`}]};let f=n.resume_session_id,T=f?g.resolve(f):void 0,U=f?g.getPersistedSession(f):void 0;if(f){let we=g.resolveHarnessSessionId(f);if(!we)return{content:[{type:"text",text:`Error: Could not resolve resume_session_id "${f}" to a session ID. Use agent_sessions to list available sessions.`}]};f=we}let{resumeSessionId:te,clearedPersistedCodexResume:ge}=Lt({requestedResumeSessionId:f,activeSession:T?{harnessSessionId:T.harnessSessionId}:void 0,persistedSession:U?{harness:U.harness}:void 0}),ae=wi(e),ee=Ut(e,ae||on(r)),z=e.sessionKey||void 0;!z&&e.agentId&&console.warn(`[agent_launch] ctx.sessionKey is not populated. ctx fields: agentId=${e.agentId}, messageChannel=${e.messageChannel}, agentAccountId=${e.agentAccountId}, workspaceDir=${e.workspaceDir}`);let _=g.spawn({prompt:n.prompt,name:n.name,workdir:r,model:s,reasoningEffort:Nt(o),systemPrompt:n.system_prompt,allowedTools:n.allowed_tools,resumeSessionId:te,forkSession:te?n.fork_session:!1,multiTurn:!n.multi_turn_disabled,permissionMode:n.permission_mode,codexApprovalPolicy:o==="codex"?gt(o)??E.codexApprovalPolicy:void 0,originChannel:ee,originThreadId:Ai(z)??_t(e),originAgentId:e.agentId||void 0,originSessionKey:z,harness:o}),Be=n.prompt.length>80?n.prompt.slice(0,80)+"...":n.prompt,be=["Session launched successfully.",` Name: ${_.name}`,` ID: ${_.id}`,` Dir: ${r}`,` Model: ${_.model??"default"}`,` Prompt: "${Be}"`];return o==="codex"&&be.push(` Codex approval policy: ${_.codexApprovalPolicy??gt(o)??E.codexApprovalPolicy}`),n.resume_session_id&&(be.push(` Resume: ${n.resume_session_id}${n.fork_session?" (forked)":""}`),ge&&be.push(" Thread state: historical Codex state cleared; starting a fresh thread.")),be.push(n.multi_turn_disabled?" Mode: single-turn (fire-and-forget)":" Mode: multi-turn (use agent_respond to send follow-up messages)"),be.push("","Use agent_sessions to check status, agent_output to see output."),{content:[{type:"text",text:be.join(`
2
+ `)}]}}catch(o){let i=ep(o),s=i.includes("Max sessions")?"":`
3
3
 
4
- Use agent_sessions to see active sessions and their status.`;return{content:[{type:"text",text:`Error launching session: ${s}${i}`}]}}}}}import{existsSync as Yc,readFileSync as Jc}from"fs";function _e(e){let t=Math.floor(e/1e3),r=Math.floor(t/60),n=t%60;return r>0?`${r}m${n}s`:`${n}s`}var qc=new Set(["a","an","the","is","are","was","were","be","been","being","have","has","had","do","does","did","will","would","could","should","may","might","shall","can","need","must","i","me","my","we","our","you","your","it","its","he","she","to","of","in","for","on","with","at","by","from","as","into","through","about","that","this","these","those","and","or","but","if","then","so","not","no","please","just","also","very","all","some","any","each","make","write","create","build","implement","add","update"]);function yi(e){let r=e.toLowerCase().replace(/[^a-z0-9\s-]/g," ").split(/\s+/).filter(n=>n.length>1&&!qc.has(n)).slice(0,3);return r.length===0?"session":r.join("-")}var zc={starting:"\u{1F7E1}",running:"\u{1F7E2}",completed:"\u2705",failed:"\u274C",killed:"\u26D4"};function xi(e){let t=zc[e.status]??"\u2753",r=_e(e.duration),n=e.multiTurn?"multi-turn":"single",o=e.prompt.length>80?e.prompt.slice(0,80)+"...":e.prompt,s=e.costUsd>0?` | $${e.costUsd.toFixed(2)}`:"",i=[`${t} ${e.name} [${e.id}] (${r}${s}) \u2014 ${n}`,` \u{1F4C1} ${e.workdir}`,` \u{1F4DD} "${o}"`];return e.phase!==e.status&&i.push(` \u2699\uFE0F Phase: ${e.phase}`),e.harness&&i.push(` \u{1F9F0} Harness: ${e.harness}`),e.harnessSessionId&&i.push(` \u{1F517} Session ID: ${e.harnessSessionId}`),e.resumeSessionId&&i.push(` \u21A9\uFE0F Resumed from: ${e.resumeSessionId}${e.forkSession?" (forked)":""}`),i.join(`
5
- `)}function Or(e,t){let r=e.sessionsWithDuration>0?e.totalDurationMs/e.sessionsWithDuration:0,{completed:n,failed:o,killed:s}=e.sessionsByStatus,i=["\u{1F4CA} OpenClaw Code Agent Stats","","\u{1F4CB} Sessions",` Launched: ${e.totalLaunched}`,` Running: ${t}`,` Completed: ${n}`,` Failed: ${o}`,` Killed: ${s}`,"",`\u23F1\uFE0F Average duration: ${r>0?_e(r):"n/a"}`];if(e.mostExpensive){let m=e.mostExpensive;i.push("","\u{1F3C6} Notable session",` ${m.name} [${m.id}]`,` \u{1F4DD} "${m.prompt}"`)}return i.join(`
6
- `)}function Ze(e,t){return t<=0?"":e.length<=t?e:t<=3?".".repeat(t):e.slice(0,t-3)+"..."}function Si(e,t){let r=e.split(`
7
- `),n=[],o=0;for(let s=r.length-1;s>=0;s--){let i=r[s].length+(n.length>0?1:0);if(o+i>t&&n.length>0)break;n.unshift(r[s]),o+=i}return n.join(`
8
- `)}var Xc=50,Qc=1,Zc=new Set(["starting","running","completed","failed","killed"]),ep=5,tp=1440*60*1e3;function rp(e){let t=Number(e);return!Number.isFinite(t)||t<Qc?Xc:Math.floor(t)}function np(e){return typeof e=="string"&&Zc.has(e)}function op(e){let t=_e(e.duration),r=` | Cost: $${e.costUsd.toFixed(4)}`,n=e.status==="running"?` | Phase: ${e.phase}`:"";return[`Session: ${e.name} [${e.id}] | Status: ${e.status.toUpperCase()}${n}${r} | Duration: ${t}`,`${"\u2500".repeat(60)}`].join(`
9
- `)}function sp(e){return[`Session: ${e.name||e.harnessSessionId} | Status: ${e.status.toUpperCase()} | Cost: $${e.costUsd.toFixed(4)}`,`(retrieved from ${e.outputPath} \u2014 evicted from runtime cache \u2014 showing persisted output)`,`${"\u2500".repeat(60)}`].join(`
10
- `)}function ip(e){let t=[];return e.error&&t.push(`Error: ${e.error}`),e.result?.result&&t.push(`Result: ${e.result.result}`),e.result&&t.push(`Result status: ${e.result.subtype}`),t.length>0?`
4
+ Use agent_sessions to see active sessions and their status.`;return{content:[{type:"text",text:`Error launching session: ${i}${s}`}]}}}}}import{existsSync as sp,readFileSync as ip}from"fs";function Le(e){let t=Math.floor(e/1e3),n=Math.floor(t/60),r=t%60;return n>0?`${n}m${r}s`:`${r}s`}var rp=new Set(["a","an","the","is","are","was","were","be","been","being","have","has","had","do","does","did","will","would","could","should","may","might","shall","can","need","must","i","me","my","we","our","you","your","it","its","he","she","to","of","in","for","on","with","at","by","from","as","into","through","about","that","this","these","those","and","or","but","if","then","so","not","no","please","just","also","very","all","some","any","each","make","write","create","build","implement","add","update"]);function Ri(e){let n=e.toLowerCase().replace(/[^a-z0-9\s-]/g," ").split(/\s+/).filter(r=>r.length>1&&!rp.has(r)).slice(0,3);return n.length===0?"session":n.join("-")}var op={starting:"\u{1F7E1}",running:"\u{1F7E2}",completed:"\u2705",failed:"\u274C",killed:"\u26D4"};function Oi(e){let t=op[e.status]??"\u2753",n=Le(e.duration),r=e.multiTurn?"multi-turn":"single",o=e.prompt.length>80?e.prompt.slice(0,80)+"...":e.prompt,i=e.costUsd>0?` | $${e.costUsd.toFixed(2)}`:"",s=[`${t} ${e.name} [${e.id}] (${n}${i}) \u2014 ${r}`,` \u{1F4C1} ${e.workdir}`,` \u{1F4DD} "${o}"`];return e.phase!==e.status&&s.push(` \u2699\uFE0F Phase: ${e.phase}`),e.harness&&s.push(` \u{1F9F0} Harness: ${e.harness}`),e.harnessSessionId&&s.push(` \u{1F517} Session ID: ${e.harnessSessionId}`),e.resumeSessionId&&s.push(` \u21A9\uFE0F Resumed from: ${e.resumeSessionId}${e.forkSession?" (forked)":""}`),s.join(`
5
+ `)}function $n(e,t){let n=e.sessionsWithDuration>0?e.totalDurationMs/e.sessionsWithDuration:0,{completed:r,failed:o,killed:i}=e.sessionsByStatus,s=["\u{1F4CA} OpenClaw Code Agent Stats","","\u{1F4CB} Sessions",` Launched: ${e.totalLaunched}`,` Running: ${t}`,` Completed: ${r}`,` Failed: ${o}`,` Killed: ${i}`,"",`\u23F1\uFE0F Average duration: ${n>0?Le(n):"n/a"}`];if(e.mostExpensive){let c=e.mostExpensive;s.push("","\u{1F3C6} Notable session",` ${c.name} [${c.id}]`,` \u{1F4DD} "${c.prompt}"`)}return s.join(`
6
+ `)}function ot(e,t){return t<=0?"":e.length<=t?e:t<=3?".".repeat(t):e.slice(0,t-3)+"..."}function Ci(e,t){let n=e.split(`
7
+ `),r=[],o=0;for(let i=n.length-1;i>=0;i--){let s=n[i].length+(r.length>0?1:0);if(o+s>t&&r.length>0)break;r.unshift(n[i]),o+=s}return r.join(`
8
+ `)}var ap=50,up=1,dp=new Set(["starting","running","completed","failed","killed"]),cp=5,mp=1440*60*1e3;function pp(e){let t=Number(e);return!Number.isFinite(t)||t<up?ap:Math.floor(t)}function lp(e){return typeof e=="string"&&dp.has(e)}function fp(e){let t=Le(e.duration),n=` | Cost: $${e.costUsd.toFixed(4)}`,r=e.status==="running"?` | Phase: ${e.phase}`:"";return[`Session: ${e.name} [${e.id}] | Status: ${e.status.toUpperCase()}${r}${n} | Duration: ${t}`,`${"\u2500".repeat(60)}`].join(`
9
+ `)}function gp(e){return[`Session: ${e.name||e.harnessSessionId} | Status: ${e.status.toUpperCase()} | Cost: $${e.costUsd.toFixed(4)}`,`(retrieved from ${e.outputPath} \u2014 evicted from runtime cache \u2014 showing persisted output)`,`${"\u2500".repeat(60)}`].join(`
10
+ `)}function Ip(e){let t=[];return e.error&&t.push(`Error: ${e.error}`),e.result?.result&&t.push(`Result: ${e.result.result}`),e.result&&t.push(`Result status: ${e.result.subtype}`),t.length>0?`
11
11
  (no output yet)
12
12
  ${t.join(`
13
13
  `)}`:`
14
- (no output yet)`}function Rr(e,t,r={}){let n=rp(r.lines),o=e.resolve(t);if(!o){let m=e.getPersistedSession(t);if(m?.outputPath&&Yc(m.outputPath))try{let p=Jc(m.outputPath,"utf-8"),f=p;!r.full&&p&&(f=p.split(`
15
- `).slice(-n).join(`
16
- `));let A=sp(m);return f?`${A}
17
- ${f}`:`${A}
18
- (output file was empty)`}catch(p){let f=p instanceof Error?p.message:String(p);return`Error: Session "${t}" was cleaned up (expired) and output file could not be read: ${f}`}return`Error: Session "${t}" not found.`}let s=r.full?o.getOutput():o.getOutput(n),i=op(o);return s.length===0?`${i}${ip(o)}`:`${i}
19
- ${s.join(`
20
- `)}`}function Cr(e,t="all",r,n={}){let o=e.listPersistedSessions()??[],i=ap(e.list("all"),o);if(t!=="all"&&(i=i.filter(m=>m.status===t)),r&&(i=i.filter(m=>m.originChannel===r)),n.full){let m=Date.now()-tp;i=i.filter(p=>(p.startedAt??0)>=m)}else i=i.slice(0,ep);return i.length===0?"No sessions found.":i.map(m=>xi(m)).join(`
14
+ (no output yet)`}function vn(e,t,n={}){let r=pp(n.lines),o=e.resolve(t);if(!o){let c=e.getPersistedSession(t);if(c?.outputPath&&sp(c.outputPath))try{let p=ip(c.outputPath,"utf-8"),f=p;!n.full&&p&&(f=p.split(`
15
+ `).slice(-r).join(`
16
+ `));let T=gp(c);return f?`${T}
17
+ ${f}`:`${T}
18
+ (output file was empty)`}catch(p){let f=p instanceof Error?p.message:String(p);return`Error: Session "${t}" was cleaned up (expired) and output file could not be read: ${f}`}return`Error: Session "${t}" not found.`}let i=n.full?o.getOutput():o.getOutput(r),s=fp(o);return i.length===0?`${s}${Ip(o)}`:`${s}
19
+ ${i.join(`
20
+ `)}`}function Nn(e,t="all",n,r={}){let o=e.listPersistedSessions()??[],s=hp(e.list("all"),o);if(t!=="all"&&(s=s.filter(c=>c.status===t)),n&&(s=s.filter(c=>c.originChannel===n)),r.full){let c=Date.now()-mp;s=s.filter(p=>(p.startedAt??0)>=c)}else s=s.slice(0,cp);return s.length===0?"No sessions found.":s.map(c=>Oi(c)).join(`
21
21
 
22
- `)}function ap(e,t){let r=new Map;for(let n of t){if(!np(n.status))continue;let o=n.completedAt??Date.now(),s=n.createdAt??o,i=n.sessionId??`persisted:${n.harnessSessionId}`;r.set(i,{id:n.sessionId??n.harnessSessionId,name:n.name||n.harnessSessionId,status:n.status,startedAt:n.createdAt??0,completedAt:n.completedAt,duration:Math.max(0,o-s),prompt:n.prompt??"",workdir:n.workdir??"(unknown)",costUsd:n.costUsd??0,multiTurn:!0,phase:n.status,harness:n.harness,harnessSessionId:n.harnessSessionId,originChannel:n.originChannel,originThreadId:n.originThreadId})}for(let n of e)r.set(n.id,{id:n.id,name:n.name,status:n.status,startedAt:n.startedAt,completedAt:n.completedAt,duration:n.duration,prompt:n.prompt,workdir:n.workdir,costUsd:n.costUsd,multiTurn:n.multiTurn,phase:n.phase,harness:n.harnessName,harnessSessionId:n.harnessSessionId,originChannel:n.originChannel,originThreadId:n.originThreadId});return[...r.values()].sort((n,o)=>(o.startedAt??0)-(n.startedAt??0))}function up(e){if(!e||typeof e!="object")return"all";let t=e.status;switch(t){case"running":case"completed":case"failed":case"killed":case"all":return t;default:return"all"}}function Ti(e){return{name:"agent_sessions",description:"List coding agent sessions with their status and progress. By default, shows the 5 most recent sessions; set `full` to show all sessions from the last 24 hours.",parameters:l.Object({status:l.Optional(l.Union([l.Literal("all"),l.Literal("running"),l.Literal("completed"),l.Literal("failed"),l.Literal("killed")],{description:'Filter by status (default "all")'})),full:l.Optional(l.Boolean({description:"Show all sessions from the last 24h instead of just the most recent 5"}))}),async execute(t,r){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};let n=up(r),o=e?.workspaceDir?Qt(e.workspaceDir):void 0,s=!!(r&&typeof r=="object"&&r.full===!0);return{content:[{type:"text",text:Cr(g,n,o,{full:s})}]}}}}function Mr(e,t,r){let n=e.resolve(t);return n?n.status==="completed"||n.status==="failed"||n.status==="killed"?`Session ${n.name} [${n.id}] is already ${n.status}. No action needed.`:r==="completed"?(n.complete(),`Session ${n.name} [${n.id}] marked as completed.`):(e.kill(n.id),`Session ${n.name} [${n.id}] has been terminated.`):`Error: Session "${t}" not found.`}function dp(e){if(!e||typeof e!="object")return!1;let t=e;return typeof t.session!="string"?!1:t.reason===void 0?!0:t.reason==="completed"||t.reason==="killed"}function bi(e){return{name:"agent_kill",description:"Terminate or complete a running coding agent session by name or ID. Use reason='completed' to mark a session as successfully completed instead of killed.",parameters:l.Object({session:l.String({description:"Session name or ID to terminate"}),reason:l.Optional(l.Union([l.Literal("completed"),l.Literal("killed")],{description:"Reason for closing the session. 'completed' marks it as successfully done (sends \u2705 notification). 'killed' (default) terminates it."}))}),async execute(t,r){return g?dp(r)?{content:[{type:"text",text:Mr(g,r.session,r.reason)}]}:{content:[{type:"text",text:"Error: Invalid parameters. Expected { session, reason? }."}]}:{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]}}}}function mp(e){return!e||typeof e!="object"?!1:typeof e.session=="string"}function Ai(e){return{name:"agent_output",description:"Show recent output from a coding agent session (by name or ID).",parameters:l.Object({session:l.String({description:"Session name or ID to get output from"}),lines:l.Optional(l.Number({description:"Number of recent lines to show (default 50)"})),full:l.Optional(l.Boolean({description:"Show all available output"}))}),async execute(t,r){return g?mp(r)?{content:[{type:"text",text:Rr(g,r.session,{full:r.full,lines:r.lines})}]}:{content:[{type:"text",text:"Error: Invalid parameters. Expected { session, lines?, full? }."}]}:{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]}}}}var cp=new Set(["killed","completed","failed"]),pp=new Set(["startup-timeout"]),lp=10,fp=100,gp=/\b(change|swap|replace|remove|add|update|instead|don't|revise|modify)\b/i;function Zt(e){return e instanceof Error?e.message:String(e)}function Ip(e,t){switch(e){case"completed":return"completed";case"failed":return"failed";default:return t==="user"?"user-killed":t==="shutdown"?"shutdown-killed":"idle-kill"}}function wi(e){return"id"in e?e.id:e.sessionId??e.harnessSessionId}function hp(e){return e.status==="killed"&&e.completedAt==null}function yp(e,t){return cp.has(e.status)&&!!e.harnessSessionId&&(e.status==="failed"||e.status==="completed"&&e.killReason==="done"||e.status==="killed"&&(!pp.has(e.killReason??"")||t&&hp(e)))}function xp(e,t){if(!(t.trim().length<fp&&!gp.test(t)))return{text:["Cannot approve and revise in the same call.","Your message appears to contain revision feedback. Send it first WITHOUT approve=true:",` agent_respond(session='${e}', message='<your feedback>')`,"The agent will revise the plan. Then approve the revised plan."].join(`
23
- `),isError:!0}}async function Sp(e,t,r,n={}){if(yp(t,n.allowRecoveredRunningStub===!0))try{let o="harnessName"in t?t:void 0,s="harnessName"in t?void 0:t,{resumeSessionId:i}=Ft({requestedResumeSessionId:t.harnessSessionId,activeSession:o?{harnessSessionId:o.harnessSessionId}:void 0,persistedSession:s?{harness:s.harness}:void 0}),m={prompt:r,workdir:t.workdir,name:t.name,model:t.model,reasoningEffort:t.reasoningEffort,resumeSessionId:i,multiTurn:!0,originChannel:t.originChannel,originThreadId:t.originThreadId,originAgentId:t.originAgentId,originSessionKey:t.originSessionKey,permissionMode:t.currentPermissionMode,codexApprovalPolicy:t.codexApprovalPolicy,harness:"harnessName"in t?t.harnessName:t.harness},p=e.spawn(m),f=Ip(t.status,t.killReason);return e.notifySession(p,`\u{1F504} [${p.name}] Auto-resumed from ${f}`),{text:`Auto-resumed ${f} session ${p.name} [${p.id}]. Use agent_output to see the response.`}}catch(o){return{text:`Error auto-resuming session ${t.name} [${wi(t)}]: ${Zt(o)}`,isError:!0}}}function Tp(e,t,r){let n=t.lobsterResumeToken;if(!n)return;t.lobsterResumeToken=void 0;let o=t.pendingPlanApproval||t.currentPermissionMode==="acceptEdits"||t.currentPermissionMode==="default";if(r.approve&&o)return e.resumeLobsterApproval(n,!0).catch(s=>{console.error(`[Respond] Lobster resume failed, falling back to direct mode switch: ${Zt(s)}`),t.switchPermissionMode("bypassPermissions"),t.sendMessage(r.message).catch(i=>{console.error(`[Respond] Fallback sendMessage also failed: ${Zt(i)}`)})}),{text:`Plan approved. Lobster workflow resuming for session ${t.name} [${t.id}].`};e.resumeLobsterApproval(n,!1).catch(s=>{console.error(`[Respond] Lobster cancel failed (non-critical): ${Zt(s)}`)})}async function kr(e,t){let r=e.resolve(t.session),n=r?void 0:e.getPersistedSession(t.session);if(!r&&!n)return{text:`Error: Session "${t.session}" not found.`,isError:!0};let s=await Sp(e,r??n,t.message,{allowRecoveredRunningStub:!r});if(s)return s;if(!r)return{text:`Error: Session ${n.name} [${wi(n)}] is not running (status: ${n.status}). Cannot send a message to a non-running session.`,isError:!0};if(r.status!=="running")return{text:`Error: Session ${r.name} [${r.id}] is not running (status: ${r.status}). Cannot send a message to a non-running session.`,isError:!0};let i=h.maxAutoResponds??lp;if(t.userInitiated)r.resetAutoRespond();else if(r.autoRespondCount>=i)return{text:`\u26A0\uFE0F Auto-respond limit reached (${r.autoRespondCount}/${i}). Ask the user to provide the answer for session ${r.name}. Then call agent_respond with their answer and set userInitiated: true to reset the counter.`};let m=Tp(e,r,t);if(m)return m;try{t.interrupt&&await r.interrupt();let p="";if(t.approve&&r.pendingPlanApproval){let A=xp(r.name,t.message);if(A)return A;r.switchPermissionMode("bypassPermissions")}else t.approve&&(r.currentPermissionMode==="acceptEdits"||r.currentPermissionMode==="default")?r.switchPermissionMode("bypassPermissions"):t.approve&&r.currentPermissionMode==="bypassPermissions"?p=`
22
+ `)}function hp(e,t){let n=new Map;for(let r of t){if(!lp(r.status))continue;let o=r.completedAt??Date.now(),i=r.createdAt??o,s=r.sessionId??`persisted:${r.harnessSessionId}`;n.set(s,{id:r.sessionId??r.harnessSessionId,name:r.name||r.harnessSessionId,status:r.status,startedAt:r.createdAt??0,completedAt:r.completedAt,duration:Math.max(0,o-i),prompt:r.prompt??"",workdir:r.workdir??"(unknown)",costUsd:r.costUsd??0,multiTurn:!0,phase:r.status,harness:r.harness,harnessSessionId:r.harnessSessionId,originChannel:r.originChannel,originThreadId:r.originThreadId})}for(let r of e)n.set(r.id,{id:r.id,name:r.name,status:r.status,startedAt:r.startedAt,completedAt:r.completedAt,duration:r.duration,prompt:r.prompt,workdir:r.workdir,costUsd:r.costUsd,multiTurn:r.multiTurn,phase:r.phase,harness:r.harnessName,harnessSessionId:r.harnessSessionId,originChannel:r.originChannel,originThreadId:r.originThreadId});return[...n.values()].sort((r,o)=>(o.startedAt??0)-(r.startedAt??0))}function yp(e){if(!e||typeof e!="object")return"all";let t=e.status;switch(t){case"running":case"completed":case"failed":case"killed":case"all":return t;default:return"all"}}function Mi(e){return{name:"agent_sessions",description:"List coding agent sessions with their status and progress. By default, shows the 5 most recent sessions; set `full` to show all sessions from the last 24 hours.",parameters:l.Object({status:l.Optional(l.Union([l.Literal("all"),l.Literal("running"),l.Literal("completed"),l.Literal("failed"),l.Literal("killed")],{description:'Filter by status (default "all")'})),full:l.Optional(l.Boolean({description:"Show all sessions from the last 24h instead of just the most recent 5"}))}),async execute(t,n){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};let r=yp(n),o=e?.workspaceDir?on(e.workspaceDir):void 0,i=!!(n&&typeof n=="object"&&n.full===!0);return{content:[{type:"text",text:Nn(g,r,o,{full:i})}]}}}}function Un(e,t,n){let r=e.resolve(t);return r?r.status==="completed"||r.status==="failed"||r.status==="killed"?`Session ${r.name} [${r.id}] is already ${r.status}. No action needed.`:n==="completed"?(r.complete(),`Session ${r.name} [${r.id}] marked as completed.`):(e.kill(r.id),`Session ${r.name} [${r.id}] has been terminated.`):`Error: Session "${t}" not found.`}function xp(e){if(!e||typeof e!="object")return!1;let t=e;return typeof t.session!="string"?!1:t.reason===void 0?!0:t.reason==="completed"||t.reason==="killed"}function Ei(e){return{name:"agent_kill",description:"Terminate or complete a running coding agent session by name or ID. Use reason='completed' to mark a session as successfully completed instead of killed.",parameters:l.Object({session:l.String({description:"Session name or ID to terminate"}),reason:l.Optional(l.Union([l.Literal("completed"),l.Literal("killed")],{description:"Reason for closing the session. 'completed' marks it as successfully done (sends \u2705 notification). 'killed' (default) terminates it."}))}),async execute(t,n){return g?xp(n)?{content:[{type:"text",text:Un(g,n.session,n.reason)}]}:{content:[{type:"text",text:"Error: Invalid parameters. Expected { session, reason? }."}]}:{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]}}}}function Sp(e){return!e||typeof e!="object"?!1:typeof e.session=="string"}function ki(e){return{name:"agent_output",description:"Show recent output from a coding agent session (by name or ID).",parameters:l.Object({session:l.String({description:"Session name or ID to get output from"}),lines:l.Optional(l.Number({description:"Number of recent lines to show (default 50)"})),full:l.Optional(l.Boolean({description:"Show all available output"}))}),async execute(t,n){return g?Sp(n)?{content:[{type:"text",text:vn(g,n.session,{full:n.full,lines:n.lines})}]}:{content:[{type:"text",text:"Error: Invalid parameters. Expected { session, lines?, full? }."}]}:{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]}}}}var Tp=new Set(["killed","completed","failed"]),bp=new Set(["startup-timeout"]),wp=10,Ap=100,Pp=/\b(change|swap|replace|remove|add|update|instead|don't|revise|modify)\b/i;function sn(e){return e instanceof Error?e.message:String(e)}function Rp(e,t){switch(e){case"completed":return"completed";case"failed":return"failed";default:return t==="user"?"user-killed":t==="shutdown"?"shutdown-killed":"idle-kill"}}function Fi(e){return"id"in e?e.id:e.sessionId??e.harnessSessionId}function Op(e){return e.status==="killed"&&e.completedAt==null}function Cp(e,t){return Tp.has(e.status)&&!!e.harnessSessionId&&(e.status==="failed"||e.status==="completed"&&e.killReason==="done"||e.status==="killed"&&(!bp.has(e.killReason??"")||t&&Op(e)))}function Mp(e,t){if(!(t.trim().length<Ap&&!Pp.test(t)))return{text:["Cannot approve and revise in the same call.","Your message appears to contain revision feedback. Send it first WITHOUT approve=true:",` agent_respond(session='${e}', message='<your feedback>')`,"The agent will revise the plan. Then approve the revised plan."].join(`
23
+ `),isError:!0}}async function Ep(e,t,n,r={}){if(Cp(t,r.allowRecoveredRunningStub===!0))try{let o="harnessName"in t?t:void 0,i="harnessName"in t?void 0:t,{resumeSessionId:s}=Lt({requestedResumeSessionId:t.harnessSessionId,activeSession:o?{harnessSessionId:o.harnessSessionId}:void 0,persistedSession:i?{harness:i.harness}:void 0}),c={prompt:n,workdir:t.workdir,name:t.name,model:t.model,reasoningEffort:t.reasoningEffort,resumeSessionId:s,multiTurn:!0,originChannel:t.originChannel,originThreadId:t.originThreadId,originAgentId:t.originAgentId,originSessionKey:t.originSessionKey,permissionMode:t.currentPermissionMode,codexApprovalPolicy:t.codexApprovalPolicy,harness:"harnessName"in t?t.harnessName:t.harness},p=await e.spawnAndAwaitRunning(c,{notifyLaunch:!1}),f=Rp(t.status,t.killReason);return e.notifySession(p,`\u{1F504} [${p.name}] Auto-resumed from ${f}`),{text:`Auto-resumed ${f} session ${p.name} [${p.id}]. Use agent_output to see the response.`}}catch(o){return{text:`Error auto-resuming session ${t.name} [${Fi(t)}]: ${sn(o)}`,isError:!0}}}function kp(e,t,n){let r=t.lobsterResumeToken;if(!r)return;t.lobsterResumeToken=void 0;let o=t.pendingPlanApproval||t.currentPermissionMode==="acceptEdits"||t.currentPermissionMode==="default";if(n.approve&&o)return e.resumeLobsterApproval(r,!0).catch(i=>{console.error(`[Respond] Lobster resume failed, falling back to direct mode switch: ${sn(i)}`),t.switchPermissionMode("bypassPermissions"),t.sendMessage(n.message).catch(s=>{console.error(`[Respond] Fallback sendMessage also failed: ${sn(s)}`)})}),{text:`Plan approved. Lobster workflow resuming for session ${t.name} [${t.id}].`};e.resumeLobsterApproval(r,!1).catch(i=>{console.error(`[Respond] Lobster cancel failed (non-critical): ${sn(i)}`)})}async function _n(e,t){let n=e.resolve(t.session),r=n?void 0:e.getPersistedSession(t.session);if(!n&&!r)return{text:`Error: Session "${t.session}" not found.`,isError:!0};let i=await Ep(e,n??r,t.message,{allowRecoveredRunningStub:!n});if(i)return i;if(!n)return{text:`Error: Session ${r.name} [${Fi(r)}] is not running (status: ${r.status}). Cannot send a message to a non-running session.`,isError:!0};if(n.status!=="running")return{text:`Error: Session ${n.name} [${n.id}] is not running (status: ${n.status}). Cannot send a message to a non-running session.`,isError:!0};let s=E.maxAutoResponds??wp;if(t.userInitiated)n.resetAutoRespond();else if(n.autoRespondCount>=s)return{text:`\u26A0\uFE0F Auto-respond limit reached (${n.autoRespondCount}/${s}). Ask the user to provide the answer for session ${n.name}. Then call agent_respond with their answer and set userInitiated: true to reset the counter.`};let c=kp(e,n,t);if(c)return c;try{t.interrupt&&await n.interrupt();let p="";if(t.approve&&n.pendingPlanApproval){let T=Mp(n.name,t.message);if(T)return T;n.switchPermissionMode("bypassPermissions")}else t.approve&&(n.currentPermissionMode==="acceptEdits"||n.currentPermissionMode==="default")?n.switchPermissionMode("bypassPermissions"):t.approve&&n.currentPermissionMode==="bypassPermissions"?p=`
24
24
  \u2139\uFE0F approve=true was set but session is already in bypassPermissions mode.`:t.approve?p=`
25
- \u26A0\uFE0F approve=true was set but session has no pending plan approval.`:r.pendingPlanApproval&&(p=`
26
- \u2139\uFE0F Session has a pending plan \u2014 sending as revision feedback. The agent will revise and re-submit. Set approve=true to approve instead.`);await r.sendMessage(t.message),t.userInitiated||r.incrementAutoRespond();let f=Ze(t.message,80);return{text:[`Message sent to session ${r.name} [${r.id}].`,t.interrupt?" (interrupted current turn first)":"",` Message: "${f}"`,p,"Use agent_output to see the response."].filter(Boolean).join(`
27
- `)}}catch(p){return{text:`Error sending message to session ${r.name} [${r.id}]: ${Zt(p)}`,isError:!0}}}function bp(e){if(!e||typeof e!="object")return!1;let t=e;return typeof t.session=="string"&&typeof t.message=="string"}function Pi(e){return{name:"agent_respond",description:"Send a follow-up message to a running coding agent session. The session must be running. Sessions are multi-turn by default, so this works with any session unless it was launched with multi_turn_disabled: true.",parameters:l.Object({session:l.String({description:"Session name or ID to respond to"}),message:l.String({description:"The message to send to the session"}),interrupt:l.Optional(l.Boolean({description:"If true, interrupt the current turn before sending the message. Useful to redirect the session mid-response."})),userInitiated:l.Optional(l.Boolean({description:"Set to true when the message comes from the user (not auto-generated). Resets the auto-respond counter and bypasses the auto-respond limit."})),approve:l.Optional(l.Boolean({description:"Set to true to escalate session permissions to bypassPermissions. Works in two scenarios: (1) approve a pending plan in plan mode (after ExitPlanMode / set_permission_mode), or (2) escalate an acceptEdits or default mode session to skip all remaining permission prompts. No-op if already in bypassPermissions mode. In plan mode without a pending plan, this flag is ignored."}))}),async execute(t,r){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};if(!bp(r))return{content:[{type:"text",text:"Error: Invalid parameters. Expected { session, message, interrupt?, userInitiated?, approve? }."}]};let n=await kr(g,r);return{isError:n.isError??!1,content:[{type:"text",text:n.text}]}}}}function Oi(e){return{name:"agent_stats",description:"Show OpenClaw Code Agent usage metrics: session counts by status, average duration, and notable sessions.",parameters:l.Object({}),async execute(t,r){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};let n=g.getMetrics(),o=g.list("running").length;return{content:[{type:"text",text:Or(n,o)}]}}}}function Ap(e){return e instanceof Error?e.message:String(e)}function Ri(e){e.registerCommand({name:"agent",description:"Launch a coding agent session. Usage: /agent [--name <name>] <prompt>",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let r=(t.args??"").trim();if(!r)return{text:"Usage: /agent [--name <name>] <prompt>"};let n,o=r.match(/^--name\s+(\S+)\s+/);o&&(n=o[1],r=r.slice(o[0].length).trim());let s=r;if(!s)return{text:"Usage: /agent [--name <name>] <prompt>"};try{let i=h.defaultHarness,m=i==="codex"?h.model??h.defaultModel:h.defaultModel,p=g.spawn({prompt:s,name:n,workdir:h.defaultWorkdir||process.cwd(),model:m,reasoningEffort:h.reasoningEffort,codexApprovalPolicy:h.codexApprovalPolicy,originChannel:kt(t),originThreadId:Et(t),harness:i}),f=s.length>80?s.slice(0,80)+"...":s;return{text:["Session launched.",` Name: ${p.name}`,` ID: ${p.id}`,` Prompt: "${f}"`,` Status: ${p.status}`].join(`
28
- `)}}catch(i){let m=Ap(i),p=m.includes("Max sessions")?"":`
25
+ \u26A0\uFE0F approve=true was set but session has no pending plan approval.`:n.pendingPlanApproval&&(p=`
26
+ \u2139\uFE0F Session has a pending plan \u2014 sending as revision feedback. The agent will revise and re-submit. Set approve=true to approve instead.`);await n.sendMessage(t.message),t.userInitiated||n.incrementAutoRespond();let f=ot(t.message,80);return{text:[`Message sent to session ${n.name} [${n.id}].`,t.interrupt?" (interrupted current turn first)":"",` Message: "${f}"`,p,"Use agent_output to see the response."].filter(Boolean).join(`
27
+ `)}}catch(p){return{text:`Error sending message to session ${n.name} [${n.id}]: ${sn(p)}`,isError:!0}}}function Fp(e){if(!e||typeof e!="object")return!1;let t=e;return typeof t.session=="string"&&typeof t.message=="string"}function $i(e){return{name:"agent_respond",description:"Send a follow-up message to a running coding agent session. The session must be running. Sessions are multi-turn by default, so this works with any session unless it was launched with multi_turn_disabled: true.",parameters:l.Object({session:l.String({description:"Session name or ID to respond to"}),message:l.String({description:"The message to send to the session"}),interrupt:l.Optional(l.Boolean({description:"If true, interrupt the current turn before sending the message. Useful to redirect the session mid-response."})),userInitiated:l.Optional(l.Boolean({description:"Set to true when the message comes from the user (not auto-generated). Resets the auto-respond counter and bypasses the auto-respond limit."})),approve:l.Optional(l.Boolean({description:"Set to true to escalate session permissions to bypassPermissions. Works in two scenarios: (1) approve a pending plan in plan mode (after ExitPlanMode / set_permission_mode), or (2) escalate an acceptEdits or default mode session to skip all remaining permission prompts. No-op if already in bypassPermissions mode. In plan mode without a pending plan, this flag is ignored."}))}),async execute(t,n){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};if(!Fp(n))return{content:[{type:"text",text:"Error: Invalid parameters. Expected { session, message, interrupt?, userInitiated?, approve? }."}]};let r=await _n(g,n);return{isError:r.isError??!1,content:[{type:"text",text:r.text}]}}}}function vi(e){return{name:"agent_stats",description:"Show OpenClaw Code Agent usage metrics: session counts by status, average duration, and notable sessions.",parameters:l.Object({}),async execute(t,n){if(!g)return{content:[{type:"text",text:"Error: SessionManager not initialized. The code-agent service must be running."}]};let r=g.getMetrics(),o=g.list("running").length;return{content:[{type:"text",text:$n(r,o)}]}}}}function $p(e){return e instanceof Error?e.message:String(e)}function Ni(e){e.registerCommand({name:"agent",description:"Launch a coding agent session. Usage: /agent [--name <name>] <prompt>",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let n=(t.args??"").trim();if(!n)return{text:"Usage: /agent [--name <name>] <prompt>"};let r,o=n.match(/^--name\s+(\S+)\s+/);o&&(r=o[1],n=n.slice(o[0].length).trim());let i=n;if(!i)return{text:"Usage: /agent [--name <name>] <prompt>"};try{let s=nt(),c=rt(s);if(!c)return{text:`Error: No default model configured for harness "${s}". Set plugins.entries["openclaw-code-agent"].config.harnesses.${s}.defaultModel or pass model explicitly via agent_launch.`};let p=g.spawn({prompt:i,name:r,workdir:E.defaultWorkdir||process.cwd(),model:c,reasoningEffort:Nt(s),codexApprovalPolicy:s==="codex"?gt(s)??E.codexApprovalPolicy:void 0,originChannel:Ut(t),originThreadId:_t(t),harness:s}),f=i.length>80?i.slice(0,80)+"...":i;return{text:["Session launched.",` Name: ${p.name}`,` ID: ${p.id}`,` Prompt: "${f}"`,` Status: ${p.status}`].join(`
28
+ `)}}catch(s){let c=$p(s),p=c.includes("Max sessions")?"":`
29
29
 
30
- Use /agent_sessions to see active sessions.`;return{text:`Error launching session: ${m}${p}`}}}})}function Ci(e){e.registerCommand({name:"agent_sessions",description:"List coding agent sessions. Usage: /agent_sessions [--full]",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let r=(t.args??"").split(/\s+/).includes("--full");return{text:Cr(g,"all",void 0,{full:r})}}})}function Mi(e){e.registerCommand({name:"agent_kill",description:"Kill a coding agent session by name or ID",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let r=t.args?.trim();return r?{text:Mr(g,r,"killed")}:{text:"Usage: /agent_kill <name-or-id>"}}})}function wp(e){return e instanceof Error?e.message:String(e)}function ki(e){e.registerCommand({name:"agent_resume",description:"Resume a previous coding agent session. Usage: /agent_resume <id-or-name> [prompt] or /agent_resume --list to see resumable sessions.",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let r=(t.args??"").trim();if(!r)return{text:`Usage: /agent_resume <id-or-name> [prompt]
30
+ Use /agent_sessions to see active sessions.`;return{text:`Error launching session: ${c}${p}`}}}})}function Ui(e){e.registerCommand({name:"agent_sessions",description:"List coding agent sessions. Usage: /agent_sessions [--full]",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let n=(t.args??"").split(/\s+/).includes("--full");return{text:Nn(g,"all",void 0,{full:n})}}})}function _i(e){e.registerCommand({name:"agent_kill",description:"Kill a coding agent session by name or ID",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let n=t.args?.trim();return n?{text:Un(g,n,"killed")}:{text:"Usage: /agent_kill <name-or-id>"}}})}function vp(e){return e instanceof Error?e.message:String(e)}function Li(e){e.registerCommand({name:"agent_resume",description:"Resume a previous coding agent session. Usage: /agent_resume <id-or-name> [prompt] or /agent_resume --list to see resumable sessions.",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let n=(t.args??"").trim();if(!n)return{text:`Usage: /agent_resume <id-or-name> [prompt]
31
31
  /agent_resume --list \u2014 list resumable sessions
32
- /agent_resume --fork <id-or-name> [prompt] \u2014 fork instead of continuing`};if(r==="--list"){let Y=g.listPersistedSessions();return Y.length===0?{text:"No resumable sessions found. Sessions are persisted after completion."}:{text:`Resumable sessions:
32
+ /agent_resume --fork <id-or-name> [prompt] \u2014 fork instead of continuing`};if(n==="--list"){let ee=g.listPersistedSessions();return ee.length===0?{text:"No resumable sessions found. Sessions are persisted after completion."}:{text:`Resumable sessions:
33
33
 
34
- ${Y.map(W=>{let X=W.prompt.length>60?W.prompt.slice(0,60)+"...":W.prompt,Fe=W.completedAt?`completed ${_e(Date.now()-W.completedAt)} ago`:W.status;return[` ${W.name} \u2014 ${Fe}`,` Session ID: ${W.harnessSessionId}`,` \u{1F4C1} ${W.workdir}`,` \u{1F4DD} "${X}"`].join(`
34
+ ${ee.map(_=>{let Be=_.prompt.length>60?_.prompt.slice(0,60)+"...":_.prompt,be=_.completedAt?`completed ${Le(Date.now()-_.completedAt)} ago`:_.status;return[` ${_.name} \u2014 ${be}`,` Session ID: ${_.harnessSessionId}`,` \u{1F4C1} ${_.workdir}`,` \u{1F4DD} "${Be}"`].join(`
35
35
  `)}).join(`
36
36
 
37
- `)}`}}let n=!1;r.startsWith("--fork ")&&(n=!0,r=r.slice(7).trim());let o=r.indexOf(" "),s,i;o===-1?(s=r,i="Continue where you left off."):(s=r.slice(0,o),i=r.slice(o+1).trim()||"Continue where you left off.");let m=g.resolveHarnessSessionId(s);if(!m)return{text:`Error: Could not find a session ID for "${s}".
38
- Use /agent_resume --list to see available sessions.`};let p=g.resolve(s),f=g.getPersistedSession(s),{resumeSessionId:A,clearedPersistedCodexResume:_}=Ft({requestedResumeSessionId:m,activeSession:p?{harnessSessionId:p.harnessSessionId}:void 0,persistedSession:f?{harness:f.harness}:void 0}),ie=f?.workdir??process.cwd();try{let Y=g.spawn({prompt:i,workdir:ie,name:f?.name,model:f?.model,codexApprovalPolicy:p?.codexApprovalPolicy??f?.codexApprovalPolicy,resumeSessionId:A,forkSession:A?n:!1,originChannel:kt(t),originThreadId:Et(t)??f?.originThreadId,originAgentId:t?.agentId??f?.originAgentId,originSessionKey:t?.sessionKey??f?.originSessionKey,harness:f?.harness}),H=i.length>80?i.slice(0,80)+"...":i;return{text:[`Session resumed${n?" (forked)":""}.`,` Name: ${Y.name}`,` ID: ${Y.id}`,A?` Resume from: ${m}`:" Resume from: fresh thread",` Dir: ${ie}`,` Prompt: "${H}"`,_?" Note: cleared persisted Codex thread state after restart to avoid org-mismatch resume failures.":""].join(`
39
- `)}}catch(Y){let H=wp(Y),W=H.includes("Max sessions")?"":`
37
+ `)}`}}let r=!1;n.startsWith("--fork ")&&(r=!0,n=n.slice(7).trim());let o=n.indexOf(" "),i,s;o===-1?(i=n,s="Continue where you left off."):(i=n.slice(0,o),s=n.slice(o+1).trim()||"Continue where you left off.");let c=g.resolveHarnessSessionId(i);if(!c)return{text:`Error: Could not find a session ID for "${i}".
38
+ Use /agent_resume --list to see available sessions.`};let p=g.resolve(i),f=g.getPersistedSession(i),{resumeSessionId:T,clearedPersistedCodexResume:U}=Lt({requestedResumeSessionId:c,activeSession:p?{harnessSessionId:p.harnessSessionId}:void 0,persistedSession:f?{harness:f.harness}:void 0}),te=f?.workdir??process.cwd(),ge=f?.harness??nt(),ae=f?.model??rt(ge);try{if(!ae)return{text:`Error: No default model configured for harness "${ge}". Set plugins.entries["openclaw-code-agent"].config.harnesses.${ge}.defaultModel or pass model explicitly when launching a fresh session.`};let ee=g.spawn({prompt:s,workdir:te,name:f?.name,model:ae,codexApprovalPolicy:p?.codexApprovalPolicy??f?.codexApprovalPolicy,resumeSessionId:T,forkSession:T?r:!1,originChannel:Ut(t),originThreadId:_t(t)??f?.originThreadId,originAgentId:t?.agentId??f?.originAgentId,originSessionKey:t?.sessionKey??f?.originSessionKey,harness:ge}),z=s.length>80?s.slice(0,80)+"...":s;return{text:[`Session resumed${r?" (forked)":""}.`,` Name: ${ee.name}`,` ID: ${ee.id}`,T?` Resume from: ${c}`:" Resume from: fresh thread",` Dir: ${te}`,` Prompt: "${z}"`,U?" Note: cleared persisted Codex thread state after restart to avoid org-mismatch resume failures.":""].join(`
39
+ `)}}catch(ee){let z=vp(ee),_=z.includes("Max sessions")?"":`
40
40
 
41
- Use /agent_sessions to see active sessions or /agent_resume --list to see resumable sessions.`;return{text:`Error resuming session: ${H}${W}`}}}})}function Ei(e){e.registerCommand({name:"agent_respond",description:"Send a follow-up message to a running coding agent session. Usage: /agent_respond <id-or-name> <message>",acceptsArgs:!0,requireAuth:!0,handler:async t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let r=(t.args??"").trim();if(!r)return{text:`Usage: /agent_respond <id-or-name> <message>
42
- /agent_respond --interrupt <id-or-name> <message>`};let n=!1,o=r;o.startsWith("--interrupt ")&&(n=!0,o=o.slice(12).trim());let s=o.indexOf(" ");if(s===-1)return{text:"Error: Missing message. Usage: /agent_respond <id-or-name> <message>"};let i=o.slice(0,s),m=o.slice(s+1).trim();return m?{text:(await kr(g,{session:i,message:m,interrupt:n,userInitiated:!0})).text}:{text:"Error: Empty message. Usage: /agent_respond <id-or-name> <message>"}}})}function Fi(e){e.registerCommand({name:"agent_stats",description:"Show OpenClaw Code Agent usage metrics",acceptsArgs:!1,requireAuth:!0,handler:()=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let t=g.getMetrics(),r=g.list("running").length;return{text:Or(t,r)}}})}var Pp=50;function $i(e){e.registerCommand({name:"agent_output",description:"Show recent output from a coding agent session. Usage: /agent_output <id-or-name> [--full] [--lines N]",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let r=(t.args??"").trim();if(!r)return{text:"Usage: /agent_output <id-or-name> [--full] [--lines N]"};let n=r.split(/\s+/),o="",s=!1,i=Pp;for(let p=0;p<n.length;p++)if(n[p]==="--full")s=!0;else if(n[p]==="--lines"&&p+1<n.length){let f=parseInt(n[p+1],10);!isNaN(f)&&f>0&&(i=f),p++}else o||(o=n[p]);return o?{text:Rr(g,o,{full:s,lines:i})}:{text:"Usage: /agent_output <id-or-name> [--full] [--lines N]"}}})}import{execFile as oa}from"child_process";import{existsSync as jl}from"fs";import{fileURLToPath as sa}from"url";import{dirname as Dl,join as Dn}from"path";import{EventEmitter as pl}from"events";import Ni from"crypto";var Ui="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";var Op=128,ct,$t,Rp=e=>{!ct||ct.length<e?(ct=Buffer.allocUnsafe(e*Op),Ni.randomFillSync(ct),$t=0):$t+e>ct.length&&(Ni.randomFillSync(ct),$t=0),$t+=e};var _i=(e=21)=>{Rp(e|=0);let t="";for(let r=$t-e;r<$t;r++)t+=Ui[ct[r]&63];return t};import{query as Cp}from"@anthropic-ai/claude-agent-sdk";var Er=class{name="claude-code";supportedPermissionModes=["default","plan","acceptEdits","bypassPermissions"];questionToolNames=["AskUserQuestion"];planApprovalToolNames=["ExitPlanMode","set_permission_mode"];launch(t){let r={cwd:t.cwd,model:t.model,permissionMode:t.permissionMode,allowDangerouslySkipPermissions:!0,allowedTools:t.allowedTools,systemPrompt:t.systemPrompt,includePartialMessages:!0,abortController:t.abortController,mcpServers:t.mcpServers};t.resumeSessionId&&(r.resume=t.resumeSessionId,r.forkSession=t.forkSession??!1);let n=Cp({prompt:t.prompt,options:r});return{messages:this.adaptMessages(n),async setPermissionMode(o){typeof n.setPermissionMode=="function"&&await n.setPermissionMode(o)},async streamInput(o){typeof n.streamInput=="function"&&await n.streamInput(o)},async interrupt(){typeof n.interrupt=="function"&&await n.interrupt()}}}buildUserMessage(t,r){return{type:"user",message:{role:"user",content:t},parent_tool_use_id:null,session_id:r}}async*adaptMessages(t){for await(let r of t){let n=r;if(n.type==="system"&&n.subtype==="init")yield{type:"init",session_id:n.session_id??""};else if(n.type==="system"&&n.subtype==="status"&&n.permissionMode)yield{type:"permission_mode_change",mode:n.permissionMode};else if(n.type==="assistant")for(let o of n.message?.content??[])o.type==="text"?yield{type:"text",text:o.text}:o.type==="tool_use"&&(yield{type:"tool_use",name:o.name,input:o.input});else n.type==="result"&&(yield{type:"result",data:{success:n.subtype==="success",duration_ms:n.duration_ms??0,total_cost_usd:n.total_cost_usd??0,num_turns:n.num_turns??0,result:n.result,session_id:n.session_id??""}})}}};import{parse as Xp,resolve as Qp}from"path";import{Codex as Hi}from"@openai/codex-sdk";import{randomUUID as Mp}from"node:crypto";import{lstat as kp,mkdir as vn,readFile as Li,readlink as Ep,realpath as Fp,rename as $p,rm as Fr,symlink as Up,writeFile as ji}from"node:fs/promises";import{homedir as Np,tmpdir as Di}from"node:os";import{dirname as _p,join as Ee,resolve as vp}from"node:path";var Kp=50,Lp=3e4,jp=Ee(Di(),"openclaw-codex-auth.lock");function Dp(e,t){let r={};for(let[n,o]of Object.entries(e))typeof o=="string"&&(r[n]=o);return r.HOME=t,r}function Gp(e){return new Promise(t=>setTimeout(t,e))}async function Gi(e){try{return await kp(e),!0}catch(t){if(t.code==="ENOENT")return!1;throw t}}async function vi(e,t){if(await Gi(t)){if(await Ep(t)===e)return;await Fr(t,{recursive:!0,force:!0})}await Up(e,t)}function Vp(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return null;let r=Number(t);if(Number.isFinite(r))return r;let n=Date.parse(t);if(Number.isFinite(n))return n}return null}async function Ki(e){let t;try{t=await Li(e,"utf8")}catch(r){return r.code==="ENOENT",null}try{let r=JSON.parse(t);if(!r||typeof r!="object")return null;let n=Vp(r.last_refresh);return n===null?null:{lastRefresh:n,raw:t}}catch{return null}}async function Vi(e,t){await vn(_p(e),{recursive:!0});let r=`${e}.tmp`;await ji(r,t,"utf8"),await $p(r,e)}async function Bp(e,t){try{let r=await Li(e,"utf8");await Vi(t,r)}catch(r){if(r.code!=="ENOENT")throw r;await Fr(t,{force:!0})}}async function Hp(e,t){let r=await Ki(e);if(!r)return;let n=await Ki(t);n&&r.lastRefresh<=n.lastRefresh||await Vi(t,r.raw)}async function Wp(e,t,r){let n=Date.now()+t;for(;;)try{await vn(e);break}catch(s){if(s.code!=="EEXIST")throw s;if(Date.now()>=n)throw new Error(`Timed out waiting for Codex auth lock at ${e}`);await Gp(r)}try{await ji(Ee(e,"holder.json"),JSON.stringify({pid:process.pid,acquired_at:new Date().toISOString()}),"utf8")}catch{}let o=!1;return async()=>{o||(o=!0,await Fr(e,{recursive:!0,force:!0}))}}async function Bi(e=process.env,t={}){let r=e.HOME??Np(),n=await Fp(r).catch(()=>vp(r)),o=Ee(n,".codex"),s=Ee(o,"auth.json"),i=Ee(o,"sessions"),m=Ee(o,"config.toml"),p=await Gi(m)?m:void 0,f=t.tempRootDir??Di(),A=Ee(f,`openclaw-codex-auth-${Mp()}`),_=Ee(A,".codex"),ie=Ee(_,"auth.json"),Y=t.lockDir??jp,H=t.lockTimeoutMs??Lp,W=t.lockRetryMs??Kp;return await vn(_,{recursive:!0}),await vi(i,Ee(_,"sessions")),p&&await vi(p,Ee(_,"config.toml")),{tempHome:A,tempCodexDir:_,canonicalHome:n,canonicalCodexDir:o,canonicalAuthPath:s,canonicalSessionsPath:i,canonicalConfigPath:p,env:Dp(e,A),async prepareForTurn(){let X=await Wp(Y,H,W);try{await Bp(s,ie)}catch(er){throw await X(),er}let Fe=!1;return async()=>{if(!Fe){Fe=!0;try{await Hp(ie,s)}finally{await X()}}}},async cleanup(){await Fr(A,{recursive:!0,force:!0})}}}var qp=["proceed","continue","implement","apply","run","merge","deploy","commit"],zp=["shall i proceed","do you want me to","would you like me to","please confirm","should i continue","can i proceed","should i proceed","should i go ahead","want me to continue","approve and i'll","confirm and i'll"],Yp=["why this failed was","why did this fail","what failed","what happened","how can i help","is this clear","any questions","anything else","let me know","would you like a summary"];function Jp(e){return e.toLowerCase().replace(/\s+/g," ").trim()}function $r(e){let t=Jp(e);if(!t||Yp.some(n=>t.includes(n)))return!1;let r=qp.some(n=>t.includes(n));return zp.some(n=>t.includes(n))?r||t.includes("confirm"):t.endsWith("?")?r:!1}var Wi=1e4,qi="codex:waiting-for-user",Zp=1.1/1e6,el=.275/1e6,tl=4.4/1e6,rl="OPENCLAW_CODEX_HEARTBEAT_MS",nl="OPENCLAW_CODEX_BYPASS_ADDITIONAL_DIRS",ol="OPENCLAW_CODEX_AUTH_STRATEGY";function sl(e){if(!e)return 0;let t=e.cached_input_tokens??0,r=Math.max(0,(e.input_tokens??0)-t),n=e.output_tokens??0;return r*Zp+t*el+n*tl}function zi(e,t={}){return{success:!1,duration_ms:0,total_cost_usd:0,num_turns:0,session_id:e,...t}}function il(e){if(typeof e=="string")return e;if(!e||typeof e!="object")return String(e);let t=e;return typeof t.message?.content=="string"?t.message.content:typeof t.text=="string"?t.text:String(e)}function al(e){return["[SYSTEM: First turn only. Do not implement yet.]","Start by producing a concise implementation plan only.","Then end your response with an explicit question asking whether you should proceed with implementation.","",e].join(`
43
- `)}function Yi(e){return e instanceof Error?e.message:String(e)}function ul(e){return e?e.split(",").map(t=>t.trim()).filter(Boolean):[]}function dl(e){return Xp(Qp(e)).root||"/"}function ml(e){let r=[dl(e)];return r.push(...ul(process.env[nl])),[...new Set(r)]}function cl(e,t){let n=(t??e.permissionMode)==="bypassPermissions"?ml(e.cwd):void 0;return{model:e.model,modelReasoningEffort:e.reasoningEffort,workingDirectory:e.cwd,sandboxMode:"danger-full-access",approvalPolicy:e.codexApprovalPolicy??"on-request",skipGitRepoCheck:!0,additionalDirectories:n}}var Ur=class{constructor(t={}){this.deps=t}name="codex";supportedPermissionModes=["default","plan","acceptEdits","bypassPermissions"];questionToolNames=[qi];planApprovalToolNames=[];activityHeartbeatMs(){let t=Number.parseInt(process.env[rl]??String(Wi),10);return!Number.isFinite(t)||t<=0?Wi:t}createCodexClient(t){return this.deps.createCodex?.({env:t})??(t?new Hi({env:t}):new Hi)}launch(t){let n=process.env[ol]==="legacy"?void 0:this.deps.createAuthWorkspace?.(process.env)??Bi(process.env),o=t.permissionMode==="plan",s=t.permissionMode==="plan"?"default":t.permissionMode,i=t.resumeSessionId,m=0,p=0,f=this.activityHeartbeatMs(),A,_,ie=!1,Y=!0,H,W=[],X=null,Fe=!1,er=!1;function Gn(){X&&(X(),X=null)}function et(D){W.push(D),Gn()}function Vn(){Fe=!0,Gn()}function Hr(D){!D||er||(er=!0,et({type:"init",session_id:D}))}async function*ia(){for(;;){for(;W.length>0;)yield W.shift();if(Fe)return;await new Promise(D=>{X=D})}}let tr=()=>cl(t,s),aa=D=>(A||(A=this.createCodexClient(D)),_||(Y&&t.resumeSessionId?_=A.resumeThread(t.resumeSessionId,tr()):i?_=A.resumeThread(i,tr()):_=A.startThread(tr())),ie&&i&&(_=A.resumeThread(i,tr()),ie=!1),Hr(_.id??i??void 0),_),Bn=async D=>{let qr=Date.now();p+=1;let Hn="",zr=!1,Yr,Jr,Wn=!1,ua=Y&&o?al(D):D,rr=tt=>{zr||(zr=!0,et({type:"result",data:zi(i??"",{duration_ms:Date.now()-qr,total_cost_usd:m,num_turns:p,...tt,session_id:i??""})}))},Xr=async()=>{!Jr||Wn||(Wn=!0,await Jr())};try{let tt=n?await n:void 0;tt&&(Jr=await tt.prepareForTurn());let qn=aa(tt?.env),zn=qn.id??i??void 0;zn&&(i=zn,Hr(i)),H=new AbortController,t.abortController?.signal.aborted&&H.abort(t.abortController.signal.reason),Yr=setInterval(()=>{et({type:"activity"})},f);let da=await qn.runStreamed(ua,{signal:H.signal});for await(let ae of da.events){if(await Xr(),ae.type==="thread.started"){i=ae.thread_id,Hr(i);continue}if(ae.type==="item.completed"){(ae.item.type==="agent_message"||ae.item.type==="reasoning")&&(Hn+=`${ae.item.text}
44
- `,et({type:"text",text:ae.item.text}));continue}if(ae.type==="error"){et({type:"text",text:`[codex:error] ${ae.message}`});continue}if(ae.type==="turn.failed"){rr({success:!1,result:ae.error.message,session_id:i??""});continue}if(ae.type==="turn.completed"){m+=sl(ae.usage);let Yn=Hn.slice(-500);$r(Yn)&&et({type:"tool_use",name:qi,input:{text:Yn}}),rr({success:!0,session_id:i??""})}}await Xr(),zr||rr({success:!1,result:"Codex turn ended without terminal event",session_id:i??""})}catch(tt){await Xr(),rr({success:!1,result:Yi(tt),session_id:i??""})}finally{Yr&&clearInterval(Yr),H=void 0,Y=!1}},Wr=()=>{H?.abort(t.abortController?.signal.reason??"interrupted")};return t.abortController?.signal&&t.abortController.signal.addEventListener("abort",Wr),(async()=>{try{let D=t.prompt;if(typeof D=="string"){await Bn(D);return}for await(let qr of D)if(t.abortController?.signal.aborted||(await Bn(il(qr)),t.abortController?.signal.aborted))break}finally{if(t.abortController?.signal.removeEventListener("abort",Wr),n)try{await(await n).cleanup()}catch{}Vn()}})().catch(D=>{et({type:"result",data:zi(i??"",{success:!1,result:Yi(D),total_cost_usd:m,num_turns:p,session_id:i??""})}),t.abortController?.signal.removeEventListener("abort",Wr),Vn()}),{messages:ia(),async setPermissionMode(D){s=D,ie=!0},async interrupt(){H?.abort("interrupted")}}}buildUserMessage(t,r){return{type:"user",text:t,session_id:r}}};var Kn=new Map;function Ji(e){Kn.set(e.name,e)}function Ln(e){let t=Kn.get(e);if(!t)throw new Error(`Unknown agent harness: "${e}". Available: ${[...Kn.keys()].join(", ")}`);return t}function Xi(){let e=h.defaultHarness??"claude-code";return Ln(e)}Ji(new Er);Ji(new Ur);var Qi=200,ll=120*1e3;function Nr(e){return e instanceof Error?e.message:String(e)}var fl={starting:["running","failed","killed"],running:["completed","failed","killed"],completed:[],failed:[],killed:[]},jn=class{queue=[];resolve=null;done=!1;hasPending(){return this.queue.length>0}push(t){this.queue.push(t),this.resolve&&(this.resolve(),this.resolve=null)}end(){this.done=!0,this.resolve&&(this.resolve(),this.resolve=null)}async*[Symbol.asyncIterator](){for(;;){for(;this.queue.length>0;)yield this.queue.shift();if(this.done)return;await new Promise(t=>{this.resolve=t})}}},_r=class extends pl{id;name;harnessSessionId;harness;harnessHandle;prompt;workdir;model;reasoningEffort;systemPrompt;allowedTools;permissionMode;codexApprovalPolicy;currentPermissionMode;pendingModeSwitch;resumeSessionId;forkSession;multiTurn;messageStream;_status="starting";error;startedAt;completedAt;abortController;outputBuffer=[];result;costUsd=0;originChannel;originThreadId;originAgentId;originSessionKey;pendingPlanApproval=!1;lobsterResumeToken;killReason="unknown";waitingForInputFired=!1;lastTurnHadQuestion=!1;planModeApproved=!1;autoRespondCount=0;timers=new Map;constructor(t,r){super(),this.id=_i(8),this.name=r,this.harness=t.harness?Ln(t.harness):Xi();let n=this.harness.name==="codex";this.prompt=t.prompt,this.workdir=t.workdir,this.model=t.model??(n?h.model:void 0)??h.defaultModel,this.reasoningEffort=t.reasoningEffort??(n?h.reasoningEffort:void 0),this.systemPrompt=t.systemPrompt,this.allowedTools=t.allowedTools,this.permissionMode=t.permissionMode??h.permissionMode,this.codexApprovalPolicy=n?t.codexApprovalPolicy??h.codexApprovalPolicy:void 0,this.currentPermissionMode=n&&this.permissionMode==="plan"?"default":this.permissionMode,this.originChannel=t.originChannel,this.originThreadId=t.originThreadId,this.originAgentId=t.originAgentId,this.originSessionKey=t.originSessionKey,this.resumeSessionId=t.resumeSessionId,this.forkSession=t.forkSession,this.multiTurn=t.multiTurn??!0,this.startedAt=Date.now(),this.abortController=new AbortController}get status(){return this._status}get harnessName(){return this.harness.name}get duration(){return(this.completedAt??Date.now())-this.startedAt}get phase(){return this._status!=="running"?this._status:this.harness.name==="codex"?"implementing":this.pendingPlanApproval?"awaiting-plan-approval":this.currentPermissionMode==="plan"?"planning":"implementing"}transition(t){if(!fl[this._status].includes(t))throw new Error(`Session state error: cannot transition from ${this._status} to ${t}. This is an internal error \u2014 please report it.`);let r=this._status;this._status=t,this.emit("statusChange",this,t,r)}setTimer(t,r,n){this.clearTimer(t),this.timers.set(t,setTimeout(n,r))}clearTimer(t){let r=this.timers.get(t);r&&(clearTimeout(r),this.timers.delete(t))}clearAllTimers(){for(let t of this.timers.values())clearTimeout(t);this.timers.clear()}async start(){try{let t;this.multiTurn?(this.messageStream=new jn,this.messageStream.push(this.harness.buildUserMessage(this.prompt,"")),t=this.messageStream):t=this.prompt;let r=this.harness.launch({prompt:t,cwd:this.workdir,model:this.model,reasoningEffort:this.reasoningEffort,permissionMode:this.permissionMode,codexApprovalPolicy:this.codexApprovalPolicy,systemPrompt:this.systemPrompt,allowedTools:this.allowedTools,resumeSessionId:this.resumeSessionId,forkSession:this.forkSession,abortController:this.abortController,mcpServers:li()});this.harnessHandle=r,this.setTimer("startup",ll,()=>{this._status==="starting"&&this.kill("startup-timeout")})}catch(t){let r=t instanceof Error?t.message:String(t);this.transitionToTerminal("failed",{error:r});return}this.consumeMessages(this.harnessHandle.messages).catch(t=>{let r=t instanceof Error?t.message:String(t),n=t instanceof Error?t.stack:void 0;console.error(`[Session ${this.id}] consumeMessages error: ${r}`,n),this.isActive&&this.transitionToTerminal("failed",{error:r})})}async sendMessage(t){if(this._status!=="running")throw new Error(`Session is not running (status: ${this._status})`);this.resetIdleTimer(),this.waitingForInputFired=!1;let r=t;if(this.pendingModeSwitch){let n=this.pendingModeSwitch,o=!1,s=!1;if(this.harnessHandle?.setPermissionMode)try{await this.harnessHandle.setPermissionMode(n),this.currentPermissionMode=n,this.pendingModeSwitch=void 0,s=!0,o=!0}catch(i){throw console.error(`[Session ${this.id}] setPermissionMode(${n}) FAILED: ${Nr(i)}`),this.pendingPlanApproval=!0,new Error(`Failed to switch permission mode to ${n}: ${Nr(i)}`)}else this.pendingModeSwitch=void 0,s=!0,o=!0,console.warn(`[Session ${this.id}] Cannot call setPermissionMode \u2014 falling back to text prefix only (currentPermissionMode remains ${this.currentPermissionMode})`);s&&(this.pendingPlanApproval=!1,n!=="plan"&&(this.planModeApproved=!0)),o&&(r=`[SYSTEM: The user has approved your plan. Exit plan mode immediately and implement the changes with full permissions. Do not ask for further confirmation.]
41
+ Use /agent_sessions to see active sessions or /agent_resume --list to see resumable sessions.`;return{text:`Error resuming session: ${z}${_}`}}}})}function Ki(e){e.registerCommand({name:"agent_respond",description:"Send a follow-up message to a running coding agent session. Usage: /agent_respond <id-or-name> <message>",acceptsArgs:!0,requireAuth:!0,handler:async t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let n=(t.args??"").trim();if(!n)return{text:`Usage: /agent_respond <id-or-name> <message>
42
+ /agent_respond --interrupt <id-or-name> <message>`};let r=!1,o=n;o.startsWith("--interrupt ")&&(r=!0,o=o.slice(12).trim());let i=o.indexOf(" ");if(i===-1)return{text:"Error: Missing message. Usage: /agent_respond <id-or-name> <message>"};let s=o.slice(0,i),c=o.slice(i+1).trim();return c?{text:(await _n(g,{session:s,message:c,interrupt:r,userInitiated:!0})).text}:{text:"Error: Empty message. Usage: /agent_respond <id-or-name> <message>"}}})}function Di(e){e.registerCommand({name:"agent_stats",description:"Show OpenClaw Code Agent usage metrics",acceptsArgs:!1,requireAuth:!0,handler:()=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let t=g.getMetrics(),n=g.list("running").length;return{text:$n(t,n)}}})}var Np=50;function ji(e){e.registerCommand({name:"agent_output",description:"Show recent output from a coding agent session. Usage: /agent_output <id-or-name> [--full] [--lines N]",acceptsArgs:!0,requireAuth:!0,handler:t=>{if(!g)return{text:"Error: SessionManager not initialized. The code-agent service must be running."};let n=(t.args??"").trim();if(!n)return{text:"Usage: /agent_output <id-or-name> [--full] [--lines N]"};let r=n.split(/\s+/),o="",i=!1,s=Np;for(let p=0;p<r.length;p++)if(r[p]==="--full")i=!0;else if(r[p]==="--lines"&&p+1<r.length){let f=parseInt(r[p+1],10);!isNaN(f)&&f>0&&(s=f),p++}else o||(o=r[p]);return o?{text:vn(g,o,{full:i,lines:s})}:{text:"Usage: /agent_output <id-or-name> [--full] [--lines N]"}}})}import{execFile as pa}from"child_process";import{existsSync as Jl}from"fs";import{fileURLToPath as la}from"url";import{dirname as Xl,join as zr}from"path";import{EventEmitter as bl}from"events";import Vi from"crypto";var Gi="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";var Up=128,It,Kt,_p=e=>{!It||It.length<e?(It=Buffer.allocUnsafe(e*Up),Vi.randomFillSync(It),Kt=0):Kt+e>It.length&&(Vi.randomFillSync(It),Kt=0),Kt+=e};var Hi=(e=21)=>{_p(e|=0);let t="";for(let n=Kt-e;n<Kt;n++)t+=Gi[It[n]&63];return t};import{query as Lp}from"@anthropic-ai/claude-agent-sdk";var Ln=class{name="claude-code";supportedPermissionModes=["default","plan","acceptEdits","bypassPermissions"];questionToolNames=["AskUserQuestion"];planApprovalToolNames=["ExitPlanMode","set_permission_mode"];launch(t){let n={cwd:t.cwd,model:t.model,permissionMode:t.permissionMode,allowDangerouslySkipPermissions:!0,allowedTools:t.allowedTools,systemPrompt:t.systemPrompt,includePartialMessages:!0,abortController:t.abortController,mcpServers:t.mcpServers};t.resumeSessionId&&(n.resume=t.resumeSessionId,n.forkSession=t.forkSession??!1);let r=Lp({prompt:t.prompt,options:n});return{messages:this.adaptMessages(r),async setPermissionMode(o){typeof r.setPermissionMode=="function"&&await r.setPermissionMode(o)},async streamInput(o){typeof r.streamInput=="function"&&await r.streamInput(o)},async interrupt(){typeof r.interrupt=="function"&&await r.interrupt()}}}buildUserMessage(t,n){return{type:"user",message:{role:"user",content:t},parent_tool_use_id:null,session_id:n}}async*adaptMessages(t){for await(let n of t){let r=n;if(r.type==="system"&&r.subtype==="init")yield{type:"init",session_id:r.session_id??""};else if(r.type==="system"&&r.subtype==="status"&&r.permissionMode)yield{type:"permission_mode_change",mode:r.permissionMode};else if(r.type==="assistant")for(let o of r.message?.content??[])o.type==="text"?yield{type:"text",text:o.text}:o.type==="tool_use"&&(yield{type:"tool_use",name:o.name,input:o.input});else r.type==="result"&&(yield{type:"result",data:{success:r.subtype==="success",duration_ms:r.duration_ms??0,total_cost_usd:r.total_cost_usd??0,num_turns:r.num_turns??0,result:r.result,session_id:r.session_id??""}})}}};import{parse as al,resolve as ul}from"path";import{Codex as Zi}from"@openai/codex-sdk";import{randomUUID as Kp}from"node:crypto";import{lstat as Dp,mkdir as Hr,readFile as qi,readlink as jp,realpath as Gp,rename as Vp,rm as Kn,symlink as Hp,writeFile as zi}from"node:fs/promises";import{homedir as Bp,tmpdir as Yi}from"node:os";import{dirname as Wp,join as ve,resolve as qp}from"node:path";var zp=50,Yp=3e4,Jp=ve(Yi(),"openclaw-codex-auth.lock");function Xp(e,t){let n={};for(let[r,o]of Object.entries(e))typeof o=="string"&&(n[r]=o);return n.HOME=t,n}function Qp(e){return new Promise(t=>setTimeout(t,e))}async function Ji(e){try{return await Dp(e),!0}catch(t){if(t.code==="ENOENT")return!1;throw t}}async function Bi(e,t){if(await Ji(t)){if(await jp(t)===e)return;await Kn(t,{recursive:!0,force:!0})}await Hp(e,t)}function Zp(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return null;let n=Number(t);if(Number.isFinite(n))return n;let r=Date.parse(t);if(Number.isFinite(r))return r}return null}async function Wi(e){let t;try{t=await qi(e,"utf8")}catch(n){return n.code==="ENOENT",null}try{let n=JSON.parse(t);if(!n||typeof n!="object")return null;let r=Zp(n.last_refresh);return r===null?null:{lastRefresh:r,raw:t}}catch{return null}}async function Xi(e,t){await Hr(Wp(e),{recursive:!0});let n=`${e}.tmp`;await zi(n,t,"utf8"),await Vp(n,e)}async function el(e,t){try{let n=await qi(e,"utf8");await Xi(t,n)}catch(n){if(n.code!=="ENOENT")throw n;await Kn(t,{force:!0})}}async function tl(e,t){let n=await Wi(e);if(!n)return;let r=await Wi(t);r&&n.lastRefresh<=r.lastRefresh||await Xi(t,n.raw)}async function nl(e,t,n){let r=Date.now()+t;for(;;)try{await Hr(e);break}catch(i){if(i.code!=="EEXIST")throw i;if(Date.now()>=r)throw new Error(`Timed out waiting for Codex auth lock at ${e}`);await Qp(n)}try{await zi(ve(e,"holder.json"),JSON.stringify({pid:process.pid,acquired_at:new Date().toISOString()}),"utf8")}catch{}let o=!1;return async()=>{o||(o=!0,await Kn(e,{recursive:!0,force:!0}))}}async function Qi(e=process.env,t={}){let n=e.HOME??Bp(),r=await Gp(n).catch(()=>qp(n)),o=ve(r,".codex"),i=ve(o,"auth.json"),s=ve(o,"sessions"),c=ve(o,"config.toml"),p=await Ji(c)?c:void 0,f=t.tempRootDir??Yi(),T=ve(f,`openclaw-codex-auth-${Kp()}`),U=ve(T,".codex"),te=ve(U,"auth.json"),ge=t.lockDir??Jp,ae=t.lockTimeoutMs??Yp,ee=t.lockRetryMs??zp;return await Hr(U,{recursive:!0}),await Bi(s,ve(U,"sessions")),p&&await Bi(p,ve(U,"config.toml")),{tempHome:T,tempCodexDir:U,canonicalHome:r,canonicalCodexDir:o,canonicalAuthPath:i,canonicalSessionsPath:s,canonicalConfigPath:p,env:Xp(e,T),async prepareForTurn(){let z=await nl(ge,ae,ee);try{await el(i,te)}catch(Be){throw await z(),Be}let _=!1;return async()=>{if(!_){_=!0;try{await tl(te,i)}finally{await z()}}}},async cleanup(){await Kn(T,{recursive:!0,force:!0})}}}var rl=["proceed","continue","implement","apply","run","merge","deploy","commit"],ol=["shall i proceed","do you want me to","would you like me to","please confirm","should i continue","can i proceed","should i proceed","should i go ahead","want me to continue","approve and i'll","confirm and i'll"],sl=["why this failed was","why did this fail","what failed","what happened","how can i help","is this clear","any questions","anything else","let me know","would you like a summary"];function il(e){return e.toLowerCase().replace(/\s+/g," ").trim()}function Dn(e){let t=il(e);if(!t||sl.some(r=>t.includes(r)))return!1;let n=rl.some(r=>t.includes(r));return ol.some(r=>t.includes(r))?n||t.includes("confirm"):t.endsWith("?")?n:!1}var ea=1e4,ta="codex:waiting-for-user",dl=1.1/1e6,cl=.275/1e6,ml=4.4/1e6,pl="OPENCLAW_CODEX_HEARTBEAT_MS",ll="OPENCLAW_CODEX_BYPASS_ADDITIONAL_DIRS",fl="OPENCLAW_CODEX_AUTH_STRATEGY";function gl(e){if(!e)return 0;let t=e.cached_input_tokens??0,n=Math.max(0,(e.input_tokens??0)-t),r=e.output_tokens??0;return n*dl+t*cl+r*ml}function na(e,t={}){return{success:!1,duration_ms:0,total_cost_usd:0,num_turns:0,session_id:e,...t}}function Il(e){if(typeof e=="string")return e;if(!e||typeof e!="object")return String(e);let t=e;return typeof t.message?.content=="string"?t.message.content:typeof t.text=="string"?t.text:String(e)}function hl(e){return["[SYSTEM: First turn only. Do not implement yet.]","Start by producing a concise implementation plan only.","Then end your response with an explicit question asking whether you should proceed with implementation.","",e].join(`
43
+ `)}function ra(e){return e instanceof Error?e.message:String(e)}function yl(e){return e?e.split(",").map(t=>t.trim()).filter(Boolean):[]}function xl(e){return al(ul(e)).root||"/"}function Sl(e){let n=[xl(e)];return n.push(...yl(process.env[ll])),[...new Set(n)]}function Tl(e,t){let r=(t??e.permissionMode)==="bypassPermissions"?Sl(e.cwd):void 0;return{model:e.model,modelReasoningEffort:e.reasoningEffort,workingDirectory:e.cwd,sandboxMode:"danger-full-access",approvalPolicy:e.codexApprovalPolicy??"on-request",skipGitRepoCheck:!0,additionalDirectories:r}}var jn=class{constructor(t={}){this.deps=t}name="codex";supportedPermissionModes=["default","plan","acceptEdits","bypassPermissions"];questionToolNames=[ta];planApprovalToolNames=[];activityHeartbeatMs(){let t=Number.parseInt(process.env[pl]??String(ea),10);return!Number.isFinite(t)||t<=0?ea:t}createCodexClient(t){return this.deps.createCodex?.({env:t})??(t?new Zi({env:t}):new Zi)}launch(t){let r=process.env[fl]==="legacy"?void 0:this.deps.createAuthWorkspace?.(process.env)??Qi(process.env),o=t.permissionMode==="plan",i=t.permissionMode==="plan"?"default":t.permissionMode,s=t.resumeSessionId,c=0,p=0,f=this.activityHeartbeatMs(),T,U,te=!1,ge=!0,ae,ee=[],z=null,_=!1,Be=!1;function be(){z&&(z(),z=null)}function we(G){ee.push(G),be()}function Jr(){_=!0,be()}function fa(G){!G||Be||(Be=!0,we({type:"init",session_id:G}))}async function*ga(){for(;;){for(;ee.length>0;)yield ee.shift();if(_)return;await new Promise(G=>{z=G})}}let an=()=>Tl(t,i),Ia=G=>(T||(T=this.createCodexClient(G)),U||(ge&&t.resumeSessionId?U=T.resumeThread(t.resumeSessionId,an()):s?U=T.resumeThread(s,an()):U=T.startThread(an())),te&&s&&(U=T.resumeThread(s,an()),te=!1),U),Xr=async G=>{let Zn=Date.now();p+=1;let Qr="",er=!1,tr,nr,Zr=!1,ha=ge&&o?hl(G):G,un=st=>{er||(er=!0,we({type:"result",data:na(s??"",{duration_ms:Date.now()-Zn,total_cost_usd:c,num_turns:p,...st,session_id:s??""})}))},rr=async()=>{!nr||Zr||(Zr=!0,await nr())};try{let st=r?await r:void 0;st&&(nr=await st.prepareForTurn());let or=Ia(st?.env),eo=or.id??s??void 0;eo&&(s=eo),ae=new AbortController,t.abortController?.signal.aborted&&ae.abort(t.abortController.signal.reason),tr=setInterval(()=>{we({type:"activity"})},f);let ya=await or.runStreamed(ha,{signal:ae.signal});for await(let ne of ya.events)if(await rr(),ne.type==="thread.started"&&(s=ne.thread_id),fa(s??or.id??void 0),ne.type!=="thread.started"){if(ne.type==="item.completed"){(ne.item.type==="agent_message"||ne.item.type==="reasoning")&&(Qr+=`${ne.item.text}
44
+ `,we({type:"text",text:ne.item.text}));continue}if(ne.type==="error"){we({type:"text",text:`[codex:error] ${ne.message}`});continue}if(ne.type==="turn.failed"){un({success:!1,result:ne.error.message,session_id:s??""});continue}if(ne.type==="turn.completed"){c+=gl(ne.usage);let to=Qr.slice(-500);Dn(to)&&we({type:"tool_use",name:ta,input:{text:to}}),un({success:!0,session_id:s??""})}}await rr(),er||un({success:!1,result:"Codex turn ended without terminal event",session_id:s??""})}catch(st){await rr(),un({success:!1,result:ra(st),session_id:s??""})}finally{tr&&clearInterval(tr),ae=void 0,ge=!1}},Qn=()=>{ae?.abort(t.abortController?.signal.reason??"interrupted")};return t.abortController?.signal&&t.abortController.signal.addEventListener("abort",Qn),(async()=>{try{let G=t.prompt;if(typeof G=="string"){await Xr(G);return}for await(let Zn of G)if(t.abortController?.signal.aborted||(await Xr(Il(Zn)),t.abortController?.signal.aborted))break}finally{if(t.abortController?.signal.removeEventListener("abort",Qn),r)try{await(await r).cleanup()}catch{}Jr()}})().catch(G=>{we({type:"result",data:na(s??"",{success:!1,result:ra(G),total_cost_usd:c,num_turns:p,session_id:s??""})}),t.abortController?.signal.removeEventListener("abort",Qn),Jr()}),{messages:ga(),async setPermissionMode(G){i=G,te=!0},async interrupt(){ae?.abort("interrupted")}}}buildUserMessage(t,n){return{type:"user",text:t,session_id:n}}};var Br=new Map;function oa(e){Br.set(e.name,e)}function Wr(e){let t=Br.get(e);if(!t)throw new Error(`Unknown agent harness: "${e}". Available: ${[...Br.keys()].join(", ")}`);return t}function sa(){return Wr(nt())}oa(new Ln);oa(new jn);var ia=200,wl=120*1e3;function Gn(e){return e instanceof Error?e.message:String(e)}var Al={starting:["running","failed","killed"],running:["completed","failed","killed"],completed:[],failed:[],killed:[]},qr=class{queue=[];resolve=null;done=!1;hasPending(){return this.queue.length>0}push(t){this.queue.push(t),this.resolve&&(this.resolve(),this.resolve=null)}end(){this.done=!0,this.resolve&&(this.resolve(),this.resolve=null)}async*[Symbol.asyncIterator](){for(;;){for(;this.queue.length>0;)yield this.queue.shift();if(this.done)return;await new Promise(t=>{this.resolve=t})}}},Vn=class extends bl{id;name;harnessSessionId;harness;harnessHandle;prompt;workdir;model;reasoningEffort;systemPrompt;allowedTools;permissionMode;codexApprovalPolicy;currentPermissionMode;pendingModeSwitch;resumeSessionId;forkSession;multiTurn;messageStream;_status="starting";error;startedAt;completedAt;abortController;outputBuffer=[];result;costUsd=0;originChannel;originThreadId;originAgentId;originSessionKey;pendingPlanApproval=!1;lobsterResumeToken;killReason="unknown";waitingForInputFired=!1;lastTurnHadQuestion=!1;planModeApproved=!1;autoRespondCount=0;timers=new Map;constructor(t,n){super(),this.id=Hi(8),this.name=n,this.harness=t.harness?Wr(t.harness):sa(),this.prompt=t.prompt,this.workdir=t.workdir,this.model=t.model??rt(this.harness.name),this.reasoningEffort=t.reasoningEffort??Nt(this.harness.name),this.systemPrompt=t.systemPrompt,this.allowedTools=t.allowedTools,this.permissionMode=t.permissionMode??E.permissionMode,this.codexApprovalPolicy=this.harness.name==="codex"?t.codexApprovalPolicy??gt(this.harness.name)??E.codexApprovalPolicy:void 0,this.currentPermissionMode=this.harness.name==="codex"&&this.permissionMode==="plan"?"default":this.permissionMode,this.originChannel=t.originChannel,this.originThreadId=t.originThreadId,this.originAgentId=t.originAgentId,this.originSessionKey=t.originSessionKey,this.resumeSessionId=t.resumeSessionId,this.forkSession=t.forkSession,this.multiTurn=t.multiTurn??!0,this.startedAt=Date.now(),this.abortController=new AbortController}get status(){return this._status}get harnessName(){return this.harness.name}get duration(){return(this.completedAt??Date.now())-this.startedAt}get phase(){return this._status!=="running"?this._status:this.harness.name==="codex"?"implementing":this.pendingPlanApproval?"awaiting-plan-approval":this.currentPermissionMode==="plan"?"planning":"implementing"}transition(t){if(!Al[this._status].includes(t))throw new Error(`Session state error: cannot transition from ${this._status} to ${t}. This is an internal error \u2014 please report it.`);let n=this._status;this._status=t,this.emit("statusChange",this,t,n)}setTimer(t,n,r){this.clearTimer(t),this.timers.set(t,setTimeout(r,n))}clearTimer(t){let n=this.timers.get(t);n&&(clearTimeout(n),this.timers.delete(t))}clearAllTimers(){for(let t of this.timers.values())clearTimeout(t);this.timers.clear()}async start(){try{let t;this.multiTurn?(this.messageStream=new qr,this.messageStream.push(this.harness.buildUserMessage(this.prompt,"")),t=this.messageStream):t=this.prompt;let n=this.harness.launch({prompt:t,cwd:this.workdir,model:this.model,reasoningEffort:this.reasoningEffort,permissionMode:this.permissionMode,codexApprovalPolicy:this.codexApprovalPolicy,systemPrompt:this.systemPrompt,allowedTools:this.allowedTools,resumeSessionId:this.resumeSessionId,forkSession:this.forkSession,abortController:this.abortController,mcpServers:Si()});this.harnessHandle=n,this.setTimer("startup",wl,()=>{this._status==="starting"&&this.kill("startup-timeout")})}catch(t){let n=t instanceof Error?t.message:String(t);this.transitionToTerminal("failed",{error:n});return}this.consumeMessages(this.harnessHandle.messages).catch(t=>{let n=t instanceof Error?t.message:String(t),r=t instanceof Error?t.stack:void 0;console.error(`[Session ${this.id}] consumeMessages error: ${n}`,r),this.isActive&&this.transitionToTerminal("failed",{error:n})})}async sendMessage(t){if(this._status!=="running")throw new Error(`Session is not running (status: ${this._status})`);this.resetIdleTimer(),this.waitingForInputFired=!1;let n=t;if(this.pendingModeSwitch){let r=this.pendingModeSwitch,o=!1,i=!1;if(this.harnessHandle?.setPermissionMode)try{await this.harnessHandle.setPermissionMode(r),this.currentPermissionMode=r,this.pendingModeSwitch=void 0,i=!0,o=!0}catch(s){throw console.error(`[Session ${this.id}] setPermissionMode(${r}) FAILED: ${Gn(s)}`),this.pendingPlanApproval=!0,new Error(`Failed to switch permission mode to ${r}: ${Gn(s)}`)}else this.pendingModeSwitch=void 0,i=!0,o=!0,console.warn(`[Session ${this.id}] Cannot call setPermissionMode \u2014 falling back to text prefix only (currentPermissionMode remains ${this.currentPermissionMode})`);i&&(this.pendingPlanApproval=!1,r!=="plan"&&(this.planModeApproved=!0)),o&&(n=`[SYSTEM: The user has approved your plan. Exit plan mode immediately and implement the changes with full permissions. Do not ask for further confirmation.]
45
45
 
46
- ${t}`)}else if(this.pendingPlanApproval&&!this.planModeApproved){let n=this.harness.planApprovalToolNames;if(r=`[SYSTEM: The user wants changes to your plan. Revise the plan based on their feedback below,${n.length>0?` then call ${n.join(" or ")} again to re-submit for approval.`:" then re-submit your revised plan for approval."} Do NOT start implementing yet.]
46
+ ${t}`)}else if(this.pendingPlanApproval&&!this.planModeApproved){let r=this.harness.planApprovalToolNames;if(n=`[SYSTEM: The user wants changes to your plan. Revise the plan based on their feedback below,${r.length>0?` then call ${r.join(" or ")} again to re-submit for approval.`:" then re-submit your revised plan for approval."} Do NOT start implementing yet.]
47
47
 
48
- ${t}`,this.harnessHandle?.setPermissionMode)try{await this.harnessHandle.setPermissionMode("plan"),this.currentPermissionMode="plan"}catch(s){console.warn(`[Session ${this.id}] Failed to re-assert plan mode: ${Nr(s)}`)}}if(this.multiTurn&&this.messageStream)this.messageStream.push(this.harness.buildUserMessage(r,this.harnessSessionId??""));else if(this.harnessHandle?.streamInput){let n=this.harness.buildUserMessage(r,this.harnessSessionId??"");async function*o(){yield n}await this.harnessHandle.streamInput(o())}else throw new Error("Session does not support follow-up messages (launched in single-turn mode).")}async interrupt(){this.harnessHandle?.interrupt&&await this.harnessHandle.interrupt()}switchPermissionMode(t){this.pendingModeSwitch=t}get isActive(){return this._status==="starting"||this._status==="running"}kill(t){this.transitionToTerminal("killed",{reason:t})}complete(t="done"){this.transitionToTerminal("completed",{reason:t})}incrementAutoRespond(){this.autoRespondCount++}resetAutoRespond(){this.autoRespondCount=0}getOutput(t){return t===void 0?this.outputBuffer.slice():this.outputBuffer.slice(-t)}resetIdleTimer(){if(!this.multiTurn)return;let t=(h.idleTimeoutMinutes??15)*60*1e3;this.setTimer("idle",t,()=>{this._status==="running"&&this.kill("idle-timeout")})}teardown(){this.clearAllTimers(),this.completedAt||(this.completedAt=Date.now()),this.messageStream&&this.messageStream.end(),this.harnessHandle?.interrupt&&this.harnessHandle.interrupt().catch(t=>{console.warn(`[Session ${this.id}] interrupt during teardown failed: ${Nr(t)}`)}),this.abortController.abort()}transitionToTerminal(t,r={}){this.isActive&&(r.reason&&(this.killReason=r.reason),r.error!==void 0&&(this.error=r.error),this.completedAt=Date.now(),this.transition(t),this.teardown())}async consumeMessages(t){for await(let r of t){if(!this.isActive)break;if(this.resetIdleTimer(),r.type==="init")this.clearTimer("startup"),this.harnessSessionId=r.session_id,this._status==="starting"&&this.transition("running");else if(r.type==="text")this.waitingForInputFired=!1,this.pendingPlanApproval||(this.lastTurnHadQuestion=!1),this.outputBuffer.push(r.text),this.outputBuffer.length>Qi&&this.outputBuffer.splice(0,this.outputBuffer.length-Qi),this.emit("output",this,r.text);else if(r.type==="tool_use")this.harness.questionToolNames.includes(r.name)?(this.lastTurnHadQuestion=!0,this.currentPermissionMode==="plan"&&!this.planModeApproved&&(this.pendingPlanApproval=!0)):this.harness.planApprovalToolNames.includes(r.name)&&!this.planModeApproved&&(this.lastTurnHadQuestion=!0,this.pendingPlanApproval=!0),this.emit("toolUse",this,r.name,r.input);else if(r.type==="permission_mode_change"){let n=this.currentPermissionMode;this.currentPermissionMode=r.mode,r.mode!=="plan"&&n==="plan"&&!this.planModeApproved&&(this.pendingPlanApproval=!0,this.lastTurnHadQuestion=!0)}else if(r.type==="result"){if(this.result={subtype:r.data.success?"success":"error",duration_ms:r.data.duration_ms,total_cost_usd:r.data.total_cost_usd,num_turns:r.data.num_turns,result:r.data.result,is_error:!r.data.success,session_id:r.data.session_id},this.costUsd=r.data.total_cost_usd,this.multiTurn&&this.messageStream&&r.data.success){this.resetIdleTimer(),this.currentPermissionMode==="plan"&&!this.pendingPlanApproval&&!this.planModeApproved&&(this.pendingPlanApproval=!0);let o=this.pendingPlanApproval||this.lastTurnHadQuestion,s=this.messageStream?.hasPending()===!0;o&&!this.waitingForInputFired?(this.waitingForInputFired=!0,this.emit("turnEnd",this,!0)):s||o||(this.emit("turnEnd",this,!1),this.complete("done"))}else this.transitionToTerminal(r.data.success?"completed":"failed");this.lastTurnHadQuestion=!1}else r.type}}};import{mkdirSync as gl,readFileSync as Il,readdirSync as hl,renameSync as yl,statSync as xl,unlinkSync as Sl,writeFileSync as Zi}from"fs";import{homedir as Tl,tmpdir as ea}from"os";import{dirname as bl,join as Kr}from"path";function Al(e){let t=e.OPENCLAW_HOME?.trim();return t||Kr(Tl(),".openclaw")}function wl(e){let t=e.OPENCLAW_CODE_AGENT_SESSIONS_PATH?.trim();return t||Kr(Al(e),"code-agent-sessions.json")}var Pl=new Set(["completed","failed","killed"]),Ol=new Set(["running","completed","failed","killed"]),Rl=1440*60*1e3;function ta(e){return e instanceof Error?e.message:String(e)}function Cl(e){return!!e&&typeof e=="object"}function vr(e,t=""){return typeof e=="string"&&e.trim().length>0?e:t}function pt(e){return typeof e=="string"&&e.trim().length>0?e:void 0}function ra(e){return typeof e=="number"&&Number.isFinite(e)?e:void 0}function Ml(e){return e==="low"||e==="medium"||e==="high"?e:void 0}function kl(e){return e==="default"||e==="plan"||e==="acceptEdits"||e==="bypassPermissions"?e:void 0}function El(e){return e==="never"||e==="on-request"?e:void 0}function Fl(e){return e==="user"||e==="idle-timeout"||e==="startup-timeout"||e==="shutdown"||e==="done"||e==="unknown"?e:void 0}function $l(e){if(typeof e=="string"&&Ol.has(e))return e==="running"?"killed":e}function Ul(e){if(!Cl(e))return;let t=vr(e.harnessSessionId);if(!t)return;let r=$l(e.status);if(r)return{sessionId:pt(e.sessionId),harnessSessionId:t,name:vr(e.name,t),prompt:vr(e.prompt),workdir:vr(e.workdir,"(unknown)"),model:pt(e.model),reasoningEffort:Ml(e.reasoningEffort),createdAt:ra(e.createdAt),completedAt:ra(e.completedAt),status:r,killReason:Fl(e.killReason),costUsd:typeof e.costUsd=="number"&&Number.isFinite(e.costUsd)?e.costUsd:0,originAgentId:pt(e.originAgentId),originChannel:pt(e.originChannel),originThreadId:typeof e.originThreadId=="string"||typeof e.originThreadId=="number"?e.originThreadId:void 0,originSessionKey:pt(e.originSessionKey),outputPath:pt(e.outputPath),harness:pt(e.harness),currentPermissionMode:kl(e.currentPermissionMode),codexApprovalPolicy:El(e.codexApprovalPolicy)}}var Lr=class{persisted=new Map;idIndex=new Map;nameIndex=new Map;indexPath;constructor(t={}){let r=t.env??process.env;this.indexPath=t.indexPath??wl(r),r.OPENCLAW_DEBUG_SESSION_STORE==="1"&&console.warn(`[SessionStore] index path: ${this.indexPath}`),this.loadIndex()}loadIndex(){try{let t=Il(this.indexPath,"utf-8"),r=JSON.parse(t);if(!Array.isArray(r))return;let n=!1;for(let o of r){let s=Ul(o);if(!s){n=!0;continue}this.persisted.set(s.harnessSessionId,s),s.sessionId&&this.idIndex.set(s.sessionId,s.harnessSessionId),s.name&&this.nameIndex.set(s.name,s.harnessSessionId)}n&&this.saveIndex()}catch{}}saveIndex(){try{gl(bl(this.indexPath),{recursive:!0});let t=this.indexPath+".tmp";Zi(t,JSON.stringify([...this.persisted.values()],null,2),"utf-8"),yl(t,this.indexPath)}catch(t){console.warn(`[SessionStore] Failed to save session index: ${ta(t)}`)}}markRunning(t){if(!t.harnessSessionId)return;let r={sessionId:t.id,harnessSessionId:t.harnessSessionId,name:t.name,prompt:t.prompt,workdir:t.workdir,model:t.model,reasoningEffort:t.reasoningEffort,createdAt:t.startedAt,status:"running",costUsd:0,originAgentId:t.originAgentId,originChannel:t.originChannel,originThreadId:t.originThreadId,originSessionKey:t.originSessionKey,harness:t.harnessName,currentPermissionMode:t.currentPermissionMode,codexApprovalPolicy:t.codexApprovalPolicy};this.persisted.set(r.harnessSessionId,r),this.idIndex.set(t.id,r.harnessSessionId),this.nameIndex.set(t.name,r.harnessSessionId),this.saveIndex()}hasRecordedSession(t){return this.idIndex.has(t)}persistTerminal(t){if(!t.harnessSessionId)return;let r;try{let o=Kr(ea(),`openclaw-agent-${t.id}.txt`),s=t.getOutput().join(`
49
- `);s.length>0&&(Zi(o,s,"utf-8"),r=o)}catch(o){console.warn(`[SessionStore] Failed to write output file for session ${t.id}: ${ta(o)}`)}let n={sessionId:t.id,harnessSessionId:t.harnessSessionId,name:t.name,prompt:t.prompt,workdir:t.workdir,model:t.model,reasoningEffort:t.reasoningEffort,createdAt:t.startedAt,completedAt:t.completedAt,status:t.status,killReason:t.killReason,costUsd:t.costUsd,originAgentId:t.originAgentId,originChannel:t.originChannel,originThreadId:t.originThreadId,originSessionKey:t.originSessionKey,outputPath:r,harness:t.harnessName,currentPermissionMode:t.currentPermissionMode,codexApprovalPolicy:t.codexApprovalPolicy};this.persisted.set(t.harnessSessionId,n),this.idIndex.set(t.id,t.harnessSessionId),this.nameIndex.set(t.name,t.harnessSessionId),this.saveIndex()}getLatestPersistedByName(t){let r,n=Number.NEGATIVE_INFINITY,o=Number.NEGATIVE_INFINITY,s=Number.NEGATIVE_INFINITY,i=0;for(let m of this.persisted.values()){if(m.name!==t){i++;continue}let p=m.createdAt??Number.NEGATIVE_INFINITY,f=m.completedAt??Number.NEGATIVE_INFINITY;(p>n||p===n&&f>o||p===n&&f===o&&i>s)&&(r=m,n=p,o=f,s=i),i++}return r}resolveHarnessSessionId(t,r){if(r)return r;let n=this.idIndex.get(t);if(n&&this.persisted.has(n))return n;let o=this.getLatestPersistedByName(t);if(o)return o.harnessSessionId;if(this.persisted.has(t)||/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(t))return t}getPersistedSession(t){let r=this.persisted.get(t);if(r)return r;let n=this.idIndex.get(t);return n?this.persisted.get(n):this.getLatestPersistedByName(t)}listPersistedSessions(){return[...this.persisted.values()].sort((t,r)=>(r.completedAt??0)-(t.completedAt??0))}cleanupTmpOutputFiles(t){try{let r=ea(),n=hl(r).filter(o=>o.startsWith("openclaw-agent-")&&o.endsWith(".txt"));for(let o of n)try{let s=Kr(r,o),i=xl(s).mtimeMs;t-i>Rl&&Sl(s)}catch{}}catch{}}evictOldestPersisted(t){let r=this.listPersistedSessions();if(r.length<=t)return;let n=r.slice(t);for(let o of n){this.persisted.delete(o.harnessSessionId);for(let[s,i]of this.idIndex)i===o.harnessSessionId&&this.idIndex.delete(s);for(let[s,i]of this.nameIndex)i===o.harnessSessionId&&this.nameIndex.delete(s)}this.saveIndex()}shouldGcActiveSession(t,r,n){return!t.completedAt||!Pl.has(t.status)?!1:r-t.completedAt>n}};var Nl=new Set(["completed","failed","killed"]),jr=class{metrics={totalCostUsd:0,costPerDay:new Map,sessionsByStatus:{completed:0,failed:0,killed:0},totalLaunched:0,totalDurationMs:0,sessionsWithDuration:0,mostExpensive:null};incrementLaunched(){this.metrics.totalLaunched++}recordSession(t){let r=t.costUsd??0,n=t.status;this.metrics.totalCostUsd+=r;let o=new Date(t.completedAt??t.startedAt).toISOString().slice(0,10);if(this.metrics.costPerDay.set(o,(this.metrics.costPerDay.get(o)??0)+r),Nl.has(n)&&this.metrics.sessionsByStatus[n]++,t.completedAt){let s=t.completedAt-t.startedAt;this.metrics.totalDurationMs+=s,this.metrics.sessionsWithDuration++}(!this.metrics.mostExpensive||r>this.metrics.mostExpensive.costUsd)&&(this.metrics.mostExpensive={id:t.id,name:t.name,costUsd:r,prompt:Ze(t.prompt,80)})}getMetrics(){return{totalCostUsd:this.metrics.totalCostUsd,costPerDay:new Map(this.metrics.costPerDay),sessionsByStatus:{...this.metrics.sessionsByStatus},totalLaunched:this.metrics.totalLaunched,totalDurationMs:this.metrics.totalDurationMs,sessionsWithDuration:this.metrics.sessionsWithDuration,mostExpensive:this.metrics.mostExpensive?{...this.metrics.mostExpensive}:null}}};import{execFile as _l}from"child_process";import{randomUUID as vl}from"crypto";var na=3e4,Kl=2e3,Ll=2e4,Dr=4,Gr=class{pendingRetryTimers=new Set;clearPendingRetries(){for(let t of this.pendingRetryTimers)clearTimeout(t);this.pendingRetryTimers.clear()}getOriginSessionKey(t){let r=t.originSessionKey?.trim();return r||void 0}getOriginThreadId(t){let r=t.originThreadId;return r==null?void 0:String(r).trim()||void 0}parseNotificationRoute(t){let r=t.originChannel?.trim(),n=this.getOriginThreadId(t);if(r){let i=r.split("|").map(m=>m.trim()).filter(Boolean);if(i.length>=2){let[m,p,f]=i,A=f??p,_=f?p:void 0;if(m&&A)return{channel:m,target:A,accountId:_,threadId:n??this.parseThreadIdFromSessionKey(t.originSessionKey)}}}let o=this.getOriginSessionKey(t);if(!o)return;let s=o.match(/^agent:[^:]+:telegram:(?:direct|dm|group|channel):([^:]+)(?::topic:(\d+))?$/i);if(s?.[1])return{channel:"telegram",target:s[1],threadId:n??s[2]}}parseThreadIdFromSessionKey(t){return t?t.match(/:topic:(\d+)$/)?.[1]:void 0}retryDelayMs(t){let r=Math.max(0,t-1),n=Kl*2**r;return Math.min(n,Ll)}executeWithRetries(t,r,n=1){let o=Date.now();console.info(`[WakeDispatcher] ${r.target} ${r.phase} started attempt ${n}/${Dr} for ${r.label} session=${r.sessionId}`),_l("openclaw",t,{timeout:na},s=>{let i=Date.now()-o;if(!s){console.info(`[WakeDispatcher] ${r.target} ${r.phase} completed attempt ${n}/${Dr} for ${r.label} session=${r.sessionId} in ${i}ms`);return}let m=`[WakeDispatcher] ${r.target} ${r.phase} failed`;if(n>=Dr){console.error(`${m} after ${n} attempts for ${r.label} session=${r.sessionId} in ${i}ms: ${s.message}`),r.onFinalFailure?.();return}let p=this.retryDelayMs(n);console.error(`${m} attempt ${n}/${Dr} for ${r.label} session=${r.sessionId} in ${i}ms: ${s.message}. Retrying in ${p}ms`);let f=setTimeout(()=>{this.pendingRetryTimers.delete(f),this.executeWithRetries(t,r,n+1)},p);this.pendingRetryTimers.add(f)})}fireChatSendWithRetry(t,r,n,o,s,i=!1,m){let p=["gateway","call","chat.send","--expect-final","--timeout",String(na),"--params",JSON.stringify({sessionKey:t,message:r,deliver:i,idempotencyKey:vl()})];this.executeWithRetries(p,{label:n,sessionId:o,target:"chat.send",phase:s,onFinalFailure:m})}fireDirectNotificationWithRetry(t,r,n,o,s){let i=["message","send","--channel",t.channel,"--target",t.target,"--message",r];t.accountId&&i.push("--account",t.accountId),t.threadId&&i.push("--thread-id",t.threadId),this.executeWithRetries(i,{label:n,sessionId:o,target:"message.send",phase:"notify",onFinalFailure:s})}fireSystemEventWithRetry(t,r,n,o){let s=["system","event","--text",t,"--mode","now"];this.executeWithRetries(s,{label:r,sessionId:n,target:"system.event",phase:o})}sendUserNotification(t,r,n,o){let s=this.parseNotificationRoute(t);if(!s){this.fireSystemEventWithRetry(r,`${n}-notify-system`,o,"notify");return}this.fireDirectNotificationWithRetry(s,r,`${n}-notify`,o,()=>{this.fireSystemEventWithRetry(r,`${n}-notify-fallback`,o,"notify")})}dispatchSessionNotification(t,r){let n=this.getOriginSessionKey(t),o=r.notifyUser??(r.wakeMessage?"on-wake-fallback":"always"),s=r.userMessage?.trim(),i=r.wakeMessage?.trim();if(o==="always"&&s&&this.sendUserNotification(t,s,r.label,t.id),!!i){if(!n){o==="on-wake-fallback"&&s&&this.sendUserNotification(t,s,r.label,t.id),this.fireSystemEventWithRetry(i,`${r.label}-wake-system`,t.id,"wake");return}this.fireChatSendWithRetry(n,i,`${r.label}-wake`,t.id,"wake",!0,()=>{this.fireSystemEventWithRetry(i,`${r.label}-wake-fallback`,t.id,"wake")})}}};function Gl(){let e=process.env.OPENCLAW_CODE_AGENT_PLAN_WORKFLOW_PATH?.trim();if(e)return e;let t=Dl(sa(import.meta.url)),r=[Dn(process.cwd(),"workflows","plan-approval.lobster"),Dn(t,"..","workflows","plan-approval.lobster"),Dn(t,"..","..","workflows","plan-approval.lobster")];for(let n of r)if(jl(n))return n;return sa(new URL("../workflows/plan-approval.lobster",import.meta.url))}var Vl=Gl(),Bl=new Set(["completed","failed","killed"]),Vr=new Set(["starting","running"]),Hl=5e3,Wl=3e4;function ql(e){let t=e.trim();if(!t)return;let r=s=>typeof s=="string"&&s.trim().length>0&&/^[A-Za-z0-9._:-]+$/.test(s.trim()),n=[t];for(let s of t.split(/\r?\n/)){let i=s.trim();i.startsWith("{")&&i.endsWith("}")&&n.push(i)}for(let s of n)try{let i=JSON.parse(s),m=i?.resumeToken??i?.requiresApproval?.resumeToken??i?.details?.requiresApproval?.resumeToken;if(r(m))return m.trim()}catch{}let o=t.match(/"resumeToken"\s*:\s*"([^"]+)"/);if(o&&r(o[1]))return o[1].trim()}var Br=class{sessions=new Map;maxSessions;maxPersistedSessions;lastWaitingEventTimestamps=new Map;lastTurnCompleteMarkers=new Map;lastTerminalWakeMarkers=new Map;store;metrics;wakeDispatcher;constructor(t=20,r=50){this.maxSessions=t,this.maxPersistedSessions=r,this.store=new Lr,this.metrics=new jr,this.wakeDispatcher=new Gr}get persisted(){return this.store.persisted}get idIndex(){return this.store.idIndex}get nameIndex(){return this.store.nameIndex}uniqueName(t){let r=new Set([...this.sessions.values()].filter(o=>Vr.has(o.status)).map(o=>o.name));if(!r.has(t))return t;let n=2;for(;r.has(`${t}-${n}`);)n++;return`${t}-${n}`}spawn(t){if([...this.sessions.values()].filter(m=>Vr.has(m.status)).length>=this.maxSessions)throw new Error(`Max sessions reached (${this.maxSessions}). Use agent_sessions to list active sessions and agent_kill to end one.`);let n=t.name||yi(t.prompt),o=this.uniqueName(n);o!==n&&console.warn(`[SessionManager] Name conflict: "${n}" \u2192 "${o}" (active session with same name exists)`);let s=new _r(t,o);this.sessions.set(s.id,s),this.metrics.incrementLaunched(),s.on("statusChange",(m,p)=>{p==="running"&&s.harnessSessionId?this.store.markRunning(s):Bl.has(p)&&this.onSessionTerminal(s)}),s.on("turnEnd",(m,p)=>{this.onTurnEnd(s,p)}),s.start();let i=`\u{1F680} [${s.name}] Launched | ${s.workdir} | ${s.model??"default"}`;return this.notifySession(s,i,"launch"),s}onSessionTerminal(t){if(this.persistSession(t),this.lastWaitingEventTimestamps.delete(t.id),t.killReason==="done")return;if(t.status==="completed"){if(!this.shouldEmitTerminalWake(t))return;this.triggerAgentEvent(t);return}if(t.status==="failed"){if(!this.shouldEmitTerminalWake(t))return;let m=t.error||t.result?.is_error&&t.result.result||t.result?.result||this.extractLastOutputLine(t)||`Session failed with no error details (session=${t.id}, subtype=${t.result?.subtype??"none"}, turns=${t.result?.num_turns??0})`,p=Ze(m,200);this.triggerFailedEvent(t,p);return}let r=`$${(t.costUsd??0).toFixed(2)}`,n=_e(t.duration),s={user:"by agent/user","idle-timeout":`idle ${h.idleTimeoutMinutes??15}min`,shutdown:"gateway shutdown",unknown:""}[t.killReason]||"",i=`Killed${s?` (${s})`:""}`;this.notifySession(t,`\u26D4 [${t.name}] ${i} | ${r} | ${n}`)}persistSession(t){this.store.hasRecordedSession(t.id)||this.metrics.recordSession(t),this.store.persistTerminal(t)}getMetrics(){return this.metrics.getMetrics()}recordSessionMetrics(t){this.metrics.recordSession(t)}notifySession(t,r,n="notification"){this.dispatchSessionNotification(t,{label:n,userMessage:r,notifyUser:"always"})}dispatchSessionNotification(t,r){this.wakeDispatcher.dispatchSessionNotification(t,r)}runLobsterApproval(t,r){let n=JSON.stringify({session_id:t.id,session_name:t.name,plan_summary:r}),o=["--json","invoke","--tool","lobster","--args-json",JSON.stringify({action:"run",pipeline:Vl,argsJson:n,timeoutMs:0})];oa("openclaw",o,{timeout:Wl},(s,i,m)=>{if(s){console.error(`[SessionManager] Lobster launch failed for session=${t.id}: ${s.message}`),this.notifySession(t,`\u{1F4CB} [${t.name}] Plan ready \u2014 Lobster gate failed, please review manually:
48
+ ${t}`,this.harnessHandle?.setPermissionMode)try{await this.harnessHandle.setPermissionMode("plan"),this.currentPermissionMode="plan"}catch(i){console.warn(`[Session ${this.id}] Failed to re-assert plan mode: ${Gn(i)}`)}}if(this.multiTurn&&this.messageStream)this.messageStream.push(this.harness.buildUserMessage(n,this.harnessSessionId??""));else if(this.harnessHandle?.streamInput){let r=this.harness.buildUserMessage(n,this.harnessSessionId??"");async function*o(){yield r}await this.harnessHandle.streamInput(o())}else throw new Error("Session does not support follow-up messages (launched in single-turn mode).")}async interrupt(){this.harnessHandle?.interrupt&&await this.harnessHandle.interrupt()}switchPermissionMode(t){this.pendingModeSwitch=t}get isActive(){return this._status==="starting"||this._status==="running"}kill(t){this.transitionToTerminal("killed",{reason:t})}complete(t="done"){this.transitionToTerminal("completed",{reason:t})}incrementAutoRespond(){this.autoRespondCount++}resetAutoRespond(){this.autoRespondCount=0}getOutput(t){return t===void 0?this.outputBuffer.slice():this.outputBuffer.slice(-t)}resetIdleTimer(){if(!this.multiTurn)return;let t=(E.idleTimeoutMinutes??15)*60*1e3;this.setTimer("idle",t,()=>{this._status==="running"&&this.kill("idle-timeout")})}teardown(){this.clearAllTimers(),this.completedAt||(this.completedAt=Date.now()),this.messageStream&&this.messageStream.end(),this.harnessHandle?.interrupt&&this.harnessHandle.interrupt().catch(t=>{console.warn(`[Session ${this.id}] interrupt during teardown failed: ${Gn(t)}`)}),this.abortController.abort()}transitionToTerminal(t,n={}){this.isActive&&(n.reason&&(this.killReason=n.reason),n.error!==void 0&&(this.error=n.error),this.completedAt=Date.now(),this.transition(t),this.teardown())}async consumeMessages(t){for await(let n of t){if(!this.isActive)break;if(this.resetIdleTimer(),n.type==="init")this.clearTimer("startup"),this.harnessSessionId=n.session_id,this._status==="starting"&&this.transition("running");else if(n.type==="text")this.waitingForInputFired=!1,this.pendingPlanApproval||(this.lastTurnHadQuestion=!1),this.outputBuffer.push(n.text),this.outputBuffer.length>ia&&this.outputBuffer.splice(0,this.outputBuffer.length-ia),this.emit("output",this,n.text);else if(n.type==="tool_use")this.harness.questionToolNames.includes(n.name)?(this.lastTurnHadQuestion=!0,this.currentPermissionMode==="plan"&&!this.planModeApproved&&(this.pendingPlanApproval=!0)):this.harness.planApprovalToolNames.includes(n.name)&&!this.planModeApproved&&(this.lastTurnHadQuestion=!0,this.pendingPlanApproval=!0),this.emit("toolUse",this,n.name,n.input);else if(n.type==="permission_mode_change"){let r=this.currentPermissionMode;this.currentPermissionMode=n.mode,n.mode!=="plan"&&r==="plan"&&!this.planModeApproved&&(this.pendingPlanApproval=!0,this.lastTurnHadQuestion=!0)}else if(n.type==="result"){if(this.result={subtype:n.data.success?"success":"error",duration_ms:n.data.duration_ms,total_cost_usd:n.data.total_cost_usd,num_turns:n.data.num_turns,result:n.data.result,is_error:!n.data.success,session_id:n.data.session_id},this.costUsd=n.data.total_cost_usd,this.multiTurn&&this.messageStream&&n.data.success){this.resetIdleTimer(),this.currentPermissionMode==="plan"&&!this.pendingPlanApproval&&!this.planModeApproved&&(this.pendingPlanApproval=!0);let o=this.pendingPlanApproval||this.lastTurnHadQuestion,i=this.messageStream?.hasPending()===!0;o&&!this.waitingForInputFired?(this.waitingForInputFired=!0,this.emit("turnEnd",this,!0)):i||o||(this.emit("turnEnd",this,!1),this.complete("done"))}else this.transitionToTerminal(n.data.success?"completed":"failed");this.lastTurnHadQuestion=!1}else n.type}}};import{mkdirSync as Pl,readFileSync as Rl,readdirSync as Ol,renameSync as Cl,statSync as Ml,unlinkSync as El,writeFileSync as aa}from"fs";import{homedir as kl,tmpdir as ua}from"os";import{dirname as Fl,join as Bn}from"path";function $l(e){let t=e.OPENCLAW_HOME?.trim();return t||Bn(kl(),".openclaw")}function vl(e){let t=e.OPENCLAW_CODE_AGENT_SESSIONS_PATH?.trim();return t||Bn($l(e),"code-agent-sessions.json")}var Nl=new Set(["completed","failed","killed"]),Ul=new Set(["running","completed","failed","killed"]),_l=1440*60*1e3;function da(e){return e instanceof Error?e.message:String(e)}function Ll(e){return!!e&&typeof e=="object"}function Hn(e,t=""){return typeof e=="string"&&e.trim().length>0?e:t}function ht(e){return typeof e=="string"&&e.trim().length>0?e:void 0}function ca(e){return typeof e=="number"&&Number.isFinite(e)?e:void 0}function Kl(e){return e==="low"||e==="medium"||e==="high"?e:void 0}function Dl(e){return e==="default"||e==="plan"||e==="acceptEdits"||e==="bypassPermissions"?e:void 0}function jl(e){return e==="never"||e==="on-request"?e:void 0}function Gl(e){return e==="user"||e==="idle-timeout"||e==="startup-timeout"||e==="shutdown"||e==="done"||e==="unknown"?e:void 0}function Vl(e){if(typeof e=="string"&&Ul.has(e))return e==="running"?"killed":e}function Hl(e){if(!Ll(e))return;let t=Hn(e.harnessSessionId);if(!t)return;let n=Vl(e.status);if(n)return{sessionId:ht(e.sessionId),harnessSessionId:t,name:Hn(e.name,t),prompt:Hn(e.prompt),workdir:Hn(e.workdir,"(unknown)"),model:ht(e.model),reasoningEffort:Kl(e.reasoningEffort),createdAt:ca(e.createdAt),completedAt:ca(e.completedAt),status:n,killReason:Gl(e.killReason),costUsd:typeof e.costUsd=="number"&&Number.isFinite(e.costUsd)?e.costUsd:0,originAgentId:ht(e.originAgentId),originChannel:ht(e.originChannel),originThreadId:typeof e.originThreadId=="string"||typeof e.originThreadId=="number"?e.originThreadId:void 0,originSessionKey:ht(e.originSessionKey),outputPath:ht(e.outputPath),harness:ht(e.harness),currentPermissionMode:Dl(e.currentPermissionMode),codexApprovalPolicy:jl(e.codexApprovalPolicy)}}var Wn=class{persisted=new Map;idIndex=new Map;nameIndex=new Map;indexPath;constructor(t={}){let n=t.env??process.env;this.indexPath=t.indexPath??vl(n),n.OPENCLAW_DEBUG_SESSION_STORE==="1"&&console.warn(`[SessionStore] index path: ${this.indexPath}`),this.loadIndex()}loadIndex(){try{let t=Rl(this.indexPath,"utf-8"),n=JSON.parse(t);if(!Array.isArray(n))return;let r=!1;for(let o of n){let i=Hl(o);if(!i){r=!0;continue}this.persisted.set(i.harnessSessionId,i),i.sessionId&&this.idIndex.set(i.sessionId,i.harnessSessionId),i.name&&this.nameIndex.set(i.name,i.harnessSessionId)}r&&this.saveIndex()}catch{}}saveIndex(){try{Pl(Fl(this.indexPath),{recursive:!0});let t=this.indexPath+".tmp";aa(t,JSON.stringify([...this.persisted.values()],null,2),"utf-8"),Cl(t,this.indexPath)}catch(t){console.warn(`[SessionStore] Failed to save session index: ${da(t)}`)}}markRunning(t){if(!t.harnessSessionId)return;let n={sessionId:t.id,harnessSessionId:t.harnessSessionId,name:t.name,prompt:t.prompt,workdir:t.workdir,model:t.model,reasoningEffort:t.reasoningEffort,createdAt:t.startedAt,status:"running",costUsd:0,originAgentId:t.originAgentId,originChannel:t.originChannel,originThreadId:t.originThreadId,originSessionKey:t.originSessionKey,harness:t.harnessName,currentPermissionMode:t.currentPermissionMode,codexApprovalPolicy:t.codexApprovalPolicy};this.persisted.set(n.harnessSessionId,n),this.idIndex.set(t.id,n.harnessSessionId),this.nameIndex.set(t.name,n.harnessSessionId),this.saveIndex()}hasRecordedSession(t){return this.idIndex.has(t)}persistTerminal(t){if(!t.harnessSessionId)return;let n;try{let o=Bn(ua(),`openclaw-agent-${t.id}.txt`),i=t.getOutput().join(`
49
+ `);i.length>0&&(aa(o,i,"utf-8"),n=o)}catch(o){console.warn(`[SessionStore] Failed to write output file for session ${t.id}: ${da(o)}`)}let r={sessionId:t.id,harnessSessionId:t.harnessSessionId,name:t.name,prompt:t.prompt,workdir:t.workdir,model:t.model,reasoningEffort:t.reasoningEffort,createdAt:t.startedAt,completedAt:t.completedAt,status:t.status,killReason:t.killReason,costUsd:t.costUsd,originAgentId:t.originAgentId,originChannel:t.originChannel,originThreadId:t.originThreadId,originSessionKey:t.originSessionKey,outputPath:n,harness:t.harnessName,currentPermissionMode:t.currentPermissionMode,codexApprovalPolicy:t.codexApprovalPolicy};this.persisted.set(t.harnessSessionId,r),this.idIndex.set(t.id,t.harnessSessionId),this.nameIndex.set(t.name,t.harnessSessionId),this.saveIndex()}getLatestPersistedByName(t){let n,r=Number.NEGATIVE_INFINITY,o=Number.NEGATIVE_INFINITY,i=Number.NEGATIVE_INFINITY,s=0;for(let c of this.persisted.values()){if(c.name!==t){s++;continue}let p=c.createdAt??Number.NEGATIVE_INFINITY,f=c.completedAt??Number.NEGATIVE_INFINITY;(p>r||p===r&&f>o||p===r&&f===o&&s>i)&&(n=c,r=p,o=f,i=s),s++}return n}resolveHarnessSessionId(t,n){if(n)return n;let r=this.idIndex.get(t);if(r&&this.persisted.has(r))return r;let o=this.getLatestPersistedByName(t);if(o)return o.harnessSessionId;if(this.persisted.has(t)||/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(t))return t}getPersistedSession(t){let n=this.persisted.get(t);if(n)return n;let r=this.idIndex.get(t);return r?this.persisted.get(r):this.getLatestPersistedByName(t)}listPersistedSessions(){return[...this.persisted.values()].sort((t,n)=>(n.completedAt??0)-(t.completedAt??0))}cleanupTmpOutputFiles(t){try{let n=ua(),r=Ol(n).filter(o=>o.startsWith("openclaw-agent-")&&o.endsWith(".txt"));for(let o of r)try{let i=Bn(n,o),s=Ml(i).mtimeMs;t-s>_l&&El(i)}catch{}}catch{}}evictOldestPersisted(t){let n=this.listPersistedSessions();if(n.length<=t)return;let r=n.slice(t);for(let o of r){this.persisted.delete(o.harnessSessionId);for(let[i,s]of this.idIndex)s===o.harnessSessionId&&this.idIndex.delete(i);for(let[i,s]of this.nameIndex)s===o.harnessSessionId&&this.nameIndex.delete(i)}this.saveIndex()}shouldGcActiveSession(t,n,r){return!t.completedAt||!Nl.has(t.status)?!1:n-t.completedAt>r}};var Bl=new Set(["completed","failed","killed"]),qn=class{metrics={totalCostUsd:0,costPerDay:new Map,sessionsByStatus:{completed:0,failed:0,killed:0},totalLaunched:0,totalDurationMs:0,sessionsWithDuration:0,mostExpensive:null};incrementLaunched(){this.metrics.totalLaunched++}recordSession(t){let n=t.costUsd??0,r=t.status;this.metrics.totalCostUsd+=n;let o=new Date(t.completedAt??t.startedAt).toISOString().slice(0,10);if(this.metrics.costPerDay.set(o,(this.metrics.costPerDay.get(o)??0)+n),Bl.has(r)&&this.metrics.sessionsByStatus[r]++,t.completedAt){let i=t.completedAt-t.startedAt;this.metrics.totalDurationMs+=i,this.metrics.sessionsWithDuration++}(!this.metrics.mostExpensive||n>this.metrics.mostExpensive.costUsd)&&(this.metrics.mostExpensive={id:t.id,name:t.name,costUsd:n,prompt:ot(t.prompt,80)})}getMetrics(){return{totalCostUsd:this.metrics.totalCostUsd,costPerDay:new Map(this.metrics.costPerDay),sessionsByStatus:{...this.metrics.sessionsByStatus},totalLaunched:this.metrics.totalLaunched,totalDurationMs:this.metrics.totalDurationMs,sessionsWithDuration:this.metrics.sessionsWithDuration,mostExpensive:this.metrics.mostExpensive?{...this.metrics.mostExpensive}:null}}};import{execFile as Wl}from"child_process";import{randomUUID as ql}from"crypto";var ma=3e4,zl=2e3,Yl=2e4,zn=4,Yn=class{pendingRetryTimers=new Set;clearPendingRetries(){for(let t of this.pendingRetryTimers)clearTimeout(t);this.pendingRetryTimers.clear()}getOriginSessionKey(t){let n=t.originSessionKey?.trim();return n||void 0}getOriginThreadId(t){let n=t.originThreadId;return n==null?void 0:String(n).trim()||void 0}parseNotificationRoute(t){let n=t.originChannel?.trim(),r=this.getOriginThreadId(t);if(n){let s=n.split("|").map(c=>c.trim()).filter(Boolean);if(s.length>=2){let[c,p,f]=s,T=f??p,U=f?p:void 0;if(c&&T)return{channel:c,target:T,accountId:U,threadId:r??this.parseThreadIdFromSessionKey(t.originSessionKey)}}}let o=this.getOriginSessionKey(t);if(!o)return;let i=o.match(/^agent:[^:]+:telegram:(?:direct|dm|group|channel):([^:]+)(?::topic:(\d+))?$/i);if(i?.[1])return{channel:"telegram",target:i[1],threadId:r??i[2]}}parseThreadIdFromSessionKey(t){return t?t.match(/:topic:(\d+)$/)?.[1]:void 0}retryDelayMs(t){let n=Math.max(0,t-1),r=zl*2**n;return Math.min(r,Yl)}executeWithRetries(t,n,r=1){let o=Date.now();console.info(`[WakeDispatcher] ${n.target} ${n.phase} started attempt ${r}/${zn} for ${n.label} session=${n.sessionId}`),Wl("openclaw",t,{timeout:ma},i=>{let s=Date.now()-o;if(!i){console.info(`[WakeDispatcher] ${n.target} ${n.phase} completed attempt ${r}/${zn} for ${n.label} session=${n.sessionId} in ${s}ms`);return}let c=`[WakeDispatcher] ${n.target} ${n.phase} failed`;if(r>=zn){console.error(`${c} after ${r} attempts for ${n.label} session=${n.sessionId} in ${s}ms: ${i.message}`),n.onFinalFailure?.();return}let p=this.retryDelayMs(r);console.error(`${c} attempt ${r}/${zn} for ${n.label} session=${n.sessionId} in ${s}ms: ${i.message}. Retrying in ${p}ms`);let f=setTimeout(()=>{this.pendingRetryTimers.delete(f),this.executeWithRetries(t,n,r+1)},p);this.pendingRetryTimers.add(f)})}fireChatSendWithRetry(t,n,r,o,i,s=!1,c){let p=["gateway","call","chat.send","--expect-final","--timeout",String(ma),"--params",JSON.stringify({sessionKey:t,message:n,deliver:s,idempotencyKey:ql()})];this.executeWithRetries(p,{label:r,sessionId:o,target:"chat.send",phase:i,onFinalFailure:c})}fireDirectNotificationWithRetry(t,n,r,o,i){let s=["message","send","--channel",t.channel,"--target",t.target,"--message",n];t.accountId&&s.push("--account",t.accountId),t.threadId&&s.push("--thread-id",t.threadId),this.executeWithRetries(s,{label:r,sessionId:o,target:"message.send",phase:"notify",onFinalFailure:i})}fireSystemEventWithRetry(t,n,r,o){let i=["system","event","--text",t,"--mode","now"];this.executeWithRetries(i,{label:n,sessionId:r,target:"system.event",phase:o})}sendUserNotification(t,n,r,o){let i=this.parseNotificationRoute(t);if(!i){this.fireSystemEventWithRetry(n,`${r}-notify-system`,o,"notify");return}this.fireDirectNotificationWithRetry(i,n,`${r}-notify`,o,()=>{this.fireSystemEventWithRetry(n,`${r}-notify-fallback`,o,"notify")})}dispatchSessionNotification(t,n){let r=this.getOriginSessionKey(t),o=n.notifyUser??(n.wakeMessage?"on-wake-fallback":"always"),i=n.userMessage?.trim(),s=n.wakeMessage?.trim();if(o==="always"&&i&&this.sendUserNotification(t,i,n.label,t.id),!!s){if(!r){o==="on-wake-fallback"&&i&&this.sendUserNotification(t,i,n.label,t.id),this.fireSystemEventWithRetry(s,`${n.label}-wake-system`,t.id,"wake");return}this.fireChatSendWithRetry(r,s,`${n.label}-wake`,t.id,"wake",!0,()=>{this.fireSystemEventWithRetry(s,`${n.label}-wake-fallback`,t.id,"wake")})}}};function Ql(){let e=process.env.OPENCLAW_CODE_AGENT_PLAN_WORKFLOW_PATH?.trim();if(e)return e;let t=Xl(la(import.meta.url)),n=[zr(process.cwd(),"workflows","plan-approval.lobster"),zr(t,"..","workflows","plan-approval.lobster"),zr(t,"..","..","workflows","plan-approval.lobster")];for(let r of n)if(Jl(r))return r;return la(new URL("../workflows/plan-approval.lobster",import.meta.url))}var Zl=Ql(),Yr=new Set(["completed","failed","killed"]),Jn=new Set(["starting","running"]),ef=5e3,tf=3e4;function nf(e){let t=e.trim();if(!t)return;let n=i=>typeof i=="string"&&i.trim().length>0&&/^[A-Za-z0-9._:-]+$/.test(i.trim()),r=[t];for(let i of t.split(/\r?\n/)){let s=i.trim();s.startsWith("{")&&s.endsWith("}")&&r.push(s)}for(let i of r)try{let s=JSON.parse(i),c=s?.resumeToken??s?.requiresApproval?.resumeToken??s?.details?.requiresApproval?.resumeToken;if(n(c))return c.trim()}catch{}let o=t.match(/"resumeToken"\s*:\s*"([^"]+)"/);if(o&&n(o[1]))return o[1].trim()}var Xn=class{sessions=new Map;maxSessions;maxPersistedSessions;lastWaitingEventTimestamps=new Map;lastTurnCompleteMarkers=new Map;lastTerminalWakeMarkers=new Map;store;metrics;wakeDispatcher;constructor(t=20,n=50){this.maxSessions=t,this.maxPersistedSessions=n,this.store=new Wn,this.metrics=new qn,this.wakeDispatcher=new Yn}get persisted(){return this.store.persisted}get idIndex(){return this.store.idIndex}get nameIndex(){return this.store.nameIndex}uniqueName(t){let n=new Set([...this.sessions.values()].filter(o=>Jn.has(o.status)).map(o=>o.name));if(!n.has(t))return t;let r=2;for(;n.has(`${t}-${r}`);)r++;return`${t}-${r}`}spawn(t,n={}){if([...this.sessions.values()].filter(c=>Jn.has(c.status)).length>=this.maxSessions)throw new Error(`Max sessions reached (${this.maxSessions}). Use agent_sessions to list active sessions and agent_kill to end one.`);let o=t.name||Ri(t.prompt),i=this.uniqueName(o);i!==o&&console.warn(`[SessionManager] Name conflict: "${o}" \u2192 "${i}" (active session with same name exists)`);let s=new Vn(t,i);if(this.sessions.set(s.id,s),this.metrics.incrementLaunched(),s.on("statusChange",(c,p)=>{p==="running"&&s.harnessSessionId?this.store.markRunning(s):Yr.has(p)&&this.onSessionTerminal(s)}),s.on("turnEnd",(c,p)=>{this.onTurnEnd(s,p)}),s.start(),n.notifyLaunch!==!1){let c=`\u{1F680} [${s.name}] Launched | ${s.workdir} | ${s.model??"default"}`;this.notifySession(s,c,"launch")}return s}async spawnAndAwaitRunning(t,n={}){let r=this.spawn(t,n);return await this.waitForRunningSession(r),r}async waitForRunningSession(t){if(t.status==="running")return;if(Yr.has(t.status))throw new Error(this.describeLaunchFailure(t));let n=t.on?.bind(t),r=t.off?.bind(t)??t.removeListener?.bind(t);if(!n||!r)throw new Error(`Session ${t.name} [${t.id}] did not expose lifecycle events during startup.`);await new Promise((o,i)=>{let s=(p,f)=>{if(f==="running"){c(),o();return}Yr.has(f)&&(c(),i(new Error(this.describeLaunchFailure(t))))},c=()=>{r("statusChange",s)};n("statusChange",s)})}describeLaunchFailure(t){let n=t.killReason?` (reason: ${t.killReason})`:"",r=t.error||t.result?.result||`status=${t.status}${n}`;return`Session ${t.name} [${t.id}] failed to start: ${r}`}onSessionTerminal(t){if(this.persistSession(t),this.lastWaitingEventTimestamps.delete(t.id),t.killReason==="done")return;if(t.status==="completed"){if(!this.shouldEmitTerminalWake(t))return;this.triggerAgentEvent(t);return}if(t.status==="failed"){if(!this.shouldEmitTerminalWake(t))return;let c=t.error||t.result?.is_error&&t.result.result||t.result?.result||this.extractLastOutputLine(t)||`Session failed with no error details (session=${t.id}, subtype=${t.result?.subtype??"none"}, turns=${t.result?.num_turns??0})`,p=ot(c,200);this.triggerFailedEvent(t,p);return}let n=`$${(t.costUsd??0).toFixed(2)}`,r=Le(t.duration),i={user:"by agent/user","idle-timeout":`idle ${E.idleTimeoutMinutes??15}min`,shutdown:"gateway shutdown",unknown:""}[t.killReason]||"",s=`Killed${i?` (${i})`:""}`;this.notifySession(t,`\u26D4 [${t.name}] ${s} | ${n} | ${r}`)}persistSession(t){this.store.hasRecordedSession(t.id)||this.metrics.recordSession(t),this.store.persistTerminal(t)}getMetrics(){return this.metrics.getMetrics()}recordSessionMetrics(t){this.metrics.recordSession(t)}notifySession(t,n,r="notification"){this.dispatchSessionNotification(t,{label:r,userMessage:n,notifyUser:"always"})}dispatchSessionNotification(t,n){this.wakeDispatcher.dispatchSessionNotification(t,n)}runLobsterApproval(t,n){let r=JSON.stringify({session_id:t.id,session_name:t.name,plan_summary:n}),o=["--json","invoke","--tool","lobster","--args-json",JSON.stringify({action:"run",pipeline:Zl,argsJson:r,timeoutMs:0})];pa("openclaw",o,{timeout:tf},(i,s,c)=>{if(i){console.error(`[SessionManager] Lobster launch failed for session=${t.id}: ${i.message}`),this.notifySession(t,`\u{1F4CB} [${t.name}] Plan ready \u2014 Lobster gate failed, please review manually:
50
50
 
51
- ${Ze(r,800)}`);return}let p=typeof i=="string"?i:String(i??""),f=typeof m=="string"?m:String(m??""),A=ql(`${p}
52
- ${f}`);if(!A){let ie=`${p}
53
- ${f}`.trim().substring(0,200);console.warn(`[SessionManager] Lobster response missing resume token for session=${t.id}: ${ie}`)}A&&(t.lobsterResumeToken=A);let _=[`\u{1F4CB} [${t.name}] Plan ready for approval`,"",Ze(r,1200),"",`Session: ${t.name} (${t.id})`,"",'To approve: reply "approve"',"To reject: reply with feedback"];this.notifySession(t,_.join(`
54
- `))})}resumeLobsterApproval(t,r){let n=r?3e4:1e4;return new Promise((o,s)=>{let i=["--json","invoke","--tool","lobster","--args-json",JSON.stringify({action:"resume",token:t,approve:r})];oa("openclaw",i,{timeout:n},m=>{m?(console.error(`[SessionManager] Lobster resume failed (approve=${r}): ${m.message}`),s(m)):o()})})}debounceWaitingEvent(t){let r=Date.now(),n=this.lastWaitingEventTimestamps.get(t);return n&&r-n<Hl?!1:(this.lastWaitingEventTimestamps.set(t,r),!0)}originThreadLine(t){return t.originThreadId!=null?`Session origin thread: ${t.originThreadId}`:""}extractLastOutputLine(t){return t.getOutput(3).filter(o=>o.trim()).pop()?.trim()||void 0}getOutputPreview(t,r=1e3){let n=t.getOutput(20).join(`
55
- `);return n.length>r?Si(n,r):n}triggerAgentEvent(t){let r=this.getOutputPreview(t),n=["Coding agent session completed.",`Name: ${t.name} | ID: ${t.id}`,`Status: ${t.status}`,this.originThreadLine(t),"","Output preview:",r,"","[ACTION REQUIRED] Follow your autonomy rules for session completion:",`1. Use agent_output(session='${t.id}', full=true) to read the full result.`,"2. If this is part of a multi-phase pipeline, launch the next phase NOW \u2014 do not wait for user input.","3. Notify the user with a summary of what was done."].join(`
56
- `),o=`$${(t.costUsd??0).toFixed(2)}`,s=_e(t.duration),i=`\u2705 [${t.name}] Completed | ${o} | ${s}`;this.dispatchSessionNotification(t,{label:"completed",userMessage:i,wakeMessage:n,notifyUser:"always"})}triggerFailedEvent(t,r){let n=this.getOutputPreview(t),o=n.trim()?["","Output preview:",n]:[],s=["Coding agent session failed.",`Name: ${t.name} | ID: ${t.id}`,`Status: ${t.status}`,this.originThreadLine(t),"","Failure summary:",r,...o,"","[ACTION REQUIRED] Follow your autonomy rules for session failure:",`1. Use agent_output(session='${t.id}', full=true) to inspect the full failure context.`,"2. If the failure is a launch/config issue or other recoverable error, relaunch the task now or continue it yourself.","3. Notify the user with the failure cause and the next action you are taking."].join(`
57
- `),i=`$${(t.costUsd??0).toFixed(2)}`,m=_e(t.duration),p=[`\u274C [${t.name}] Failed | ${i} | ${m}`,` \u26A0\uFE0F ${r}`].join(`
58
- `);this.dispatchSessionNotification(t,{label:"failed",userMessage:p,wakeMessage:s,notifyUser:"always"})}triggerWaitingForInputEvent(t){if(!this.debounceWaitingEvent(t.id))return;let r=this.getOutputPreview(t),n=t.pendingPlanApproval,o=n?`\u{1F4CB} [${t.name}] Plan ready for review:
51
+ ${ot(n,800)}`);return}let p=typeof s=="string"?s:String(s??""),f=typeof c=="string"?c:String(c??""),T=nf(`${p}
52
+ ${f}`);if(!T){let te=`${p}
53
+ ${f}`.trim().substring(0,200);console.warn(`[SessionManager] Lobster response missing resume token for session=${t.id}: ${te}`)}T&&(t.lobsterResumeToken=T);let U=[`\u{1F4CB} [${t.name}] Plan ready for approval`,"",ot(n,1200),"",`Session: ${t.name} (${t.id})`,"",'To approve: reply "approve"',"To reject: reply with feedback"];this.notifySession(t,U.join(`
54
+ `))})}resumeLobsterApproval(t,n){let r=n?3e4:1e4;return new Promise((o,i)=>{let s=["--json","invoke","--tool","lobster","--args-json",JSON.stringify({action:"resume",token:t,approve:n})];pa("openclaw",s,{timeout:r},c=>{c?(console.error(`[SessionManager] Lobster resume failed (approve=${n}): ${c.message}`),i(c)):o()})})}debounceWaitingEvent(t){let n=Date.now(),r=this.lastWaitingEventTimestamps.get(t);return r&&n-r<ef?!1:(this.lastWaitingEventTimestamps.set(t,n),!0)}originThreadLine(t){return t.originThreadId!=null?`Session origin thread: ${t.originThreadId}`:""}extractLastOutputLine(t){return t.getOutput(3).filter(o=>o.trim()).pop()?.trim()||void 0}getOutputPreview(t,n=1e3){let r=t.getOutput(20).join(`
55
+ `);return r.length>n?Ci(r,n):r}triggerAgentEvent(t){let n=this.getOutputPreview(t),r=["Coding agent session completed.",`Name: ${t.name} | ID: ${t.id}`,`Status: ${t.status}`,this.originThreadLine(t),"","Output preview:",n,"","[ACTION REQUIRED] Follow your autonomy rules for session completion:",`1. Use agent_output(session='${t.id}', full=true) to read the full result.`,"2. If this is part of a multi-phase pipeline, launch the next phase NOW \u2014 do not wait for user input.","3. Notify the user with a summary of what was done."].join(`
56
+ `),o=`$${(t.costUsd??0).toFixed(2)}`,i=Le(t.duration),s=`\u2705 [${t.name}] Completed | ${o} | ${i}`;this.dispatchSessionNotification(t,{label:"completed",userMessage:s,wakeMessage:r,notifyUser:"always"})}triggerFailedEvent(t,n){let r=this.getOutputPreview(t),o=r.trim()?["","Output preview:",r]:[],i=["Coding agent session failed.",`Name: ${t.name} | ID: ${t.id}`,`Status: ${t.status}`,this.originThreadLine(t),"","Failure summary:",n,...o,"","[ACTION REQUIRED] Follow your autonomy rules for session failure:",`1. Use agent_output(session='${t.id}', full=true) to inspect the full failure context.`,"2. If the failure is a launch/config issue or other recoverable error, relaunch the task now or continue it yourself.","3. Notify the user with the failure cause and the next action you are taking."].join(`
57
+ `),s=`$${(t.costUsd??0).toFixed(2)}`,c=Le(t.duration),p=[`\u274C [${t.name}] Failed | ${s} | ${c}`,` \u26A0\uFE0F ${n}`].join(`
58
+ `);this.dispatchSessionNotification(t,{label:"failed",userMessage:p,wakeMessage:i,notifyUser:"always"})}triggerWaitingForInputEvent(t){if(!this.debounceWaitingEvent(t.id))return;let n=this.getOutputPreview(t),r=t.pendingPlanApproval,o=r?`\u{1F4CB} [${t.name}] Plan ready for review:
59
59
 
60
- ${r}
60
+ ${n}
61
61
 
62
- Reply to approve or provide feedback.`:`\u{1F514} [${t.name}] Waiting for input`,s;if(n){let i=h.planApproval??"delegate";if(i==="ask"){this.runLobsterApproval(t,r);return}else i==="delegate"?s=["[DELEGATED PLAN APPROVAL] Coding agent session has finished its plan and is requesting approval to implement.",`Name: ${t.name} | ID: ${t.id}`,this.originThreadLine(t),"Permission mode: plan \u2192 will switch to bypassPermissions on approval","","\u26A0\uFE0F YOU MUST COMPLETE THESE STEPS IN ORDER. Do NOT skip any step.","","\u2501\u2501\u2501 STEP 1 (MANDATORY): Read the full plan \u2501\u2501\u2501",`Call agent_output(session='${t.id}', full=true) to read the FULL plan output.`,"The preview below is truncated \u2014 you MUST read the full output before making any decision.","","Preview (truncated):",r,"","\u2501\u2501\u2501 STEP 2 (MANDATORY): Notify the user \u2501\u2501\u2501","After reading the full plan, use the message tool to send the user a summary that includes:","- What files/components will be changed","- Risk level (low/medium/high) and why","- Scope: does this match the original task or has it expanded?","- Any concerns or assumptions the plan makes","This message creates accountability \u2014 you cannot approve blindly.","","\u2501\u2501\u2501 STEP 3 (ONLY AFTER steps 1 and 2): Decide \u2501\u2501\u2501","You are the delegated decision-maker. Choose ONE:","","APPROVE the plan directly if ALL of the following are true:","- You have read the FULL plan (not just the preview)","- You have sent the user the summary message","- The plan scope matches the original task request","- The changes are low-risk (no destructive operations, no credential handling, no production deployments)","- The plan is clear and well-scoped (no ambiguous requirements or open design questions)","- No architectural decisions that the user should weigh in on","- The working directory and codebase are correct","","ESCALATE to the user and WAIT if ANY of the following are true:","- The plan involves destructive operations (deleting files, dropping tables, force-pushing)","- The plan involves credentials, secrets, or production environments","- The plan requires architectural decisions not covered by the original task","- The scope has expanded beyond the original request","- The requirements are ambiguous or the plan makes assumptions the user should confirm","- You are unsure \u2014 when in doubt, always escalate","",`If approving: agent_respond(session='${t.id}', message='Approved. Go ahead.', approve=true)`,"If escalating: tell the user you need their decision and WAIT for his explicit response.",`To request changes: agent_respond(session='${t.id}', message='<your feedback>') \u2014 do NOT set approve=true. The agent will revise the plan.`].join(`
63
- `):s=["[AUTO-APPROVE] Session has a plan ready. Approve it now:",`agent_respond(session='${t.id}', message='Approved. Go ahead.', approve=true)`].join(`
64
- `)}else s=[`[SYSTEM INSTRUCTION: Follow your auto-respond rules strictly. If this is a permission request or "should I continue?" \u2192 auto-respond. For ALL other questions \u2192 forward the agent's EXACT question to the user. Do NOT add your own analysis, commentary, or interpretation. Do NOT "nudge" or "poke" the session.]`,"",`${t.multiTurn?"Multi-turn session":"Session"} is waiting for input.`,`Name: ${t.name} | ID: ${t.id}`,this.originThreadLine(t),"","Last output:",r,"",`Use agent_respond(session='${t.id}', message='...') to send a reply, or agent_output(session='${t.id}', full: true) to see full context before deciding.`].join(`
65
- `);this.dispatchSessionNotification(t,{label:n?"plan-approval":"waiting",userMessage:o,wakeMessage:s,notifyUser:n?"always":"on-wake-fallback"})}onTurnEnd(t,r){if(r||t.pendingPlanApproval){this.triggerWaitingForInputEvent(t);return}this.shouldEmitTurnCompleteWake(t)&&this.triggerTurnCompleteEventWithSignal(t)}shouldEmitTurnCompleteWake(t){let r=`${t.result?.session_id??""}|${t.result?.num_turns??0}|${t.result?.duration_ms??0}`;return this.lastTurnCompleteMarkers.get(t.id)===r?!1:(this.lastTurnCompleteMarkers.set(t.id,r),!0)}shouldEmitTerminalWake(t){let r=`${t.status}|${t.completedAt??0}|${t.result?.session_id??""}|${t.result?.num_turns??0}|${t.killReason}`;return this.lastTerminalWakeMarkers.get(t.id)===r?!1:(this.lastTerminalWakeMarkers.set(t.id,r),!0)}triggerTurnCompleteEventWithSignal(t){let r=this.getOutputPreview(t),n=$r(r),o=`$${(t.costUsd??0).toFixed(2)}`,s=n?"yes":"no",i=`\u{1F504} [${t.name}] Turn done | ${o} | Waiting input: ${s}`,m=["Coding agent session turn ended.",`Name: ${t.name}`,`ID: ${t.id}`,`Status: ${t.status}`,"",`Looks like waiting for user input: ${s}`,"","Last output (~20 lines):",r,...this.originThreadLine(t)?["",this.originThreadLine(t)]:[]].join(`
66
- `);this.dispatchSessionNotification(t,{label:"turn-complete",userMessage:i,wakeMessage:m,notifyUser:"always"})}resolve(t){let r=this.sessions.get(t);if(r)return r;let n=[...this.sessions.values()].filter(s=>s.name===t);if(n.length===0)return;let o=n.filter(s=>Vr.has(s.status));return o.length>0?o.sort((s,i)=>i.startedAt-s.startedAt)[0]:n.sort((s,i)=>i.startedAt-s.startedAt)[0]}get(t){return this.sessions.get(t)}list(t){let r=[...this.sessions.values()];return t&&t!=="all"&&(r=r.filter(n=>n.status===t)),r.sort((n,o)=>o.startedAt-n.startedAt)}kill(t,r){let n=this.sessions.get(t);return n?(n.kill(r??"user"),!0):!1}killAll(t="user"){for(let r of this.sessions.values())Vr.has(r.status)&&this.kill(r.id,t);this.wakeDispatcher.clearPendingRetries()}resolveHarnessSessionId(t){let r=this.resolve(t);return this.store.resolveHarnessSessionId(t,r?.harnessSessionId)}getPersistedSession(t){return this.store.getPersistedSession(t)}listPersistedSessions(){return this.store.listPersistedSessions()}cleanup(){let t=Date.now(),r=(h.sessionGcAgeMinutes??1440)*6e4;for(let[n,o]of this.sessions)this.store.shouldGcActiveSession(o,t,r)&&(this.persistSession(o),this.sessions.delete(n),this.lastWaitingEventTimestamps.delete(n),this.lastTurnCompleteMarkers.delete(n),this.lastTerminalWakeMarkers.delete(n));this.store.cleanupTmpOutputFiles(t),this.store.evictOldestPersisted(this.maxPersistedSessions)}};function zO(e){let t=null,r=null;e.registerTool(n=>hi(n),{optional:!1}),e.registerTool(n=>Ti(n),{optional:!1}),e.registerTool(n=>bi(n),{optional:!1}),e.registerTool(n=>Ai(n),{optional:!1}),e.registerTool(n=>Pi(n),{optional:!1}),e.registerTool(n=>Oi(n),{optional:!1}),Ri(e),Ci(e),Mi(e),ki(e),Ei(e),Fi(e),$i(e),e.registerService({id:"openclaw-code-agent",start:n=>{let o=e.pluginConfig??e.getConfig?.()??{};fi(o),t=new Br(h.maxSessions,h.maxPersistedSessions),_n(t),r=setInterval(()=>t.cleanup(),300*1e3)},stop:()=>{t&&t.killAll("shutdown"),r&&clearInterval(r),r=null,t=null,_n(null)}})}export{zO as register};
62
+ Reply to approve or provide feedback.`:`\u{1F514} [${t.name}] Waiting for input`,i;if(r){let s=E.planApproval??"delegate";if(s==="ask"){this.runLobsterApproval(t,n);return}else s==="delegate"?i=["[DELEGATED PLAN APPROVAL] Coding agent session has finished its plan and is requesting approval to implement.",`Name: ${t.name} | ID: ${t.id}`,this.originThreadLine(t),"Permission mode: plan \u2192 will switch to bypassPermissions on approval","","\u26A0\uFE0F YOU MUST COMPLETE THESE STEPS IN ORDER. Do NOT skip any step.","","\u2501\u2501\u2501 STEP 1 (MANDATORY): Read the full plan \u2501\u2501\u2501",`Call agent_output(session='${t.id}', full=true) to read the FULL plan output.`,"The preview below is truncated \u2014 you MUST read the full output before making any decision.","","Preview (truncated):",n,"","\u2501\u2501\u2501 STEP 2 (MANDATORY): Notify the user \u2501\u2501\u2501","After reading the full plan, use the message tool to send the user a summary that includes:","- What files/components will be changed","- Risk level (low/medium/high) and why","- Scope: does this match the original task or has it expanded?","- Any concerns or assumptions the plan makes","This message creates accountability \u2014 you cannot approve blindly.","","\u2501\u2501\u2501 STEP 3 (ONLY AFTER steps 1 and 2): Decide \u2501\u2501\u2501","You are the delegated decision-maker. Choose ONE:","","APPROVE the plan directly if ALL of the following are true:","- You have read the FULL plan (not just the preview)","- You have sent the user the summary message","- The plan scope matches the original task request","- The changes are low-risk (no destructive operations, no credential handling, no production deployments)","- The plan is clear and well-scoped (no ambiguous requirements or open design questions)","- No architectural decisions that the user should weigh in on","- The working directory and codebase are correct","","ESCALATE to the user and WAIT if ANY of the following are true:","- The plan involves destructive operations (deleting files, dropping tables, force-pushing)","- The plan involves credentials, secrets, or production environments","- The plan requires architectural decisions not covered by the original task","- The scope has expanded beyond the original request","- The requirements are ambiguous or the plan makes assumptions the user should confirm","- You are unsure \u2014 when in doubt, always escalate","",`If approving: agent_respond(session='${t.id}', message='Approved. Go ahead.', approve=true)`,"If escalating: tell the user you need their decision and WAIT for his explicit response.",`To request changes: agent_respond(session='${t.id}', message='<your feedback>') \u2014 do NOT set approve=true. The agent will revise the plan.`].join(`
63
+ `):i=["[AUTO-APPROVE] Session has a plan ready. Approve it now:",`agent_respond(session='${t.id}', message='Approved. Go ahead.', approve=true)`].join(`
64
+ `)}else i=[`[SYSTEM INSTRUCTION: Follow your auto-respond rules strictly. If this is a permission request or "should I continue?" \u2192 auto-respond. For ALL other questions \u2192 forward the agent's EXACT question to the user. Do NOT add your own analysis, commentary, or interpretation. Do NOT "nudge" or "poke" the session.]`,"",`${t.multiTurn?"Multi-turn session":"Session"} is waiting for input.`,`Name: ${t.name} | ID: ${t.id}`,this.originThreadLine(t),"","Last output:",n,"",`Use agent_respond(session='${t.id}', message='...') to send a reply, or agent_output(session='${t.id}', full: true) to see full context before deciding.`].join(`
65
+ `);this.dispatchSessionNotification(t,{label:r?"plan-approval":"waiting",userMessage:o,wakeMessage:i,notifyUser:r?"always":"on-wake-fallback"})}onTurnEnd(t,n){if(n||t.pendingPlanApproval){this.triggerWaitingForInputEvent(t);return}this.shouldEmitTurnCompleteWake(t)&&this.triggerTurnCompleteEventWithSignal(t)}shouldEmitTurnCompleteWake(t){let n=`${t.result?.session_id??""}|${t.result?.num_turns??0}|${t.result?.duration_ms??0}`;return this.lastTurnCompleteMarkers.get(t.id)===n?!1:(this.lastTurnCompleteMarkers.set(t.id,n),!0)}shouldEmitTerminalWake(t){let n=`${t.status}|${t.completedAt??0}|${t.result?.session_id??""}|${t.result?.num_turns??0}|${t.killReason}`;return this.lastTerminalWakeMarkers.get(t.id)===n?!1:(this.lastTerminalWakeMarkers.set(t.id,n),!0)}triggerTurnCompleteEventWithSignal(t){let n=this.getOutputPreview(t),r=Dn(n),o=`$${(t.costUsd??0).toFixed(2)}`,i=r?"yes":"no",s=`\u{1F504} [${t.name}] Turn done | ${o} | Waiting input: ${i}`,c=["Coding agent session turn ended.",`Name: ${t.name}`,`ID: ${t.id}`,`Status: ${t.status}`,"",`Looks like waiting for user input: ${i}`,"","Last output (~20 lines):",n,...this.originThreadLine(t)?["",this.originThreadLine(t)]:[]].join(`
66
+ `);this.dispatchSessionNotification(t,{label:"turn-complete",userMessage:s,wakeMessage:c,notifyUser:"always"})}resolve(t){let n=this.sessions.get(t);if(n)return n;let r=[...this.sessions.values()].filter(i=>i.name===t);if(r.length===0)return;let o=r.filter(i=>Jn.has(i.status));return o.length>0?o.sort((i,s)=>s.startedAt-i.startedAt)[0]:r.sort((i,s)=>s.startedAt-i.startedAt)[0]}get(t){return this.sessions.get(t)}list(t){let n=[...this.sessions.values()];return t&&t!=="all"&&(n=n.filter(r=>r.status===t)),n.sort((r,o)=>o.startedAt-r.startedAt)}kill(t,n){let r=this.sessions.get(t);return r?(r.kill(n??"user"),!0):!1}killAll(t="user"){for(let n of this.sessions.values())Jn.has(n.status)&&this.kill(n.id,t);this.wakeDispatcher.clearPendingRetries()}resolveHarnessSessionId(t){let n=this.resolve(t);return this.store.resolveHarnessSessionId(t,n?.harnessSessionId)}getPersistedSession(t){return this.store.getPersistedSession(t)}listPersistedSessions(){return this.store.listPersistedSessions()}cleanup(){let t=Date.now(),n=(E.sessionGcAgeMinutes??1440)*6e4;for(let[r,o]of this.sessions)this.store.shouldGcActiveSession(o,t,n)&&(this.persistSession(o),this.sessions.delete(r),this.lastWaitingEventTimestamps.delete(r),this.lastTurnCompleteMarkers.delete(r),this.lastTerminalWakeMarkers.delete(r));this.store.cleanupTmpOutputFiles(t),this.store.evictOldestPersisted(this.maxPersistedSessions)}};function rO(e){let t=null,n=null;e.registerTool(r=>Pi(r),{optional:!1}),e.registerTool(r=>Mi(r),{optional:!1}),e.registerTool(r=>Ei(r),{optional:!1}),e.registerTool(r=>ki(r),{optional:!1}),e.registerTool(r=>$i(r),{optional:!1}),e.registerTool(r=>vi(r),{optional:!1}),Ni(e),Ui(e),_i(e),Li(e),Ki(e),Di(e),ji(e),e.registerService({id:"openclaw-code-agent",start:r=>{let o=e.pluginConfig??e.getConfig?.()??{};Ti(o),t=new Xn(E.maxSessions,E.maxPersistedSessions),Gr(t),n=setInterval(()=>t.cleanup(),300*1e3)},stop:()=>{t&&t.killAll("shutdown"),n&&clearInterval(n),n=null,t=null,Gr(null)}})}export{rO as register};
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-code-agent",
3
3
  "name": "OpenClaw Code Agent",
4
4
  "description": "Orchestrate coding agent sessions from OpenClaw",
5
- "version": "2.0.5",
5
+ "version": "2.3.0",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
@@ -11,18 +11,77 @@
11
11
  "type": "number",
12
12
  "default": 20
13
13
  },
14
+ "harnesses": {
15
+ "type": "object",
16
+ "description": "Per-harness launch defaults and model restrictions.",
17
+ "default": {
18
+ "codex": {
19
+ "defaultModel": "gpt-5.4",
20
+ "allowedModels": [
21
+ "gpt-5.4"
22
+ ],
23
+ "reasoningEffort": "medium",
24
+ "approvalPolicy": "on-request"
25
+ },
26
+ "claude-code": {
27
+ "defaultModel": "sonnet",
28
+ "allowedModels": [
29
+ "sonnet",
30
+ "opus"
31
+ ]
32
+ }
33
+ },
34
+ "additionalProperties": {
35
+ "type": "object",
36
+ "additionalProperties": false,
37
+ "properties": {
38
+ "defaultModel": {
39
+ "type": "string",
40
+ "description": "Default model for this harness when agent_launch omits model."
41
+ },
42
+ "allowedModels": {
43
+ "type": "array",
44
+ "items": {
45
+ "type": "string"
46
+ },
47
+ "description": "Restrict which models can be used with this harness. Empty or omitted means no restriction."
48
+ },
49
+ "reasoningEffort": {
50
+ "type": "string",
51
+ "enum": [
52
+ "low",
53
+ "medium",
54
+ "high"
55
+ ],
56
+ "description": "Harness-specific reasoning effort. Currently used by Codex."
57
+ },
58
+ "approvalPolicy": {
59
+ "type": "string",
60
+ "enum": [
61
+ "never",
62
+ "on-request"
63
+ ],
64
+ "description": "Harness-specific approval policy. Currently used by Codex."
65
+ }
66
+ }
67
+ }
68
+ },
14
69
  "defaultModel": {
15
70
  "type": "string",
16
- "description": "Default model for new sessions (e.g. 'sonnet', 'opus')"
71
+ "description": "Deprecated legacy default model. Mapped to harnesses[defaultHarness].defaultModel."
17
72
  },
18
73
  "model": {
19
74
  "type": "string",
20
- "description": "Override model for all Codex sessions (e.g. 'gpt-5.3-codex', 'gpt-5.4'). Falls back to agent model config if not set."
75
+ "description": "Deprecated legacy Codex model override. Use harnesses.codex.defaultModel instead."
21
76
  },
22
77
  "reasoningEffort": {
23
78
  "type": "string",
24
- "enum": ["low", "medium", "high"],
25
- "description": "Reasoning effort for Codex sessions. 'high' for complex tasks, 'medium' (default) for balance, 'low' for speed."
79
+ "enum": [
80
+ "low",
81
+ "medium",
82
+ "high"
83
+ ],
84
+ "description": "Deprecated legacy Codex reasoning effort. Use harnesses.codex.reasoningEffort instead."
26
85
  },
27
86
  "defaultWorkdir": {
28
87
  "type": "string",
@@ -61,7 +120,10 @@
61
120
  "codexApprovalPolicy": {
62
121
  "type": "string",
63
122
  "default": "on-request",
64
- "enum": ["never", "on-request"],
123
+ "enum": [
124
+ "never",
125
+ "on-request"
126
+ ],
65
127
  "description": "Codex-only SDK/CLI approval policy. Defaults to 'on-request'. Set to 'never' to keep Codex from requesting approval for privileged actions. Distinct from plugin permissionMode / plan orchestration."
66
128
  },
67
129
  "agentChannels": {
@@ -79,14 +141,24 @@
79
141
  "planApproval": {
80
142
  "type": "string",
81
143
  "default": "delegate",
82
- "enum": ["approve", "ask", "delegate"],
144
+ "enum": [
145
+ "approve",
146
+ "ask",
147
+ "delegate"
148
+ ],
83
149
  "description": "Plan approval behavior. 'delegate' (default): orchestrator autonomously decides whether to approve low-risk plans or escalate to the user. 'approve': orchestrator can auto-approve after verification. 'ask': orchestrator always forwards plans to the user for approval."
84
150
  },
85
151
  "defaultHarness": {
86
152
  "type": "string",
87
153
  "default": "claude-code",
88
- "enum": ["claude-code", "codex"],
89
154
  "description": "Default agent harness when agent_launch omits the harness parameter."
155
+ },
156
+ "allowedModels": {
157
+ "type": "array",
158
+ "items": {
159
+ "type": "string"
160
+ },
161
+ "description": "Deprecated legacy global model restriction. Use harnesses.<name>.allowedModels instead."
90
162
  }
91
163
  }
92
164
  },
@@ -107,14 +179,18 @@
107
179
  "help": "Base directory used for new sessions when agent_launch does not provide a workdir.",
108
180
  "placeholder": "/home/user/project"
109
181
  },
182
+ "harnesses": {
183
+ "label": "Harness configuration",
184
+ "help": "Per-harness defaults and model restrictions. Default: {\"codex\":{\"defaultModel\":\"gpt-5.4\",\"allowedModels\":[\"gpt-5.4\"],\"reasoningEffort\":\"medium\",\"approvalPolicy\":\"on-request\"},\"claude-code\":{\"defaultModel\":\"sonnet\",\"allowedModels\":[\"sonnet\",\"opus\"]}}."
185
+ },
110
186
  "defaultModel": {
111
- "label": "Default model",
112
- "help": "Default model for new sessions when a harness-specific override is not set.",
187
+ "label": "Legacy default model",
188
+ "help": "Deprecated. Mapped to harnesses[defaultHarness].defaultModel during migration.",
113
189
  "placeholder": "sonnet"
114
190
  },
115
191
  "model": {
116
- "label": "Codex model override",
117
- "help": "Override model for all Codex sessions; falls back to the agent model config or defaultModel when unset.",
192
+ "label": "Legacy Codex model",
193
+ "help": "Deprecated. Use harnesses.codex.defaultModel instead.",
118
194
  "placeholder": "gpt-5.3-codex"
119
195
  },
120
196
  "maxSessions": {
@@ -131,12 +207,14 @@
131
207
  },
132
208
  "codexApprovalPolicy": {
133
209
  "label": "Codex approval policy",
134
- "help": "Real Codex SDK/CLI approval policy for Codex sessions. Defaults to 'on-request'; use 'never' to preserve fully non-interactive Codex approval behavior."
210
+ "help": "Deprecated. Use harnesses.codex.approvalPolicy instead."
135
211
  },
136
212
  "planApproval": {
137
213
  "label": "Plan approval policy",
138
214
  "help": "Choose whether plans are auto-approved, always escalated, or delegated to the orchestrator."
139
215
  }
140
216
  },
141
- "skills": ["./skills"]
217
+ "skills": [
218
+ "./skills"
219
+ ]
142
220
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-code-agent",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -39,10 +39,44 @@ You orchestrate coding agent sessions via the `openclaw-code-agent`. Each sessio
39
39
  | `channel` | **Do NOT pass.** Resolved automatically via `agentChannels`. |
40
40
  | `workdir` | Always when the project is not in the `defaultWorkdir`. |
41
41
  | `multi_turn` | `true` by default unless explicitly one-shot. |
42
- | `model` | When you want to force a specific model (`"sonnet"`, `"opus"`). |
42
+ | `model` | When you want to force a specific model (`"sonnet"`, `"opus"`, `"gpt-5.4"`). Subject to `harnesses.<name>.allowedModels` restrictions if configured. |
43
43
  | `system_prompt` | To inject project-specific context. |
44
44
  | `permission_mode` | `"plan"` by default. `"bypassPermissions"` for trusted tasks. |
45
45
 
46
+ ### Harness-scoped model restrictions
47
+
48
+ The plugin config restricts models per harness via `harnesses.<name>.allowedModels`:
49
+
50
+ - **Matching:** Case-insensitive substring matching (e.g., `"sonnet"` matches `"claude-sonnet-4-6"`)
51
+ - **Explicit model blocked:** If a caller explicitly requests a model not in that harness's `allowedModels`, the launch fails with an error
52
+ - **Default model blocked:** If no model is specified and the resolved `harnesses.<name>.defaultModel` is not in `allowedModels`, the launch fails with a config error
53
+ - **Not configured:** If `allowedModels` is empty or undefined for that harness, all models are allowed for that harness
54
+
55
+ **Example configuration:**
56
+ ```json
57
+ {
58
+ "harnesses": {
59
+ "claude-code": {
60
+ "defaultModel": "sonnet",
61
+ "allowedModels": ["sonnet", "haiku"]
62
+ },
63
+ "codex": {
64
+ "defaultModel": "gpt-5.4",
65
+ "allowedModels": ["gpt-5.4"]
66
+ }
67
+ }
68
+ }
69
+ ```
70
+
71
+ This configuration allows Claude models containing "sonnet" or "haiku" in their identifier, and restricts Codex launches to `gpt-5.4`.
72
+
73
+ **Interaction with harness compatibility:**
74
+ When both `harnesses.<name>.allowedModels` and harness compatibility constraints apply, you must satisfy BOTH:
75
+ 1. The model must be in `harnesses.<name>.allowedModels` (if configured)
76
+ 2. The model must be compatible with the chosen harness
77
+
78
+ Example: If `harnesses.claude-code.allowedModels = ["sonnet", "gpt-4"]` and you use the default `claude-code` harness, only "sonnet" will work because "gpt-4" is not a Claude-compatible model.
79
+
46
80
  ### Examples
47
81
 
48
82
  ```
@@ -83,6 +117,19 @@ agent_launch(
83
117
  )
84
118
  ```
85
119
 
120
+ ### Harness and model compatibility
121
+
122
+ | Harness | Supported Models | Examples |
123
+ |---------|-----------------|---------|
124
+ | `claude-code` | Anthropic only | `sonnet`, `opus`, `haiku`, `claude-sonnet-4-6` |
125
+ | `codex` | OpenAI only | `gpt-4`, `gpt-5`, `o1`, `o3-mini` |
126
+
127
+ - When user says "with sonnet/opus/haiku" → use `harness: "claude-code"` (or omit — it's the default)
128
+ - When user says "with gpt-4/o1/o3" → use `harness: "codex"`
129
+ - **Never** pass Anthropic models to codex harness or OpenAI models to claude-code harness
130
+
131
+ If `harnesses.<name>.allowedModels` is configured, both explicit model requests and default models outside that list are rejected with an error. When the default model is not allowed, the error message directs you to update the plugin config.
132
+
86
133
  ---
87
134
 
88
135
  ## 2. Anti-cascade rules (CRITICAL)
@@ -239,8 +286,11 @@ Notifications are routed to the Telegram thread/topic where the session was laun
239
286
  | Session starts | Silent (command response confirms launch) |
240
287
  | Session completed | Brief one-liner to originating thread |
241
288
  | Session failed | Error notification to originating thread |
242
- | Waiting for input | Wake event + "Agent asks" in thread (only when the agent actually asks a question) |
243
- | Session idle-killed | Brief notification with kill reason |
289
+ | Waiting for input | Wake event + `❓ Waiting for input` in thread (only when the agent actually asks a question) |
290
+ | Turn completes without a question | `⏸️ Paused after turn | Auto-resumable` |
291
+ | Session auto-resumes | `▶️ Auto-resumed` |
292
+ | Session idle-times out | `💤 Idle timeout` |
293
+ | Session is forcibly stopped | `⛔ Stopped ...` with the specific stop reason |
244
294
 
245
295
  ### Plan → Execute mode switch
246
296