@vpxa/aikit 0.1.309 → 0.1.310

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.
Files changed (28) hide show
  1. package/package.json +1 -1
  2. package/packages/blocks-core/dist/index.mjs +5 -5
  3. package/packages/blocks-interactive/dist/index.d.mts +1 -1
  4. package/packages/blocks-interactive/dist/index.mjs +2 -2
  5. package/packages/browser/dist/index.js +8 -7
  6. package/packages/cli/dist/index.js +3 -3
  7. package/packages/cli/dist/{init-VP9ig7OK.js → init-DokIBPoi.js} +1 -1
  8. package/packages/cli/dist/{templates-WsJg6Pkc.js → templates-WMcV7ag2.js} +9 -9
  9. package/packages/present/dist/index.html +137 -93
  10. package/packages/server/dist/bin.js +1 -1
  11. package/packages/server/dist/index.js +1 -1
  12. package/packages/server/dist/{server-DZKWh8ZG.js → server-CUEJEod-.js} +139 -139
  13. package/packages/server/dist/{server-http-DeWcQphZ.js → server-http-C2Vv-0lq.js} +1 -1
  14. package/packages/server/dist/{server-http-Dk16rq4T.js → server-http-DLqbe1NN.js} +1 -1
  15. package/packages/server/dist/{server-stdio-Bx_Aa99F.js → server-stdio-RjYFfC_c.js} +1 -1
  16. package/packages/server/dist/{server-stdio-CebgeeBc.js → server-stdio-h8m_nhNo.js} +1 -1
  17. package/packages/server/dist/{server-RV1UYywi.js → server-uxrUzJ0L.js} +139 -139
  18. package/packages/server/viewers/c4-viewer.html +1 -1
  19. package/packages/server/viewers/canvas.html +4 -4
  20. package/packages/server/viewers/report-template.html +52 -52
  21. package/packages/server/viewers/task-plan-static.html +1 -1
  22. package/packages/server/viewers/tour-viewer.html +4 -4
  23. package/packages/tools/dist/index.d.ts +7 -0
  24. package/packages/tools/dist/index.js +71 -71
  25. package/scaffold/dist/definitions/bodies.mjs +15 -6
  26. package/scaffold/dist/definitions/protocols.mjs +10 -11
  27. package/scaffold/dist/definitions/skills/c4-architecture.mjs +1 -1
  28. package/scaffold/dist/definitions/skills/docs.mjs +1 -1
@@ -24,19 +24,19 @@ import{n as e,t}from"./curated-manager-BrgM_znO.js";import{a as n,c as r,d as i,
24
24
  `),r=await this.curatedStore.remember(t,n,`context`,[`observation`,`source-${e.source}`,`type-${e.type}`]);this.stateStore.memoryMetaCreate(r.path,`working`)}};function oo(e){let t=[e.cwd,e.workspace,e.root_path,e.path];for(let e of t)if(typeof e==`string`&&e.length>0)return e}function so(e){return async(t,n)=>{let r=await n();try{await e.processToolResult(t.toolName,r,{workspace:oo(t.args),args:t.args})}catch(e){Ka.warn(`Observation capture failed`,{toolName:t.toolName,requestId:t.requestId,error:e instanceof Error?e.message:String(e)})}return r}}const co=M(`procedural-memory`),lo=`Use when these user-facing tools are run in this order within a single session.`,uo={minSequenceLength:3,minRepetitions:3,maxSequenceLength:10,confidenceIncrement:10,confidenceDecrement:20},fo=new Set([`status`,`guide`,`health`,`onboard`,`reindex`,`replay`,`session_digest`,`process`,`watch`,`produce_knowledge`,`list_tools`,`describe_tool`,`search_tools`]);function po(e){return e.join(`→`)}function mo(e){return{...e,steps:[...e.steps]}}function ho(e){return e.every(e=>e.success)}var go=class{config;history=[];sequences=new Map;procedures=new Map;pendingProcedures=new Map;constructor(e=uo){this.config=e}record(e,t){let n=new Date().toISOString();this.history.push({toolName:e,timestamp:n,success:t}),this.history.length>100&&(this.history=this.history.slice(-100));let r=this.detectSequences(n);this.updateMatchedProcedures(n,r)}getExtractableSequences(){return[...this.sequences.entries()].filter(([,e])=>e.count>=this.config.minRepetitions).map(([e,t])=>({steps:e.split(`→`),count:t.count,lastSeen:t.lastSeen})).sort((e,t)=>t.count===e.count?t.steps.length-e.steps.length:t.count-e.count)}listProcedures(){return[...this.procedures.values()].map(e=>mo(e)).sort((e,t)=>t.occurrences===e.occurrences?t.steps.length-e.steps.length:t.occurrences-e.occurrences)}drainNewProcedures(){let e=[...this.pendingProcedures.values()].map(e=>mo(e));return this.pendingProcedures.clear(),e}requeueProcedures(e){for(let t of e)this.pendingProcedures.set(po(t.steps),mo(t))}extractProcedure(e,t){return{id:Le(),steps:[...e],occurrences:t,confidence:Math.min(50+(t-this.config.minRepetitions)*this.config.confidenceIncrement,100),lastSeen:new Date().toISOString(),conditions:lo}}adjustConfidence(e,t){return e.confidence=t?Math.min(100,e.confidence+this.config.confidenceIncrement):Math.max(0,e.confidence-this.config.confidenceDecrement),e.confidence}getHistoryLength(){return this.history.length}clear(){this.history=[],this.sequences.clear(),this.procedures.clear(),this.pendingProcedures.clear()}detectSequences(e){let t=this.history.map(e=>e.toolName),n=Math.min(this.config.maxSequenceLength,t.length),r=new Set,i=Math.max(1,Math.min(2,this.config.minRepetitions));for(let a=this.config.minSequenceLength;a<=n;a+=1){let n=t.slice(-a),o=po(n),s=0;for(let e=0;e<=t.length-a;e+=1)po(t.slice(e,e+a))===o&&(s+=1);if(!(s<i)&&(this.sequences.set(o,{count:s,lastSeen:e}),s>=this.config.minRepetitions&&!this.procedures.has(o))){let t=this.extractProcedure(n,s);t.lastSeen=e,this.procedures.set(o,t),this.pendingProcedures.set(o,mo(t)),r.add(o)}}return r}updateMatchedProcedures(e,t){for(let[n,r]of this.procedures.entries()){if(t.has(n))continue;let i=n.split(`→`);if(this.history.length<i.length)continue;let a=this.history.slice(-i.length);po(a.map(e=>e.toolName))===n&&(r.occurrences+=1,r.lastSeen=e,this.adjustConfidence(r,ho(a)))}}};async function _o(e,t,n){let r=await t.remember(`Procedure: ${n.steps.join(` → `)}`,vo(n),`patterns`,[`procedure`,`auto-extracted`]);return e.memoryMetaCreate(r.path,`procedural`),r.path}function vo(e){return[`## Procedure: ${e.steps.join(` → `)}`,``,`**Confidence:** ${e.confidence}/100`,`**Occurrences:** ${e.occurrences}`,`**Last Seen:** ${e.lastSeen}`,``,`### Steps`,...e.steps.map((e,t)=>`${t+1}. \`${e}\``),``,`### When to Use`,e.conditions??lo].join(`
25
25
  `)}function yo(e,t,n={}){return async(r,i)=>{if(!bo(r.toolName,n))return i();try{let n=await i();return e.record(r.toolName,n.isError!==!0),await xo(e,t,r.toolName),n}catch(n){throw e.record(r.toolName,!1),await xo(e,t,r.toolName),n}}}function bo(e,t){return t.trackedTools&&!t.trackedTools.has(e)?!1:!(t.ignoredTools??fo).has(e)}async function xo(e,t,n){if(fe.instance().isDegraded(`embedder`)){co.debug?.(`Skipping procedural memory persist — embedder degraded`);return}let r=e.drainNewProcedures();if(r.length===0)return;let i=[];for(let e of r)try{await _o(t.stateStore,t.curatedStore,e)}catch(t){let r=t instanceof Error?t.message:String(t),a=/circuit breaker|timed out|worker.*killed|respawn/i.test(r);co.warn(`Failed to store procedural memory`,{toolName:n,sequence:e.steps.join(` -> `),error:r}),a||i.push(e)}i.length>0&&e.requeueProcedures(i)}const So=M(`tool-pipeline`);function Co(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function wo(e,t){return e.tools?(Array.isArray(e.tools)?e.tools:[e.tools]).includes(t):!0}function To(e){return e.middleware.critical===!0}var Eo=class{entries=[];use(e,t){this.entries.push({middleware:e,order:t?.order??100,tools:t?.tools,name:t?.name??e.name??`anonymous`})}useFor(e,t,n){this.use(t,{order:n?.order,tools:e,name:n?.name})}wrap(e,t,n,r){let i=this.entries.filter(t=>wo(t,e)).sort((e,t)=>e.order-t.order);return async(a,o)=>{let s={toolName:e,args:Co(a)?a:{},requestId:Le(),meta:r,extra:o,toolConfig:n},c=async n=>{let r=i[n];if(!r)return await t(s.args,o);let a=!1,l=!1,u,d=async()=>{a=!0;let e=await c(n+1);return l=!0,u=e,e};try{return await r.middleware(s,d)}catch(t){if(To(r))throw t;if(So.warn(`Middleware failed for tool`,{middleware:r.name,tool:e,error:String(t)}),a){if(l&&u)return u;throw t}return c(n+1)}};return c(0)}}getMiddlewareNames(){return this.entries.map(e=>e.name)}};const Do=M(`auto-gc`);let Oo=`warming`,ko=null,Ao=0;function jo(){let e=[...Go()];if(e.length<10)return 0;e.sort((e,t)=>e-t);let t=Math.floor(e.length*.95);return e[Math.min(t,e.length-1)]}function Mo(e){let t=jo();if(t===0){Oo=`warming`;return}if(t>500){Oo=`degraded`;let n=Date.now();if(ko&&n-ko<36e5){Do.debug(`GC cooldown active — skipping`,{lastGcAgoMs:n-ko});return}ko=n,Ao++,Do.warn(`p95 latency exceeds threshold, triggering GC`,{p95:t,cycle:Ao}),e&&e().catch(e=>Do.error(`GC callback failed`,{err:String(e)}))}else t<200&&(Oo=`healthy`)}function No(){return{state:Oo,p95:jo(),lastGcAt:ko,gcCount:Ao,bufferSize:Go().length}}const Po=/key|token|secret|auth|password|bearer/i,Fo=new Set([`eval`,`env`]);function Io(e){if(typeof e==`string`)return/^(Bearer |sk-|ghp_|glpat-|ghu_|ghs_|github_pat_)/i.test(e)?`[REDACTED]`:e;if(Array.isArray(e))return e.map(Io);if(e&&typeof e==`object`){let t={};for(let[n,r]of Object.entries(e))/(?:token|secret|password|passphrase|key|auth|credential|api.?key)/i.test(n)?t[n]=`[REDACTED]`:t[n]=Io(r);return t}return e}function Lo(e,t){if(Fo.has(e))return JSON.stringify({_redacted:!0,tool:e});let n=Io(t);if(e===`http`&&n.headers&&typeof n.headers==`object`){let e={};for(let[t,r]of Object.entries(n.headers))e[t]=Po.test(t)?`[REDACTED]`:r;return n.headers=e,JSON.stringify(n).slice(0,2e3)}return JSON.stringify(n).slice(0,2e3)}let Ro={totalInputChars:0,totalOutputChars:0,callCount:0,startTime:new Date().toISOString()};function zo(e,t){Ro.totalInputChars+=e,Ro.totalOutputChars+=t,Ro.callCount++}function Bo(){return{...Ro}}const Vo=new Map,Ho=[];function Uo(e,t,n,r,i){let a=Vo.get(e);a||(a={callCount:0,totalDurationMs:0,totalInputChars:0,totalOutputChars:0,errorCount:0},Vo.set(e,a)),a.callCount++,a.totalDurationMs+=t,a.totalInputChars+=n,a.totalOutputChars+=r,i&&a.errorCount++,Ho.push(t),Ho.length>100&&Ho.shift(),Ho.length>=10&&Ho.length%20==0&&Mo()}function Wo(){return Array.from(Vo.entries()).map(([e,t])=>({tool:e,...t}))}function Go(){return Ho}function Ko(){return async(e,t)=>{let n=Date.now(),r=JSON.stringify(e.args??{}).length;try{let i=await t(),a=Date.now()-n,o=JSON.stringify(i);return on({ts:new Date().toISOString(),source:`mcp`,tool:e.toolName,input:Lo(e.toolName,e.args),durationMs:a,status:`ok`,output:o,traceId:e.requestId,outputChars:o.length,inputChars:r}),Uo(e.toolName,a,r,o.length,!1),zo(r,o.length),i}catch(t){let i=Date.now()-n,a=t instanceof Error?t.message:String(t);throw on({ts:new Date().toISOString(),source:`mcp`,tool:e.toolName,input:Lo(e.toolName,e.args),durationMs:i,status:`error`,output:a,traceId:e.requestId,outputChars:0,inputChars:r}),Uo(e.toolName,i,r,0,!0),zo(r,a.length),t}}}function qo(e,t){e.registerResource(`aikit-curated-index`,`aikit://curated`,{description:`Index of all curated knowledge entries`,mimeType:`text/markdown`},async()=>{let e=await t.listPage({limit:200,orderBy:`updated`,order:`desc`}),n=e.entries,r=n.map(e=>`- [${e.title}](aikit://curated/${e.path}) — ${e.category}`),i=e.hasMore?`\n\n_Showing ${n.length} of ${e.totalCount} entries. Use knowledge list for pagination._`:``;return{contents:[{uri:`aikit://curated`,text:`# Curated Knowledge Index\n\n${r.length>0?r.join(`
26
26
  `):`_No curated entries yet._`}${i}`,mimeType:`text/markdown`}]}});let n=new qn(`aikit://curated/{+path}`,{list:async()=>({resources:(await t.listPage({limit:200,orderBy:`updated`,order:`desc`})).entries.map(e=>({uri:`aikit://curated/${e.path}`,name:e.title,description:`[${e.category}] ${e.contentPreview?.slice(0,80)??``}`,mimeType:`text/markdown`}))})});e.registerResource(`aikit-curated-entry`,n,{description:`A curated knowledge entry`,mimeType:`text/markdown`},async(e,n)=>{let r=n.path;if(!r)throw Error(`Missing path variable in curated resource URI`);let i=await t.read(r);return{contents:[{uri:e.toString(),text:`---\ntitle: ${i.title}\ncategory: ${i.category}\ntags: ${i.tags?.join(`, `)??``}\nversion: ${i.version??1}\n---\n\n${i.content??i.contentPreview??``}`,mimeType:`text/markdown`}]}})}const Jo=`aikit://schemas/channel-surface`,Yo=new URL(`../../../blocks-core/schemas/channel-surface.schema.json`,import.meta.url);let Xo;function Zo(){return Xo??=In(Yo,`utf8`),Xo}const Qo=[{type:`markdown`,valueShape:`string`,example:`**bold**`},{type:`table`,valueShape:`{headers: string[], rows: string[][]}`,example:`{headers:["Name"], rows:[["Alice"]]}`},{type:`metrics`,valueShape:`{label:string, value:string|number}[]`,example:`[{label:"Pass", value:42}]`},{type:`checklist`,valueShape:`{label:string, checked:boolean}[]`,example:`[{label:"Done", checked:true}]`},{type:`chart`,valueShape:`{chartType, data, xKey, yKeys}`,example:`{chartType:"line", data:[{x:1}], xKey:"x", yKeys:["y"]}`},{type:`code`,valueShape:`string`,example:`const x = 1;`},{type:`heading`,valueShape:`string`,example:`## Section`},{type:`mermaid`,valueShape:`string`,example:`graph TD; A-->B;`},{type:`timeline`,valueShape:`{title, timestamp?, status?}[]`,example:`[{title:"Release", status:"done"}]`},{type:`cards`,valueShape:`{title, body?, status?}[]`,example:`[{title:"Card", body:"Content"}]`},{type:`comparison`,valueShape:`{title, items}[]`,example:`[{title:"Option A", items:["Fast"]}]`},{type:`kv`,valueShape:`Record<string, string>`,example:`{key: "value"}`},{type:`tree`,valueShape:`{name, children?}`,example:`{name:"root", children:[{name:"leaf"}]}`},{type:`status-board`,valueShape:`{category, items}[]`,example:`[{category:"Services", items:[{label:"API", status:"healthy"}]}]`},{type:`progress`,valueShape:`{label, value, max?}`,example:`{label:"Progress", value:75}`},{type:`separator`,valueShape:`none`,example:`separator`}];function $o(e){let t={schema:JSON.parse(e),blockCatalog:Qo,presetCatalog:`aikit://present/presets`,templateCatalog:`aikit://present/templates`};return JSON.stringify(t,null,2)}function es(e,t,n){e.registerResource(`aikit-status`,`aikit://status`,{description:`Current AI Kit status and statistics`,mimeType:`text/plain`},async()=>{let e=await t.getStats();return{contents:[{uri:`aikit://status`,text:`AI Kit: ${e.totalRecords} records from ${e.totalFiles} files. Last indexed: ${e.lastIndexedAt??`Never`}`,mimeType:`text/plain`}]}}),e.registerResource(`aikit-file-tree`,`aikit://file-tree`,{description:`List of all indexed source files`,mimeType:`text/plain`},async()=>({contents:[{uri:`aikit://file-tree`,text:(await t.listSourcePaths()).sort().join(`
27
- `),mimeType:`text/plain`}]})),e.registerResource(`aikit-channel-surface-schema`,Jo,{description:`Composite catalog: ChannelSurface JSON Schema, block types, and resource URIs`,mimeType:`application/json`},async()=>({contents:[{uri:Jo,text:$o(await Zo()),mimeType:`application/json`}]})),qo(e,n)}const ts=[`er_push`,`er_pull`,`er_sync_status`],ns=[...ts,`er_update_policy`,`er_evolve_review`],rs=new Set(ns);function is(e){return e.toolProfiles}const as=5e3,os=M(`structured-content-guard`);function ss(){let e=(async(e,t)=>{let n;try{n=await t()}catch(e){n={content:[{type:`text`,text:`[ERROR:INTERNAL] ${e instanceof Error?e.message:String(e)}`}],isError:!0}}let r=(e.toolConfig??{}).outputSchema;if(r==null)return n;let i=null;if(n.structuredContent==null){let t=cs(r);n.structuredContent=t,i=`synthesize`,n.structuredContent??(n.structuredContent={},i=`synthesize-null-fallback`,os.error(`synthesizeStructuredContent returned null/undefined — using empty fallback`,{tool:e.toolName}))}let a=ls(r,n.structuredContent);if(a.action!=null&&(n.structuredContent=a.structuredContent,i=a.action),ds(n.structuredContent)||(n.isError=!0,n.structuredContent={},i=`fallback-error`),us(r,n.structuredContent)===!1){let e=cs(r);n.structuredContent=e??{},us(r,n.structuredContent)===!1?(n.structuredContent=ds(n.structuredContent)?n.structuredContent:{},i=`final-validation-failed`):i??=`final-heal`}return n});return e.critical=!0,e}function cs(e){try{return fs(e)??{}}catch{return{}}}function ls(e,t){if(us(e,t)!==!1)return{structuredContent:t,action:null};try{let n=cs(e);if(ds(n)&&ds(t)){let r={...n,...t};if(us(e,r)!==!1)return{structuredContent:r,action:`heal`}}return{structuredContent:n,action:`fallback-zero-value`}}catch{return{structuredContent:t,action:null}}}function us(e,t){let n=e.safeParse;if(typeof n==`function`)try{return n(t).success}catch{return}}function ds(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function fs(e){if(!e)return{};if(e.anyOf){let t=e.anyOf.find(e=>e.type!==`null`);return t?fs(t):null}let t=e._def?.typeName;if(t&&!e.type)switch(t){case`ZodObject`:{let t={},n=null;try{n=e.shape??(typeof e._def?.shape==`function`?e._def.shape():e._def?.shape)}catch{n=null}if(n)for(let[e,r]of Object.entries(n))try{t[e]=fs(r)}catch{t[e]=null}return t}case`ZodArray`:return[];case`ZodString`:return``;case`ZodNumber`:return 0;case`ZodBoolean`:return!1;case`ZodNullable`:return null;case`ZodOptional`:return;case`ZodRecord`:return{};case`ZodEnum`:return e._def?.values?.[0]??``;default:return{}}switch(e.type){case`object`:{let t={},n=e.properties??e.shape;if(n)for(let[e,r]of Object.entries(n))t[e]=fs(r);return t}case`array`:return[];case`string`:return``;case`number`:case`integer`:return 0;case`boolean`:return!1;case`nullable`:return null;case`optional`:return;case`record`:return{};case`enum`:return e.options?.[0]??Object.values(e.enum??e._def?.entries??{})[0]??``;default:return{}}}function ps(e){if(!e)return{};try{let t=fs(e);return ds(t)?t:{}}catch{return{}}}const ms=Symbol(`toolPipelineState`);function hs(e){return e[ms]}function gs(e,t){e[ms]=t}function _s(e,t){return t?async(...n)=>{let r=await e(...n);if(!r||typeof r!=`object`)return r;let i=r;return!(`content`in i)||i.structuredContent!=null&&typeof i.structuredContent==`object`?r:(i.structuredContent=ps(t),i.structuredContent??={},r)}:e}function vs(e,t,n=``){let r=hs(e);if(r){r.pipeline=t,r.prefix=n;return}gs(e,{originalRegisterTool:e.registerTool.bind(e),pipeline:t,prefix:n}),e.registerTool=(n,r,i)=>{let a=hs(e),o=a?.prefix?`${a.prefix}${n}`:n;if(!i)return a?.originalRegisterTool(o,r);let s=r?.outputSchema;if((a?.pipeline??t).getMiddlewareNames().length===0){let e=_s(i,s);return a?.originalRegisterTool(o,r,e)}let c=W(n),l=_s((a?.pipeline??t).wrap(n,i,r,c),s);return a?.originalRegisterTool(o,r,l)}}const ys={analyze:1,audit:1,blast_radius:1,changelog:1,check:2,checkpoint:2,codemod:2,compact:1,config:0,data_transform:1,dead_symbols:1,delegate:3,describe_tool:1,diff_parse:1,digest:1,encode:1,env:0,eval:2,evidence_map:2,file_summary:1,find:1,flow:3,forge_classify:1,forge_ground:2,git_context:1,graph:1,guide:0,health:0,http:1,lane:2,list_tools:1,lookup:1,measure:1,onboard:3,parse_output:1,present:1,process:3,produce_knowledge:3,queue:3,regex_test:1,reindex:3,rename:2,replay:1,restore:2,schema_validate:1,scope_map:1,search:1,search_tools:1,signal:2,session_digest:2,stash:2,status:0,stratum_card:1,symbol:1,test_run:2,time:0,trace:1,watch:3,web_fetch:1,web_search:1,workset:2};function bs(e,t){return e.filter(e=>(ys[e]??0)<=t)}const xs=new Set([`status`,`config`,`guide`,`health`]),Ss={full:{description:`All tools enabled (default)`,includeCategories:[]},safe:{description:`Read-only tools — no file/state modifications`,includeCategories:[`search`,`analysis`,`compression`,`utilities`,`system`,`git`,`flow`],excludeTools:[`reindex`,`onboard`]},research:{description:`Search, analysis, knowledge, and web access`,includeCategories:[`search`,`analysis`,`knowledge`,`compression`,`web`,`system`,`flow`]},minimal:{description:`Essential tools only — search, status, basic operations`,includeCategories:[`search`,`system`],includeTools:[`compact`,`file_summary`,`check`,`test_run`]},discovery:{description:`Full toolset plus discovery-oriented meta-tools for guided tool exploration`,includeCategories:[],includeTools:[`list_tools`,`describe_tool`,`search_tools`]}};function Cs(e,t){let n=Ss[e];if(n)return n;let r=t?.[e];if(r)return r;throw Error(`Unknown tool profile: ${e}`)}function ws(e,t,n){return t.includes(`*`)?!0:(n[e]?.category??[]).some(e=>t.includes(e))}function Ts(e,t,n,r){if(t.includes(`*`)){for(let t of n)e.add(t);return}for(let i of n)ws(i,t,r)&&e.add(i)}function Es(e,t,n){if(t.includes(`*`)){e.clear();return}for(let r of[...e])ws(r,t,n)&&e.delete(r)}function Ds(e,t,n){if(!e||e.length===0||e.includes(`*`))return new Set(t);let r=new Set;return Ts(r,e,t,n),r}function Os(e,t){return e===void 0?t:t===void 0?e:Math.min(e,t)}function ks(e,t){for(let n of[...e])t[n]?.annotations?.readOnlyHint===!1&&e.delete(n)}function As(e,t,n=0,r=[]){if(n>10)throw Error(`Tool profile inheritance exceeded max depth 10: ${[...r,e].join(` -> `)}`);if(r.includes(e))throw Error(`Tool profile inheritance cycle detected: ${[...r,e].join(` -> `)}`);let i=Cs(e,t);return Os(i.extends?As(i.extends,t,n+1,[...r,e]):void 0,i.maxTier)}function js(e,t,n,r){let i=(e,a,o)=>{if(a>10)throw Error(`Tool profile inheritance exceeded max depth 10: ${[...o,e].join(` -> `)}`);if(o.includes(e))throw Error(`Tool profile inheritance cycle detected: ${[...o,e].join(` -> `)}`);let s=Cs(e,r),c=[...o,e],l=s.extends?i(s.extends,a+1,c):Ds(s.includeCategories,t,n);s.extends&&s.includeCategories?.length&&Ts(l,s.includeCategories,t,n),s.excludeCategories?.length&&Es(l,s.excludeCategories,n);for(let e of s.includeTools??[])l.add(e);for(let e of s.excludeTools??[])l.delete(e);return l},a=i(e,0,[]),o=As(e,r);if(o!==void 0){let e=bs([...a],o);a.clear();for(let t of e)a.add(t)}for(let e of xs)a.add(e);return e===`safe`&&ks(a,n),a}const Ms=new Set([`search`,`analysis`,`knowledge`,`compression`,`forge`,`presentation`,`execution`,`manipulation`,`session`,`git`,`process`,`system`,`meta`,`utilities`,`web`,`queue`,`flow`]);function Ns(e,t,n,r){let i=process.env.AIKIT_TOOLSET||e.toolProfile||`full`,a=js(i,t,n,r);if(e.features&&e.features.length>0){let i=e.features.filter(e=>!Ms.has(e));if(i.length>0)throw Error(`Unknown feature group(s): ${i.join(`, `)}. Valid categories: ${[...Ms].join(`, `)}`);let o={description:`Synthetic profile from features config`,includeCategories:e.features},s=js(`_features`,t,n,{...r,_features:o});for(let e of a)!s.has(e)&&!xs.has(e)&&a.delete(e)}if(e.readOnly)for(let e of[...a])n[e]?.annotations?.readOnlyHint===!1&&!xs.has(e)&&a.delete(e);for(let e of xs)a.add(e);return i===`safe`&&ks(a,n),a}const Ps=R.object({mode:R.enum([`wasm`,`regex`,`unknown`]),reason:R.string(),pathsChecked:R.array(R.object({path:R.string(),exists:R.boolean()})),os:R.string(),arch:R.string(),nodeVersion:R.string(),webTreeSitterImportable:R.boolean(),healAttempted:R.boolean(),healSuccess:R.boolean(),healError:R.string().nullable(),initError:R.string().nullable(),wasmDir:R.string().nullable(),grammarCount:R.number()}),Fs=R.object({kind:R.enum([`onboard`,`reindex`,`handoff`,`proceed`]),reason:R.string()}),Is=R.object({title:R.string(),insight:R.string(),confidence:R.number()}),Ls=R.object({lessons:R.array(Is),conventions:R.array(R.object({title:R.string(),preview:R.string()})),checkpoint:R.string().nullable()});R.object({totalRecords:R.number(),totalFiles:R.number(),lastIndexedAt:R.string().nullable(),onboarded:R.boolean(),onboardDir:R.string(),contentTypes:R.record(R.string(),R.number()),wasmAvailable:R.boolean(),wasmDiagnostics:Ps,graphStats:R.object({nodes:R.number(),edges:R.number()}).nullable(),curatedCount:R.number(),serverVersion:R.string(),scaffoldVersion:R.string().nullable(),workspaceScaffoldVersion:R.string().nullable(),upgradeAvailable:R.boolean(),sessionTokens:R.object({callCount:R.number(),totalInputChars:R.number(),totalOutputChars:R.number(),estInputTokens:R.number(),estTotalTokens:R.number(),startTime:R.string()}).optional(),storeBackend:R.string().optional(),storeDiagnostics:R.object({adapterType:R.string(),vectorSearchEnabled:R.boolean(),ftsEnabled:R.boolean(),degradedMode:R.boolean(),dbPath:R.string(),dbSizeBytes:R.number().nullable(),embeddingDim:R.number(),vectorDtype:R.string()}).nullable().optional(),contextPressure:R.number().min(0).max(100).describe(`0–100 score indicating AI Kit saturation`),nextAction:Fs,prelude:Ls.nullable().optional()}).catchall(R.any()),R.object({entries:R.array(R.object({path:R.string(),title:R.string(),category:R.string(),tags:R.array(R.string()),version:R.number(),preview:R.string()})),totalCount:R.number()});const Rs=R.object({ok:R.boolean(),checks:R.array(R.object({name:R.string(),ok:R.boolean(),message:R.string().optional()}))}),zs=R.object({summary:R.object({totalFiles:R.number(),totalLines:R.number(),totalCodeLines:R.number(),totalFunctions:R.number(),avgComplexity:R.number(),maxComplexity:R.object({value:R.number(),file:R.string()})}),files:R.array(R.object({path:R.string(),lines:R.number(),code:R.number(),complexity:R.number(),functions:R.number()}))}),Bs=R.object({platform:R.string(),arch:R.string(),nodeVersion:R.string(),cwd:R.string(),cpus:R.number(),memoryFreeGb:R.number(),memoryTotalGb:R.number()}),Vs=R.object({iso:R.string(),unix:R.number(),timezone:R.string(),formatted:R.string()}),Hs=R.object({passed:R.boolean(),errorCount:R.number(),warningCount:R.number(),topErrors:R.array(R.string())}),Us=R.object({passed:R.boolean(),tsc:Hs,biome:Hs}),Ws=R.object({name:R.string(),definedIn:R.object({path:R.string(),line:R.number(),kind:R.string(),signature:R.string().optional()}).nullable(),importedBy:R.array(R.object({path:R.string(),line:R.number(),importStatement:R.string()})),referencedIn:R.array(R.object({path:R.string(),line:R.number(),context:R.string(),scope:R.string().optional()})),graphContext:R.object({definingModule:R.string().optional(),importedByModules:R.array(R.string()),siblingSymbols:R.array(R.string())}).nullable()}),Gs=R.object({sourcePath:R.string(),contentType:R.string(),score:R.number(),headingPath:R.string().optional(),startLine:R.number().optional(),endLine:R.number().optional(),origin:R.string().optional(),category:R.string().optional(),tags:R.array(R.string()).optional()}),Ks=R.object({results:R.array(Gs),totalResults:R.number(),searchMode:R.string(),query:R.string(),ref:R.string().optional().describe(`Reusable cache reference for later compact(ref, query)`)}),qs=R.object({path:R.string(),line:R.number().optional(),matchType:R.string(),preview:R.string()}),Js=R.object({matches:R.array(qs),totalMatches:R.number(),pattern:R.string(),truncated:R.boolean(),ref:R.string().optional().describe(`Reusable cache reference for later compact(ref, query)`)}),Ys=R.object({path:R.string(),relevance:R.number(),estimatedTokens:R.number(),focusLines:R.array(R.string()).optional()}),Xs=R.object({files:R.array(Ys),totalFiles:R.number(),totalEstimatedTokens:R.number(),task:R.string()}),Zs=R.object({path:R.string(),impact:R.string(),reason:R.string()}),Qs=R.object({changedFiles:R.array(R.string()),affectedFiles:R.array(Zs),totalAffected:R.number(),riskLevel:R.string()}),$s=R.object({name:R.string(),passed:R.boolean(),message:R.string().optional(),severity:R.string().optional()}),ec=R.object({passed:R.boolean(),score:R.number(),checks:R.array($s),summary:R.string()}),tc=R.object({id:R.string(),name:R.string(),type:R.string(),sourcePath:R.string().optional()}),nc=R.object({fromId:R.string(),toId:R.string(),type:R.string()}),rc=R.object({nodes:R.array(tc),edges:R.array(nc),totalNodes:R.number(),totalEdges:R.number(),query:R.string()}),ic=R.object({symbols:R.array(R.object({name:R.string(),path:R.string(),line:R.number().optional(),kind:R.string()})),totalDead:R.number()});R.object({files:R.number(),packages:R.number(),languages:R.record(R.string(),R.number()),tree:R.string()});const ac=R.object({path:R.string(),language:R.string(),lines:R.number(),imports:R.number(),exports:R.number(),functions:R.number(),classes:R.number()}),oc=R.object({gitRoot:R.string(),branch:R.string(),commitCount:R.number(),hasUncommitted:R.boolean(),recentCommits:R.array(R.object({hash:R.string(),message:R.string(),author:R.string(),date:R.string()}))}),sc=R.object({path:R.string().optional().describe(`Source file path, if applicable`),text:R.string().describe(`The compressed text for this item`),ref:R.string().optional().describe(`Reusable cache reference for this item`),originalChars:R.number(),compressedChars:R.number(),ratio:R.number(),segmentsKept:R.number(),segmentsTotal:R.number(),error:R.string().optional().describe(`Error message if this item failed`)}),cc=R.object({text:R.string().describe(`The compressed text output`),ref:R.string().optional().describe(`Reusable cache reference (ref-only restoration mode)`),originalChars:R.number(),compressedChars:R.number(),ratio:R.number(),segmentsKept:R.number(),segmentsTotal:R.number(),items:R.array(sc).optional().describe(`Batch results when using items[] input`)}),lc=R.object({sourceId:R.string(),value:R.string()}),uc=R.object({id:R.string(),originalChars:R.number(),keptChars:R.number(),segmentsKept:R.number(),segmentsTotal:R.number()}),dc=R.object({text:R.string().describe(`The compressed digest text output`),ref:R.string().optional().describe(`Reusable cache reference`),fields:R.record(R.string(),R.array(lc)),sourceStats:R.array(uc),totalOriginalChars:R.number(),totalCompressedChars:R.number(),ratio:R.number()}),fc=R.object({passed:R.boolean(),totalTests:R.number(),passedTests:R.number(),failedTests:R.number(),skippedTests:R.number(),duration:R.number().describe(`Duration in milliseconds`),failures:R.array(R.object({name:R.string(),message:R.string(),file:R.string().optional()}))}),pc=M(`utils:enrich`);async function G(e,t){let n={curated:[],graph:[]},r=t.limit??3,[i,a]=await Promise.allSettled([mc(e,t.query,r),hc(e,t.filePath)]);return i.status===`fulfilled`?n.curated=i.value:pc.debug(`Curated enrichment failed`,{error:i.reason}),a.status===`fulfilled`?n.graph=a.value:pc.debug(`Graph enrichment failed`,{error:a.reason}),n}async function mc(e,t,n){if(!e.store||!t)return[];try{let r=await e.store.ftsSearch(t,{origin:`curated`,limit:n});if(r.length>0)return r.map(e=>gc(e.record));if(e.embedder){let r=await e.embedder.embedQuery(t);return(await e.store.search(r,{origin:`curated`,limit:n,minScore:.3})).map(e=>gc(e.record))}return[]}catch(e){return pc.debug(`Curated enrichment failed`,{error:e}),[]}}async function hc(e,t){if(!e.graphStore||!t)return[];try{let n=await e.graphStore.findNodes({sourcePath:t,limit:1});if(n.length===0){let r=t.split(/[/\\]/).pop()?.replace(/\.\w+$/,``)||``;if(!r)return[];let i=await e.graphStore.findNodes({namePattern:r,type:`module`,limit:1});if(i.length===0)return[];n.push(i[0])}let r=n[0],i=await e.graphStore.getNeighbors(r.id,{direction:`both`,limit:10}),a=[];for(let e of i.edges){let t=e.fromId===r.id?e.toId:e.fromId,n=i.nodes.find(e=>e.id===t);if(!n)continue;let o=e.fromId===r.id?`->`:`<-`;a.push(`${o} ${e.type}: ${n.name} (${n.type})`)}return a}catch(e){return pc.debug(`Graph enrichment failed`,{error:e}),[]}}function K(e){let t=[];if(e.curated.length>0){t.push(`**Curated Knowledge:**`);for(let n of e.curated)t.push(`- ${n}`)}if(e.graph.length>0){t.push(`**Graph Context:**`);for(let n of e.graph)t.push(`- ${n}`)}return t.length===0?``:`\n\n---\n### Enrichment\n${t.join(`
28
- `)}`}function gc(e){let t=_c(e.metadata,`title`)||e.sourcePath||`Untitled`;return`[${_c(e.metadata,`category`)}] ${t}: ${e.content.slice(0,200)}`}function _c(e,t){let n=e?.[t];return typeof n==`string`?n:``}function q(e,t,n){return{content:[{type:`text`,text:`[ERROR:${e}] ${t}`}],isError:!0,...n==null?{}:{structuredContent:n}}}function J(e,t){return async(n,r)=>{let i=Date.now(),a=await t(n,r),o=Date.now()-i;return a._meta={...a._meta??{},durationMs:o,toolName:e},a}}const vc=M(`tools`),yc=R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`);function bc(e,t){return t?kn(e,t):e}function xc(){let e=[];return ur.get()||e.push(`Tree-sitter unavailable — using regex fallback, symbol/pattern confidence reduced`),e.length===0?``:`\n\n> **⚠ Caveats:** ${e.join(`; `)}`}function Sc(e){return(e??[]).map(e=>{if(typeof e==`string`)return e;if(e&&typeof e==`object`&&`path`in e)return typeof e.path==`string`?e.path:void 0}).filter(e=>!!e)}function Cc(e){let t=[],n=e.filter(e=>/\.(ts|tsx|js|jsx)$/.test(e)&&/(service|store|model|schema|migration)/i.test(e)),r=e.filter(e=>/\.(ts|tsx|js|jsx)$/.test(e)&&!n.includes(e)),i=e.filter(e=>!/\.(ts|tsx|js|jsx)$/.test(e));return(n.length>0||r.length>0||i.length>0)&&(t.push(`
27
+ `),mimeType:`text/plain`}]})),e.registerResource(`aikit-channel-surface-schema`,Jo,{description:`Composite catalog: ChannelSurface JSON Schema, block types, and resource URIs`,mimeType:`application/json`},async()=>({contents:[{uri:Jo,text:$o(await Zo()),mimeType:`application/json`}]})),qo(e,n)}const ts=[`er_push`,`er_pull`,`er_sync_status`],ns=[...ts,`er_update_policy`,`er_evolve_review`],rs=new Set(ns);function is(e){return e.toolProfiles}const as=5e3,os=M(`structured-content-guard`);function ss(){let e=(async(e,t)=>{let n;try{n=await t()}catch(e){n={content:[{type:`text`,text:`[ERROR:INTERNAL] ${e instanceof Error?e.message:String(e)}`}],isError:!0}}let r=(e.toolConfig??{}).outputSchema;if(r==null)return n;let i=null;if(n.structuredContent==null){let t=cs(r);n.structuredContent=t,i=`synthesize`,n.structuredContent??(n.structuredContent={},i=`synthesize-null-fallback`,os.error(`synthesizeStructuredContent returned null/undefined — using empty fallback`,{tool:e.toolName}))}let a=ls(r,n.structuredContent);if(a.action!=null&&(n.structuredContent=a.structuredContent,i=a.action),ds(n.structuredContent)||(n.isError=!0,n.structuredContent={},i=`fallback-error`),us(r,n.structuredContent)===!1){let e=cs(r);n.structuredContent=e??{},us(r,n.structuredContent)===!1?(n.structuredContent=ds(n.structuredContent)?n.structuredContent:{},i=`final-validation-failed`):i??=`final-heal`}return n});return e.critical=!0,e}function cs(e){try{return fs(e)??{}}catch{return{}}}function ls(e,t){if(us(e,t)!==!1)return{structuredContent:t,action:null};try{let n=cs(e);if(ds(n)&&ds(t)){let r={...n,...t};if(us(e,r)!==!1)return{structuredContent:r,action:`heal`}}return{structuredContent:n,action:`fallback-zero-value`}}catch{return{structuredContent:t,action:null}}}function us(e,t){let n=e.safeParse;if(typeof n==`function`)try{return n(t).success}catch{return}}function ds(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function fs(e){if(!e)return{};if(e.anyOf){let t=e.anyOf.find(e=>e.type!==`null`);return t?fs(t):null}let t=e._def?.typeName;if(t&&!e.type)switch(t){case`ZodObject`:{let t={},n=null;try{n=e.shape??(typeof e._def?.shape==`function`?e._def.shape():e._def?.shape)}catch{n=null}if(n)for(let[e,r]of Object.entries(n))try{t[e]=fs(r)}catch{t[e]=null}return t}case`ZodArray`:return[];case`ZodString`:return``;case`ZodNumber`:return 0;case`ZodBoolean`:return!1;case`ZodNullable`:return null;case`ZodOptional`:return;case`ZodRecord`:return{};case`ZodEnum`:return e._def?.values?.[0]??``;default:return{}}switch(e.type){case`object`:{let t={},n=e.properties??e.shape;if(n)for(let[e,r]of Object.entries(n))t[e]=fs(r);return t}case`array`:return[];case`string`:return``;case`number`:case`integer`:return 0;case`boolean`:return!1;case`nullable`:return null;case`optional`:return;case`record`:return{};case`enum`:return e.options?.[0]??Object.values(e.enum??e._def?.entries??{})[0]??``;default:return{}}}function ps(e){if(!e)return{};try{let t=fs(e);return ds(t)?t:{}}catch{return{}}}const ms=Symbol(`toolPipelineState`);function hs(e){return e[ms]}function gs(e,t){e[ms]=t}function _s(e,t){return t?async(...n)=>{let r=await e(...n);if(!r||typeof r!=`object`)return r;let i=r;return!(`content`in i)||i.structuredContent!=null&&typeof i.structuredContent==`object`?r:(i.structuredContent=ps(t),i.structuredContent??={},r)}:e}function vs(e,t,n=``){let r=hs(e);if(r){r.pipeline=t,r.prefix=n;return}gs(e,{originalRegisterTool:e.registerTool.bind(e),pipeline:t,prefix:n}),e.registerTool=(n,r,i)=>{let a=hs(e),o=a?.prefix?`${a.prefix}${n}`:n;if(!i)return a?.originalRegisterTool(o,r);let s=r?.outputSchema;if((a?.pipeline??t).getMiddlewareNames().length===0){let e=_s(i,s);return a?.originalRegisterTool(o,r,e)}let c=W(n),l=_s((a?.pipeline??t).wrap(n,i,r,c),s);return a?.originalRegisterTool(o,r,l)}}const ys={analyze:1,audit:1,blast_radius:1,changelog:1,check:2,checkpoint:2,codemod:2,compact:1,config:0,data_transform:1,dead_symbols:1,delegate:3,describe_tool:1,diff_parse:1,digest:1,encode:1,env:0,eval:2,evidence_map:2,file_summary:1,find:1,flow:3,forge_classify:1,forge_ground:2,git_context:1,graph:1,guide:0,health:0,http:1,lane:2,list_tools:1,lookup:1,measure:1,onboard:3,parse_output:1,present:1,process:3,produce_knowledge:3,queue:3,regex_test:1,reindex:3,rename:2,replay:1,restore:2,schema_validate:1,scope_map:1,search:1,search_tools:1,signal:2,session_digest:2,stash:2,status:0,stratum_card:1,symbol:1,test_run:2,time:0,trace:1,watch:3,web_fetch:1,web_search:1,workset:2};function bs(e,t){return e.filter(e=>(ys[e]??0)<=t)}const xs=new Set([`status`,`config`,`guide`,`health`]),Ss={full:{description:`All tools enabled (default)`,includeCategories:[]},safe:{description:`Read-only tools — no file/state modifications`,includeCategories:[`search`,`analysis`,`compression`,`utilities`,`system`,`git`,`flow`],excludeTools:[`reindex`,`onboard`]},research:{description:`Search, analysis, knowledge, and web access`,includeCategories:[`search`,`analysis`,`knowledge`,`compression`,`web`,`system`,`flow`]},minimal:{description:`Essential tools only — search, status, basic operations`,includeCategories:[`search`,`system`],includeTools:[`compact`,`file_summary`,`check`,`test_run`]},discovery:{description:`Full toolset plus discovery-oriented meta-tools for guided tool exploration`,includeCategories:[],includeTools:[`list_tools`,`describe_tool`,`search_tools`]}};function Cs(e,t){let n=Ss[e];if(n)return n;let r=t?.[e];if(r)return r;throw Error(`Unknown tool profile: ${e}`)}function ws(e,t,n){return t.includes(`*`)?!0:(n[e]?.category??[]).some(e=>t.includes(e))}function Ts(e,t,n,r){if(t.includes(`*`)){for(let t of n)e.add(t);return}for(let i of n)ws(i,t,r)&&e.add(i)}function Es(e,t,n){if(t.includes(`*`)){e.clear();return}for(let r of[...e])ws(r,t,n)&&e.delete(r)}function Ds(e,t,n){if(!e||e.length===0||e.includes(`*`))return new Set(t);let r=new Set;return Ts(r,e,t,n),r}function Os(e,t){return e===void 0?t:t===void 0?e:Math.min(e,t)}function ks(e,t){for(let n of[...e])t[n]?.annotations?.readOnlyHint===!1&&e.delete(n)}function As(e,t,n=0,r=[]){if(n>10)throw Error(`Tool profile inheritance exceeded max depth 10: ${[...r,e].join(` -> `)}`);if(r.includes(e))throw Error(`Tool profile inheritance cycle detected: ${[...r,e].join(` -> `)}`);let i=Cs(e,t);return Os(i.extends?As(i.extends,t,n+1,[...r,e]):void 0,i.maxTier)}function js(e,t,n,r){let i=(e,a,o)=>{if(a>10)throw Error(`Tool profile inheritance exceeded max depth 10: ${[...o,e].join(` -> `)}`);if(o.includes(e))throw Error(`Tool profile inheritance cycle detected: ${[...o,e].join(` -> `)}`);let s=Cs(e,r),c=[...o,e],l=s.extends?i(s.extends,a+1,c):Ds(s.includeCategories,t,n);s.extends&&s.includeCategories?.length&&Ts(l,s.includeCategories,t,n),s.excludeCategories?.length&&Es(l,s.excludeCategories,n);for(let e of s.includeTools??[])l.add(e);for(let e of s.excludeTools??[])l.delete(e);return l},a=i(e,0,[]),o=As(e,r);if(o!==void 0){let e=bs([...a],o);a.clear();for(let t of e)a.add(t)}for(let e of xs)a.add(e);return e===`safe`&&ks(a,n),a}const Ms=new Set([`search`,`analysis`,`knowledge`,`compression`,`forge`,`presentation`,`execution`,`manipulation`,`session`,`git`,`process`,`system`,`meta`,`utilities`,`web`,`queue`,`flow`]);function Ns(e,t,n,r){let i=process.env.AIKIT_TOOLSET||e.toolProfile||`full`,a=js(i,t,n,r);if(e.features&&e.features.length>0){let i=e.features.filter(e=>!Ms.has(e));if(i.length>0)throw Error(`Unknown feature group(s): ${i.join(`, `)}. Valid categories: ${[...Ms].join(`, `)}`);let o={description:`Synthetic profile from features config`,includeCategories:e.features},s=js(`_features`,t,n,{...r,_features:o});for(let e of a)!s.has(e)&&!xs.has(e)&&a.delete(e)}if(e.readOnly)for(let e of[...a])n[e]?.annotations?.readOnlyHint===!1&&!xs.has(e)&&a.delete(e);for(let e of xs)a.add(e);return i===`safe`&&ks(a,n),a}const Ps=R.object({mode:R.enum([`wasm`,`regex`,`unknown`]),reason:R.string(),pathsChecked:R.array(R.object({path:R.string(),exists:R.boolean()})),os:R.string(),arch:R.string(),nodeVersion:R.string(),webTreeSitterImportable:R.boolean(),healAttempted:R.boolean(),healSuccess:R.boolean(),healError:R.string().nullable(),initError:R.string().nullable(),wasmDir:R.string().nullable(),grammarCount:R.number()}),Fs=R.object({kind:R.enum([`onboard`,`reindex`,`handoff`,`proceed`]),reason:R.string()}),Is=R.object({title:R.string(),insight:R.string(),confidence:R.number()}),Ls=R.object({lessons:R.array(Is),conventions:R.array(R.object({title:R.string(),preview:R.string()})),checkpoint:R.string().nullable()});R.object({totalRecords:R.number(),totalFiles:R.number(),lastIndexedAt:R.string().nullable(),onboarded:R.boolean(),onboardDir:R.string(),contentTypes:R.record(R.string(),R.number()),wasmAvailable:R.boolean(),wasmDiagnostics:Ps,graphStats:R.object({nodes:R.number(),edges:R.number()}).nullable(),curatedCount:R.number(),serverVersion:R.string(),scaffoldVersion:R.string().nullable(),workspaceScaffoldVersion:R.string().nullable(),upgradeAvailable:R.boolean(),sessionTokens:R.object({callCount:R.number(),totalInputChars:R.number(),totalOutputChars:R.number(),estInputTokens:R.number(),estTotalTokens:R.number(),startTime:R.string()}).optional(),storeBackend:R.string().optional(),storeDiagnostics:R.object({adapterType:R.string(),vectorSearchEnabled:R.boolean(),ftsEnabled:R.boolean(),degradedMode:R.boolean(),dbPath:R.string(),dbSizeBytes:R.number().nullable(),embeddingDim:R.number(),vectorDtype:R.string()}).nullable().optional(),contextPressure:R.number().min(0).max(100).describe(`0–100 score indicating AI Kit saturation`),nextAction:Fs,prelude:Ls.nullable().optional()}).catchall(R.any()),R.object({entries:R.array(R.object({path:R.string(),title:R.string(),category:R.string(),tags:R.array(R.string()),version:R.number(),preview:R.string()})),totalCount:R.number()});const Rs=R.object({ok:R.boolean(),checks:R.array(R.object({name:R.string(),ok:R.boolean(),message:R.string().optional()}))}),zs=R.object({summary:R.object({totalFiles:R.number(),totalLines:R.number(),totalCodeLines:R.number(),totalFunctions:R.number(),avgComplexity:R.number(),maxComplexity:R.object({value:R.number(),file:R.string()})}),files:R.array(R.object({path:R.string(),lines:R.number(),code:R.number(),complexity:R.number(),functions:R.number()}))}),Bs=R.object({platform:R.string(),arch:R.string(),nodeVersion:R.string(),cwd:R.string(),cpus:R.number(),memoryFreeGb:R.number(),memoryTotalGb:R.number()}),Vs=R.object({iso:R.string(),unix:R.number(),timezone:R.string(),formatted:R.string()}),Hs=R.object({passed:R.boolean(),errorCount:R.number(),warningCount:R.number(),topErrors:R.array(R.string())}),Us=R.object({passed:R.boolean(),tsc:Hs,biome:Hs}),Ws=R.object({name:R.string(),definedIn:R.object({path:R.string(),line:R.number(),kind:R.string(),signature:R.string().optional()}).nullable(),importedBy:R.array(R.object({path:R.string(),line:R.number(),importStatement:R.string()})),referencedIn:R.array(R.object({path:R.string(),line:R.number(),context:R.string(),scope:R.string().optional()})),graphContext:R.object({definingModule:R.string().optional(),importedByModules:R.array(R.string()),siblingSymbols:R.array(R.string())}).nullable()}),Gs=R.object({sourcePath:R.string(),contentType:R.string(),score:R.number(),headingPath:R.string().optional(),startLine:R.number().optional(),endLine:R.number().optional(),origin:R.string().optional(),category:R.string().optional(),tags:R.array(R.string()).optional()}),Ks=R.object({results:R.array(Gs),totalResults:R.number(),searchMode:R.string(),query:R.string(),ref:R.string().optional().describe(`Reusable cache reference for later compact(ref, query)`)}),qs=R.object({path:R.string(),line:R.number().optional(),matchType:R.string(),preview:R.string()}),Js=R.object({matches:R.array(qs),totalMatches:R.number(),pattern:R.string(),truncated:R.boolean(),ref:R.string().optional().describe(`Reusable cache reference for later compact(ref, query)`)}),Ys=R.object({path:R.string(),relevance:R.number(),estimatedTokens:R.number(),focusLines:R.array(R.string()).optional()}),Xs=R.object({files:R.array(Ys),totalFiles:R.number(),totalEstimatedTokens:R.number(),task:R.string()}),Zs=R.object({path:R.string(),impact:R.string(),reason:R.string()}),Qs=R.object({changedFiles:R.array(R.string()),affectedFiles:R.array(Zs),totalAffected:R.number(),riskLevel:R.string()}),$s=R.object({name:R.string(),passed:R.boolean(),message:R.string().optional(),severity:R.string().optional()}),ec=R.object({passed:R.boolean(),score:R.number(),checks:R.array($s),summary:R.string()}),tc=R.object({id:R.string(),name:R.string(),type:R.string(),sourcePath:R.string().optional()}),nc=R.object({fromId:R.string(),toId:R.string(),type:R.string()}),rc=R.object({nodes:R.array(tc),edges:R.array(nc),totalNodes:R.number(),totalEdges:R.number(),query:R.string()}),ic=R.object({symbols:R.array(R.object({name:R.string(),path:R.string(),line:R.number().optional(),kind:R.string()})),totalDead:R.number()});R.object({files:R.number(),packages:R.number(),languages:R.record(R.string(),R.number()),tree:R.string()});const ac=R.object({path:R.string(),resolvedPath:R.string().optional(),language:R.string().optional(),lines:R.number(),imports:R.number(),exports:R.number(),functions:R.number(),classes:R.number(),text:R.string().optional(),error:R.string().optional()}),oc=R.object({files:R.array(ac)}),sc=R.object({gitRoot:R.string(),branch:R.string(),commitCount:R.number(),hasUncommitted:R.boolean(),recentCommits:R.array(R.object({hash:R.string(),message:R.string(),author:R.string(),date:R.string()}))}),cc=R.object({path:R.string().optional().describe(`Source file path, if applicable`),text:R.string().describe(`The compressed text for this item`),ref:R.string().optional().describe(`Reusable cache reference for this item`),originalChars:R.number(),compressedChars:R.number(),ratio:R.number(),segmentsKept:R.number(),segmentsTotal:R.number(),error:R.string().optional().describe(`Error message if this item failed`)}),lc=R.object({text:R.string().describe(`The compressed text output`),ref:R.string().optional().describe(`Reusable cache reference (ref-only restoration mode)`),originalChars:R.number(),compressedChars:R.number(),ratio:R.number(),segmentsKept:R.number(),segmentsTotal:R.number(),items:R.array(cc).optional().describe(`Batch results when using items[] input`)}),uc=R.object({sourceId:R.string(),value:R.string()}),dc=R.object({id:R.string(),originalChars:R.number(),keptChars:R.number(),segmentsKept:R.number(),segmentsTotal:R.number()}),fc=R.object({text:R.string().describe(`The compressed digest text output`),ref:R.string().optional().describe(`Reusable cache reference`),fields:R.record(R.string(),R.array(uc)),sourceStats:R.array(dc),totalOriginalChars:R.number(),totalCompressedChars:R.number(),ratio:R.number()}),pc=R.object({passed:R.boolean(),totalTests:R.number(),passedTests:R.number(),failedTests:R.number(),skippedTests:R.number(),duration:R.number().describe(`Duration in milliseconds`),failures:R.array(R.object({name:R.string(),message:R.string(),file:R.string().optional()}))}),mc=M(`utils:enrich`);async function G(e,t){let n={curated:[],graph:[]},r=t.limit??3,[i,a]=await Promise.allSettled([hc(e,t.query,r),gc(e,t.filePath)]);return i.status===`fulfilled`?n.curated=i.value:mc.debug(`Curated enrichment failed`,{error:i.reason}),a.status===`fulfilled`?n.graph=a.value:mc.debug(`Graph enrichment failed`,{error:a.reason}),n}async function hc(e,t,n){if(!e.store||!t)return[];try{let r=await e.store.ftsSearch(t,{origin:`curated`,limit:n});if(r.length>0)return r.map(e=>_c(e.record));if(e.embedder){let r=await e.embedder.embedQuery(t);return(await e.store.search(r,{origin:`curated`,limit:n,minScore:.3})).map(e=>_c(e.record))}return[]}catch(e){return mc.debug(`Curated enrichment failed`,{error:e}),[]}}async function gc(e,t){if(!e.graphStore||!t)return[];try{let n=await e.graphStore.findNodes({sourcePath:t,limit:1});if(n.length===0){let r=t.split(/[/\\]/).pop()?.replace(/\.\w+$/,``)||``;if(!r)return[];let i=await e.graphStore.findNodes({namePattern:r,type:`module`,limit:1});if(i.length===0)return[];n.push(i[0])}let r=n[0],i=await e.graphStore.getNeighbors(r.id,{direction:`both`,limit:10}),a=[];for(let e of i.edges){let t=e.fromId===r.id?e.toId:e.fromId,n=i.nodes.find(e=>e.id===t);if(!n)continue;let o=e.fromId===r.id?`->`:`<-`;a.push(`${o} ${e.type}: ${n.name} (${n.type})`)}return a}catch(e){return mc.debug(`Graph enrichment failed`,{error:e}),[]}}function K(e){let t=[];if(e.curated.length>0){t.push(`**Curated Knowledge:**`);for(let n of e.curated)t.push(`- ${n}`)}if(e.graph.length>0){t.push(`**Graph Context:**`);for(let n of e.graph)t.push(`- ${n}`)}return t.length===0?``:`\n\n---\n### Enrichment\n${t.join(`
28
+ `)}`}function _c(e){let t=vc(e.metadata,`title`)||e.sourcePath||`Untitled`;return`[${vc(e.metadata,`category`)}] ${t}: ${e.content.slice(0,200)}`}function vc(e,t){let n=e?.[t];return typeof n==`string`?n:``}function q(e,t,n){return{content:[{type:`text`,text:`[ERROR:${e}] ${t}`}],isError:!0,...n==null?{}:{structuredContent:n}}}function J(e,t){return async(n,r)=>{let i=Date.now(),a=await t(n,r),o=Date.now()-i;return a._meta={...a._meta??{},durationMs:o,toolName:e},a}}const yc=M(`tools`),bc=R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`);function xc(e,t){return t?kn(e,t):e}function Sc(){let e=[];return ur.get()||e.push(`Tree-sitter unavailable — using regex fallback, symbol/pattern confidence reduced`),e.length===0?``:`\n\n> **⚠ Caveats:** ${e.join(`; `)}`}function Cc(e){return(e??[]).map(e=>{if(typeof e==`string`)return e;if(e&&typeof e==`object`&&`path`in e)return typeof e.path==`string`?e.path:void 0}).filter(e=>!!e)}function wc(e){let t=[],n=e.filter(e=>/\.(ts|tsx|js|jsx)$/.test(e)&&/(service|store|model|schema|migration)/i.test(e)),r=e.filter(e=>/\.(ts|tsx|js|jsx)$/.test(e)&&!n.includes(e)),i=e.filter(e=>!/\.(ts|tsx|js|jsx)$/.test(e));return(n.length>0||r.length>0||i.length>0)&&(t.push(`
29
29
 
30
30
  ### Risk Assessment`),n.length>0&&t.push(`- 🔴 **High risk** (${n.length}): ${n.slice(0,5).map(e=>`\`${e}\``).join(`, `)}`),r.length>0&&t.push(`- 🟡 **Medium risk** (${r.length}): source files`),i.length>0&&t.push(`- 🟢 **Low risk** (${i.length}): non-source files`)),t.join(`
31
- `)}function wc(e){let t=e.replace(/\\/g,`/`);return/(^|\/)__tests__\/|\.(test|spec)\.[jt]sx?$/i.test(t)?`Tests`:/(controller|route|handler|api)/i.test(t)?`API`:/(service|store|model|schema|migration|repo|repository|db|database)/i.test(t)?`Core/Data`:/\.(ts|tsx|js|jsx)$/.test(t)?`Source`:`Config/Docs`}function Tc(e){if(e.length===0)return``;let t=[`Core/Data`,`API`,`Source`,`Tests`,`Config/Docs`],n=new Map;for(let t of e){let e=wc(t),r=n.get(e)??[];r.push(t),n.set(e,r)}let r=[`
31
+ `)}function Tc(e){let t=e.replace(/\\/g,`/`);return/(^|\/)__tests__\/|\.(test|spec)\.[jt]sx?$/i.test(t)?`Tests`:/(controller|route|handler|api)/i.test(t)?`API`:/(service|store|model|schema|migration|repo|repository|db|database)/i.test(t)?`Core/Data`:/\.(ts|tsx|js|jsx)$/.test(t)?`Source`:`Config/Docs`}function Ec(e){if(e.length===0)return``;let t=[`Core/Data`,`API`,`Source`,`Tests`,`Config/Docs`],n=new Map;for(let t of e){let e=Tc(t),r=n.get(e)??[];r.push(t),n.set(e,r)}let r=[`
32
32
 
33
33
  ### Layer Classification`];for(let e of t){let t=n.get(e);if(!t?.length)continue;let i=t.slice(0,5).map(e=>`\`${e}\``).join(`, `),a=t.length>5?`, ... and ${t.length-5} more`:``;r.push(`- **${e}** (${t.length}): ${i}${a}`)}return r.join(`
34
- `)}async function Ec(e,t){if(!e||t.length===0)return[];let n=new Set;for(let r of t){let i=await e.findNodes({sourcePath:r,limit:10});for(let r of i){let i=await e.getNeighbors(r.id,{direction:`incoming`,edgeType:`imports`});for(let e of i.nodes){let r=e.sourcePath??e.name;t.includes(r)||n.add(r)}}}return[...n]}async function Dc(e,t,n,r,i){try{let a=`produced/analysis/${n}/${Fe(`sha256`).update(r).digest(`hex`).slice(0,12)}.md`,o=Fe(`sha256`).update(i).digest(`hex`).slice(0,16),s=new Date().toISOString(),c=i.length>2e3?i.split(/(?=^## )/m).filter(e=>e.trim().length>0):[i],l=c.map((e,t)=>({id:Fe(`sha256`).update(`${a}::${t}`).digest(`hex`).slice(0,16),content:e.trim(),sourcePath:a,contentType:`produced-knowledge`,chunkIndex:t,totalChunks:c.length,startLine:0,endLine:0,fileHash:o,indexedAt:s,origin:`produced`,tags:[`analysis`,n],category:`analysis`,version:1})),u=await t.embedBatch(l.map(e=>e.content));await e.upsert(l,u),vc.info(`Auto-persisted analysis`,{analyzerName:n,chunkCount:l.length})}catch(e){vc.warn(`Auto-persist analysis failed`,{analyzerName:n,...N(e)})}}const Oc=R.enum([`structure`,`dependencies`,`symbols`,`patterns`,`entry_points`,`diagram`]),kc=R.string().describe(`Root path to analyze`),Ac=R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`),jc=R.object({path:kc,max_depth:R.number().min(1).max(10).default(6).describe(`Maximum directory depth`),format:R.enum([`json`,`markdown`]).default(`markdown`).describe(`Output format`),max_tokens:yc,enrich:Ac}),Mc=R.object({path:kc,format:R.enum([`json`,`markdown`,`mermaid`]).default(`markdown`).describe(`Output format`),max_tokens:yc,enrich:Ac}),Nc=R.object({path:kc,filter:R.string().optional().describe(`Filter symbols by name substring`),format:R.enum([`json`,`markdown`]).default(`markdown`).describe(`Output format`),enrich:Ac}),Pc=R.object({path:kc,enrich:Ac}),Fc=R.object({path:kc,enrich:Ac}),Ic=R.object({path:kc,diagram_type:R.enum([`architecture`,`dependencies`]).default(`architecture`).describe(`Type of diagram`),enrich:Ac}),Lc=R.object({path:kc,aspect:Oc.describe(`Analysis aspect to execute`),max_depth:R.number().min(1).max(10).optional(),format:R.enum([`json`,`markdown`,`mermaid`]).optional(),filter:R.string().optional().describe(`Filter symbols by name substring`),diagram_type:R.enum([`architecture`,`dependencies`]).optional().describe(`Type of diagram when aspect="diagram"`)}),Rc=R.object({items:R.array(Lc).min(1).describe(`Array of analysis requests to run in batch.`),max_tokens:yc,enrich:Ac});async function zc(e,t,n,r){return!n||!r?e:e+K(await G(r,{query:t,filePath:t}))}async function Bc(e,{store:t,embedder:n,enrichDeps:r}){let i=new sr,{path:a,max_depth:o,format:s,max_tokens:c,enrich:l}=jc.parse(e),u=await i.analyze(a,{format:s,maxDepth:o,maxTokens:c});Dc(t,n,`structure`,a,u.output);let d=u.data;return{content:[{type:`text`,text:bc(await zc(u.output+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` for import graphs, or `analyze({ aspect: "patterns", ... })` to detect architecture patterns._',a,l,r),c)}],structuredContent:{files:d.fileCount??u.meta.fileCount,packages:d.packageCount??0,languages:d.languages??{},tree:u.output.slice(0,2e3)}}}async function Vc(e,{store:t,embedder:n,enrichDeps:r}){let i=new nr,{path:a,format:o,max_tokens:s,enrich:c}=Mc.parse(e),l=await i.analyze(a,{format:o});return Dc(t,n,`dependencies`,a,l.output),{content:[{type:`text`,text:bc(await zc(l.output+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "symbols", ... })` to explore exported symbols, or `analyze({ aspect: "diagram", ... })` for visual representation._',a,c,r),s)}]}}async function Hc(e,{store:t,embedder:n,enrichDeps:r}){let i=new cr,{path:a,filter:o,format:s,enrich:c}=Nc.parse(e),l=await i.analyze(a,{format:s,filter:o});return Dc(t,n,`symbols`,a,l.output),{content:[{type:`text`,text:await zc(l.output+xc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` to see import relationships, or `search` to find usage patterns._',a,c,r)}]}}async function Uc(e,{store:t,embedder:n,enrichDeps:r}){let i=new or,{path:a,enrich:o}=Pc.parse(e),s=await i.analyze(a);return Dc(t,n,`patterns`,a,s.output),{content:[{type:`text`,text:await zc(s.output+xc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "entry_points", ... })` to find Lambda handlers and main exports, or `produce_knowledge` for full analysis._',a,o,r)}]}}async function Wc(e,{store:t,embedder:n,enrichDeps:r}){let i=new ir,{path:a,enrich:o}=Fc.parse(e),s=await i.analyze(a);return Dc(t,n,`entry-points`,a,s.output),{content:[{type:`text`,text:await zc(s.output+xc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` to see what each entry point imports, or `produce_knowledge` for comprehensive analysis._',a,o,r)}]}}async function Gc(e,{store:t,embedder:n,enrichDeps:r}){let i=new rr,{path:a,diagram_type:o,enrich:s}=Ic.parse(e),c=await i.analyze(a,{diagramType:o});return Dc(t,n,`diagram`,a,c.output),{content:[{type:`text`,text:await zc(c.output+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "structure", ... })` for detailed file tree, or `produce_knowledge` for comprehensive analysis._',a,s,r)}]}}async function Kc(e,t,n){switch(e){case`structure`:return Bc(t,n);case`dependencies`:return Vc(t,n);case`symbols`:return Hc(t,n);case`patterns`:return Uc(t,n);case`entry_points`:return Wc(t,n);case`diagram`:return Gc(t,n)}}function qc(e,t,n,r){let i=W(`analyze`);e.registerTool(`analyze`,{title:i.title,description:"Analyze a codebase using one of the supported aspects. Set `aspect` to structure, dependencies, symbols, patterns, entry_points, or diagram.",inputSchema:Rc.shape,annotations:i.annotations},J(`analyze`,async e=>{try{let i=Rc.parse(e);if(!i.items||i.items.length===0)return q(`VALIDATION`,`"items[]" is required.`);let a=await Promise.allSettled(i.items.map(async e=>{let a={...e,enrich:i.enrich,max_tokens:i.max_tokens};return Kc(e.aspect,a,{store:t,embedder:n,enrichDeps:r})})),o=[],s=[];for(let e=0;e<a.length;e++){let t=a[e],n=i.items[e],r=`${n.aspect}:${n.path}`;if(t.status===`fulfilled`){let i=t.value.content[0]?.text??``;o.push(`## ${e+1}. ${r}\n${i}`),s.push({aspect:n.aspect,path:n.path,...`structuredContent`in t.value?t.value.structuredContent:{}})}else{let i=t.reason instanceof Error?t.reason.message:String(t.reason);o.push(`## ${e+1}. ${r}\nERROR: ${i}`),s.push({aspect:n.aspect,path:n.path,error:i})}}return{content:[{type:`text`,text:o.join(`
34
+ `)}async function Dc(e,t){if(!e||t.length===0)return[];let n=new Set;for(let r of t){let i=await e.findNodes({sourcePath:r,limit:10});for(let r of i){let i=await e.getNeighbors(r.id,{direction:`incoming`,edgeType:`imports`});for(let e of i.nodes){let r=e.sourcePath??e.name;t.includes(r)||n.add(r)}}}return[...n]}async function Oc(e,t,n,r,i){try{let a=`produced/analysis/${n}/${Fe(`sha256`).update(r).digest(`hex`).slice(0,12)}.md`,o=Fe(`sha256`).update(i).digest(`hex`).slice(0,16),s=new Date().toISOString(),c=i.length>2e3?i.split(/(?=^## )/m).filter(e=>e.trim().length>0):[i],l=c.map((e,t)=>({id:Fe(`sha256`).update(`${a}::${t}`).digest(`hex`).slice(0,16),content:e.trim(),sourcePath:a,contentType:`produced-knowledge`,chunkIndex:t,totalChunks:c.length,startLine:0,endLine:0,fileHash:o,indexedAt:s,origin:`produced`,tags:[`analysis`,n],category:`analysis`,version:1})),u=await t.embedBatch(l.map(e=>e.content));await e.upsert(l,u),yc.info(`Auto-persisted analysis`,{analyzerName:n,chunkCount:l.length})}catch(e){yc.warn(`Auto-persist analysis failed`,{analyzerName:n,...N(e)})}}const kc=R.enum([`structure`,`dependencies`,`symbols`,`patterns`,`entry_points`,`diagram`]),Ac=R.string().describe(`Root path to analyze`),jc=R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`),Mc=R.object({path:Ac,max_depth:R.number().min(1).max(10).default(6).describe(`Maximum directory depth`),format:R.enum([`json`,`markdown`]).default(`markdown`).describe(`Output format`),max_tokens:bc,enrich:jc}),Nc=R.object({path:Ac,format:R.enum([`json`,`markdown`,`mermaid`]).default(`markdown`).describe(`Output format`),max_tokens:bc,enrich:jc}),Pc=R.object({path:Ac,filter:R.string().optional().describe(`Filter symbols by name substring`),format:R.enum([`json`,`markdown`]).default(`markdown`).describe(`Output format`),enrich:jc}),Fc=R.object({path:Ac,enrich:jc}),Ic=R.object({path:Ac,enrich:jc}),Lc=R.object({path:Ac,diagram_type:R.enum([`architecture`,`dependencies`]).default(`architecture`).describe(`Type of diagram`),enrich:jc}),Rc=R.object({path:Ac,aspect:kc.describe(`Analysis aspect to execute`),max_depth:R.number().min(1).max(10).optional(),format:R.enum([`json`,`markdown`,`mermaid`]).optional(),filter:R.string().optional().describe(`Filter symbols by name substring`),diagram_type:R.enum([`architecture`,`dependencies`]).optional().describe(`Type of diagram when aspect="diagram"`)}),zc=R.object({items:R.array(Rc).min(1).describe(`Array of analysis requests to run in batch.`),max_tokens:bc,enrich:jc});async function Bc(e,t,n,r){return!n||!r?e:e+K(await G(r,{query:t,filePath:t}))}async function Vc(e,{store:t,embedder:n,enrichDeps:r}){let i=new sr,{path:a,max_depth:o,format:s,max_tokens:c,enrich:l}=Mc.parse(e),u=await i.analyze(a,{format:s,maxDepth:o,maxTokens:c});Oc(t,n,`structure`,a,u.output);let d=u.data;return{content:[{type:`text`,text:xc(await Bc(u.output+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` for import graphs, or `analyze({ aspect: "patterns", ... })` to detect architecture patterns._',a,l,r),c)}],structuredContent:{files:d.fileCount??u.meta.fileCount,packages:d.packageCount??0,languages:d.languages??{},tree:u.output.slice(0,2e3)}}}async function Hc(e,{store:t,embedder:n,enrichDeps:r}){let i=new nr,{path:a,format:o,max_tokens:s,enrich:c}=Nc.parse(e),l=await i.analyze(a,{format:o});return Oc(t,n,`dependencies`,a,l.output),{content:[{type:`text`,text:xc(await Bc(l.output+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "symbols", ... })` to explore exported symbols, or `analyze({ aspect: "diagram", ... })` for visual representation._',a,c,r),s)}]}}async function Uc(e,{store:t,embedder:n,enrichDeps:r}){let i=new cr,{path:a,filter:o,format:s,enrich:c}=Pc.parse(e),l=await i.analyze(a,{format:s,filter:o});return Oc(t,n,`symbols`,a,l.output),{content:[{type:`text`,text:await Bc(l.output+Sc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` to see import relationships, or `search` to find usage patterns._',a,c,r)}]}}async function Wc(e,{store:t,embedder:n,enrichDeps:r}){let i=new or,{path:a,enrich:o}=Fc.parse(e),s=await i.analyze(a);return Oc(t,n,`patterns`,a,s.output),{content:[{type:`text`,text:await Bc(s.output+Sc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "entry_points", ... })` to find Lambda handlers and main exports, or `produce_knowledge` for full analysis._',a,o,r)}]}}async function Gc(e,{store:t,embedder:n,enrichDeps:r}){let i=new ir,{path:a,enrich:o}=Ic.parse(e),s=await i.analyze(a);return Oc(t,n,`entry-points`,a,s.output),{content:[{type:`text`,text:await Bc(s.output+Sc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` to see what each entry point imports, or `produce_knowledge` for comprehensive analysis._',a,o,r)}]}}async function Kc(e,{store:t,embedder:n,enrichDeps:r}){let i=new rr,{path:a,diagram_type:o,enrich:s}=Lc.parse(e),c=await i.analyze(a,{diagramType:o});return Oc(t,n,`diagram`,a,c.output),{content:[{type:`text`,text:await Bc(c.output+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "structure", ... })` for detailed file tree, or `produce_knowledge` for comprehensive analysis._',a,s,r)}]}}async function qc(e,t,n){switch(e){case`structure`:return Vc(t,n);case`dependencies`:return Hc(t,n);case`symbols`:return Uc(t,n);case`patterns`:return Wc(t,n);case`entry_points`:return Gc(t,n);case`diagram`:return Kc(t,n)}}function Jc(e,t,n,r){let i=W(`analyze`);e.registerTool(`analyze`,{title:i.title,description:"Analyze a codebase using one of the supported aspects. Set `aspect` to structure, dependencies, symbols, patterns, entry_points, or diagram.",inputSchema:zc.shape,annotations:i.annotations},J(`analyze`,async e=>{try{let i=zc.parse(e);if(!i.items||i.items.length===0)return q(`VALIDATION`,`"items[]" is required.`);let a=await Promise.allSettled(i.items.map(async e=>{let a={...e,enrich:i.enrich,max_tokens:i.max_tokens};return qc(e.aspect,a,{store:t,embedder:n,enrichDeps:r})})),o=[],s=[];for(let e=0;e<a.length;e++){let t=a[e],n=i.items[e],r=`${n.aspect}:${n.path}`;if(t.status===`fulfilled`){let i=t.value.content[0]?.text??``;o.push(`## ${e+1}. ${r}\n${i}`),s.push({aspect:n.aspect,path:n.path,...`structuredContent`in t.value?t.value.structuredContent:{}})}else{let i=t.reason instanceof Error?t.reason.message:String(t.reason);o.push(`## ${e+1}. ${r}\nERROR: ${i}`),s.push({aspect:n.aspect,path:n.path,error:i})}}return{content:[{type:`text`,text:o.join(`
35
35
 
36
- `)}],structuredContent:{items:s}}}catch(e){return vc.error(`Analysis failed`,N(e)),q(`INTERNAL`,`Analysis failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Jc(e,t,n,r,i){let a=new tr,o=W(`blast_radius`);e.registerTool(`blast_radius`,{title:o.title,description:`Given a list of changed files, trace the dependency graph to find all affected files (direct + transitive importers) and their tests. Useful for scoping code reviews and impact analysis.`,outputSchema:Qs,inputSchema:{path:R.string().describe(`Root path of the codebase`),files:R.array(R.string()).optional().describe(`Changed file paths (relative to root). If omitted, auto-detects from git status.`),max_depth:R.number().min(1).max(20).default(5).describe(`Maximum transitive dependency depth`),format:R.enum([`json`,`markdown`]).default(`markdown`).describe(`Output format`),max_tokens:yc,enrich:R.boolean().default(!0).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default true for planning tools — set false to save tokens when enrichment is not needed.`)},annotations:o.annotations},J(`blast_radius`,async({path:e,files:o,max_depth:s,format:c,max_tokens:l,enrich:u})=>{try{let d=o??[];if(d.length===0)try{let t=await St({cwd:e,includeDiff:!1});if(d=Array.from(new Set([...Sc(t.status?.staged),...Sc(t.status?.modified),...Sc(t.status?.untracked)])),d.length===0)return{content:[{type:`text`,text:"No changed files detected from git status. Provide `files` explicitly or make changes first."}]}}catch{return q(`VALIDATION`,"Could not detect changed files from git. Provide `files` explicitly.")}let f=await a.analyze(e,{files:d,maxDepth:s,format:c}),p=[],m=``;if(r)try{p=await Ec(r,d),p.length>0&&(m=`\n\n### Graph-discovered importers (${p.length})\n`+p.slice(0,20).map(e=>`- \`${e}\``).join(`
37
- `),p.length>20&&(m+=`\n- ... and ${p.length-20} more`))}catch{}let h=Tc(d),g=Cc(d),_=f.output+m+h+g+xc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` to see the full import graph, or `analyze({ aspect: "symbols", ... })` to inspect affected exports._';if(u&&i){let t=await G(i,{query:e,filePath:e});_+=K(t)}Dc(t,n,`blast-radius`,e,_);let v=p.map(e=>({path:e,impact:`transitive`,reason:`imports changed file`})),y=d.length>10?`high`:d.length>3?`medium`:`low`;return{content:[{type:`text`,text:bc(_,l)}],structuredContent:{changedFiles:d,affectedFiles:v,totalAffected:v.length,riskLevel:y}}}catch(e){return vc.error(`Blast radius analysis failed`,N(e)),q(`INTERNAL`,`Blast radius analysis failed: ${e instanceof Error?e.message:String(e)}`)}}))}const Yc=M(`task-manager`);let Xc=0;function Zc(e){let t=typeof e?.sendNotification==`function`;return{createTask(n,r){let i=`aikit-task-${++Xc}`,a=(n,r,a)=>{t&&e.sendNotification?.({method:`notifications/progress`,params:{progressToken:i,progress:n,total:r,...a?{message:a}:{}}}).catch(e=>{Yc.debug(`Progress notification failed`,{token:i,error:String(e)})})};return t&&Yc.debug(`Task created`,{token:i,title:n,totalSteps:r}),{progress(e,t){a(e,r,t??`${n}: step ${e+1}/${r}`)},complete(e){a(r,r,e??`${n}: complete`)},fail(e){a(r,r,e??`${n}: failed`)}}}}}const Qc=M(`tools`);function $c(e,t,n,r){let i=W(`audit`);e.registerTool(`audit`,{title:i.title,description:`Run a unified audit: structure, dependencies, patterns, health, dead_symbols, check, entry_points. Returns synthesized report with score, recommendations, and next steps. 6 round-trips → 1.`,outputSchema:ec,inputSchema:{path:R.string().default(`.`).describe(`Root path to audit`),checks:R.array(R.enum([`structure`,`dependencies`,`patterns`,`health`,`dead_symbols`,`check`,`entry_points`])).optional().describe(`Which checks to run (default: all)`),detail:R.enum(ge).optional().describe(`'efficient' for overview (~500 tokens), 'full' includes pattern table`)},annotations:i.annotations},async({path:e,checks:i,detail:a},o)=>{try{let s=await He(t,n,{path:e,checks:i,detail:a??r??`efficient`});return Zc(o).createTask(`Audit`,1).complete(`Audit complete: ${s.data?.recommendations?.length??0} recommendations`),{content:[{type:`text`,text:s.ok?`${s.summary}\n\n---\n_Audit score: ${s.data?.score}/100 | ${s.meta.durationMs}ms${s.next&&s.next.length>0?` | Next: ${s.next.map(e=>`\`${e.tool}\` (${e.reason})`).join(`, `)}`:``}_`:s.error?.message??`Audit failed`}],isError:!s.ok,...s.ok&&s.data?{structuredContent:{passed:s.ok,score:s.data.score??0,checks:(s.data.recommendations??[]).map(e=>({name:e.area,passed:e.priority!==`high`,message:e.message,severity:e.priority})),summary:s.summary??``}}:{}}}catch(e){return Qc.error(`Audit failed`,N(e)),q(`INTERNAL`,`Audit failed: ${e instanceof Error?e.message:String(e)}`)}})}const el=M(`tools`);function tl(e){if(!e?.enabled)return;let t=process.env.AIKIT_ER_API_KEY;if(!t){el.warn(`ER bridge enabled but AIKIT_ER_API_KEY not set; disabling`);return}return{enabled:!0,baseUrl:e.baseUrl,apiKey:t,timeoutMs:e.timeoutMs??5e3,cacheTtlMs:e.cacheTtlMs??360*60*1e3,cacheMaxEntries:e.cacheMaxEntries??100,fallbackThreshold:e.fallbackThreshold??.45}}function nl(e){let t=tl(e);if(t)try{let e=new pr(t),n=new fr({maxEntries:t.cacheMaxEntries,defaultTtl:t.cacheTtlMs}),r=new gr(e);try{let e=new URL(t.baseUrl).hostname;el.info(`ER bridge initialized`,{host:e})}catch{el.info(`ER bridge initialized`)}return{client:e,cache:n,pushAdapter:r,config:t}}catch(e){el.warn(`ER bridge initialization failed`,N(e));return}}function rl(e,t,n){let r=W(`er_push`);e.registerTool(`er_push`,{title:r.title,description:`Push a curated knowledge entry to Enterprise RAG. The entry is stored via ER's curated_remember tool and becomes immediately searchable in the enterprise AI Kit.`,inputSchema:{title:R.string().min(3).max(120).describe(`Title for the knowledge entry`),content:R.string().min(10).max(1e5).describe(`Markdown content to push (max 100KB)`),category:R.string().regex(/^[a-z][a-z0-9-]*$/).default(`conventions`).describe(`Category slug (e.g., "decisions", "patterns", "conventions")`),tags:R.array(R.string()).default([]).describe(`Optional tags`),rule_id:R.string().optional().describe(`ID of the classification rule that motivated this push (from remember classification signals). Improves rule effectiveness tracking.`)},annotations:r.annotations},J(`er_push`,async({title:e,content:r,category:i,tags:a,rule_id:o})=>{try{let s=`${i}/${e.toLowerCase().replace(/[^a-z0-9]+/g,`-`)}`,c=await t.pushAdapter.push(s,{title:e,content:r,category:i,tags:a});return c.pushed?(n&&n.recordPush(s,c.pushed,o),{content:[{type:`text`,text:`Pushed to ER: **${e}**\n\nRemote path: \`${c.remotePath??`unknown`}\`\nTimestamp: ${c.timestamp}\n\n---\n_Next: Use \`er_pull\` to verify the entry is searchable in ER, or \`er_sync_status\` to see push history._`}]}):(n&&n.recordPush(s,!1,o),q(`INTERNAL`,`ER push failed: ${c.error??`Unknown error`}\n\n_The local AI Kit is unaffected. You can retry or check ER health with \`er_sync_status\`._`))}catch(t){if(el.error(`ER push failed`,N(t)),n){let t=`${i}/${e.toLowerCase().replace(/[^a-z0-9]+/g,`-`)}`;n.recordPush(t,!1,o)}return q(`INTERNAL`,`ER push failed: operation unsuccessful
36
+ `)}],structuredContent:{items:s}}}catch(e){return yc.error(`Analysis failed`,N(e)),q(`INTERNAL`,`Analysis failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Yc(e,t,n,r,i){let a=new tr,o=W(`blast_radius`);e.registerTool(`blast_radius`,{title:o.title,description:`Given a list of changed files, trace the dependency graph to find all affected files (direct + transitive importers) and their tests. Useful for scoping code reviews and impact analysis.`,outputSchema:Qs,inputSchema:{path:R.string().describe(`Root path of the codebase`),files:R.array(R.string()).optional().describe(`Changed file paths (relative to root). If omitted, auto-detects from git status.`),max_depth:R.number().min(1).max(20).default(5).describe(`Maximum transitive dependency depth`),format:R.enum([`json`,`markdown`]).default(`markdown`).describe(`Output format`),max_tokens:bc,enrich:R.boolean().default(!0).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default true for planning tools — set false to save tokens when enrichment is not needed.`)},annotations:o.annotations},J(`blast_radius`,async({path:e,files:o,max_depth:s,format:c,max_tokens:l,enrich:u})=>{try{let d=o??[];if(d.length===0)try{let t=await St({cwd:e,includeDiff:!1});if(d=Array.from(new Set([...Cc(t.status?.staged),...Cc(t.status?.modified),...Cc(t.status?.untracked)])),d.length===0)return{content:[{type:`text`,text:"No changed files detected from git status. Provide `files` explicitly or make changes first."}]}}catch{return q(`VALIDATION`,"Could not detect changed files from git. Provide `files` explicitly.")}let f=await a.analyze(e,{files:d,maxDepth:s,format:c}),p=[],m=``;if(r)try{p=await Dc(r,d),p.length>0&&(m=`\n\n### Graph-discovered importers (${p.length})\n`+p.slice(0,20).map(e=>`- \`${e}\``).join(`
37
+ `),p.length>20&&(m+=`\n- ... and ${p.length-20} more`))}catch{}let h=Ec(d),g=wc(d),_=f.output+m+h+g+Sc()+'\n\n---\n_Analysis auto-saved to AI Kit memory. Next: Use `analyze({ aspect: "dependencies", ... })` to see the full import graph, or `analyze({ aspect: "symbols", ... })` to inspect affected exports._';if(u&&i){let t=await G(i,{query:e,filePath:e});_+=K(t)}Oc(t,n,`blast-radius`,e,_);let v=p.map(e=>({path:e,impact:`transitive`,reason:`imports changed file`})),y=d.length>10?`high`:d.length>3?`medium`:`low`;return{content:[{type:`text`,text:xc(_,l)}],structuredContent:{changedFiles:d,affectedFiles:v,totalAffected:v.length,riskLevel:y}}}catch(e){return yc.error(`Blast radius analysis failed`,N(e)),q(`INTERNAL`,`Blast radius analysis failed: ${e instanceof Error?e.message:String(e)}`)}}))}const Xc=M(`task-manager`);let Zc=0;function Qc(e){let t=typeof e?.sendNotification==`function`;return{createTask(n,r){let i=`aikit-task-${++Zc}`,a=(n,r,a)=>{t&&e.sendNotification?.({method:`notifications/progress`,params:{progressToken:i,progress:n,total:r,...a?{message:a}:{}}}).catch(e=>{Xc.debug(`Progress notification failed`,{token:i,error:String(e)})})};return t&&Xc.debug(`Task created`,{token:i,title:n,totalSteps:r}),{progress(e,t){a(e,r,t??`${n}: step ${e+1}/${r}`)},complete(e){a(r,r,e??`${n}: complete`)},fail(e){a(r,r,e??`${n}: failed`)}}}}}const $c=M(`tools`);function el(e,t,n,r){let i=W(`audit`);e.registerTool(`audit`,{title:i.title,description:`Run a unified audit: structure, dependencies, patterns, health, dead_symbols, check, entry_points. Returns synthesized report with score, recommendations, and next steps. 6 round-trips → 1.`,outputSchema:ec,inputSchema:{path:R.string().default(`.`).describe(`Root path to audit`),checks:R.array(R.enum([`structure`,`dependencies`,`patterns`,`health`,`dead_symbols`,`check`,`entry_points`])).optional().describe(`Which checks to run (default: all)`),detail:R.enum(ge).optional().describe(`'efficient' for overview (~500 tokens), 'full' includes pattern table`)},annotations:i.annotations},async({path:e,checks:i,detail:a},o)=>{try{let s=await He(t,n,{path:e,checks:i,detail:a??r??`efficient`});return Qc(o).createTask(`Audit`,1).complete(`Audit complete: ${s.data?.recommendations?.length??0} recommendations`),{content:[{type:`text`,text:s.ok?`${s.summary}\n\n---\n_Audit score: ${s.data?.score}/100 | ${s.meta.durationMs}ms${s.next&&s.next.length>0?` | Next: ${s.next.map(e=>`\`${e.tool}\` (${e.reason})`).join(`, `)}`:``}_`:s.error?.message??`Audit failed`}],isError:!s.ok,...s.ok&&s.data?{structuredContent:{passed:s.ok,score:s.data.score??0,checks:(s.data.recommendations??[]).map(e=>({name:e.area,passed:e.priority!==`high`,message:e.message,severity:e.priority})),summary:s.summary??``}}:{}}}catch(e){return $c.error(`Audit failed`,N(e)),q(`INTERNAL`,`Audit failed: ${e instanceof Error?e.message:String(e)}`)}})}const tl=M(`tools`);function nl(e){if(!e?.enabled)return;let t=process.env.AIKIT_ER_API_KEY;if(!t){tl.warn(`ER bridge enabled but AIKIT_ER_API_KEY not set; disabling`);return}return{enabled:!0,baseUrl:e.baseUrl,apiKey:t,timeoutMs:e.timeoutMs??5e3,cacheTtlMs:e.cacheTtlMs??360*60*1e3,cacheMaxEntries:e.cacheMaxEntries??100,fallbackThreshold:e.fallbackThreshold??.45}}function rl(e){let t=nl(e);if(t)try{let e=new pr(t),n=new fr({maxEntries:t.cacheMaxEntries,defaultTtl:t.cacheTtlMs}),r=new gr(e);try{let e=new URL(t.baseUrl).hostname;tl.info(`ER bridge initialized`,{host:e})}catch{tl.info(`ER bridge initialized`)}return{client:e,cache:n,pushAdapter:r,config:t}}catch(e){tl.warn(`ER bridge initialization failed`,N(e));return}}function il(e,t,n){let r=W(`er_push`);e.registerTool(`er_push`,{title:r.title,description:`Push a curated knowledge entry to Enterprise RAG. The entry is stored via ER's curated_remember tool and becomes immediately searchable in the enterprise AI Kit.`,inputSchema:{title:R.string().min(3).max(120).describe(`Title for the knowledge entry`),content:R.string().min(10).max(1e5).describe(`Markdown content to push (max 100KB)`),category:R.string().regex(/^[a-z][a-z0-9-]*$/).default(`conventions`).describe(`Category slug (e.g., "decisions", "patterns", "conventions")`),tags:R.array(R.string()).default([]).describe(`Optional tags`),rule_id:R.string().optional().describe(`ID of the classification rule that motivated this push (from remember classification signals). Improves rule effectiveness tracking.`)},annotations:r.annotations},J(`er_push`,async({title:e,content:r,category:i,tags:a,rule_id:o})=>{try{let s=`${i}/${e.toLowerCase().replace(/[^a-z0-9]+/g,`-`)}`,c=await t.pushAdapter.push(s,{title:e,content:r,category:i,tags:a});return c.pushed?(n&&n.recordPush(s,c.pushed,o),{content:[{type:`text`,text:`Pushed to ER: **${e}**\n\nRemote path: \`${c.remotePath??`unknown`}\`\nTimestamp: ${c.timestamp}\n\n---\n_Next: Use \`er_pull\` to verify the entry is searchable in ER, or \`er_sync_status\` to see push history._`}]}):(n&&n.recordPush(s,!1,o),q(`INTERNAL`,`ER push failed: ${c.error??`Unknown error`}\n\n_The local AI Kit is unaffected. You can retry or check ER health with \`er_sync_status\`._`))}catch(t){if(tl.error(`ER push failed`,N(t)),n){let t=`${i}/${e.toLowerCase().replace(/[^a-z0-9]+/g,`-`)}`;n.recordPush(t,!1,o)}return q(`INTERNAL`,`ER push failed: operation unsuccessful
38
38
 
39
- _The local AI Kit is unaffected. You can retry or check ER health with \`er_sync_status\`._`)}}))}function il(e,t){let n=W(`er_pull`);e.registerTool(`er_pull`,{title:n.title,description:`Explicitly search the Enterprise RAG AI Kit. Returns results from the enterprise system only (not local AI Kit). Uses a cache with 6-hour TTL to reduce API calls.`,inputSchema:{query:R.string().min(1).max(2e3).describe(`Search query for Enterprise RAG AI Kit (max 2000 chars)`),max_results:R.number().min(1).max(20).default(5).describe(`Maximum results to return`),bypass_cache:R.boolean().default(!0).describe(`Skip cache and fetch fresh results from ER (default: true per DR-001)`)},annotations:n.annotations},J(`er_pull`,async({query:e,max_results:n,bypass_cache:r})=>{try{if(!r){let r=t.cache.get(e);if(r)return{content:[{type:`text`,text:`${r.slice(0,n).map((e,t)=>`### Result ${t+1} (score: ${e.score.toFixed(3)}, source: ER cached)\n- **Source**: ${e.sourcePath}\n\n${e.content}`).join(`
39
+ _The local AI Kit is unaffected. You can retry or check ER health with \`er_sync_status\`._`)}}))}function al(e,t){let n=W(`er_pull`);e.registerTool(`er_pull`,{title:n.title,description:`Explicitly search the Enterprise RAG AI Kit. Returns results from the enterprise system only (not local AI Kit). Uses a cache with 6-hour TTL to reduce API calls.`,inputSchema:{query:R.string().min(1).max(2e3).describe(`Search query for Enterprise RAG AI Kit (max 2000 chars)`),max_results:R.number().min(1).max(20).default(5).describe(`Maximum results to return`),bypass_cache:R.boolean().default(!0).describe(`Skip cache and fetch fresh results from ER (default: true per DR-001)`)},annotations:n.annotations},J(`er_pull`,async({query:e,max_results:n,bypass_cache:r})=>{try{if(!r){let r=t.cache.get(e);if(r)return{content:[{type:`text`,text:`${r.slice(0,n).map((e,t)=>`### Result ${t+1} (score: ${e.score.toFixed(3)}, source: ER cached)\n- **Source**: ${e.sourcePath}\n\n${e.content}`).join(`
40
40
 
41
41
  ---
42
42
 
@@ -44,15 +44,15 @@ _The local AI Kit is unaffected. You can retry or check ER health with \`er_sync
44
44
 
45
45
  ---
46
46
 
47
- `)}\n\n---\n_Source: Enterprise RAG (${i.length} results) | Results cached for ${Math.floor(t.config.cacheTtlMs/36e5)}h_`}]}}catch(e){return el.error(`ER pull failed`,N(e)),q(`INTERNAL`,`ER pull failed: search request unsuccessful
47
+ `)}\n\n---\n_Source: Enterprise RAG (${i.length} results) | Results cached for ${Math.floor(t.config.cacheTtlMs/36e5)}h_`}]}}catch(e){return tl.error(`ER pull failed`,N(e)),q(`INTERNAL`,`ER pull failed: search request unsuccessful
48
48
 
49
- _Enterprise RAG may be unavailable. Local AI Kit search is unaffected._`)}}))}function al(e,t){let n=W(`er_sync_status`);e.registerTool(`er_sync_status`,{title:n.title,description:`Show the status of the Enterprise RAG bridge: health, cache stats, and push history.`,inputSchema:{check_health:R.boolean().default(!0).describe(`Whether to ping ER health endpoint (adds latency)`)},annotations:n.annotations},J(`er_sync_status`,async({check_health:e})=>{try{let n=t.cache.stats(),r=t.pushAdapter.getStatus(),i=new URL(t.config.baseUrl),a=`${i.protocol}//${i.hostname}${i.port?`:${i.port}`:``}`,o=`_Health check skipped_`;if(e){let e=await t.client.health();o=e.healthy?`✅ Healthy (HTTP ${e.status})`:`❌ Unhealthy${e.status?` (HTTP ${e.status})`:``}`}let s=[`## ER Bridge Status
49
+ _Enterprise RAG may be unavailable. Local AI Kit search is unaffected._`)}}))}function ol(e,t){let n=W(`er_sync_status`);e.registerTool(`er_sync_status`,{title:n.title,description:`Show the status of the Enterprise RAG bridge: health, cache stats, and push history.`,inputSchema:{check_health:R.boolean().default(!0).describe(`Whether to ping ER health endpoint (adds latency)`)},annotations:n.annotations},J(`er_sync_status`,async({check_health:e})=>{try{let n=t.cache.stats(),r=t.pushAdapter.getStatus(),i=new URL(t.config.baseUrl),a=`${i.protocol}//${i.hostname}${i.port?`:${i.port}`:``}`,o=`_Health check skipped_`;if(e){let e=await t.client.health();o=e.healthy?`✅ Healthy (HTTP ${e.status})`:`❌ Unhealthy${e.status?` (HTTP ${e.status})`:``}`}let s=[`## ER Bridge Status
50
50
  `,`**Endpoint**: \`${a}\``,`**Health**: ${o}`,`**Threshold**: ${t.config.fallbackThreshold} (vector similarity for auto-fallback)`,``,`### Cache`,`- Entries: ${n.size} / ${n.maxEntries}`,`- TTL: ${Math.floor(n.defaultTtlMs/36e5)}h`,``,`### Push History`,`- Total pushed: ${r.totalPushed}`,`- Successful: ${r.successCount}`,`- Failed: ${r.failCount}`];return r.lastPush&&s.push(`- Last push: "${r.lastPush.title}" at ${r.lastPush.pushedAt} (${r.lastPush.status})`),s.push("\n---\n_Next: Use `er_push` to send knowledge to ER, or `er_pull` to search ER._"),{content:[{type:`text`,text:s.join(`
51
- `)}]}}catch(e){return el.error(`ER sync status failed`,N(e)),q(`INTERNAL`,`ER sync status failed: ${e instanceof Error?e.message:String(e)}`)}}))}const ol=M(`tools`);function sl(e){let t=[`Compliance score: ${e.score}/100`,`Calls scored: ${e.totalCalls}`,`Summary: ${e.summary}`];if(e.violations.length===0)return`${t.join(`
51
+ `)}]}}catch(e){return tl.error(`ER sync status failed`,N(e)),q(`INTERNAL`,`ER sync status failed: ${e instanceof Error?e.message:String(e)}`)}}))}const sl=M(`tools`);function cl(e){let t=[`Compliance score: ${e.score}/100`,`Calls scored: ${e.totalCalls}`,`Summary: ${e.summary}`];if(e.violations.length===0)return`${t.join(`
52
52
  `)}\n\nNo violations detected.`;let n=e.violations.map(e=>`- ${e.ruleId} | ${e.tool} | ${e.timestamp}\n ${e.rule}\n Suggestion: ${e.suggestion}`);return`${t.join(`
53
53
  `)}\n\nViolations:\n${n.join(`
54
- `)}`}function cl(e){let t=W(`compliance_score`);e.registerTool(`compliance_score`,{title:t.title,description:`Score replay log compliance against AI Kit tool-routing rules and surface violations with remediation guidance.`,inputSchema:{last_n:R.number().min(1).max(500).default(50).describe(`Maximum number of recent replay entries to score (default: 50)`)},annotations:t.annotations},J(`compliance_score`,async({last_n:e})=>{try{return{content:[{type:`text`,text:sl(mn(cn({last:e}),{lastN:e}))}]}}catch(e){return ol.error(`Compliance score failed`,N(e)),q(`INTERNAL`,`Compliance score failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Y(e){return String(e??``).replace(/&/g,`&amp;`).replace(/</g,`&lt;`).replace(/>/g,`&gt;`).replace(/"/g,`&quot;`)}const ll=R.object({action:R.enum([`view`,`update`]).default(`view`).describe(`Action to perform: view current configuration or update it`),updates:R.record(R.string(),R.unknown()).optional().describe(`Partial configuration to merge when action is "update". Supports nested paths like { "indexing": { "chunkSize": 2000 } }`)}),ul=M(`config-tool`),dl=`ui://aikit/config.html`,fl=[`serverName`,`toolPrefix`,`autoIndex`,`sources`,`indexing`,`tokenBudget`];function pl(){let e=process.env.AIKIT_CONFIG_PATH;if(e&&P(e))return e;let t=L(process.cwd(),`aikit.config.json`);return P(t)?t:``}function ml(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function hl(e,t){let n={...e};for(let[e,r]of Object.entries(t)){let t=n[e];if(ml(t)&&ml(r)){n[e]=hl(t,r);continue}n[e]=r}return n}function gl(e){return e===void 0?`undefined`:JSON.stringify(e)}function _l(e,t,n,r=``){let i=[];for(let[a,o]of Object.entries(n)){let n=r?`${r}.${a}`:a,s=e[a],c=t[a];if(ml(o)&&ml(s)&&ml(c)){i.push(..._l(s,c,o,n));continue}gl(s)!==gl(c)&&i.push(`- ${n}: ${gl(s)} -> ${gl(c)}`)}return i}function vl(e){let t=[];for(let[n,r]of Object.entries(e)){if(n===`store`||n===`embedding`||n===`er`){t.push(`Field "${n}" cannot be updated through this tool because it requires a restart.`);continue}if(n===`onboardDir`||n===`stateDir`||n===`curated`){t.push(`Field "${n}" cannot be updated through this tool because it requires a restart.`);continue}if(n===`autoIndex`){typeof r!=`boolean`&&t.push(`autoIndex must be a boolean.`);continue}if(n===`serverName`||n===`toolPrefix`){typeof r!=`string`&&t.push(`${n} must be a string.`);continue}if(n===`sources`){(!Array.isArray(r)||r.length===0)&&t.push(`sources must be a non-empty array.`);continue}if(n===`indexing`){if(!ml(r)){t.push(`indexing must be an object.`);continue}for(let[e,n]of Object.entries(r)){if(e!==`chunkSize`&&e!==`chunkOverlap`&&e!==`minChunkSize`&&e!==`concurrency`){t.push(`indexing.${e} is not updatable through this tool.`);continue}(typeof n!=`number`||!Number.isFinite(n)||n<=0)&&t.push(`indexing.${e} must be a positive number.`)}continue}if(n===`tokenBudget`){(typeof r!=`string`||!ge.includes(r))&&t.push(`tokenBudget must be one of: ${ge.join(`, `)}.`);continue}t.push(`Field "${n}" is not updatable through this tool.`)}return t}function yl(e){let t=[];if(`autoIndex`in e&&typeof e.autoIndex!=`boolean`&&t.push(`autoIndex must be a boolean.`),`serverName`in e&&e.serverName!==void 0&&typeof e.serverName!=`string`&&t.push(`serverName must be a string.`),`toolPrefix`in e&&e.toolPrefix!==void 0&&typeof e.toolPrefix!=`string`&&t.push(`toolPrefix must be a string.`),(!Array.isArray(e.sources)||e.sources.length===0)&&t.push(`sources must be a non-empty array.`),!ml(e.indexing))return t.push(`indexing must be an object.`),t;for(let n of[`chunkSize`,`chunkOverlap`,`minChunkSize`,`concurrency`]){let r=e.indexing[n];r!==void 0&&(typeof r!=`number`||!Number.isFinite(r)||r<=0)&&t.push(`indexing.${n} must be a positive number.`)}return t}function bl(e){let t=JSON.parse(F(e,`utf-8`));if(!ml(t))throw Error(`Config file must contain a JSON object.`);return t}function xl(e,t){return[`AI Kit Configuration`,`Config file: ${t}`,``,JSON.stringify(e,null,2)].join(`
55
- `)}function Sl(e){return e===void 0?``:ml(e)||Array.isArray(e)?JSON.stringify(e,null,2):String(e)}function Cl(e){let t=e.metrics??[],n={success:`#22c55e`,warning:`#f59e0b`,error:`#ef4444`,info:`#38bdf8`},r={up:`↑`,down:`↓`,neutral:`→`};return`
54
+ `)}`}function ll(e){let t=W(`compliance_score`);e.registerTool(`compliance_score`,{title:t.title,description:`Score replay log compliance against AI Kit tool-routing rules and surface violations with remediation guidance.`,inputSchema:{last_n:R.number().min(1).max(500).default(50).describe(`Maximum number of recent replay entries to score (default: 50)`)},annotations:t.annotations},J(`compliance_score`,async({last_n:e})=>{try{return{content:[{type:`text`,text:cl(mn(cn({last:e}),{lastN:e}))}]}}catch(e){return sl.error(`Compliance score failed`,N(e)),q(`INTERNAL`,`Compliance score failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Y(e){return String(e??``).replace(/&/g,`&amp;`).replace(/</g,`&lt;`).replace(/>/g,`&gt;`).replace(/"/g,`&quot;`)}const ul=R.object({action:R.enum([`view`,`update`]).default(`view`).describe(`Action to perform: view current configuration or update it`),updates:R.record(R.string(),R.unknown()).optional().describe(`Partial configuration to merge when action is "update". Supports nested paths like { "indexing": { "chunkSize": 2000 } }`)}),dl=M(`config-tool`),fl=`ui://aikit/config.html`,pl=[`serverName`,`toolPrefix`,`autoIndex`,`sources`,`indexing`,`tokenBudget`];function ml(){let e=process.env.AIKIT_CONFIG_PATH;if(e&&P(e))return e;let t=L(process.cwd(),`aikit.config.json`);return P(t)?t:``}function hl(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function gl(e,t){let n={...e};for(let[e,r]of Object.entries(t)){let t=n[e];if(hl(t)&&hl(r)){n[e]=gl(t,r);continue}n[e]=r}return n}function _l(e){return e===void 0?`undefined`:JSON.stringify(e)}function vl(e,t,n,r=``){let i=[];for(let[a,o]of Object.entries(n)){let n=r?`${r}.${a}`:a,s=e[a],c=t[a];if(hl(o)&&hl(s)&&hl(c)){i.push(...vl(s,c,o,n));continue}_l(s)!==_l(c)&&i.push(`- ${n}: ${_l(s)} -> ${_l(c)}`)}return i}function yl(e){let t=[];for(let[n,r]of Object.entries(e)){if(n===`store`||n===`embedding`||n===`er`){t.push(`Field "${n}" cannot be updated through this tool because it requires a restart.`);continue}if(n===`onboardDir`||n===`stateDir`||n===`curated`){t.push(`Field "${n}" cannot be updated through this tool because it requires a restart.`);continue}if(n===`autoIndex`){typeof r!=`boolean`&&t.push(`autoIndex must be a boolean.`);continue}if(n===`serverName`||n===`toolPrefix`){typeof r!=`string`&&t.push(`${n} must be a string.`);continue}if(n===`sources`){(!Array.isArray(r)||r.length===0)&&t.push(`sources must be a non-empty array.`);continue}if(n===`indexing`){if(!hl(r)){t.push(`indexing must be an object.`);continue}for(let[e,n]of Object.entries(r)){if(e!==`chunkSize`&&e!==`chunkOverlap`&&e!==`minChunkSize`&&e!==`concurrency`){t.push(`indexing.${e} is not updatable through this tool.`);continue}(typeof n!=`number`||!Number.isFinite(n)||n<=0)&&t.push(`indexing.${e} must be a positive number.`)}continue}if(n===`tokenBudget`){(typeof r!=`string`||!ge.includes(r))&&t.push(`tokenBudget must be one of: ${ge.join(`, `)}.`);continue}t.push(`Field "${n}" is not updatable through this tool.`)}return t}function bl(e){let t=[];if(`autoIndex`in e&&typeof e.autoIndex!=`boolean`&&t.push(`autoIndex must be a boolean.`),`serverName`in e&&e.serverName!==void 0&&typeof e.serverName!=`string`&&t.push(`serverName must be a string.`),`toolPrefix`in e&&e.toolPrefix!==void 0&&typeof e.toolPrefix!=`string`&&t.push(`toolPrefix must be a string.`),(!Array.isArray(e.sources)||e.sources.length===0)&&t.push(`sources must be a non-empty array.`),!hl(e.indexing))return t.push(`indexing must be an object.`),t;for(let n of[`chunkSize`,`chunkOverlap`,`minChunkSize`,`concurrency`]){let r=e.indexing[n];r!==void 0&&(typeof r!=`number`||!Number.isFinite(r)||r<=0)&&t.push(`indexing.${n} must be a positive number.`)}return t}function xl(e){let t=JSON.parse(F(e,`utf-8`));if(!hl(t))throw Error(`Config file must contain a JSON object.`);return t}function Sl(e,t){return[`AI Kit Configuration`,`Config file: ${t}`,``,JSON.stringify(e,null,2)].join(`
55
+ `)}function Cl(e){return e===void 0?``:hl(e)||Array.isArray(e)?JSON.stringify(e,null,2):String(e)}function wl(e){let t=e.metrics??[],n={success:`#22c55e`,warning:`#f59e0b`,error:`#ef4444`,info:`#38bdf8`},r={up:`↑`,down:`↓`,neutral:`→`};return`
56
56
  <style>
57
57
  .db-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:14px}
58
58
  .db-card{padding:14px;border:1px solid var(--aikit-border,#3c3c3c);border-left-width:4px;border-radius:8px;background:var(--aikit-surface,#252526)}
@@ -69,7 +69,7 @@ _Enterprise RAG may be unavailable. Local AI Kit search is unaffected._`)}}))}fu
69
69
  <div class="db-card" style="border-left-color:${t}">
70
70
  <div class="db-label">${Y(e.label)}</div>
71
71
  ${a}
72
- </div>`}).join(``)}</div>`}function wl(e){let t=e.fields??[];return`
72
+ </div>`}).join(``)}</div>`}function Tl(e){let t=e.fields??[];return`
73
73
  <style>
74
74
  .fm-container{display:grid;grid-template-columns:1fr 280px;gap:24px}
75
75
  @media(max-width:640px){.fm-container{grid-template-columns:1fr}}
@@ -134,9 +134,9 @@ _Enterprise RAG may be unavailable. Local AI Kit search is unaffected._`)}}))}fu
134
134
  }
135
135
  });
136
136
  })();
137
- <\/script>`}function Tl(e){return Cl({metrics:Object.entries(e).map(([e,t])=>({label:e,value:ml(t)||Array.isArray(t)?JSON.stringify(t,null,2):String(t),status:`info`}))})}function El(e){return wl({fields:fl.map(t=>{let n=e[t];return typeof n==`boolean`?{name:t,label:t,type:`select`,options:[`true`,`false`],value:String(n)}:{name:t,label:t,type:ml(n)||Array.isArray(n)?`textarea`:`text`,value:Sl(n)}})})}function Dl(e,t){return`<!DOCTYPE html><html><head><meta charset="utf-8"><title>${e}</title><style>:root{--aikit-bg:#1e1e1e;--aikit-surface:#252526;--aikit-surface2:#2d2d30;--aikit-border:#3c3c3c;--aikit-text:#e5e7eb;--aikit-muted:#9ca3af;--aikit-accent:#60a5fa;--aikit-success:#22c55e;font-family:system-ui,sans-serif}body{margin:0;padding:20px;background:var(--aikit-bg);color:var(--aikit-text);font-family:system-ui,sans-serif}h2{margin:0 0 16px}</style></head><body><h2>${e}</h2>${t}</body></html>`}function Ol(e){let t=``,n=``,r=!1;return function(i,a){t=i,n=a,!r&&(r=!0,br(e,`AI Kit Config App`,dl,{description:`View and update AI Kit configuration`},async()=>({contents:[{uri:dl,mimeType:vr,text:Dl(t,n)}]})))}}function kl(e,t){let n=W(`config`),r=Ol(e);xr(e,`config`,{title:n.title,description:`View and update AI Kit server configuration. Use action "view" to see current settings, or "update" to modify configuration values. Changes are written to aikit.config.json and take effect on next server restart. Some settings (store, embedding) require a full restart.`,inputSchema:ll,annotations:n.annotations,_meta:{ui:{resourceUri:dl}}},J(`config`,async e=>{let{action:n,updates:i}=e;if(t.readOnly&&n!==`view`)return q(`PERMISSION`,`Configuration updates are disabled in read-only mode`);if(n===`view`){let e=pl(),n=e||`(runtime config only; no aikit.config.json found)`;try{let i=e?bl(e):t,a=xl(i,n);return r(`Configuration`,Tl(i)),{content:[{type:`text`,text:a}],ui:{type:`resource`,uri:dl}}}catch(t){return ul.error(`Failed to read config for view`,{configPath:e,error:t instanceof Error?t.message:String(t)}),{content:[{type:`text`,text:`Failed to read configuration from ${n}: ${t instanceof Error?t.message:String(t)}`}]}}}if(!i)return r(`Configuration Form`,El(t)),{content:[{type:`text`,text:`No updates provided. Pass an updates object when action is "update".`}],ui:{type:`resource`,uri:dl}};let a=pl();if(!a)return r(`Configuration Form`,El(t)),{content:[{type:`text`,text:`No config file found to update.`}],ui:{type:`resource`,uri:dl}};let o=vl(i);if(o.length>0)return r(`Configuration Form`,El(bl(a))),{content:[{type:`text`,text:`Configuration update rejected:\n${o.map(e=>`- ${e}`).join(`
138
- `)}`}],ui:{type:`resource`,uri:dl}};try{let e=bl(a),t=hl(e,i),n=yl(t);if(n.length>0)return r(`Configuration Form`,El(e)),{content:[{type:`text`,text:`Configuration update rejected:\n${n.map(e=>`- ${e}`).join(`
139
- `)}`}],ui:{type:`resource`,uri:dl}};ke(a,JSON.stringify(t,null,2),`utf-8`);let o=_l(e,t,i),s=`Configuration updated successfully.
137
+ <\/script>`}function El(e){return wl({metrics:Object.entries(e).map(([e,t])=>({label:e,value:hl(t)||Array.isArray(t)?JSON.stringify(t,null,2):String(t),status:`info`}))})}function Dl(e){return Tl({fields:pl.map(t=>{let n=e[t];return typeof n==`boolean`?{name:t,label:t,type:`select`,options:[`true`,`false`],value:String(n)}:{name:t,label:t,type:hl(n)||Array.isArray(n)?`textarea`:`text`,value:Cl(n)}})})}function Ol(e,t){return`<!DOCTYPE html><html><head><meta charset="utf-8"><title>${e}</title><style>:root{--aikit-bg:#1e1e1e;--aikit-surface:#252526;--aikit-surface2:#2d2d30;--aikit-border:#3c3c3c;--aikit-text:#e5e7eb;--aikit-muted:#9ca3af;--aikit-accent:#60a5fa;--aikit-success:#22c55e;font-family:system-ui,sans-serif}body{margin:0;padding:20px;background:var(--aikit-bg);color:var(--aikit-text);font-family:system-ui,sans-serif}h2{margin:0 0 16px}</style></head><body><h2>${e}</h2>${t}</body></html>`}function kl(e){let t=``,n=``,r=!1;return function(i,a){t=i,n=a,!r&&(r=!0,br(e,`AI Kit Config App`,fl,{description:`View and update AI Kit configuration`},async()=>({contents:[{uri:fl,mimeType:vr,text:Ol(t,n)}]})))}}function Al(e,t){let n=W(`config`),r=kl(e);xr(e,`config`,{title:n.title,description:`View and update AI Kit server configuration. Use action "view" to see current settings, or "update" to modify configuration values. Changes are written to aikit.config.json and take effect on next server restart. Some settings (store, embedding) require a full restart.`,inputSchema:ul,annotations:n.annotations,_meta:{ui:{resourceUri:fl}}},J(`config`,async e=>{let{action:n,updates:i}=e;if(t.readOnly&&n!==`view`)return q(`PERMISSION`,`Configuration updates are disabled in read-only mode`);if(n===`view`){let e=ml(),n=e||`(runtime config only; no aikit.config.json found)`;try{let i=e?xl(e):t,a=Sl(i,n);return r(`Configuration`,El(i)),{content:[{type:`text`,text:a}],ui:{type:`resource`,uri:fl}}}catch(t){return dl.error(`Failed to read config for view`,{configPath:e,error:t instanceof Error?t.message:String(t)}),{content:[{type:`text`,text:`Failed to read configuration from ${n}: ${t instanceof Error?t.message:String(t)}`}]}}}if(!i)return r(`Configuration Form`,Dl(t)),{content:[{type:`text`,text:`No updates provided. Pass an updates object when action is "update".`}],ui:{type:`resource`,uri:fl}};let a=ml();if(!a)return r(`Configuration Form`,Dl(t)),{content:[{type:`text`,text:`No config file found to update.`}],ui:{type:`resource`,uri:fl}};let o=yl(i);if(o.length>0)return r(`Configuration Form`,Dl(xl(a))),{content:[{type:`text`,text:`Configuration update rejected:\n${o.map(e=>`- ${e}`).join(`
138
+ `)}`}],ui:{type:`resource`,uri:fl}};try{let e=xl(a),t=gl(e,i),n=bl(t);if(n.length>0)return r(`Configuration Form`,Dl(e)),{content:[{type:`text`,text:`Configuration update rejected:\n${n.map(e=>`- ${e}`).join(`
139
+ `)}`}],ui:{type:`resource`,uri:fl}};ke(a,JSON.stringify(t,null,2),`utf-8`);let o=vl(e,t,i),s=`Configuration updated successfully.
140
140
 
141
141
  Config file: ${a}
142
142
 
@@ -144,34 +144,34 @@ Changed values:
144
144
  ${o.length>0?o.join(`
145
145
  `):`- No effective changes; requested values already matched the file.`}
146
146
 
147
- These changes take effect on the next server restart.`;return r(`Configuration`,Tl(t)),{content:[{type:`text`,text:s}],ui:{type:`resource`,uri:dl}}}catch(e){return ul.error(`Failed to update config`,{configPath:a,error:e instanceof Error?e.message:String(e)}),{content:[{type:`text`,text:`Failed to update configuration in ${a}: ${e instanceof Error?e.message:String(e)}`}]}}})),r(`Configuration`,Tl(t))}const Al=M(`cross-workspace`);function jl(e,t){if(!xe())return[];let n=Se();if(n.length===0)return[];if(e.includes(`*`))return t?n.filter(e=>e.partition!==t):n;let r=[];for(let i of e){let e=n.find(e=>e.partition===i);if(e){e.partition!==t&&r.push(e);continue}let a=n.filter(e=>e.partition!==t&&e.partition.replace(/-[a-f0-9]{8}$/,``)===i.toLowerCase());r.push(...a)}let i=new Set;return r.filter(e=>i.has(e.partition)?!1:(i.add(e.partition),!0))}async function Ml(e){let t=new Map;for(let n of e){let e=be(n.partition),r=I(e,`aikit.db`);try{let e=await Er({backend:`sqlite-vec`,path:r});await e.initialize(),t.set(n.partition,e)}catch(t){Al.warn(`Failed to open workspace store`,{partition:n.partition,partitionDir:e,storePath:r,error:N(t)})}}return{stores:t,closeAll:async()=>{for(let[,e]of t)try{await e.close()}catch{}}}}async function Nl(e,t,n){let r=[...e.entries()].map(async([e,r])=>{try{return(await r.search(t,n)).map(t=>({...t,workspace:e}))}catch(t){return Al.warn(`Cross-workspace search failed for partition`,{partition:e,err:t}),[]}});return(await Promise.all(r)).flat().sort((e,t)=>t.score-e.score).slice(0,n.limit)}async function Pl(e,t,n){let r=[...e.entries()].map(async([e,r])=>{try{return(await r.ftsSearch(t,n)).map(t=>({...t,workspace:e}))}catch(t){return Al.warn(`Cross-workspace FTS search failed for partition`,{partition:e,err:t}),[]}});return(await Promise.all(r)).flat().sort((e,t)=>t.score-e.score).slice(0,n.limit)}function Fl(e){return e.toLowerCase().replace(/[-_]/g,``)}function Il(e){let t=je(e),n=Fl(Ae(e));try{let e=we(t);for(let r of e)if(Fl(r)===n){let e=L(t,r);if(P(e))return e}}catch{}}function Ll(e,t,n){if(Me(e))return P(e)?e:Il(e)||e;let r=L(t,e);if(P(r))return r;let i=Il(r);if(i)return i;if(n)for(let r of n){if(r===t)continue;let n=L(r,e);if(P(n))return n;let i=Il(n);if(i)return i}try{let n=we(t,{withFileTypes:!0});for(let r of n){if(!r.isDirectory()||r.name.startsWith(`.`)||r.name===`node_modules`)continue;let n=L(t,r.name,e);if(P(n))return n;let i=Il(n);if(i)return i}}catch{}return r}function Rl(e){if(e.length!==0)return Sn({kind:`compact`,text:e,originalChars:e.length,compressedChars:e.length})?.ref??void 0}function zl(e,t){return t?`${e}\n\nRef: ${t}`:e}const Bl=M(`tools:context`),Vl=/^ctx[cd]_[a-z0-9]+$/,Hl=R.object({text:R.string().optional().describe(`The text to compress (provide this OR path/ref)`),path:R.string().optional().describe(`File path to read server-side — avoids read_file round-trip + token doubling.`),ref:R.string().optional().describe(`Reusable cached string ref from compact/digest/search/find/knowledge output`),query:R.string().optional().describe("Focus query — required with `text` or `path`, optional with `ref`."),max_chars:R.number().min(100).max(5e4).optional().describe(`Target output size in characters (overrides top-level)`),segmentation:R.enum([`paragraph`,`sentence`,`line`]).optional().describe(`How to split the text for scoring (overrides top-level)`),token_budget:R.number().min(50).max(12500).optional().describe(`Token budget — overrides max_chars (overrides top-level)`)}).refine(e=>e.text||e.path||e.ref,{message:`Each item must have "text", "path", or "ref".`});function Ul(e){return e instanceof Error?(`code`in e?e.code:void 0)===`ENOENT`||e.message.startsWith(`File not found:`)||e.message.startsWith(`Path not found:`):!1}function Wl(e,t){return Ul(t)?(Bl.warn(`${e} failed`,{error:`File not found`}),q(`NOT_FOUND`,`File not found`)):(Bl.error(`${e} failed`,N(t)),q(`INTERNAL`,`${e} failed: ${t instanceof Error?t.message:String(t)}`))}function Gl(e){return Vl.test(e)}function Kl(e,t,n,r){if(!r||!e)return;let i=e.replace(/\\/g,`/`);if(![t,...n??[]].map(e=>e.replace(/\\/g,`/`)).some(e=>{let t=e.endsWith(`/`)?e.slice(0,-1):e;return i===t||i.startsWith(`${t}/`)}))try{r(e)}catch{}}function ql(e,t,n,r,i,a,o){let s=W(`compact`);e.registerTool(`compact`,{title:s.title,description:"Compress text to relevant sections using embedding similarity (no LLM). Use `items[]` for batch compression or `ref` to restore a cached result. Segments by paragraph/sentence/line.",outputSchema:cc,inputSchema:{items:R.array(Hl).min(1).describe("Array of items to compress in batch. Each item has `text` OR `path` plus a `query`. Per-item max_chars/segmentation/token_budget override top-level defaults."),ref:R.string().optional().describe(`Reusable cached string ref from compact/digest/search/find/knowledge output`),max_chars:R.number().min(100).max(5e4).default(3e3).describe(`Target output size in characters (default for all items)`),segmentation:R.enum([`paragraph`,`sentence`,`line`]).default(`paragraph`).describe(`How to split the text for scoring (default for all items)`),token_budget:R.number().min(50).max(12500).optional().describe(`Token budget — overrides max_chars (approx 4 chars per token). Use to fit output into a specific context window. (default for all items)`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:s.annotations},J(`compact`,async({items:e,ref:s,max_chars:c,segmentation:l,token_budget:u,enrich:d})=>{try{if(s){if(e&&e.length>0)return q(`VALIDATION`,`Provide "items" by itself, not together with "ref".`);let r=await et(t,{ref:s,query:``,maxChars:c,tokenBudget:u,segmentation:l,cache:n}),i=[`Retrieved cached ref ${r.ref??s} (${r.compressedChars} chars)`,r.ref?`Ref: ${r.ref}`:void 0,``,r.text].filter(e=>typeof e==`string`).join(`
148
- `);if(d&&a){let e=await G(a,{query:``});i+=K(e)}return{content:[{type:`text`,text:i}],structuredContent:{text:i,ref:r.ref,originalChars:r.originalChars,compressedChars:r.compressedChars,ratio:r.ratio,segmentsKept:r.segmentsKept,segmentsTotal:r.segmentsTotal}}}if(e&&e.length>0){let s=e.map(e=>{let t=e.path?Ll(e.path,r,i):void 0;return{...e,resolvedPath:t,maxChars:e.max_chars??c,tokenBudget:e.token_budget??u,seg:e.segmentation??l}}),f=[];for(let e=0;e<s.length;e+=4){let a=s.slice(e,e+4),c=await Promise.allSettled(a.map(e=>e.ref&&Gl(e.ref)?et(t,{ref:e.ref,query:e.query??``,maxChars:e.maxChars,tokenBudget:e.tokenBudget,segmentation:e.seg,cache:n}):e.resolvedPath?(Kl(e.resolvedPath,r,i,o),et(t,{path:e.resolvedPath,query:e.query??``,maxChars:e.maxChars,tokenBudget:e.tokenBudget,segmentation:e.seg,cache:n})):e.text?et(t,{text:e.text,query:e.query??``,maxChars:e.maxChars,tokenBudget:e.tokenBudget,segmentation:e.seg,cache:n}):Promise.reject(Error(`Each item must have "text", "path", or "ref".`))));f.push(...c)}let p=[],m=0,h=0;for(let e=0;e<f.length;e++){let t=f[e];if(t.status===`fulfilled`){let n=t.value;m+=n.originalChars,h+=n.compressedChars,p.push({path:s[e].path??void 0,text:n.text,ref:n.ref,originalChars:n.originalChars,compressedChars:n.compressedChars,ratio:n.ratio,segmentsKept:n.segmentsKept,segmentsTotal:n.segmentsTotal})}else p.push({path:s[e].path??void 0,text:``,originalChars:0,compressedChars:0,ratio:0,segmentsKept:0,segmentsTotal:0,error:t.reason instanceof Error?t.reason.message:String(t.reason)})}let g=[`Compressed ${f.length} files:\n`];for(let e=0;e<p.length;e++){let t=p[e],n=t.path??s[e].path??`item ${e+1}`;if(t.error)g.push(`${e+1}. ${n} → ERROR: ${t.error}`);else{let r=t.originalChars>0?` (${(t.ratio*100).toFixed(0)}%)`:``;g.push(`${e+1}. ${n} → ${t.originalChars} chars${r}${t.ref?` Ref: ${t.ref}`:``}`)}}g.push(``);let _=g.join(`
149
- `);if(d&&a){let t=await G(a,{query:`compact: ${e.length} items`});_+=K(t)}return{content:[{type:`text`,text:_}],structuredContent:{text:_,items:p,originalChars:m,compressedChars:h,ratio:m>0?h/m:0,segmentsKept:0,segmentsTotal:0}}}return q(`VALIDATION`,`Either "items" or "ref" must be provided.`)}catch(e){return{...Wl(`Compact`,e),structuredContent:{text:``,originalChars:0,compressedChars:0,ratio:0,segmentsKept:0,segmentsTotal:0}}}}))}function Jl(e,t,n,r){let i=W(`scope_map`);e.registerTool(`scope_map`,{title:i.title,description:`Generate a task-scoped reading plan. Given a task description, identifies which files and sections are relevant, with estimated token counts and suggested reading order.`,outputSchema:Xs,inputSchema:{task:R.string().describe(`Description of the task to scope`),max_files:R.number().min(1).max(50).default(15).describe(`Maximum files to include`),content_type:R.enum(j).optional().describe(`Filter by content type`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!0).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default true for planning tools — set false to save tokens when enrichment is not needed.`)},annotations:i.annotations},J(`scope_map`,async({task:e,max_files:i,content_type:a,max_tokens:o,enrich:s})=>{try{let c=await pn(t,n,{task:e,maxFiles:i,contentType:a}),l=[`## Scope Map: ${e}`,`Total estimated tokens: ~${c.totalEstimatedTokens}`,``,`### Files (by relevance)`,...c.files.map((e,t)=>`${t+1}. **${e.path}** (~${e.estimatedTokens} tokens, ${(e.relevance*100).toFixed(0)}% relevant)\n ${e.reason}\n Focus: ${e.focusRanges.map(e=>`L${e.start}-${e.end}`).join(`, `)}`),``,`### Suggested Reading Order`,...c.readingOrder.map((e,t)=>`${t+1}. ${e}`),``,`### Suggested Compact Calls`,`_Estimated compressed total: ~${Math.ceil(c.totalEstimatedTokens/5)} tokens_`,...c.compactCommands.map((e,t)=>`${t+1}. ${e}`)].join(`
150
- `)+"\n\n---\n_Next: Use `search` to dive into specific files, or `compact` to compress file contents for context._";if(s&&r){let t=await G(r,{query:e});l+=K(t)}return{content:[{type:`text`,text:o?kn(l,o):l}],structuredContent:{files:c.files.map(e=>({path:e.path,relevance:e.relevance,estimatedTokens:e.estimatedTokens,...e.focusRanges.length>0?{focusLines:e.focusRanges.map(e=>`L${e.start}-${e.end}`)}:{}})),totalFiles:c.files.length,totalEstimatedTokens:c.totalEstimatedTokens,task:e}}}catch(e){return Wl(`Scope map`,e)}}))}function Yl(e,t,n,r,i,a){let o=W(`find`);e.registerTool(`find`,{title:o.title,description:`Multi-strategy search combining vector, FTS, glob, and regex. Use for precise queries needing multiple strategies. mode=examples finds real usage of a symbol. For general discovery use search instead.`,outputSchema:Js,inputSchema:{query:R.string().optional().describe(`Semantic/keyword search query (required for mode "examples")`),glob:R.string().optional().describe(`File glob pattern (search mode only)`),pattern:R.string().optional().describe(`Regex pattern to match in content (search mode only)`),limit:R.number().min(1).max(50).default(10).describe(`Max results`),content_type:R.enum(j).optional().describe(`Filter by content type`),mode:R.enum([`search`,`examples`]).default(`search`).describe(`Mode: "search" (default) for federated search, "examples" to find usage examples of a symbol/pattern`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),workspaces:R.array(R.string()).optional().describe(`Cross-workspace search: partition names or folder basenames to include. Use ["*"] for all. User-level mode only.`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:o.annotations},J(`find`,async({query:e,glob:o,pattern:s,limit:c,content_type:l,mode:u,max_tokens:d,workspaces:f,enrich:p})=>{try{if(u===`examples`){if(!e)return q(`VALIDATION`,`"query" is required for mode "examples".`);let r=await vt(t,n,{query:e,limit:c,contentType:l}),a=Rl(JSON.stringify(r)),o=JSON.stringify(a?{ref:a,...r}:r);if(p&&i){let t=await G(i,{query:e});o+=K(t)}return{content:[{type:`text`,text:d?kn(o,d):o}]}}let m=await gt(t,n,{query:e,glob:o,pattern:s,limit:c,contentType:l,cwd:r}),h=``;if(f&&f.length>0&&e){let n=jl(f,a);if(n.length>0){let{stores:r,closeAll:i}=await Ml(n);try{let i=await Nl(r,await t.embedQuery(e),{limit:c,contentType:l});for(let e of i)m.results.push({path:`[${e.workspace}] ${e.record.sourcePath}`,score:e.score,source:`cross-workspace`,lineRange:e.record.startLine?{start:e.record.startLine,end:e.record.endLine}:void 0,preview:e.record.content.slice(0,200)});m.results.sort((e,t)=>t.score-e.score),m.results=m.results.slice(0,c),m.totalFound=m.results.length,h=` + ${n.length} workspace(s)`}finally{await i()}}}if(m.results.length===0){let t=`No results found.${m.failedStrategies?.length?`\nStrategies attempted: ${m.strategies.join(`, `)}\nFailed: ${m.failedStrategies.map(e=>`${e.strategy} (${e.reason})`).join(`, `)}`:m.strategies.length===0?`
151
- No search strategies were activated. Provide at least one of: query, glob, or pattern.`:``}`;if(p&&i){let n=await G(i,{query:e});t+=K(n)}let n=d?kn(t,d):t,r=Rl(n);return{content:[{type:`text`,text:zl(n,r)}],structuredContent:{matches:[],totalMatches:0,pattern:e??o??s??``,truncated:!1,ref:r}}}let g=[`Found ${m.totalFound} results via ${m.strategies.join(` + `)}${h}`,``,...m.results.map(e=>{let t=e.lineRange?`:${e.lineRange.start}-${e.lineRange.end}`:``,n=e.preview?`\n ${e.preview.slice(0,100)}...`:``;return`- [${e.source}] ${e.path}${t} (${(e.score*100).toFixed(0)}%)${n}`})].join(`
152
- `);if(p&&i){let t=await G(i,{query:e,filePath:m.results[0]?.path});g+=K(t)}let _=d?kn(g,d):g,v=Rl(_);return{content:[{type:`text`,text:zl(_,v)}],structuredContent:{matches:m.results.map(e=>({path:e.path,...e.lineRange?{line:e.lineRange.start}:{},matchType:e.source,preview:e.preview?.slice(0,200)??``})),totalMatches:m.totalFound,pattern:e??o??s??``,truncated:m.results.length<m.totalFound,ref:v}}}catch(e){return Wl(`Find`,e)}}))}function Xl(e,t,n,r,i){let a=W(`symbol`);e.registerTool(`symbol`,{title:a.title,description:`Find definition, imports, and references of a named symbol (function, class, type). For tracing data flow across call sites use trace instead.`,inputSchema:{items:R.array(R.object({name:R.string().describe(`Symbol name to look up`),limit:R.number().min(1).max(50).default(20).optional().describe(`Max results per category`)})).nonempty().describe(`Array of symbol names to look up in batch.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},outputSchema:Ws,annotations:a.annotations},J(`symbol`,async({items:e,max_tokens:a,enrich:o})=>{try{if(!e||e.length===0)return q(`VALIDATION`,`"items[]" is required.`);let s=await Promise.allSettled(e.map(e=>Tn(t,n,{name:e.name,limit:e.limit,graphStore:r}))),c=[],l=[];for(let t=0;t<s.length;t++){let n=s[t],r=e[t].name;if(n.status===`fulfilled`)c.push(`## ${t+1}. ${r}\n${eu(n.value)}`),l.push({name:n.value.name,definedIn:n.value.definedIn??null,importedBy:n.value.importedBy??[],referencedIn:n.value.referencedIn??[],graphContext:n.value.graphContext??null});else{let e=n.reason instanceof Error?n.reason.message:String(n.reason);c.push(`## ${t+1}. ${r}\nERROR: ${e}`),l.push({name:r,error:e})}}let u=c.join(`
147
+ These changes take effect on the next server restart.`;return r(`Configuration`,El(t)),{content:[{type:`text`,text:s}],ui:{type:`resource`,uri:fl}}}catch(e){return dl.error(`Failed to update config`,{configPath:a,error:e instanceof Error?e.message:String(e)}),{content:[{type:`text`,text:`Failed to update configuration in ${a}: ${e instanceof Error?e.message:String(e)}`}]}}})),r(`Configuration`,El(t))}const jl=M(`cross-workspace`);function Ml(e,t){if(!xe())return[];let n=Se();if(n.length===0)return[];if(e.includes(`*`))return t?n.filter(e=>e.partition!==t):n;let r=[];for(let i of e){let e=n.find(e=>e.partition===i);if(e){e.partition!==t&&r.push(e);continue}let a=n.filter(e=>e.partition!==t&&e.partition.replace(/-[a-f0-9]{8}$/,``)===i.toLowerCase());r.push(...a)}let i=new Set;return r.filter(e=>i.has(e.partition)?!1:(i.add(e.partition),!0))}async function Nl(e){let t=new Map;for(let n of e){let e=be(n.partition),r=I(e,`aikit.db`);try{let e=await Er({backend:`sqlite-vec`,path:r});await e.initialize(),t.set(n.partition,e)}catch(t){jl.warn(`Failed to open workspace store`,{partition:n.partition,partitionDir:e,storePath:r,error:N(t)})}}return{stores:t,closeAll:async()=>{for(let[,e]of t)try{await e.close()}catch{}}}}async function Pl(e,t,n){let r=[...e.entries()].map(async([e,r])=>{try{return(await r.search(t,n)).map(t=>({...t,workspace:e}))}catch(t){return jl.warn(`Cross-workspace search failed for partition`,{partition:e,err:t}),[]}});return(await Promise.all(r)).flat().sort((e,t)=>t.score-e.score).slice(0,n.limit)}async function Fl(e,t,n){let r=[...e.entries()].map(async([e,r])=>{try{return(await r.ftsSearch(t,n)).map(t=>({...t,workspace:e}))}catch(t){return jl.warn(`Cross-workspace FTS search failed for partition`,{partition:e,err:t}),[]}});return(await Promise.all(r)).flat().sort((e,t)=>t.score-e.score).slice(0,n.limit)}function Il(e){return e.toLowerCase().replace(/[-_]/g,``)}function Ll(e){let t=je(e),n=Il(Ae(e));try{let e=we(t);for(let r of e)if(Il(r)===n){let e=L(t,r);if(P(e))return e}}catch{}}function Rl(e,t,n){if(Me(e))return P(e)?e:Ll(e)||e;let r=L(t,e);if(P(r))return r;let i=Ll(r);if(i)return i;if(n)for(let r of n){if(r===t)continue;let n=L(r,e);if(P(n))return n;let i=Ll(n);if(i)return i}try{let n=we(t,{withFileTypes:!0});for(let r of n){if(!r.isDirectory()||r.name.startsWith(`.`)||r.name===`node_modules`)continue;let n=L(t,r.name,e);if(P(n))return n;let i=Ll(n);if(i)return i}}catch{}return r}function zl(e){if(e.length!==0)return Sn({kind:`compact`,text:e,originalChars:e.length,compressedChars:e.length})?.ref??void 0}function Bl(e,t){return t?`${e}\n\nRef: ${t}`:e}const Vl=M(`tools:context`),Hl=/^ctx[cd]_[a-z0-9]+$/,Ul=R.object({text:R.string().optional().describe(`The text to compress (provide this OR path/ref)`),path:R.string().optional().describe(`File path to read server-side — avoids read_file round-trip + token doubling.`),ref:R.string().optional().describe(`Reusable cached string ref from compact/digest/search/find/knowledge output`),query:R.string().optional().describe("Focus query — required with `text` or `path`, optional with `ref`."),max_chars:R.number().min(100).max(5e4).optional().describe(`Target output size in characters (overrides top-level)`),segmentation:R.enum([`paragraph`,`sentence`,`line`]).optional().describe(`How to split the text for scoring (overrides top-level)`),token_budget:R.number().min(50).max(12500).optional().describe(`Token budget — overrides max_chars (overrides top-level)`)}).refine(e=>e.text||e.path||e.ref,{message:`Each item must have "text", "path", or "ref".`});function Wl(e){return e instanceof Error?(`code`in e?e.code:void 0)===`ENOENT`||e.message.startsWith(`File not found:`)||e.message.startsWith(`Path not found:`):!1}function Gl(e,t){return Wl(t)?(Vl.warn(`${e} failed`,{error:`File not found`}),q(`NOT_FOUND`,`File not found`)):(Vl.error(`${e} failed`,N(t)),q(`INTERNAL`,`${e} failed: ${t instanceof Error?t.message:String(t)}`))}function Kl(e){return Hl.test(e)}function ql(e,t,n,r){if(!r||!e)return;let i=e.replace(/\\/g,`/`);if(![t,...n??[]].map(e=>e.replace(/\\/g,`/`)).some(e=>{let t=e.endsWith(`/`)?e.slice(0,-1):e;return i===t||i.startsWith(`${t}/`)}))try{r(e)}catch{}}function Jl(e,t,n,r,i,a,o){let s=W(`compact`);e.registerTool(`compact`,{title:s.title,description:"Compress text to relevant sections using embedding similarity (no LLM). Use `items[]` for batch compression or `ref` to restore a cached result. Segments by paragraph/sentence/line.",outputSchema:lc,inputSchema:{items:R.array(Ul).min(1).describe("Array of items to compress in batch. Each item has `text` OR `path` plus a `query`. Per-item max_chars/segmentation/token_budget override top-level defaults."),ref:R.string().optional().describe(`Reusable cached string ref from compact/digest/search/find/knowledge output`),max_chars:R.number().min(100).max(5e4).default(3e3).describe(`Target output size in characters (default for all items)`),segmentation:R.enum([`paragraph`,`sentence`,`line`]).default(`paragraph`).describe(`How to split the text for scoring (default for all items)`),token_budget:R.number().min(50).max(12500).optional().describe(`Token budget — overrides max_chars (approx 4 chars per token). Use to fit output into a specific context window. (default for all items)`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:s.annotations},J(`compact`,async({items:e,ref:s,max_chars:c,segmentation:l,token_budget:u,enrich:d})=>{try{if(s){if(e&&e.length>0)return q(`VALIDATION`,`Provide "items" by itself, not together with "ref".`);let r=await et(t,{ref:s,query:``,maxChars:c,tokenBudget:u,segmentation:l,cache:n}),i=[`Retrieved cached ref ${r.ref??s} (${r.compressedChars} chars)`,r.ref?`Ref: ${r.ref}`:void 0,``,r.text].filter(e=>typeof e==`string`).join(`
148
+ `);if(d&&a){let e=await G(a,{query:``});i+=K(e)}return{content:[{type:`text`,text:i}],structuredContent:{text:i,ref:r.ref,originalChars:r.originalChars,compressedChars:r.compressedChars,ratio:r.ratio,segmentsKept:r.segmentsKept,segmentsTotal:r.segmentsTotal}}}if(e&&e.length>0){let s=e.map(e=>{let t=e.path?Rl(e.path,r,i):void 0;return{...e,resolvedPath:t,maxChars:e.max_chars??c,tokenBudget:e.token_budget??u,seg:e.segmentation??l}}),f=[];for(let e=0;e<s.length;e+=4){let a=s.slice(e,e+4),c=await Promise.allSettled(a.map(e=>e.ref&&Kl(e.ref)?et(t,{ref:e.ref,query:e.query??``,maxChars:e.maxChars,tokenBudget:e.tokenBudget,segmentation:e.seg,cache:n}):e.resolvedPath?(ql(e.resolvedPath,r,i,o),et(t,{path:e.resolvedPath,query:e.query??``,maxChars:e.maxChars,tokenBudget:e.tokenBudget,segmentation:e.seg,cache:n})):e.text?et(t,{text:e.text,query:e.query??``,maxChars:e.maxChars,tokenBudget:e.tokenBudget,segmentation:e.seg,cache:n}):Promise.reject(Error(`Each item must have "text", "path", or "ref".`))));f.push(...c)}let p=[],m=0,h=0;for(let e=0;e<f.length;e++){let t=f[e];if(t.status===`fulfilled`){let n=t.value;m+=n.originalChars,h+=n.compressedChars,p.push({path:s[e].path??void 0,text:n.text,ref:n.ref,originalChars:n.originalChars,compressedChars:n.compressedChars,ratio:n.ratio,segmentsKept:n.segmentsKept,segmentsTotal:n.segmentsTotal})}else p.push({path:s[e].path??void 0,text:``,originalChars:0,compressedChars:0,ratio:0,segmentsKept:0,segmentsTotal:0,error:t.reason instanceof Error?t.reason.message:String(t.reason)})}let g=[`Compressed ${f.length} files:\n`];for(let e=0;e<p.length;e++){let t=p[e],n=t.path??s[e].path??`item ${e+1}`;if(t.error)g.push(`${e+1}. ${n} → ERROR: ${t.error}`);else{let r=t.originalChars>0?` (${(t.ratio*100).toFixed(0)}%)`:``;g.push(`${e+1}. ${n} → ${t.originalChars} chars${r}${t.ref?` Ref: ${t.ref}`:``}`)}}g.push(``);let _=g.join(`
149
+ `);if(d&&a){let t=await G(a,{query:`compact: ${e.length} items`});_+=K(t)}return{content:[{type:`text`,text:_}],structuredContent:{text:_,items:p,originalChars:m,compressedChars:h,ratio:m>0?h/m:0,segmentsKept:0,segmentsTotal:0}}}return q(`VALIDATION`,`Either "items" or "ref" must be provided.`)}catch(e){return{...Gl(`Compact`,e),structuredContent:{text:``,originalChars:0,compressedChars:0,ratio:0,segmentsKept:0,segmentsTotal:0}}}}))}function Yl(e,t,n,r){let i=W(`scope_map`);e.registerTool(`scope_map`,{title:i.title,description:`Generate a task-scoped reading plan. Given a task description, identifies which files and sections are relevant, with estimated token counts and suggested reading order.`,outputSchema:Xs,inputSchema:{task:R.string().describe(`Description of the task to scope`),max_files:R.number().min(1).max(50).default(15).describe(`Maximum files to include`),content_type:R.enum(j).optional().describe(`Filter by content type`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!0).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default true for planning tools — set false to save tokens when enrichment is not needed.`)},annotations:i.annotations},J(`scope_map`,async({task:e,max_files:i,content_type:a,max_tokens:o,enrich:s})=>{try{let c=await pn(t,n,{task:e,maxFiles:i,contentType:a}),l=[`## Scope Map: ${e}`,`Total estimated tokens: ~${c.totalEstimatedTokens}`,``,`### Files (by relevance)`,...c.files.map((e,t)=>`${t+1}. **${e.path}** (~${e.estimatedTokens} tokens, ${(e.relevance*100).toFixed(0)}% relevant)\n ${e.reason}\n Focus: ${e.focusRanges.map(e=>`L${e.start}-${e.end}`).join(`, `)}`),``,`### Suggested Reading Order`,...c.readingOrder.map((e,t)=>`${t+1}. ${e}`),``,`### Suggested Compact Calls`,`_Estimated compressed total: ~${Math.ceil(c.totalEstimatedTokens/5)} tokens_`,...c.compactCommands.map((e,t)=>`${t+1}. ${e}`)].join(`
150
+ `)+"\n\n---\n_Next: Use `search` to dive into specific files, or `compact` to compress file contents for context._";if(s&&r){let t=await G(r,{query:e});l+=K(t)}return{content:[{type:`text`,text:o?kn(l,o):l}],structuredContent:{files:c.files.map(e=>({path:e.path,relevance:e.relevance,estimatedTokens:e.estimatedTokens,...e.focusRanges.length>0?{focusLines:e.focusRanges.map(e=>`L${e.start}-${e.end}`)}:{}})),totalFiles:c.files.length,totalEstimatedTokens:c.totalEstimatedTokens,task:e}}}catch(e){return Gl(`Scope map`,e)}}))}function Xl(e,t,n,r,i,a){let o=W(`find`);e.registerTool(`find`,{title:o.title,description:`Multi-strategy search combining vector, FTS, glob, and regex. Use for precise queries needing multiple strategies. mode=examples finds real usage of a symbol. For general discovery use search instead.`,outputSchema:Js,inputSchema:{query:R.string().optional().describe(`Semantic/keyword search query (required for mode "examples")`),glob:R.string().optional().describe(`File glob pattern (search mode only)`),pattern:R.string().optional().describe(`Regex pattern to match in content (search mode only)`),limit:R.number().min(1).max(50).default(10).describe(`Max results`),content_type:R.enum(j).optional().describe(`Filter by content type`),mode:R.enum([`search`,`examples`]).default(`search`).describe(`Mode: "search" (default) for federated search, "examples" to find usage examples of a symbol/pattern`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),workspaces:R.array(R.string()).optional().describe(`Cross-workspace search: partition names or folder basenames to include. Use ["*"] for all. User-level mode only.`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:o.annotations},J(`find`,async({query:e,glob:o,pattern:s,limit:c,content_type:l,mode:u,max_tokens:d,workspaces:f,enrich:p})=>{try{if(u===`examples`){if(!e)return q(`VALIDATION`,`"query" is required for mode "examples".`);let r=await vt(t,n,{query:e,limit:c,contentType:l}),a=zl(JSON.stringify(r)),o=JSON.stringify(a?{ref:a,...r}:r);if(p&&i){let t=await G(i,{query:e});o+=K(t)}return{content:[{type:`text`,text:d?kn(o,d):o}]}}let m=await gt(t,n,{query:e,glob:o,pattern:s,limit:c,contentType:l,cwd:r}),h=``;if(f&&f.length>0&&e){let n=Ml(f,a);if(n.length>0){let{stores:r,closeAll:i}=await Nl(n);try{let i=await Pl(r,await t.embedQuery(e),{limit:c,contentType:l});for(let e of i)m.results.push({path:`[${e.workspace}] ${e.record.sourcePath}`,score:e.score,source:`cross-workspace`,lineRange:e.record.startLine?{start:e.record.startLine,end:e.record.endLine}:void 0,preview:e.record.content.slice(0,200)});m.results.sort((e,t)=>t.score-e.score),m.results=m.results.slice(0,c),m.totalFound=m.results.length,h=` + ${n.length} workspace(s)`}finally{await i()}}}if(m.results.length===0){let t=`No results found.${m.failedStrategies?.length?`\nStrategies attempted: ${m.strategies.join(`, `)}\nFailed: ${m.failedStrategies.map(e=>`${e.strategy} (${e.reason})`).join(`, `)}`:m.strategies.length===0?`
151
+ No search strategies were activated. Provide at least one of: query, glob, or pattern.`:``}`;if(p&&i){let n=await G(i,{query:e});t+=K(n)}let n=d?kn(t,d):t,r=zl(n);return{content:[{type:`text`,text:Bl(n,r)}],structuredContent:{matches:[],totalMatches:0,pattern:e??o??s??``,truncated:!1,ref:r}}}let g=[`Found ${m.totalFound} results via ${m.strategies.join(` + `)}${h}`,``,...m.results.map(e=>{let t=e.lineRange?`:${e.lineRange.start}-${e.lineRange.end}`:``,n=e.preview?`\n ${e.preview.slice(0,100)}...`:``;return`- [${e.source}] ${e.path}${t} (${(e.score*100).toFixed(0)}%)${n}`})].join(`
152
+ `);if(p&&i){let t=await G(i,{query:e,filePath:m.results[0]?.path});g+=K(t)}let _=d?kn(g,d):g,v=zl(_);return{content:[{type:`text`,text:Bl(_,v)}],structuredContent:{matches:m.results.map(e=>({path:e.path,...e.lineRange?{line:e.lineRange.start}:{},matchType:e.source,preview:e.preview?.slice(0,200)??``})),totalMatches:m.totalFound,pattern:e??o??s??``,truncated:m.results.length<m.totalFound,ref:v}}}catch(e){return Gl(`Find`,e)}}))}function Zl(e,t,n,r,i){let a=W(`symbol`);e.registerTool(`symbol`,{title:a.title,description:`Find definition, imports, and references of a named symbol (function, class, type). For tracing data flow across call sites use trace instead.`,inputSchema:{items:R.array(R.object({name:R.string().describe(`Symbol name to look up`),limit:R.number().min(1).max(50).default(20).optional().describe(`Max results per category`)})).nonempty().describe(`Array of symbol names to look up in batch.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},outputSchema:Ws,annotations:a.annotations},J(`symbol`,async({items:e,max_tokens:a,enrich:o})=>{try{if(!e||e.length===0)return q(`VALIDATION`,`"items[]" is required.`);let s=await Promise.allSettled(e.map(e=>Tn(t,n,{name:e.name,limit:e.limit,graphStore:r}))),c=[],l=[];for(let t=0;t<s.length;t++){let n=s[t],r=e[t].name;if(n.status===`fulfilled`)c.push(`## ${t+1}. ${r}\n${tu(n.value)}`),l.push({name:n.value.name,definedIn:n.value.definedIn??null,importedBy:n.value.importedBy??[],referencedIn:n.value.referencedIn??[],graphContext:n.value.graphContext??null});else{let e=n.reason instanceof Error?n.reason.message:String(n.reason);c.push(`## ${t+1}. ${r}\nERROR: ${e}`),l.push({name:r,error:e})}}let u=c.join(`
153
153
 
154
- `);if(o&&i){let t=await G(i,{query:`symbols: ${e.map(e=>e.name).join(`, `)}`});u+=K(t)}return{content:[{type:`text`,text:a?kn(u,a):u}],structuredContent:{symbols:l}}}catch(e){return Wl(`Symbol lookup`,e)}}))}function Zl(e,t,n,r,i,a){let o=new sr,s=W(`file_summary`);e.registerTool(`file_summary`,{title:s.title,description:`Create a concise structural summary of a source file: imports, exports, functions, classes, interfaces, and types.`,outputSchema:ac,inputSchema:{items:R.array(R.object({path:R.string().describe(`Absolute path to the file to summarize`)})).min(1).describe(`Array of file paths to summarize in batch.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response.`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:s.annotations},J(`file_summary`,async({items:e,max_tokens:s,enrich:c})=>{try{if(!e||e.length===0)return q(`VALIDATION`,`"items[]" is required.`);let l=await Promise.allSettled(e.map(async e=>{let i=Ll(e.path,n,r);if((await zn(i)).isDirectory()){let t=await o.analyze(i,{format:`markdown`,maxDepth:3,maxTokens:s});return Kl(i,n,r,a),{path:i,language:`directory`,lines:0,imports:0,exports:0,functions:0,classes:0,text:`📁 **Directory**: \`${e.path}\`\n\n${t.output}`}}let c=await ht({path:i,content:(await t.get(i)).content,maxTokens:s});return Kl(i,n,r,a),{path:c.path,language:c.language,lines:c.lines,imports:c.importCount??c.imports?.length??0,exports:c.exports?.length??0,functions:c.functions?.length??0,classes:c.classes?.length??0,text:tu(c)}})),u=[],d=[];for(let t=0;t<l.length;t++){let n=l[t],r=e[t].path;if(n.status===`fulfilled`)u.push(`### ${t+1}. ${r}\n${n.value.text}`),d.push({path:r,resolvedPath:n.value.path,language:n.value.language,lines:n.value.lines,imports:n.value.imports,exports:n.value.exports,functions:n.value.functions,classes:n.value.classes});else{let e=n.reason instanceof Error?n.reason.message:String(n.reason);u.push(`### ${t+1}. ${r}\nERROR: ${e}`),d.push({path:r,error:e})}}let f=u.join(`
154
+ `);if(o&&i){let t=await G(i,{query:`symbols: ${e.map(e=>e.name).join(`, `)}`});u+=K(t)}return{content:[{type:`text`,text:a?kn(u,a):u}],structuredContent:{symbols:l}}}catch(e){return Gl(`Symbol lookup`,e)}}))}function Ql(e,t,n,r,i,a){let o=new sr,s=W(`file_summary`);e.registerTool(`file_summary`,{title:s.title,description:`Create a concise structural summary of a source file: imports, exports, functions, classes, interfaces, and types.`,outputSchema:oc,inputSchema:{items:R.array(R.object({path:R.string().describe(`Absolute path to the file to summarize`)})).min(1).describe(`Array of file paths to summarize in batch.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response.`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:s.annotations},J(`file_summary`,async({items:e,max_tokens:s,enrich:c})=>{try{if(!e||e.length===0)return q(`VALIDATION`,`"items[]" is required.`);let l=await Promise.allSettled(e.map(async e=>{let i=Rl(e.path,n,r);if((await zn(i)).isDirectory()){let t=await o.analyze(i,{format:`markdown`,maxDepth:3,maxTokens:s});return ql(i,n,r,a),{path:i,language:`directory`,lines:0,imports:0,exports:0,functions:0,classes:0,text:`📁 **Directory**: \`${e.path}\`\n\n${t.output}`}}let c=await ht({path:i,content:(await t.get(i)).content,maxTokens:s});return ql(i,n,r,a),{path:c.path,language:c.language,lines:c.lines,imports:c.importCount??c.imports?.length??0,exports:c.exports?.length??0,functions:c.functions?.length??0,classes:c.classes?.length??0,text:nu(c)}})),u=[],d=[];for(let t=0;t<l.length;t++){let n=l[t],r=e[t].path;if(n.status===`fulfilled`)u.push(`### ${t+1}. ${r}\n${n.value.text}`),d.push({path:r,resolvedPath:n.value.path,language:n.value.language,lines:n.value.lines,imports:n.value.imports,exports:n.value.exports,functions:n.value.functions,classes:n.value.classes});else{let e=n.reason instanceof Error?n.reason.message:String(n.reason);u.push(`### ${t+1}. ${r}\nERROR: ${e}`),d.push({path:r,error:e})}}let f=u.join(`
155
155
 
156
- `);if(c&&i){let e=await G(i,{query:`file summaries`});f+=K(e)}return{content:[{type:`text`,text:f}],structuredContent:{files:d}}}catch(e){return Wl(`File summary`,e)}}))}function Ql(e,t,n,r,i){let a=W(`trace`);function o(e){let t=[`## Trace: ${e.start}`,`Direction: ${e.direction} | Depth: ${e.depth}`,``];if(e.graphContext&&(t.push(`### Graph Context`),e.graphContext.definingModule&&t.push(`- Module: ${e.graphContext.definingModule}`),e.graphContext.community&&t.push(`- Community: ${e.graphContext.community}`),e.graphContext.importedByModules.length>0&&t.push(`- Imported by modules: ${e.graphContext.importedByModules.join(`, `)}`),e.graphContext.siblingSymbols.length>0&&t.push(`- Sibling symbols: ${e.graphContext.siblingSymbols.join(`, `)}`),t.push(``)),e.nodes.length===0)t.push(`No connections found.`);else{let n=e.nodes.filter(e=>e.relationship===`calls`),r=e.nodes.filter(e=>e.relationship===`called-by`),i=e.nodes.filter(e=>e.relationship===`imports`),a=e.nodes.filter(e=>e.relationship===`imported-by`),o=e.nodes.filter(e=>e.relationship===`references`);if(n.length>0){t.push(`### Calls (${n.length})`);for(let e of n){let n=e.scope?` (from ${e.scope}())`:``;t.push(`- ${e.symbol}() — ${e.path}:${e.line}${n}`)}t.push(``)}if(r.length>0){t.push(`### Called by (${r.length})`);for(let e of r){let n=e.scope?` in ${e.scope}()`:``;t.push(`- ${e.symbol}()${n} — ${e.path}:${e.line}`)}t.push(``)}if(i.length>0){t.push(`### Imports (${i.length})`);for(let e of i)t.push(`- ${e.symbol} — ${e.path}:${e.line}`);t.push(``)}if(a.length>0){t.push(`### Imported by (${a.length})`);for(let e of a)t.push(`- ${e.path}:${e.line}`);t.push(``)}if(o.length>0){t.push(`### References (${o.length})`);for(let e of o)t.push(`- ${e.path}:${e.line}`);t.push(``)}}return{lines:t,structured:{start:e.start,direction:e.direction,depth:e.depth,nodes:e.nodes,graphContext:e.graphContext??null}}}e.registerTool(`trace`,{title:a.title,description:`Follow data flow forward/backward across imports and call sites from a starting symbol or file:line. For finding a single symbol definition use symbol instead.`,inputSchema:{items:R.array(R.object({start:R.string().describe(`Starting point — symbol name or file:line reference`),direction:R.enum([`forward`,`backward`,`both`]).describe(`Which direction to trace relationships`),max_depth:R.number().min(1).max(10).default(3).optional().describe(`Maximum trace depth`)})).min(1).describe(`Array of trace queries to run in batch.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},annotations:a.annotations},J(`trace`,async({items:e,max_tokens:a,enrich:s})=>{try{if(!e||e.length===0)return q(`VALIDATION`,`"items[]" is required.`);let c=await Promise.allSettled(e.map(e=>On(t,n,{start:e.start,direction:e.direction,maxDepth:e.max_depth,graphStore:r}))),l=[],u=[];for(let t=0;t<c.length;t++){let n=c[t],r=e[t].start;if(n.status===`fulfilled`){let e=o(n.value);l.push(`## ${t+1}. ${r}\n${e.lines.join(`
156
+ `);if(c&&i){let e=await G(i,{query:`file summaries`});f+=K(e)}return{content:[{type:`text`,text:f}],structuredContent:{files:d}}}catch(e){return Gl(`File summary`,e)}}))}function $l(e,t,n,r,i){let a=W(`trace`);function o(e){let t=[`## Trace: ${e.start}`,`Direction: ${e.direction} | Depth: ${e.depth}`,``];if(e.graphContext&&(t.push(`### Graph Context`),e.graphContext.definingModule&&t.push(`- Module: ${e.graphContext.definingModule}`),e.graphContext.community&&t.push(`- Community: ${e.graphContext.community}`),e.graphContext.importedByModules.length>0&&t.push(`- Imported by modules: ${e.graphContext.importedByModules.join(`, `)}`),e.graphContext.siblingSymbols.length>0&&t.push(`- Sibling symbols: ${e.graphContext.siblingSymbols.join(`, `)}`),t.push(``)),e.nodes.length===0)t.push(`No connections found.`);else{let n=e.nodes.filter(e=>e.relationship===`calls`),r=e.nodes.filter(e=>e.relationship===`called-by`),i=e.nodes.filter(e=>e.relationship===`imports`),a=e.nodes.filter(e=>e.relationship===`imported-by`),o=e.nodes.filter(e=>e.relationship===`references`);if(n.length>0){t.push(`### Calls (${n.length})`);for(let e of n){let n=e.scope?` (from ${e.scope}())`:``;t.push(`- ${e.symbol}() — ${e.path}:${e.line}${n}`)}t.push(``)}if(r.length>0){t.push(`### Called by (${r.length})`);for(let e of r){let n=e.scope?` in ${e.scope}()`:``;t.push(`- ${e.symbol}()${n} — ${e.path}:${e.line}`)}t.push(``)}if(i.length>0){t.push(`### Imports (${i.length})`);for(let e of i)t.push(`- ${e.symbol} — ${e.path}:${e.line}`);t.push(``)}if(a.length>0){t.push(`### Imported by (${a.length})`);for(let e of a)t.push(`- ${e.path}:${e.line}`);t.push(``)}if(o.length>0){t.push(`### References (${o.length})`);for(let e of o)t.push(`- ${e.path}:${e.line}`);t.push(``)}}return{lines:t,structured:{start:e.start,direction:e.direction,depth:e.depth,nodes:e.nodes,graphContext:e.graphContext??null}}}e.registerTool(`trace`,{title:a.title,description:`Follow data flow forward/backward across imports and call sites from a starting symbol or file:line. For finding a single symbol definition use symbol instead.`,inputSchema:{items:R.array(R.object({start:R.string().describe(`Starting point — symbol name or file:line reference`),direction:R.enum([`forward`,`backward`,`both`]).describe(`Which direction to trace relationships`),max_depth:R.number().min(1).max(10).default(3).optional().describe(`Maximum trace depth`)})).min(1).describe(`Array of trace queries to run in batch.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},annotations:a.annotations},J(`trace`,async({items:e,max_tokens:a,enrich:s})=>{try{if(!e||e.length===0)return q(`VALIDATION`,`"items[]" is required.`);let c=await Promise.allSettled(e.map(e=>On(t,n,{start:e.start,direction:e.direction,maxDepth:e.max_depth,graphStore:r}))),l=[],u=[];for(let t=0;t<c.length;t++){let n=c[t],r=e[t].start;if(n.status===`fulfilled`){let e=o(n.value);l.push(`## ${t+1}. ${r}\n${e.lines.join(`
157
157
  `)}`),u.push(e.structured)}else{let e=n.reason instanceof Error?n.reason.message:String(n.reason);l.push(`## ${t+1}. ${r}\nERROR: ${e}`),u.push({start:r,error:e})}}let d=l.join(`
158
158
 
159
- `)+"\n\n---\n_Next: `symbol` for definition details | `compact` to read a referenced file_";if(s&&i){let t=await G(i,{query:`traces: ${e.map(e=>e.start).join(`, `)}`});d+=K(t)}return{content:[{type:`text`,text:a?kn(d,a):d}],structuredContent:{traces:u}}}catch(e){return Wl(`Trace`,e)}}))}function $l(e,t,n,r,i,a){let o=W(`dead_symbols`);e.registerTool(`dead_symbols`,{title:o.title,description:`Find exported symbols that appear to be unused because they are never imported or re-exported.`,outputSchema:ic,inputSchema:{path:R.string().optional().describe(`Root path to scope the search (default: cwd)`),limit:R.number().min(1).max(500).default(100).optional().describe(`Maximum exported symbols to scan`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:o.annotations},J(`dead_symbols`,async({path:e,limit:o,max_tokens:s,enrich:c})=>{try{let l=e&&r?Ll(e,r,i):e,u=await _t(t,n,{rootPath:l,limit:o}),d=[`## Dead Symbol Analysis`,``,`**Exports scanned:** ${u.totalExports}`,`**Dead in source:** ${u.totalDeadSource} (actionable)`,`**Dead in docs:** ${u.totalDeadDocs} (informational — code samples in .md files)`,``];if(u.deadInSource.length>0){d.push(`### Dead in Source (actionable)`);for(let e of u.deadInSource)d.push(`- \`${e.name}\` (${e.kind}) — ${e.path}:${e.line}`);d.push(``)}if(u.deadInDocs.length>0){d.push(`### Dead in Docs (informational)`),d.push(`_${u.totalDeadDocs} symbol(s) found only in documentation code samples — not actionable dead code._`);for(let e of u.deadInDocs.slice(0,5))d.push(`- \`${e.name}\` — ${e.path}:${e.line}`);u.deadInDocs.length>5&&d.push(`- _... ${u.deadInDocs.length-5} more omitted_`)}u.totalDeadSource>0?d.push(``,`---`,`_Next: \`codemod\` to remove ${u.totalDeadSource} unused exports | \`symbol\` to verify usage before removing_`):d.push(``,`---`,"_Next: `check` — no dead symbols found, validate types and lint_");let f=d.join(`
160
- `);if(c&&a){let t=await G(a,{query:`dead symbols ${e??l??``}`});f+=K(t)}return{content:[{type:`text`,text:s?kn(f,s):f}],structuredContent:{symbols:[...u.deadInSource,...u.deadInDocs].map(e=>({name:e.name,path:e.path,...e.line===void 0?{}:{line:e.line},kind:e.kind})),totalDead:u.totalDeadSource+u.totalDeadDocs}}}catch(e){return Wl(`Dead symbol scan`,e)}}))}function eu(e){let t=[`Symbol: ${e.name}`];if(e.definedIn){let n=`Defined in: ${e.definedIn.path}:${e.definedIn.line} (${e.definedIn.kind})`;e.definedIn.signature&&(n+=`\nSignature: ${e.definedIn.signature}`),t.push(n)}else t.push(`Defined in: not found`);if(t.push(``,`Imported by:`),e.importedBy.length===0)t.push(` none`);else for(let n of e.importedBy)t.push(` - ${n.path}:${n.line} ${n.importStatement}`);if(t.push(``,`Referenced in:`),e.referencedIn.length===0)t.push(` none`);else for(let n of e.referencedIn){let e=`scope`in n&&n.scope?` in ${n.scope}()`:``;t.push(` - ${n.path}:${n.line}${e} ${n.context}`)}if(e.graphContext){let n=e.graphContext;t.push(``,`Graph context:`),n.definingModule&&t.push(` Module: ${n.definingModule}`),n.importedByModules.length>0&&t.push(` Imported by modules: ${n.importedByModules.join(`, `)}`),n.siblingSymbols.length>0&&t.push(` Sibling symbols: ${n.siblingSymbols.join(`, `)}`)}return t.join(`
161
- `)}function tu(e){let t=[e.path,`Language: ${e.language}`,`Lines: ${e.lines}`,`Estimated tokens: ~${e.estimatedTokens}`,``,`Imports (${e.importCount??e.imports.length}):`,...nu(e.imports),``,`Exports (${e.exports.length}):`,...nu(e.exports),``,`Functions (${e.functions.length}):`,...nu(e.functions.map(e=>`${e.name} @ line ${e.line}${e.exported?` [exported]`:``}${`signature`in e&&e.signature?` — ${e.signature}`:``}`)),``,`Classes (${e.classes.length}):`,...nu(e.classes.map(e=>`${e.name} @ line ${e.line}${e.exported?` [exported]`:``}${e.signature?` — ${e.signature}`:``}`)),``,`Interfaces (${e.interfaces.length}):`,...nu(e.interfaces.map(e=>`${e.name} @ line ${e.line}${`exported`in e&&e.exported?` [exported]`:``}`)),``,`Types (${e.types.length}):`,...nu(e.types.map(e=>`${e.name} @ line ${e.line}${`exported`in e&&e.exported?` [exported]`:``}`))];if(`importDetails`in e&&e.importDetails&&e.importDetails.length>0){let n=e.importDetails.filter(e=>e.isExternal).length,r=e.importDetails.length-n;t.push(``,`Import breakdown: ${n} external, ${r} internal`)}if(`callEdges`in e&&e.callEdges&&e.callEdges.length>0){t.push(``,`Call edges (${e.callEdgeCount??e.callEdges.length} intra-file):`);for(let n of e.callEdges.slice(0,30))t.push(` - ${n.caller}() → ${n.callee}() @ line ${n.line}`);e.callEdges.length>30&&t.push(` - ... ${e.callEdges.length-30} more`)}return t.join(`
162
- `)}function nu(e){return e.length===0?[` none`]:e.map(e=>` - ${e}`)}const ru=M(`tools`);function iu(e,t){let n=W(`er_evolve_review`);e.registerTool(`er_evolve_review`,{title:n.title,description:`Review evolution metrics for the AI Kit ↔ ER bridge. Shows local miss rates, push acceptance, rule effectiveness, and top missed queries. Use this to reason about improving classification rules and knowledge flow.`,inputSchema:{include_details:R.boolean().default(!0).describe(`Include detailed breakdowns (top missed queries, rule stats)`),reset_after:R.boolean().default(!1).describe(`Reset collected metrics after review`)},annotations:n.annotations},async({include_details:e,reset_after:n})=>{try{let r=t.getMetrics(),i=[`## ER Evolution Review
159
+ `)+"\n\n---\n_Next: `symbol` for definition details | `compact` to read a referenced file_";if(s&&i){let t=await G(i,{query:`traces: ${e.map(e=>e.start).join(`, `)}`});d+=K(t)}return{content:[{type:`text`,text:a?kn(d,a):d}],structuredContent:{traces:u}}}catch(e){return Gl(`Trace`,e)}}))}function eu(e,t,n,r,i,a){let o=W(`dead_symbols`);e.registerTool(`dead_symbols`,{title:o.title,description:`Find exported symbols that appear to be unused because they are never imported or re-exported.`,outputSchema:ic,inputSchema:{path:R.string().optional().describe(`Root path to scope the search (default: cwd)`),limit:R.number().min(1).max(500).default(100).optional().describe(`Maximum exported symbols to scan`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context for the file/query.`)},annotations:o.annotations},J(`dead_symbols`,async({path:e,limit:o,max_tokens:s,enrich:c})=>{try{let l=e&&r?Rl(e,r,i):e,u=await _t(t,n,{rootPath:l,limit:o}),d=[`## Dead Symbol Analysis`,``,`**Exports scanned:** ${u.totalExports}`,`**Dead in source:** ${u.totalDeadSource} (actionable)`,`**Dead in docs:** ${u.totalDeadDocs} (informational — code samples in .md files)`,``];if(u.deadInSource.length>0){d.push(`### Dead in Source (actionable)`);for(let e of u.deadInSource)d.push(`- \`${e.name}\` (${e.kind}) — ${e.path}:${e.line}`);d.push(``)}if(u.deadInDocs.length>0){d.push(`### Dead in Docs (informational)`),d.push(`_${u.totalDeadDocs} symbol(s) found only in documentation code samples — not actionable dead code._`);for(let e of u.deadInDocs.slice(0,5))d.push(`- \`${e.name}\` — ${e.path}:${e.line}`);u.deadInDocs.length>5&&d.push(`- _... ${u.deadInDocs.length-5} more omitted_`)}u.totalDeadSource>0?d.push(``,`---`,`_Next: \`codemod\` to remove ${u.totalDeadSource} unused exports | \`symbol\` to verify usage before removing_`):d.push(``,`---`,"_Next: `check` — no dead symbols found, validate types and lint_");let f=d.join(`
160
+ `);if(c&&a){let t=await G(a,{query:`dead symbols ${e??l??``}`});f+=K(t)}return{content:[{type:`text`,text:s?kn(f,s):f}],structuredContent:{symbols:[...u.deadInSource,...u.deadInDocs].map(e=>({name:e.name,path:e.path,...e.line===void 0?{}:{line:e.line},kind:e.kind})),totalDead:u.totalDeadSource+u.totalDeadDocs}}}catch(e){return Gl(`Dead symbol scan`,e)}}))}function tu(e){let t=[`Symbol: ${e.name}`];if(e.definedIn){let n=`Defined in: ${e.definedIn.path}:${e.definedIn.line} (${e.definedIn.kind})`;e.definedIn.signature&&(n+=`\nSignature: ${e.definedIn.signature}`),t.push(n)}else t.push(`Defined in: not found`);if(t.push(``,`Imported by:`),e.importedBy.length===0)t.push(` none`);else for(let n of e.importedBy)t.push(` - ${n.path}:${n.line} ${n.importStatement}`);if(t.push(``,`Referenced in:`),e.referencedIn.length===0)t.push(` none`);else for(let n of e.referencedIn){let e=`scope`in n&&n.scope?` in ${n.scope}()`:``;t.push(` - ${n.path}:${n.line}${e} ${n.context}`)}if(e.graphContext){let n=e.graphContext;t.push(``,`Graph context:`),n.definingModule&&t.push(` Module: ${n.definingModule}`),n.importedByModules.length>0&&t.push(` Imported by modules: ${n.importedByModules.join(`, `)}`),n.siblingSymbols.length>0&&t.push(` Sibling symbols: ${n.siblingSymbols.join(`, `)}`)}return t.join(`
161
+ `)}function nu(e){let t=[e.path,`Language: ${e.language}`,`Lines: ${e.lines}`,`Estimated tokens: ~${e.estimatedTokens}`,``,`Imports (${e.importCount??e.imports.length}):`,...ru(e.imports),``,`Exports (${e.exports.length}):`,...ru(e.exports),``,`Functions (${e.functions.length}):`,...ru(e.functions.map(e=>`${e.name} @ line ${e.line}${e.exported?` [exported]`:``}${`signature`in e&&e.signature?` — ${e.signature}`:``}`)),``,`Classes (${e.classes.length}):`,...ru(e.classes.map(e=>`${e.name} @ line ${e.line}${e.exported?` [exported]`:``}${e.signature?` — ${e.signature}`:``}`)),``,`Interfaces (${e.interfaces.length}):`,...ru(e.interfaces.map(e=>`${e.name} @ line ${e.line}${`exported`in e&&e.exported?` [exported]`:``}`)),``,`Types (${e.types.length}):`,...ru(e.types.map(e=>`${e.name} @ line ${e.line}${`exported`in e&&e.exported?` [exported]`:``}`))];if(`importDetails`in e&&e.importDetails&&e.importDetails.length>0){let n=e.importDetails.filter(e=>e.isExternal).length,r=e.importDetails.length-n;t.push(``,`Import breakdown: ${n} external, ${r} internal`)}if(`callEdges`in e&&e.callEdges&&e.callEdges.length>0){t.push(``,`Call edges (${e.callEdgeCount??e.callEdges.length} intra-file):`);for(let n of e.callEdges.slice(0,30))t.push(` - ${n.caller}() → ${n.callee}() @ line ${n.line}`);e.callEdges.length>30&&t.push(` - ... ${e.callEdges.length-30} more`)}return t.join(`
162
+ `)}function ru(e){return e.length===0?[` none`]:e.map(e=>` - ${e}`)}const iu=M(`tools`);function au(e,t){let n=W(`er_evolve_review`);e.registerTool(`er_evolve_review`,{title:n.title,description:`Review evolution metrics for the AI Kit ↔ ER bridge. Shows local miss rates, push acceptance, rule effectiveness, and top missed queries. Use this to reason about improving classification rules and knowledge flow.`,inputSchema:{include_details:R.boolean().default(!0).describe(`Include detailed breakdowns (top missed queries, rule stats)`),reset_after:R.boolean().default(!1).describe(`Reset collected metrics after review`)},annotations:n.annotations},async({include_details:e,reset_after:n})=>{try{let r=t.getMetrics(),i=[`## ER Evolution Review
163
163
  `,`**Period**: ${r.period.startedAt} → ${r.period.queriedAt}`,`**Total events**: ${r.period.totalEvents}\n`,`### Search`,`- Total searches: ${r.search.totalSearches}`,`- ER fallback triggered: ${r.search.erFallbackCount} (${(r.search.erFallbackRate*100).toFixed(1)}%)`,`- ER cache hits: ${r.search.erCacheHitCount} (${(r.search.erCacheHitRate*100).toFixed(1)}% of fallbacks)`];if(e&&r.search.topMissedQueries.length>0){i.push(`
164
- **Top missed queries** (triggered ER fallback):`);for(let e of r.search.topMissedQueries.slice(0,10)){let t=e.query.length>60?`${e.query.slice(0,57)}...`:e.query;i.push(` - "${t}" (${e.count}x)`)}}if(i.push(``,`### Push`,`- Total pushes: ${r.push.totalPushes} (${r.push.successCount} ok, ${r.push.failCount} failed)`,`- Classification match rate: ${(r.push.classificationMatchRate*100).toFixed(1)}%`,`- Push acceptance rate: ${(r.push.pushAcceptanceRate*100).toFixed(1)}%`),i.push(``,`### Rule Effectiveness`),Object.keys(r.rules.matchCounts).length>0)for(let[e,t]of Object.entries(r.rules.matchCounts)){let n=r.rules.pushCounts[e]??0,a=t>0?(n/t*100).toFixed(0):`0`;i.push(`- **${e}**: ${t} matches → ${n} pushes (${a}% conversion)`)}else i.push(`- _No rule activity recorded yet_`);if(e&&r.rules.lowConversionRules.length>0){i.push(``,`### ⚠️ Low Conversion Rules (potential false positives)`);for(let e of r.rules.lowConversionRules)i.push(`- **${e.ruleId}**: ${e.matchCount} matches, ${e.pushCount} pushes (${(e.conversionRate*100).toFixed(0)}% conversion) — consider tightening patterns`)}return i.push(``,`---`,"_Next: Use `er_update_policy` to refine rules based on these metrics, or `er_push` to share high-value knowledge._"),n&&(ru.info(`Evolution metrics reset requested`,{requestedAt:new Date().toISOString(),clearedEvents:r.period.totalEvents}),t.reset(),i.push(`
164
+ **Top missed queries** (triggered ER fallback):`);for(let e of r.search.topMissedQueries.slice(0,10)){let t=e.query.length>60?`${e.query.slice(0,57)}...`:e.query;i.push(` - "${t}" (${e.count}x)`)}}if(i.push(``,`### Push`,`- Total pushes: ${r.push.totalPushes} (${r.push.successCount} ok, ${r.push.failCount} failed)`,`- Classification match rate: ${(r.push.classificationMatchRate*100).toFixed(1)}%`,`- Push acceptance rate: ${(r.push.pushAcceptanceRate*100).toFixed(1)}%`),i.push(``,`### Rule Effectiveness`),Object.keys(r.rules.matchCounts).length>0)for(let[e,t]of Object.entries(r.rules.matchCounts)){let n=r.rules.pushCounts[e]??0,a=t>0?(n/t*100).toFixed(0):`0`;i.push(`- **${e}**: ${t} matches → ${n} pushes (${a}% conversion)`)}else i.push(`- _No rule activity recorded yet_`);if(e&&r.rules.lowConversionRules.length>0){i.push(``,`### ⚠️ Low Conversion Rules (potential false positives)`);for(let e of r.rules.lowConversionRules)i.push(`- **${e.ruleId}**: ${e.matchCount} matches, ${e.pushCount} pushes (${(e.conversionRate*100).toFixed(0)}% conversion) — consider tightening patterns`)}return i.push(``,`---`,"_Next: Use `er_update_policy` to refine rules based on these metrics, or `er_push` to share high-value knowledge._"),n&&(iu.info(`Evolution metrics reset requested`,{requestedAt:new Date().toISOString(),clearedEvents:r.period.totalEvents}),t.reset(),i.push(`
165
165
  _Metrics have been reset._`)),{content:[{type:`text`,text:i.join(`
166
- `)}]}}catch(e){return ru.error(`Evolution review failed`,N(e)),q(`INTERNAL`,`Evolution review failed: unable to compute metrics`)}})}const au=M(`tools:execution`);function ou(e,t,n){let r=W(`check`);e.registerTool(`check`,{title:r.title,description:`Run incremental typecheck (tsc) and lint (biome) on the project or specific files. Returns structured error and warning lists. Default detail level is "efficient" (~300 tokens).`,inputSchema:{files:R.array(R.string()).optional().describe(`Specific files to check (if omitted, checks all)`),cwd:R.string().optional().describe(`Working directory`),skip_types:R.boolean().default(!1).describe(`Skip TypeScript typecheck`),skip_lint:R.boolean().default(!1).describe(`Skip Biome lint`),detail:R.enum(ge).optional().describe(`Output detail level: efficient (default, ~300 tokens — pass/fail + counts + top errors), normal (parsed error objects), full (includes raw terminal output)`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`)},outputSchema:Us,annotations:r.annotations},J(`check`,async({files:e,cwd:r,skip_types:i,skip_lint:a,detail:o,enrich:s},c)=>{try{let l=o??n??`efficient`,u=await Ge({files:e,cwd:r,skipTypes:i,skipLint:a,detail:l===`efficient`?`normal`:l}),d=Zc(c).createTask(`Check`,2);if(d.progress(0,`tsc: ${u.tsc.errors.length} errors`),d.progress(1,`biome: ${u.biome.errors.length} errors`),d.complete(`Check ${u.passed?`passed`:`failed`}`),l===`efficient`){let e=wn(u),n=[];if(u.passed)n.push({tool:`test_run`,reason:`Types and lint clean — run tests next`});else{let t=u.tsc.errors[0]?.file??u.biome.errors[0]?.file,r=e.tsc.topErrors[0]??e.biome.topErrors[0]??`reported errors`;t&&n.push({tool:`compact`,reason:`Inspect failing code with compact({ path: ${JSON.stringify(t)}, query: ${JSON.stringify(r)} })`,suggested_args:{path:t,query:r}}),n.push({tool:`check`,reason:`Re-check after fixing errors`,suggested_args:{detail:`normal`}})}let r=[`## Check ${e.passed?`✅ PASS`:`❌ FAIL`}`,``,`**tsc**: ${e.tsc.passed?`✅`:`❌`} ${e.tsc.errorCount} errors, ${e.tsc.warningCount} warnings`];if(e.tsc.topErrors.length>0)for(let t of e.tsc.topErrors)r.push(` - ${t}`);if(r.push(`**biome**: ${e.biome.passed?`✅`:`❌`} ${e.biome.errorCount} errors, ${e.biome.warningCount} warnings`),e.biome.topErrors.length>0)for(let t of e.biome.topErrors)r.push(` - ${t}`);if(n.length>0){r.push(``,`**Next steps:**`);for(let e of n)r.push(`- \`${e.tool}\`: ${e.reason}`)}let i=r.join(`
167
- `);if(s&&t){let e=await G(t,{query:`known issues failures`});i+=K(e)}return{content:[{type:`text`,text:i}],structuredContent:{...e}}}let f=JSON.stringify(u);if(s&&t){let e=await G(t,{query:`known issues failures`});f+=K(e)}return{content:[{type:`text`,text:f}]}}catch(e){return au.error(`Check failed`,N(e)),q(`INTERNAL`,`Check failed: ${e instanceof Error?e.message:String(e)}`)}}))}function su(e){let t=W(`eval`);e.registerTool(`eval`,{title:t.title,description:`Execute a JavaScript or TypeScript snippet in a constrained VM sandbox with a timeout. Captures console output and returned values.`,inputSchema:{code:R.string().max(1e5).describe(`Code snippet to execute`),lang:R.enum([`js`,`ts`]).default(`js`).optional().describe(`Language mode: js executes directly, ts strips common type syntax first`),timeout:R.number().min(1).max(6e4).default(5e3).optional().describe(`Execution timeout in milliseconds`)},annotations:t.annotations},J(`eval`,async({code:e,lang:t,timeout:n})=>{try{let r=await pt({code:e,lang:t,timeout:n});return r.success?{content:[{type:`text`,text:`Eval succeeded in ${r.durationMs}ms\n\n${r.output}`}]}:q(`INTERNAL`,`Eval failed in ${r.durationMs}ms: ${r.error??`Unknown error`}`)}catch(e){return au.error(`Eval failed`,N(e)),q(`INTERNAL`,`Eval failed: ${e instanceof Error?e.message:String(e)}`)}}))}function cu(e,t){let n=W(`test_run`);e.registerTool(`test_run`,{title:n.title,description:`Run Vitest for the current project or a subset of files, then return a structured summary of passing and failing tests.`,inputSchema:{files:R.array(R.string()).optional().describe(`Specific test files or patterns to run`),grep:R.string().optional().describe(`Only run tests whose names match this pattern`),cwd:R.string().optional().describe(`Working directory for the test run`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`)},annotations:n.annotations,outputSchema:fc},J(`test_run`,async({files:e,grep:n,cwd:r,enrich:i},a)=>{try{let o=await En({files:e,grep:n,cwd:r}),s=Zc(a).createTask(`Test Run`,1),c=o.summary.passed+o.summary.failed+o.summary.skipped;s.complete(`Tests: ${o.passed?`passed`:`failed`} (${c} tests)`);let l=du(o);if(i&&t){let e=await G(t,{query:`test patterns known failures`});l+=K(e)}return{content:[{type:`text`,text:l}],structuredContent:{passed:o.passed,totalTests:c,passedTests:o.summary.passed,failedTests:o.summary.failed,skippedTests:o.summary.skipped,duration:o.summary.duration??0,failures:o.summary.tests.filter(e=>e.status===`fail`).map(e=>({name:e.name,message:e.error??``,...e.file?{file:e.file}:{}}))},isError:!o.passed}}catch(e){return au.error(`Test run failed`,N(e)),q(`INTERNAL`,`Test run failed: ${e instanceof Error?e.message:String(e)}`)}}))}function lu(e){let t=W(`parse_output`);e.registerTool(`parse_output`,{title:t.title,description:`Parse structured data from build tool output. Supports tsc, vitest, biome, and git status. Auto-detects the tool or specify explicitly.`,inputSchema:{output:R.string().max(5e5).describe(`Raw output text from a build tool`),tool:R.enum([`tsc`,`vitest`,`biome`,`git-status`]).optional().describe(`Tool to parse as (auto-detects if omitted)`)},annotations:t.annotations},async({output:e,tool:t})=>{try{let n=zt(e.replace(/\\n/g,`
168
- `).replace(/\\t/g,` `),t);return{content:[{type:`text`,text:JSON.stringify(n)}]}}catch(e){return au.error(`Parse failed`,N(e)),q(`INTERNAL`,`Parse failed: ${e instanceof Error?e.message:String(e)}`)}})}function uu(e,t){let n=W(`delegate`);e.registerTool(`delegate`,{title:n.title,description:`Delegate a subtask to a local Ollama model. Use for summarization, classification, naming, or any task that can offload work from the host agent. Fails fast if Ollama is not running.`,inputSchema:{prompt:R.string().max(2e5).describe(`The task or question to send to the local model`),model:R.string().optional().describe(`Ollama model name (default: first available model)`),system:R.string().optional().describe(`System prompt for the model`),context:R.string().max(5e5).optional().describe(`Context text to include before the prompt (e.g. file contents)`),temperature:R.number().min(0).max(2).default(.3).optional().describe(`Sampling temperature (0=deterministic, default 0.3)`),timeout:R.number().min(1e3).max(6e5).default(12e4).optional().describe(`Timeout in milliseconds (default 120000)`),action:R.enum([`generate`,`list_models`]).default(`generate`).optional().describe(`Action: generate a response or list available models`)},annotations:n.annotations},async({prompt:e,model:n,system:r,context:i,temperature:a,timeout:o,action:s})=>{try{if(s===`list_models`){let e=await ot();return{content:[{type:`text`,text:JSON.stringify({models:e,count:e.length,_Next:`Use delegate with a model name`},null,2)}]}}if(t?.available)try{let n=await t.createMessage({prompt:e,systemPrompt:r,context:i,maxTokens:4e3,modelPreferences:{intelligencePriority:.8,speedPriority:.5,costPriority:.3}});return{content:[{type:`text`,text:JSON.stringify({model:n.model??`sampling`,response:n.text,provider:`mcp-sampling`,_Next:`Use the response in your workflow. stash to save it.`},null,2)}]}}catch{au.debug(`Sampling failed, falling back to Ollama`)}let c=await at({prompt:e,model:n,system:r,context:i,temperature:a,timeout:o});return c.error?q(`INTERNAL`,JSON.stringify({error:c.error,model:c.model,durationMs:c.durationMs},null,2)):{content:[{type:`text`,text:JSON.stringify({model:c.model,response:c.response,durationMs:c.durationMs,tokenCount:c.tokenCount,_Next:`Use the response in your workflow. stash to save it.`},null,2)}]}}catch(e){return au.error(`Delegate failed`,N(e)),q(`INTERNAL`,`Delegate failed: ${e instanceof Error?e.message:String(e)}`)}})}function du(e){let t=[`Vitest run: ${e.passed?`passed`:`failed`}`,`Duration: ${e.durationMs}ms`,`Passed: ${e.summary.passed}`,`Failed: ${e.summary.failed}`,`Skipped: ${e.summary.skipped}`];e.summary.suites!==void 0&&t.push(`Suites: ${e.summary.suites}`);let n=e.summary.tests.filter(e=>e.status===`fail`);if(n.length>0){t.push(``,`Failed tests:`);for(let e of n)t.push(`- ${e.name}${e.file?` (${e.file})`:``}`),e.error&&t.push(` ${e.error}`)}return t.join(`
169
- `)}const fu=M(`sampling`);function pu(e){if(!e.modelPreferences)return;let t={...e.modelPreferences.costPriority===void 0?{}:{costPriority:e.modelPreferences.costPriority},...e.modelPreferences.speedPriority===void 0?{}:{speedPriority:e.modelPreferences.speedPriority},...e.modelPreferences.intelligencePriority===void 0?{}:{intelligencePriority:e.modelPreferences.intelligencePriority}};return Object.keys(t).length>0?t:void 0}function mu(e){if(Array.isArray(e))return e.map(e=>mu(e)).filter(e=>e.length>0).join(`
170
- `);if(e&&typeof e==`object`&&`type`in e){let t=e;if(t.type===`text`&&typeof t.text==`string`)return t.text}return JSON.stringify(e)}function hu(e){let t=e.server,n=typeof t?.createMessage==`function`;return{get available(){return n},async createMessage(e){if(!n)throw Error(`Sampling not available: client does not support createMessage`);let r=e.context?`${e.context}\n\n---\n\n${e.prompt}`:e.prompt;try{let n=t.createMessage({messages:[{role:`user`,content:{type:`text`,text:r}}],systemPrompt:e.systemPrompt,modelPreferences:pu(e),maxTokens:e.maxTokens??4e3}),i;if(e.timeoutMs&&e.timeoutMs>0){let t=new Promise((t,n)=>setTimeout(()=>n(Error(`Sampling createMessage timed out after ${e.timeoutMs}ms`)),e.timeoutMs));i=await Promise.race([n,t])}else i=await n;return{text:mu(i.content),model:i.model,stopReason:i.stopReason}}catch(e){throw fu.warn(`Sampling createMessage failed`,{error:String(e)}),e}}}}const gu=[],_u=[`_docs-sync`],vu=new Map([[`_docs-sync`,`Synchronize project documentation — update docs/ folder based on changes made during the flow.`]]);function yu(e){function t(t,n,r){let i=n?.installPath?Ae(n.installPath):t.replaceAll(`:`,`-`),a=L(Wn(),`.copilot`,`flows`,i).replaceAll(`\\`,`/`);if(P(a))return a;let o=L(Wn(),`.claude`,`flows`,i).replaceAll(`\\`,`/`);if(P(o))return o;let s=L(r??e(),`.github`,`flows`,i).replaceAll(`\\`,`/`);return P(s)?s:n?.installPath&&P(n.installPath)?n.installPath.replaceAll(`\\`,`/`):null}function n(e,n,r){let i=t(e.name,e,r);return i?L(i,n).replaceAll(`\\`,`/`):n}function r(t,n){let r=t.replace(/^_/,``),i=n??e(),a=[I(i,`.github`,`flows`,`_epilogue`,`steps`,r,`README.md`),I(i,`.github`,`flows`,`_epilogue`,r,`README.md`)];for(let e of a)if(P(e))return e.replaceAll(`\\`,`/`);return null}function i(e){return[...gu,...e.manifest.steps.map(e=>e.id),..._u]}function a(e,t,r){let i=t?e.manifest.steps.find(e=>e.id===t)??null:null,a=t?vu.get(t)??null:null;return{currentStep:i,epilogueStep:a?{id:t,description:a}:null,instructionPath:i&&t?n(e,i.instruction,r):null,description:i?.description??a}}function o(){try{let e=I(Un(`npm root -g`,{encoding:`utf-8`}).trim(),`@fission-ai`,`openspec`);if(P(e))return{path:e,sourceType:`npm-global`,isGit:!1}}catch{}return{path:`https://github.com/Fission-AI/OpenSpec.git`,sourceType:`git`,isGit:!0}}function s(e){let t=L(e);if(P(I(t,`.claude-plugin`,`plugin.json`)))return{path:t,sourceType:`claude-plugin`};let n=Wn(),r=I(n,`.claude`,`plugins`,e);if(P(I(r,`.claude-plugin`,`plugin.json`)))return{path:r,sourceType:`claude-plugin`};let i=I(n,`.claude`,`plugins`);if(!P(i))return null;for(let t of we(i,{withFileTypes:!0})){if(!t.isDirectory())continue;let n=I(i,t.name,`.claude-plugin`,`plugin.json`);if(P(n))try{if(JSON.parse(F(n,`utf-8`)).name===e)return{path:I(i,t.name),sourceType:`claude-plugin`}}catch{}}return null}return{resolveInstallPath:t,resolveInstructionPath:n,resolveEpilogueInstructionPath:r,getStepSequence:i,resolveCurrentStepInfo:a,resolveOpenSpecSource:o,resolveClaudePluginSource:s}}function bu(e){function t(){return e.sources?.[0]?.path??process.cwd()}function n(){return e.allRoots?.length?e.allRoots:[t()]}function r(e){return e.map(e=>e.replaceAll(`\\`,`/`))}function i(e){let t=[];try{let n=we(e,{withFileTypes:!0});for(let r of n){if(!r.isDirectory()||r.name.startsWith(`.`))continue;let n=I(e,r.name);P(I(n,`.git`))&&t.push(n)}}catch{}return t}function a(){let e=n(),t=new Set(e);for(let n of e)for(let e of i(n))t.add(e);return[...t]}function o(e){let t=e.replaceAll(`\\`,`/`);if(r(a()).includes(t))return!0;let i=r(n());for(let n of i)if(t.startsWith(`${n}/`)&&P(I(e,`.git`)))return!0;return!1}function s(e){return I(e??t(),`.flows`)}async function c(){let e=a();for(let t of e){let e=s(t);if(P(e))for(let n of we(e,{withFileTypes:!0})){if(!n.isDirectory())continue;let r=I(e,n.name,`meta.json`);if(P(r))try{let e=JSON.parse(F(r,`utf-8`));if(e.status===`active`)return e.primaryRoot?e.primaryRoot:t}catch{}}}return null}async function l(e){return e||(await c()??t())}function u(){let e=t(),i=r(n()),o=a(),s=r(o),c=s.filter(e=>!i.includes(e));return{workspaceRoot:e,allRoots:o,normalizedAllRoots:s,discoveredRepos:c.length>0?c:void 0}}function d(e,t,n){let r=I(s(t),e,`meta.json`),i=F(r,`utf-8`),a=JSON.parse(i);a.roots=n.map(e=>e.replaceAll(`\\`,`/`)),a.primaryRoot=t.replaceAll(`\\`,`/`);let o=`${r}.tmp`;ke(o,JSON.stringify(a,null,2),`utf-8`),Te(o,r)}function f(e,t){let n=I(s(t),e,`meta.json`);if(!P(n))return;let r=F(n,`utf-8`),i=JSON.parse(r),a=i.roots;if(!a||a.length<=1)return;let o=t.replaceAll(`\\`,`/`);for(let t of a){if(t===o)continue;let n=I(t,`.flows`,e);Ce(n,{recursive:!0});let a=I(n,`meta.json`),s=`${a}.tmp`;ke(s,r,`utf-8`),Te(s,a),Ce(I(n,i.artifactsDir??`.spec`),{recursive:!0})}}return{getWorkspaceRoot:t,getAllRoots:a,getFlowsDir:s,isValidFlowRoot:o,resolveFlowRoot:l,resolveRoots:u,patchMetaRoots:d,syncMetaToRoots:f}}const xu={name:`flow-context`,order:40,maxTokens:120,runInBrief:!1,async execute(e){let t=["**Flow Context:** Call `knowledge({ action: 'withdraw', scope: 'flow', profile: 'implementer', budget: 4000 })` as FIRST action for prior context.","Remember decisions: `knowledge({ action: 'remember', title: '...', content: '...', category: 'flow-context', scope: 'flow' })`"];e.completedSteps.length>0&&t.push(`Completed steps: ${e.completedSteps.join(`, `)}`);let n=t.join(`
171
- `);return{content:n,tokens:Math.ceil(n.length/4)}}};function Su(e){return{name:`knowledge-recall`,order:20,maxTokens:200,runInBrief:!1,async execute(t){if(!e.store)return null;let n=[t.stepDescription,t.topic].filter(e=>typeof e==`string`&&e.trim().length>0);if(n.length===0)return null;let r=[...n,t.flowName].filter(Boolean).join(` `);if(!r.trim())return null;try{let t=await e.store.search(r,{limit:3});if(!t||t.length===0)return null;let n=t.map(e=>`• ${e.content.slice(0,200)}`).join(`
172
- `),i=Math.ceil(n.length/4);return{content:`**Recalled Knowledge:**\n${n}`,tokens:Math.min(i,200)}}catch{return null}}}}const Cu=[`**Read Code:** Structure → file_summary(). Specific section → compact(path, query).`,`Multiple files → digest(). Cached ref → compact(ref, query?). Repeated file ref → stratum_card(). Edit lines → read_file().`,`NEVER read_file >50 lines to understand. Use search() for discovery.`].join(` `),wu={name:`token-efficiency`,order:30,maxTokens:80,runInBrief:!1,runOnce:!0,async execute(e){return{content:Cu,tokens:25}}},Tu=[`**Tool Routing:** search() not grep_search. file_summary() or compact() not read_file (for understanding).`,`check() not terminal tsc/lint. test_run() not terminal test. trace() for data flow.`,`read_file ONLY for exact lines before editing. symbol() for definition+refs.`].join(` `),Eu={name:`tool-routing`,order:10,maxTokens:100,runInBrief:!0,runOnce:!0,async execute(e){return{content:Tu,tokens:30}}};function Du(e,t){return Promise.race([e,new Promise(e=>setTimeout(()=>e(null),t))])}var Ou=class{hooks=[];firedOnce=new Set;sealed=!1;log;constructor(e){this.log=e?.log}seal(){this.sealed=!0}register(e){if(this.sealed){this.log?.warn(`Attempted to register hook "%s" on sealed pipeline`,e.name);return}this.hooks.push(e),this.hooks.sort((e,t)=>e.order-t.order)}get hookCount(){return this.hooks.length}async enrich(e,t,n){let r=this.resolveBudget(t.mode,n),i=new Set(n?.disable??[]),a=this.hooks.filter(e=>!(i.has(e.name)||t.mode===`brief`&&!e.runInBrief||e.runOnce&&this.firedOnce.has(e.name)));if(a.length===0)return e;let o=[],s=0;for(let e of a){if(s>=r){this.log?.debug(`[step-hooks] Budget exhausted (${s}/${r}), skipping remaining hooks`);break}try{let n=await Du(e.execute(t),5e3);if(!n||n.content.length===0)continue;e.runOnce&&this.firedOnce.add(e.name);let i=n.content.replace(/<\/(step-context|step-hints)>/gi,``);if(i.length===0)continue;let a=this.truncateToTokens(i,e.maxTokens),c=Math.min(n.tokens,e.maxTokens);if(s+c<=r){o.push({content:a,tokens:c}),s+=c;continue}let l=r-s;if(l<=0)break;o.push({content:this.truncateToTokens(a,l),tokens:l}),s=r}catch(t){this.log?.warn(`[step-hooks] Hook "${e.name}" failed: ${t instanceof Error?t.message:String(t)}`)}}if(o.length===0)return e;let c=t.mode===`full`?`<step-context>`:`<step-hints>`,l=t.mode===`full`?`</step-context>`:`</step-hints>`;return`${e}\n\n${c}\n${o.map(e=>e.content).join(`
166
+ `)}]}}catch(e){return iu.error(`Evolution review failed`,N(e)),q(`INTERNAL`,`Evolution review failed: unable to compute metrics`)}})}const ou=M(`tools:execution`);function su(e,t,n){let r=W(`check`);e.registerTool(`check`,{title:r.title,description:`Run incremental typecheck (tsc) and lint (biome) on the project or specific files. Returns structured error and warning lists. Default detail level is "efficient" (~300 tokens).`,inputSchema:{files:R.array(R.string()).optional().describe(`Specific files to check (if omitted, checks all)`),cwd:R.string().optional().describe(`Working directory`),skip_types:R.boolean().default(!1).describe(`Skip TypeScript typecheck`),skip_lint:R.boolean().default(!1).describe(`Skip Biome lint`),detail:R.enum(ge).optional().describe(`Output detail level: efficient (default, ~300 tokens — pass/fail + counts + top errors), normal (parsed error objects), full (includes raw terminal output)`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`)},outputSchema:Us,annotations:r.annotations},J(`check`,async({files:e,cwd:r,skip_types:i,skip_lint:a,detail:o,enrich:s},c)=>{try{let l=o??n??`efficient`,u=await Ge({files:e,cwd:r,skipTypes:i,skipLint:a,detail:l===`efficient`?`normal`:l}),d=Qc(c).createTask(`Check`,2);if(d.progress(0,`tsc: ${u.tsc.errors.length} errors`),d.progress(1,`biome: ${u.biome.errors.length} errors`),d.complete(`Check ${u.passed?`passed`:`failed`}`),l===`efficient`){let e=wn(u),n=[];if(u.passed)n.push({tool:`test_run`,reason:`Types and lint clean — run tests next`});else{let t=u.tsc.errors[0]?.file??u.biome.errors[0]?.file,r=e.tsc.topErrors[0]??e.biome.topErrors[0]??`reported errors`;t&&n.push({tool:`compact`,reason:`Inspect failing code with compact({ path: ${JSON.stringify(t)}, query: ${JSON.stringify(r)} })`,suggested_args:{path:t,query:r}}),n.push({tool:`check`,reason:`Re-check after fixing errors`,suggested_args:{detail:`normal`}})}let r=[`## Check ${e.passed?`✅ PASS`:`❌ FAIL`}`,``,`**tsc**: ${e.tsc.passed?`✅`:`❌`} ${e.tsc.errorCount} errors, ${e.tsc.warningCount} warnings`];if(e.tsc.topErrors.length>0)for(let t of e.tsc.topErrors)r.push(` - ${t}`);if(r.push(`**biome**: ${e.biome.passed?`✅`:`❌`} ${e.biome.errorCount} errors, ${e.biome.warningCount} warnings`),e.biome.topErrors.length>0)for(let t of e.biome.topErrors)r.push(` - ${t}`);if(n.length>0){r.push(``,`**Next steps:**`);for(let e of n)r.push(`- \`${e.tool}\`: ${e.reason}`)}let i=r.join(`
167
+ `);if(s&&t){let e=await G(t,{query:`known issues failures`});i+=K(e)}return{content:[{type:`text`,text:i}],structuredContent:{...e}}}let f=JSON.stringify(u);if(s&&t){let e=await G(t,{query:`known issues failures`});f+=K(e)}return{content:[{type:`text`,text:f}]}}catch(e){return ou.error(`Check failed`,N(e)),q(`INTERNAL`,`Check failed: ${e instanceof Error?e.message:String(e)}`)}}))}function cu(e){let t=W(`eval`);e.registerTool(`eval`,{title:t.title,description:`Execute a JavaScript or TypeScript snippet in a constrained VM sandbox with a timeout. Captures console output and returned values.`,inputSchema:{code:R.string().max(1e5).describe(`Code snippet to execute`),lang:R.enum([`js`,`ts`]).default(`js`).optional().describe(`Language mode: js executes directly, ts strips common type syntax first`),timeout:R.number().min(1).max(6e4).default(5e3).optional().describe(`Execution timeout in milliseconds`)},annotations:t.annotations},J(`eval`,async({code:e,lang:t,timeout:n})=>{try{let r=await pt({code:e,lang:t,timeout:n});return r.success?{content:[{type:`text`,text:`Eval succeeded in ${r.durationMs}ms\n\n${r.output}`}]}:q(`INTERNAL`,`Eval failed in ${r.durationMs}ms: ${r.error??`Unknown error`}`)}catch(e){return ou.error(`Eval failed`,N(e)),q(`INTERNAL`,`Eval failed: ${e instanceof Error?e.message:String(e)}`)}}))}function lu(e,t){let n=W(`test_run`);e.registerTool(`test_run`,{title:n.title,description:`Run Vitest for the current project or a subset of files, then return a structured summary of passing and failing tests.`,inputSchema:{files:R.array(R.string()).optional().describe(`Specific test files or patterns to run`),grep:R.string().optional().describe(`Only run tests whose names match this pattern`),cwd:R.string().optional().describe(`Working directory for the test run`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`)},annotations:n.annotations,outputSchema:pc},J(`test_run`,async({files:e,grep:n,cwd:r,enrich:i},a)=>{try{let o=await En({files:e,grep:n,cwd:r}),s=Qc(a).createTask(`Test Run`,1),c=o.summary.passed+o.summary.failed+o.summary.skipped;s.complete(`Tests: ${o.passed?`passed`:`failed`} (${c} tests)`);let l=fu(o);if(i&&t){let e=await G(t,{query:`test patterns known failures`});l+=K(e)}return{content:[{type:`text`,text:l}],structuredContent:{passed:o.passed,totalTests:c,passedTests:o.summary.passed,failedTests:o.summary.failed,skippedTests:o.summary.skipped,duration:o.summary.duration??0,failures:o.summary.tests.filter(e=>e.status===`fail`).map(e=>({name:e.name,message:e.error??``,...e.file?{file:e.file}:{}}))},isError:!o.passed}}catch(e){return ou.error(`Test run failed`,N(e)),q(`INTERNAL`,`Test run failed: ${e instanceof Error?e.message:String(e)}`)}}))}function uu(e){let t=W(`parse_output`);e.registerTool(`parse_output`,{title:t.title,description:`Parse structured data from build tool output. Supports tsc, vitest, biome, and git status. Auto-detects the tool or specify explicitly.`,inputSchema:{output:R.string().max(5e5).describe(`Raw output text from a build tool`),tool:R.enum([`tsc`,`vitest`,`biome`,`git-status`]).optional().describe(`Tool to parse as (auto-detects if omitted)`)},annotations:t.annotations},async({output:e,tool:t})=>{try{let n=zt(e.replace(/\\n/g,`
168
+ `).replace(/\\t/g,` `),t);return{content:[{type:`text`,text:JSON.stringify(n)}]}}catch(e){return ou.error(`Parse failed`,N(e)),q(`INTERNAL`,`Parse failed: ${e instanceof Error?e.message:String(e)}`)}})}function du(e,t){let n=W(`delegate`);e.registerTool(`delegate`,{title:n.title,description:`Delegate a subtask to a local Ollama model. Use for summarization, classification, naming, or any task that can offload work from the host agent. Fails fast if Ollama is not running.`,inputSchema:{prompt:R.string().max(2e5).describe(`The task or question to send to the local model`),model:R.string().optional().describe(`Ollama model name (default: first available model)`),system:R.string().optional().describe(`System prompt for the model`),context:R.string().max(5e5).optional().describe(`Context text to include before the prompt (e.g. file contents)`),temperature:R.number().min(0).max(2).default(.3).optional().describe(`Sampling temperature (0=deterministic, default 0.3)`),timeout:R.number().min(1e3).max(6e5).default(12e4).optional().describe(`Timeout in milliseconds (default 120000)`),action:R.enum([`generate`,`list_models`]).default(`generate`).optional().describe(`Action: generate a response or list available models`)},annotations:n.annotations},async({prompt:e,model:n,system:r,context:i,temperature:a,timeout:o,action:s})=>{try{if(s===`list_models`){let e=await ot();return{content:[{type:`text`,text:JSON.stringify({models:e,count:e.length,_Next:`Use delegate with a model name`},null,2)}]}}if(t?.available)try{let n=await t.createMessage({prompt:e,systemPrompt:r,context:i,maxTokens:4e3,modelPreferences:{intelligencePriority:.8,speedPriority:.5,costPriority:.3}});return{content:[{type:`text`,text:JSON.stringify({model:n.model??`sampling`,response:n.text,provider:`mcp-sampling`,_Next:`Use the response in your workflow. stash to save it.`},null,2)}]}}catch{ou.debug(`Sampling failed, falling back to Ollama`)}let c=await at({prompt:e,model:n,system:r,context:i,temperature:a,timeout:o});return c.error?q(`INTERNAL`,JSON.stringify({error:c.error,model:c.model,durationMs:c.durationMs},null,2)):{content:[{type:`text`,text:JSON.stringify({model:c.model,response:c.response,durationMs:c.durationMs,tokenCount:c.tokenCount,_Next:`Use the response in your workflow. stash to save it.`},null,2)}]}}catch(e){return ou.error(`Delegate failed`,N(e)),q(`INTERNAL`,`Delegate failed: ${e instanceof Error?e.message:String(e)}`)}})}function fu(e){let t=[`Vitest run: ${e.passed?`passed`:`failed`}`,`Duration: ${e.durationMs}ms`,`Passed: ${e.summary.passed}`,`Failed: ${e.summary.failed}`,`Skipped: ${e.summary.skipped}`];e.summary.suites!==void 0&&t.push(`Suites: ${e.summary.suites}`);let n=e.summary.tests.filter(e=>e.status===`fail`);if(n.length>0){t.push(``,`Failed tests:`);for(let e of n)t.push(`- ${e.name}${e.file?` (${e.file})`:``}`),e.error&&t.push(` ${e.error}`)}return t.join(`
169
+ `)}const pu=M(`sampling`);function mu(e){if(!e.modelPreferences)return;let t={...e.modelPreferences.costPriority===void 0?{}:{costPriority:e.modelPreferences.costPriority},...e.modelPreferences.speedPriority===void 0?{}:{speedPriority:e.modelPreferences.speedPriority},...e.modelPreferences.intelligencePriority===void 0?{}:{intelligencePriority:e.modelPreferences.intelligencePriority}};return Object.keys(t).length>0?t:void 0}function hu(e){if(Array.isArray(e))return e.map(e=>hu(e)).filter(e=>e.length>0).join(`
170
+ `);if(e&&typeof e==`object`&&`type`in e){let t=e;if(t.type===`text`&&typeof t.text==`string`)return t.text}return JSON.stringify(e)}function gu(e){let t=e.server,n=typeof t?.createMessage==`function`;return{get available(){return n},async createMessage(e){if(!n)throw Error(`Sampling not available: client does not support createMessage`);let r=e.context?`${e.context}\n\n---\n\n${e.prompt}`:e.prompt;try{let n=t.createMessage({messages:[{role:`user`,content:{type:`text`,text:r}}],systemPrompt:e.systemPrompt,modelPreferences:mu(e),maxTokens:e.maxTokens??4e3}),i;if(e.timeoutMs&&e.timeoutMs>0){let t=new Promise((t,n)=>setTimeout(()=>n(Error(`Sampling createMessage timed out after ${e.timeoutMs}ms`)),e.timeoutMs));i=await Promise.race([n,t])}else i=await n;return{text:hu(i.content),model:i.model,stopReason:i.stopReason}}catch(e){throw pu.warn(`Sampling createMessage failed`,{error:String(e)}),e}}}}const _u=[],vu=[`_docs-sync`],yu=new Map([[`_docs-sync`,`Synchronize project documentation — update docs/ folder based on changes made during the flow.`]]);function bu(e){function t(t,n,r){let i=n?.installPath?Ae(n.installPath):t.replaceAll(`:`,`-`),a=L(Wn(),`.copilot`,`flows`,i).replaceAll(`\\`,`/`);if(P(a))return a;let o=L(Wn(),`.claude`,`flows`,i).replaceAll(`\\`,`/`);if(P(o))return o;let s=L(r??e(),`.github`,`flows`,i).replaceAll(`\\`,`/`);return P(s)?s:n?.installPath&&P(n.installPath)?n.installPath.replaceAll(`\\`,`/`):null}function n(e,n,r){let i=t(e.name,e,r);return i?L(i,n).replaceAll(`\\`,`/`):n}function r(t,n){let r=t.replace(/^_/,``),i=n??e(),a=[I(i,`.github`,`flows`,`_epilogue`,`steps`,r,`README.md`),I(i,`.github`,`flows`,`_epilogue`,r,`README.md`)];for(let e of a)if(P(e))return e.replaceAll(`\\`,`/`);return null}function i(e){return[..._u,...e.manifest.steps.map(e=>e.id),...vu]}function a(e,t,r){let i=t?e.manifest.steps.find(e=>e.id===t)??null:null,a=t?yu.get(t)??null:null;return{currentStep:i,epilogueStep:a?{id:t,description:a}:null,instructionPath:i&&t?n(e,i.instruction,r):null,description:i?.description??a}}function o(){try{let e=I(Un(`npm root -g`,{encoding:`utf-8`}).trim(),`@fission-ai`,`openspec`);if(P(e))return{path:e,sourceType:`npm-global`,isGit:!1}}catch{}return{path:`https://github.com/Fission-AI/OpenSpec.git`,sourceType:`git`,isGit:!0}}function s(e){let t=L(e);if(P(I(t,`.claude-plugin`,`plugin.json`)))return{path:t,sourceType:`claude-plugin`};let n=Wn(),r=I(n,`.claude`,`plugins`,e);if(P(I(r,`.claude-plugin`,`plugin.json`)))return{path:r,sourceType:`claude-plugin`};let i=I(n,`.claude`,`plugins`);if(!P(i))return null;for(let t of we(i,{withFileTypes:!0})){if(!t.isDirectory())continue;let n=I(i,t.name,`.claude-plugin`,`plugin.json`);if(P(n))try{if(JSON.parse(F(n,`utf-8`)).name===e)return{path:I(i,t.name),sourceType:`claude-plugin`}}catch{}}return null}return{resolveInstallPath:t,resolveInstructionPath:n,resolveEpilogueInstructionPath:r,getStepSequence:i,resolveCurrentStepInfo:a,resolveOpenSpecSource:o,resolveClaudePluginSource:s}}function xu(e){function t(){return e.sources?.[0]?.path??process.cwd()}function n(){return e.allRoots?.length?e.allRoots:[t()]}function r(e){return e.map(e=>e.replaceAll(`\\`,`/`))}function i(e){let t=[];try{let n=we(e,{withFileTypes:!0});for(let r of n){if(!r.isDirectory()||r.name.startsWith(`.`))continue;let n=I(e,r.name);P(I(n,`.git`))&&t.push(n)}}catch{}return t}function a(){let e=n(),t=new Set(e);for(let n of e)for(let e of i(n))t.add(e);return[...t]}function o(e){let t=e.replaceAll(`\\`,`/`);if(r(a()).includes(t))return!0;let i=r(n());for(let n of i)if(t.startsWith(`${n}/`)&&P(I(e,`.git`)))return!0;return!1}function s(e){return I(e??t(),`.flows`)}async function c(){let e=a();for(let t of e){let e=s(t);if(P(e))for(let n of we(e,{withFileTypes:!0})){if(!n.isDirectory())continue;let r=I(e,n.name,`meta.json`);if(P(r))try{let e=JSON.parse(F(r,`utf-8`));if(e.status===`active`)return e.primaryRoot?e.primaryRoot:t}catch{}}}return null}async function l(e){return e||(await c()??t())}function u(){let e=t(),i=r(n()),o=a(),s=r(o),c=s.filter(e=>!i.includes(e));return{workspaceRoot:e,allRoots:o,normalizedAllRoots:s,discoveredRepos:c.length>0?c:void 0}}function d(e,t,n){let r=I(s(t),e,`meta.json`),i=F(r,`utf-8`),a=JSON.parse(i);a.roots=n.map(e=>e.replaceAll(`\\`,`/`)),a.primaryRoot=t.replaceAll(`\\`,`/`);let o=`${r}.tmp`;ke(o,JSON.stringify(a,null,2),`utf-8`),Te(o,r)}function f(e,t){let n=I(s(t),e,`meta.json`);if(!P(n))return;let r=F(n,`utf-8`),i=JSON.parse(r),a=i.roots;if(!a||a.length<=1)return;let o=t.replaceAll(`\\`,`/`);for(let t of a){if(t===o)continue;let n=I(t,`.flows`,e);Ce(n,{recursive:!0});let a=I(n,`meta.json`),s=`${a}.tmp`;ke(s,r,`utf-8`),Te(s,a),Ce(I(n,i.artifactsDir??`.spec`),{recursive:!0})}}return{getWorkspaceRoot:t,getAllRoots:a,getFlowsDir:s,isValidFlowRoot:o,resolveFlowRoot:l,resolveRoots:u,patchMetaRoots:d,syncMetaToRoots:f}}const Su={name:`flow-context`,order:40,maxTokens:120,runInBrief:!1,async execute(e){let t=["**Flow Context:** Call `knowledge({ action: 'withdraw', scope: 'flow', profile: 'implementer', budget: 4000 })` as FIRST action for prior context.","Remember decisions: `knowledge({ action: 'remember', title: '...', content: '...', category: 'flow-context', scope: 'flow' })`"];e.completedSteps.length>0&&t.push(`Completed steps: ${e.completedSteps.join(`, `)}`);let n=t.join(`
171
+ `);return{content:n,tokens:Math.ceil(n.length/4)}}};function Cu(e){return{name:`knowledge-recall`,order:20,maxTokens:200,runInBrief:!1,async execute(t){if(!e.store)return null;let n=[t.stepDescription,t.topic].filter(e=>typeof e==`string`&&e.trim().length>0);if(n.length===0)return null;let r=[...n,t.flowName].filter(Boolean).join(` `);if(!r.trim())return null;try{let t=await e.store.search(r,{limit:3});if(!t||t.length===0)return null;let n=t.map(e=>`• ${e.content.slice(0,200)}`).join(`
172
+ `),i=Math.ceil(n.length/4);return{content:`**Recalled Knowledge:**\n${n}`,tokens:Math.min(i,200)}}catch{return null}}}}const wu=[`**Read Code:** Structure → file_summary(). Specific section → compact(path, query).`,`Multiple files → digest(). Cached ref → compact(ref, query?). Repeated file ref → stratum_card(). Edit lines → read_file().`,`NEVER read_file >50 lines to understand. Use search() for discovery.`].join(` `),Tu={name:`token-efficiency`,order:30,maxTokens:80,runInBrief:!1,runOnce:!0,async execute(e){return{content:wu,tokens:25}}},Eu=[`**Tool Routing:** search() not grep_search. file_summary() or compact() not read_file (for understanding).`,`check() not terminal tsc/lint. test_run() not terminal test. trace() for data flow.`,`read_file ONLY for exact lines before editing. symbol() for definition+refs.`].join(` `),Du={name:`tool-routing`,order:10,maxTokens:100,runInBrief:!0,runOnce:!0,async execute(e){return{content:Eu,tokens:30}}};function Ou(e,t){return Promise.race([e,new Promise(e=>setTimeout(()=>e(null),t))])}var ku=class{hooks=[];firedOnce=new Set;sealed=!1;log;constructor(e){this.log=e?.log}seal(){this.sealed=!0}register(e){if(this.sealed){this.log?.warn(`Attempted to register hook "%s" on sealed pipeline`,e.name);return}this.hooks.push(e),this.hooks.sort((e,t)=>e.order-t.order)}get hookCount(){return this.hooks.length}async enrich(e,t,n){let r=this.resolveBudget(t.mode,n),i=new Set(n?.disable??[]),a=this.hooks.filter(e=>!(i.has(e.name)||t.mode===`brief`&&!e.runInBrief||e.runOnce&&this.firedOnce.has(e.name)));if(a.length===0)return e;let o=[],s=0;for(let e of a){if(s>=r){this.log?.debug(`[step-hooks] Budget exhausted (${s}/${r}), skipping remaining hooks`);break}try{let n=await Ou(e.execute(t),5e3);if(!n||n.content.length===0)continue;e.runOnce&&this.firedOnce.add(e.name);let i=n.content.replace(/<\/(step-context|step-hints)>/gi,``);if(i.length===0)continue;let a=this.truncateToTokens(i,e.maxTokens),c=Math.min(n.tokens,e.maxTokens);if(s+c<=r){o.push({content:a,tokens:c}),s+=c;continue}let l=r-s;if(l<=0)break;o.push({content:this.truncateToTokens(a,l),tokens:l}),s=r}catch(t){this.log?.warn(`[step-hooks] Hook "${e.name}" failed: ${t instanceof Error?t.message:String(t)}`)}}if(o.length===0)return e;let c=t.mode===`full`?`<step-context>`:`<step-hints>`,l=t.mode===`full`?`</step-context>`:`</step-hints>`;return`${e}\n\n${c}\n${o.map(e=>e.content).join(`
173
173
 
174
- `)}\n${l}`}resolveBudget(e,t){return e===`full`?t?.tokenBudget?.full??500:t?.tokenBudget?.brief??150}truncateToTokens(e,t){let n=t*4;return e.length<=n?e:`${e.slice(0,n).trimEnd()}…`}};function ku(e={}){let t=new Ou({log:e.log});return t.register(Eu),t.register(Su({store:e.store,graphStore:e.graphStore,embedder:e.embedder})),t.register(wu),t.register(xu),t.seal(),t}const Au=M(`flow-tools`);function ju(e){return Array.isArray(e)?e.filter(e=>typeof e==`string`&&e.trim().length>0):[]}function Mu(e){return{content:[{type:`text`,text:e}]}}function Nu(e){return e instanceof Error?e.message:String(e)}const Pu={before:[],after:[{id:`_docs-sync`,description:`Synchronize project documentation — update docs/ folder based on changes made during the flow.`,position:`after`,skills:[`docs`]}]};function Fu(e,t,n){let r=bu(t),i=yu(r.getWorkspaceRoot),a=ku({store:n?.store,graphStore:n?.graphStore,embedder:n?.embedder,log:Au});function o(){return I(ye(),`flows`,`registry.json`)}function s(){let t=hu(e);return async({content:e,sourceFormat:n,stepName:r,metadata:i})=>{let a=r.charAt(0).toUpperCase()+r.slice(1),o=i?JSON.stringify(i,null,2):void 0,s=`You are converting a flow step definition from "${n}" format to aikit native flow step README.md format.
174
+ `)}\n${l}`}resolveBudget(e,t){return e===`full`?t?.tokenBudget?.full??500:t?.tokenBudget?.brief??150}truncateToTokens(e,t){let n=t*4;return e.length<=n?e:`${e.slice(0,n).trimEnd()}…`}};function Au(e={}){let t=new ku({log:e.log});return t.register(Du),t.register(Cu({store:e.store,graphStore:e.graphStore,embedder:e.embedder})),t.register(Tu),t.register(Su),t.seal(),t}const ju=M(`flow-tools`);function Mu(e){return Array.isArray(e)?e.filter(e=>typeof e==`string`&&e.trim().length>0):[]}function Nu(e){return{content:[{type:`text`,text:e}]}}function Pu(e){return e instanceof Error?e.message:String(e)}const Fu={before:[],after:[{id:`_docs-sync`,description:`Synchronize project documentation — update docs/ folder based on changes made during the flow.`,position:`after`,skills:[`docs`]}]};function Iu(e,t,n){let r=xu(t),i=bu(r.getWorkspaceRoot),a=Au({store:n?.store,graphStore:n?.graphStore,embedder:n?.embedder,log:ju});function o(){return I(ye(),`flows`,`registry.json`)}function s(){let t=gu(e);return async({content:e,sourceFormat:n,stepName:r,metadata:i})=>{let a=r.charAt(0).toUpperCase()+r.slice(1),o=i?JSON.stringify(i,null,2):void 0,s=`You are converting a flow step definition from "${n}" format to aikit native flow step README.md format.
175
175
 
176
176
  Convert the provided content into a well-structured README.md for a flow step named "${r}".
177
177
 
@@ -184,23 +184,23 @@ The output must:
184
184
  6. Preserve ALL tool restrictions, constraints, and requirements from the source
185
185
  7. Be formatted as clean Markdown
186
186
 
187
- Output ONLY the README.md content, nothing else.`;if(t.available)try{let i=(await t.createMessage({prompt:e,systemPrompt:s,context:o?`Step name: ${r}\nSource format: ${n}\nMetadata:\n${o}`:`Step name: ${r}\nSource format: ${n}`,maxTokens:4096,modelPreferences:{intelligencePriority:.8,speedPriority:.4,costPriority:.2}})).text.trim();if(i.length>0)return i}catch(e){Au.debug(`Flow transform sampling failed; using fallback formatting`,{error:Nu(e),sourceFormat:n,stepName:r})}let c=typeof i?.description==`string`&&i.description.trim().length>0?i.description.trim():null,l=ju(i?.produces),u=ju(i?.requires);return[`# ${a}`,``,`## Purpose`,``,c??`${a} step.`,``,`## Instructions`,``,e.trim(),``,`## Artifacts`,``,...l.length>0?l.map(e=>`- ${e}`):[`- ${r}.md`],...u.length>0?[``,`## Prerequisites`,``,...u.map(e=>`- ${e}`)]:[],``].join(`
187
+ Output ONLY the README.md content, nothing else.`;if(t.available)try{let i=(await t.createMessage({prompt:e,systemPrompt:s,context:o?`Step name: ${r}\nSource format: ${n}\nMetadata:\n${o}`:`Step name: ${r}\nSource format: ${n}`,maxTokens:4096,modelPreferences:{intelligencePriority:.8,speedPriority:.4,costPriority:.2}})).text.trim();if(i.length>0)return i}catch(e){ju.debug(`Flow transform sampling failed; using fallback formatting`,{error:Pu(e),sourceFormat:n,stepName:r})}let c=typeof i?.description==`string`&&i.description.trim().length>0?i.description.trim():null,l=Mu(i?.produces),u=Mu(i?.requires);return[`# ${a}`,``,`## Purpose`,``,c??`${a} step.`,``,`## Instructions`,``,e.trim(),``,`## Artifacts`,``,...l.length>0?l.map(e=>`- ${e}`):[`- ${r}.md`],...u.length>0?[``,`## Prerequisites`,``,...u.map(e=>`- ${e}`)]:[],``].join(`
188
188
  `).trimEnd().concat(`
189
- `)}}async function c(e){let{FlowRegistryManager:n,FlowStateMachine:i,FlowLoader:a,GitInstaller:s}=await import(`../../flows/dist/index.js`),c=I(t.stateDir??``,`flows`,`installed`);return{registry:new n(o()),stateMachine:new i(r.getFlowsDir(e),Pu),loader:new a,installer:new s(c)}}return{server:e,config:t,log:Au,toTextResponse:Mu,toErrorText:Nu,createFlowTransform:s,getFlows:c,stepPipeline:a,stateDir:t.stateDir??``,...r,...i}}var Iu=class extends Error{code;constructor(e,t){super(t),this.code=e,this.name=`FlowError`}};function Lu(e){return e instanceof Iu}async function Ru(e){let{entry:t,stepId:n,runDir:r,slug:i,primaryRoot:a,roots:o,activeRoot:s,resolveInstructionPath:c,resolveEpilogueInstructionPath:l}=e;if(!n)return null;try{let e=t.manifest.steps.find(e=>e.id===n||e.name===n),u;if(e)u=await In(c(t,e.instruction,s),`utf-8`);else{let e=l(n,s);if(!e)return null;u=await In(e,`utf-8`)}let d=I(r,t.manifest.artifacts_dir).replaceAll(`\\`,`/`),f=r.replaceAll(`\\`,`/`);u=u.replaceAll(`{{artifacts_path}}`,d).replaceAll(`{{run_dir}}`,f).replaceAll(`{{workspace_root}}`,(a??s).replaceAll(`\\`,`/`)).replaceAll(`{{all_roots}}`,JSON.stringify(o??[s.replaceAll(`\\`,`/`)],null,2));for(let e of[`spec-driven`])u=u.replaceAll(`${e}/${i}/`,`${d}/`);return u}catch{return null}}async function zu(e,t){let{getFlows:n,log:r,resolveEpilogueInstructionPath:i,resolveFlowRoot:a,resolveInstructionPath:o,stepPipeline:s,toErrorText:c,toTextResponse:l}=t,{step:u}=e;try{let e=await a(),{registry:t,stateMachine:r}=await n(e),c=r.getStatus();if(!c.success||!c.data)throw new Iu(`NO_ACTIVE_FLOW`,`No active flow. Use flow({ action: "start", name: "<flow>" }) to begin one, or flow({ action: "list" }) to see available flows.`);let d=c.data,f=t.get(d.flow);if(!f)throw new Iu(`FLOW_NOT_FOUND`,`Flow "${d.flow}" not found in registry.`);let p=u??d.currentStep;if(!p)throw new Iu(`STEP_OUT_OF_RANGE`,`No current step is available for the active flow.`);let m=await Ru({entry:f,stepId:p,runDir:d.runDir,slug:d.slug,primaryRoot:d.primaryRoot,roots:d.roots,activeRoot:e,resolveInstructionPath:o,resolveEpilogueInstructionPath:i});if(!m)throw new Iu(`STEP_OUT_OF_RANGE`,`Step "${p}" not found in flow "${d.flow}".`);let h=f.manifest.steps.find(e=>e.id===p||e.name===p),g=I(d.runDir,f.manifest.artifacts_dir).replaceAll(`\\`,`/`),_={stepId:p,flowName:d.flow,flowSlug:d.slug,phase:d.phase??`flow`,runDir:d.runDir,artifactsPath:g,completedSteps:d.completedSteps??[],stepDescription:h?.description,agents:h?.agents??[],mode:`full`,topic:d.topic??``,activeRoot:e};return l(await s.enrich(m,_,f.manifest.hooks))}catch(e){return Lu(e)?l(e.message):(r.error(`flow action read failed`,N(e)),e instanceof Error&&`code`in e&&e.code===`ENOENT`?l(`Could not read instruction file: ${e.message}`):l(`Error: ${c(e)}`))}}async function Bu(e,t){let{registry:n,loader:r,installer:i}=await e.getFlows(),a=e.createFlowTransform(),o=L(t.source);if(!P(o))return e.toTextResponse(`Source path no longer exists: ${o}`);let s=`${t.installPath}.updating`,c=`${t.installPath}.backup`;P(s)&&Ee(s,{recursive:!0,force:!0}),P(c)&&Ee(c,{recursive:!0,force:!0});let l=i.copyLocal(o,Ae(s));if(!l.success||!l.data)return e.toTextResponse(`Failed to copy flow: ${l.error}`);let u=await r.load(s,{forceAssetSync:!0,transform:a});if(!u.success||!u.data)return i.remove(s),e.toTextResponse(`Failed to load flow manifest: ${u.error}`);let d=!1;try{Te(t.installPath,c),Te(s,t.installPath);let e=await r.load(t.installPath,{forceAssetSync:!0,transform:a});if(!e.success||!e.data)throw Error(`Failed to load flow manifest: ${e.error}`);let o=e.data.manifest,l=e.data.format,u=n.register({...t,version:o.version,format:l,installPath:t.installPath,manifest:o,updatedAt:new Date().toISOString()});if(!u.success)throw Error(`Failed to refresh flow registry entry: ${u.error}`);if(d=!0,o.install.length>0){let e=i.runInstallDeps(o.install);if(!e.success)throw Error(`Dependency install failed: ${e.error}`)}Ee(c,{recursive:!0,force:!0})}catch(r){return P(s)&&Ee(s,{recursive:!0,force:!0}),P(c)&&(P(t.installPath)&&Ee(t.installPath,{recursive:!0,force:!0}),Te(c,t.installPath)),d&&n.register(t),e.toTextResponse(e.toErrorText(r))}return e.toTextResponse(`Flow "${t.name}" updated from ${t.sourceType} source successfully.`)}async function Vu(e,t){let{registry:n,loader:r}=await e.getFlows(),i=e.createFlowTransform();try{Un(`npm update -g @fission-ai/openspec`,{encoding:`utf-8`,stdio:`pipe`})}catch(t){return e.toTextResponse(`npm update failed: ${e.toErrorText(t)}`)}let a=e.resolveOpenSpecSource(),o=await r.load(a.path,{forceAssetSync:!0,transform:i}),s=o.success&&o.data?o.data.manifest:null,c=o.success&&o.data?o.data.format:t.format;if(s){let r=n.register({...t,version:s.version,format:c,installPath:a.path,manifest:s,updatedAt:new Date().toISOString()});if(!r.success)return e.toTextResponse(`Failed to refresh flow registry entry: ${r.error}`)}return e.toTextResponse(`Flow "${t.name}" updated via npm successfully.`)}async function Hu(e,t){let{registry:n,loader:r,installer:i}=await e.getFlows(),a=e.createFlowTransform(),o=i.update(t.installPath);if(!o.success)return e.toTextResponse(`Update failed: ${o.error}`);let s=await r.load(t.installPath,{forceAssetSync:!0,transform:a}),c=s.success&&s.data?s.data.manifest:null,l=s.success&&s.data?s.data.format:t.format;if(c){let r=i.getLocalCommit(t.installPath),a=n.register({...t,version:c.version,format:l,manifest:c,updatedAt:new Date().toISOString(),...r?{commitSha:r}:{}});if(!a.success)return e.toTextResponse(`Failed to refresh flow registry entry: ${a.error}`)}let u=c?.install??t.manifest.install;if(u.length>0){let t=i.runInstallDeps(u);if(!t.success)return e.toTextResponse(`Dependency install failed: ${t.error}`)}return e.toTextResponse(`Flow "${t.name}" updated successfully.`)}async function Uu(e,t){let{createFlowTransform:n,getFlows:r,log:i,resolveClaudePluginSource:a,resolveOpenSpecSource:o,toErrorText:s,toTextResponse:c}=t,{source:l,name:u,token:d}=e;try{let{registry:e,loader:t,installer:i}=await r(),s=n(),f=l===`openspec`||l.startsWith(`openspec:`),p,m=l,h;if(f){let e=o();m=e.path,p=e.sourceType}let g=f?null:a(m);g&&(m=g.path,p=g.sourceType);let _=/^https?:\/\/|^git@/.test(m),v;if(_){let e=i.clone(m,d);if(!e.success||!e.data)return c(`Failed to clone flow: ${e.error}`);v=e.data}else{let e=L(m);h=e;let t=u||Ae(e)||`custom-flow`,n=i.copyLocal(e,t);if(!n.success||!n.data)return c(`Failed to copy flow: ${n.error}`);v=n.data}let y=await t.load(v,{forceAssetSync:!0,transform:s});if(!y.success||!y.data)return i.remove(v),c(`Failed to load flow manifest: ${y.error}`);let{manifest:b,format:x}=y.data,S=u||b.name,C=p??(_?`git`:`local`);if(e.has(S))return i.remove(v),c(`Flow "${S}" is already installed. Use flow({ action: "update", name: "${S}" }) to update it, or flow({ action: "remove", name: "${S}" }) then flow({ action: "add", source: "..." }) to replace.`);if(b.install.length>0){let e=i.runInstallDeps(b.install);if(!e.success)return i.remove(v),c(`Dependency install failed: ${e.error}`)}let w=new Date().toISOString(),T=_?i.getLocalCommit(v):void 0,E=e.register({name:S,version:b.version,source:C===`local`||C===`claude-plugin`?h??l:l,sourceType:C,installPath:v,format:x,registeredAt:w,updatedAt:w,manifest:b,...T?{commitSha:T}:{}});if(!E.success)return i.remove(v),c(`Failed to register flow: ${E.error}`);let D=b.steps.length;return c(`Flow "${S}" installed successfully (${D} steps). Use flow({ action: "start", name: "${S}" }) to begin.`)}catch(e){return i.error(`flow action add failed`,N(e)),c(`Error: ${s(e)}`)}}async function Wu(e,t){let{getFlows:n,log:r,toErrorText:i,toTextResponse:a}=t,{name:o}=e;try{let{registry:e,installer:t}=await n();if(!e.has(o))return a(`Flow "${o}" is not installed.`);let r=e.get(o);if(!r)return a(`Flow "${o}" is not installed.`);if(r.sourceType===`builtin`)return a(`Cannot remove builtin flow "${o}".`);let i=t.remove(r.installPath);if(!i.success)return a(`Failed to remove flow files: ${i.error}`);let s=e.unregister(o);return s.success?a(`Flow "${o}" removed successfully.`):a(`Failed to unregister flow: ${s.error}`)}catch(e){return r.error(`flow action remove failed`,N(e)),a(`Error: ${i(e)}`)}}async function Gu(e,t){let{getFlows:n,log:r,toErrorText:i,toTextResponse:a}=t,{name:o}=e,s={createFlowTransform:t.createFlowTransform,getFlows:t.getFlows,resolveOpenSpecSource:t.resolveOpenSpecSource,toErrorText:t.toErrorText,toTextResponse:t.toTextResponse};try{let{registry:e}=await n();if(!e.has(o))return a(`Flow "${o}" is not installed.`);let t=e.get(o);return!t||t.sourceType!==`git`&&t.sourceType!==`npm-global`&&t.sourceType!==`local`&&t.sourceType!==`claude-plugin`?a(`Flow "${o}" was not installed from git, npm, or a local source — cannot update. Remove and re-add instead.`):t.sourceType===`local`||t.sourceType===`claude-plugin`?Bu(s,t):t.sourceType===`npm-global`?Vu(s,t):Hu(s,t)}catch(e){return r.error(`flow action update failed`,N(e)),a(`Error: ${i(e)}`)}}const Ku=`IMPORTANT: Start/status/step only include a brief. Call flow({ action: "read" }) before executing this flow step.`,qu=1200,Ju=/artifact|output contract|gate|completion criteria|deliverable|must|do not|forbidden/i;function Yu(){return{artifactsPath:null,currentStepInstruction:null,currentStepDescription:null,currentStepContent:null,currentStepBrief:null,currentStepPins:null,stepSequence:[]}}function Xu(e){if(e.length<=qu)return e;let t=e.slice(0,qu-1),n=Math.max(t.lastIndexOf(`
190
- `),t.lastIndexOf(` `),t.lastIndexOf(` `));return`${(n>=Math.floor(t.length*.6)?t.slice(0,n):t).trimEnd()}…`}function Zu(e){if(!e?.trim())return{brief:null,pins:null};let t=/^##\s+/m.exec(e),n=(t?e.slice(0,t.index):e).trim(),r=null;if(n){let e=n.split(/\n\s*\n/).filter(e=>e.trim().length>0),t=(e[0]?.startsWith(`#`)&&e[1]?e.slice(0,2):e.slice(0,1)).join(`
189
+ `)}}async function c(e){let{FlowRegistryManager:n,FlowStateMachine:i,FlowLoader:a,GitInstaller:s}=await import(`../../flows/dist/index.js`),c=I(t.stateDir??``,`flows`,`installed`);return{registry:new n(o()),stateMachine:new i(r.getFlowsDir(e),Fu),loader:new a,installer:new s(c)}}return{server:e,config:t,log:ju,toTextResponse:Nu,toErrorText:Pu,createFlowTransform:s,getFlows:c,stepPipeline:a,stateDir:t.stateDir??``,...r,...i}}var Lu=class extends Error{code;constructor(e,t){super(t),this.code=e,this.name=`FlowError`}};function Ru(e){return e instanceof Lu}async function zu(e){let{entry:t,stepId:n,runDir:r,slug:i,primaryRoot:a,roots:o,activeRoot:s,resolveInstructionPath:c,resolveEpilogueInstructionPath:l}=e;if(!n)return null;try{let e=t.manifest.steps.find(e=>e.id===n||e.name===n),u;if(e)u=await In(c(t,e.instruction,s),`utf-8`);else{let e=l(n,s);if(!e)return null;u=await In(e,`utf-8`)}let d=I(r,t.manifest.artifacts_dir).replaceAll(`\\`,`/`),f=r.replaceAll(`\\`,`/`);u=u.replaceAll(`{{artifacts_path}}`,d).replaceAll(`{{run_dir}}`,f).replaceAll(`{{workspace_root}}`,(a??s).replaceAll(`\\`,`/`)).replaceAll(`{{all_roots}}`,JSON.stringify(o??[s.replaceAll(`\\`,`/`)],null,2));for(let e of[`spec-driven`])u=u.replaceAll(`${e}/${i}/`,`${d}/`);return u}catch{return null}}async function Bu(e,t){let{getFlows:n,log:r,resolveEpilogueInstructionPath:i,resolveFlowRoot:a,resolveInstructionPath:o,stepPipeline:s,toErrorText:c,toTextResponse:l}=t,{step:u}=e;try{let e=await a(),{registry:t,stateMachine:r}=await n(e),c=r.getStatus();if(!c.success||!c.data)throw new Lu(`NO_ACTIVE_FLOW`,`No active flow. Use flow({ action: "start", name: "<flow>" }) to begin one, or flow({ action: "list" }) to see available flows.`);let d=c.data,f=t.get(d.flow);if(!f)throw new Lu(`FLOW_NOT_FOUND`,`Flow "${d.flow}" not found in registry.`);let p=u??d.currentStep;if(!p)throw new Lu(`STEP_OUT_OF_RANGE`,`No current step is available for the active flow.`);let m=await zu({entry:f,stepId:p,runDir:d.runDir,slug:d.slug,primaryRoot:d.primaryRoot,roots:d.roots,activeRoot:e,resolveInstructionPath:o,resolveEpilogueInstructionPath:i});if(!m)throw new Lu(`STEP_OUT_OF_RANGE`,`Step "${p}" not found in flow "${d.flow}".`);let h=f.manifest.steps.find(e=>e.id===p||e.name===p),g=I(d.runDir,f.manifest.artifacts_dir).replaceAll(`\\`,`/`),_={stepId:p,flowName:d.flow,flowSlug:d.slug,phase:d.phase??`flow`,runDir:d.runDir,artifactsPath:g,completedSteps:d.completedSteps??[],stepDescription:h?.description,agents:h?.agents??[],mode:`full`,topic:d.topic??``,activeRoot:e};return l(await s.enrich(m,_,f.manifest.hooks))}catch(e){return Ru(e)?l(e.message):(r.error(`flow action read failed`,N(e)),e instanceof Error&&`code`in e&&e.code===`ENOENT`?l(`Could not read instruction file: ${e.message}`):l(`Error: ${c(e)}`))}}async function Vu(e,t){let{registry:n,loader:r,installer:i}=await e.getFlows(),a=e.createFlowTransform(),o=L(t.source);if(!P(o))return e.toTextResponse(`Source path no longer exists: ${o}`);let s=`${t.installPath}.updating`,c=`${t.installPath}.backup`;P(s)&&Ee(s,{recursive:!0,force:!0}),P(c)&&Ee(c,{recursive:!0,force:!0});let l=i.copyLocal(o,Ae(s));if(!l.success||!l.data)return e.toTextResponse(`Failed to copy flow: ${l.error}`);let u=await r.load(s,{forceAssetSync:!0,transform:a});if(!u.success||!u.data)return i.remove(s),e.toTextResponse(`Failed to load flow manifest: ${u.error}`);let d=!1;try{Te(t.installPath,c),Te(s,t.installPath);let e=await r.load(t.installPath,{forceAssetSync:!0,transform:a});if(!e.success||!e.data)throw Error(`Failed to load flow manifest: ${e.error}`);let o=e.data.manifest,l=e.data.format,u=n.register({...t,version:o.version,format:l,installPath:t.installPath,manifest:o,updatedAt:new Date().toISOString()});if(!u.success)throw Error(`Failed to refresh flow registry entry: ${u.error}`);if(d=!0,o.install.length>0){let e=i.runInstallDeps(o.install);if(!e.success)throw Error(`Dependency install failed: ${e.error}`)}Ee(c,{recursive:!0,force:!0})}catch(r){return P(s)&&Ee(s,{recursive:!0,force:!0}),P(c)&&(P(t.installPath)&&Ee(t.installPath,{recursive:!0,force:!0}),Te(c,t.installPath)),d&&n.register(t),e.toTextResponse(e.toErrorText(r))}return e.toTextResponse(`Flow "${t.name}" updated from ${t.sourceType} source successfully.`)}async function Hu(e,t){let{registry:n,loader:r}=await e.getFlows(),i=e.createFlowTransform();try{Un(`npm update -g @fission-ai/openspec`,{encoding:`utf-8`,stdio:`pipe`})}catch(t){return e.toTextResponse(`npm update failed: ${e.toErrorText(t)}`)}let a=e.resolveOpenSpecSource(),o=await r.load(a.path,{forceAssetSync:!0,transform:i}),s=o.success&&o.data?o.data.manifest:null,c=o.success&&o.data?o.data.format:t.format;if(s){let r=n.register({...t,version:s.version,format:c,installPath:a.path,manifest:s,updatedAt:new Date().toISOString()});if(!r.success)return e.toTextResponse(`Failed to refresh flow registry entry: ${r.error}`)}return e.toTextResponse(`Flow "${t.name}" updated via npm successfully.`)}async function Uu(e,t){let{registry:n,loader:r,installer:i}=await e.getFlows(),a=e.createFlowTransform(),o=i.update(t.installPath);if(!o.success)return e.toTextResponse(`Update failed: ${o.error}`);let s=await r.load(t.installPath,{forceAssetSync:!0,transform:a}),c=s.success&&s.data?s.data.manifest:null,l=s.success&&s.data?s.data.format:t.format;if(c){let r=i.getLocalCommit(t.installPath),a=n.register({...t,version:c.version,format:l,manifest:c,updatedAt:new Date().toISOString(),...r?{commitSha:r}:{}});if(!a.success)return e.toTextResponse(`Failed to refresh flow registry entry: ${a.error}`)}let u=c?.install??t.manifest.install;if(u.length>0){let t=i.runInstallDeps(u);if(!t.success)return e.toTextResponse(`Dependency install failed: ${t.error}`)}return e.toTextResponse(`Flow "${t.name}" updated successfully.`)}async function Wu(e,t){let{createFlowTransform:n,getFlows:r,log:i,resolveClaudePluginSource:a,resolveOpenSpecSource:o,toErrorText:s,toTextResponse:c}=t,{source:l,name:u,token:d}=e;try{let{registry:e,loader:t,installer:i}=await r(),s=n(),f=l===`openspec`||l.startsWith(`openspec:`),p,m=l,h;if(f){let e=o();m=e.path,p=e.sourceType}let g=f?null:a(m);g&&(m=g.path,p=g.sourceType);let _=/^https?:\/\/|^git@/.test(m),v;if(_){let e=i.clone(m,d);if(!e.success||!e.data)return c(`Failed to clone flow: ${e.error}`);v=e.data}else{let e=L(m);h=e;let t=u||Ae(e)||`custom-flow`,n=i.copyLocal(e,t);if(!n.success||!n.data)return c(`Failed to copy flow: ${n.error}`);v=n.data}let y=await t.load(v,{forceAssetSync:!0,transform:s});if(!y.success||!y.data)return i.remove(v),c(`Failed to load flow manifest: ${y.error}`);let{manifest:b,format:x}=y.data,S=u||b.name,C=p??(_?`git`:`local`);if(e.has(S))return i.remove(v),c(`Flow "${S}" is already installed. Use flow({ action: "update", name: "${S}" }) to update it, or flow({ action: "remove", name: "${S}" }) then flow({ action: "add", source: "..." }) to replace.`);if(b.install.length>0){let e=i.runInstallDeps(b.install);if(!e.success)return i.remove(v),c(`Dependency install failed: ${e.error}`)}let w=new Date().toISOString(),T=_?i.getLocalCommit(v):void 0,E=e.register({name:S,version:b.version,source:C===`local`||C===`claude-plugin`?h??l:l,sourceType:C,installPath:v,format:x,registeredAt:w,updatedAt:w,manifest:b,...T?{commitSha:T}:{}});if(!E.success)return i.remove(v),c(`Failed to register flow: ${E.error}`);let D=b.steps.length;return c(`Flow "${S}" installed successfully (${D} steps). Use flow({ action: "start", name: "${S}" }) to begin.`)}catch(e){return i.error(`flow action add failed`,N(e)),c(`Error: ${s(e)}`)}}async function Gu(e,t){let{getFlows:n,log:r,toErrorText:i,toTextResponse:a}=t,{name:o}=e;try{let{registry:e,installer:t}=await n();if(!e.has(o))return a(`Flow "${o}" is not installed.`);let r=e.get(o);if(!r)return a(`Flow "${o}" is not installed.`);if(r.sourceType===`builtin`)return a(`Cannot remove builtin flow "${o}".`);let i=t.remove(r.installPath);if(!i.success)return a(`Failed to remove flow files: ${i.error}`);let s=e.unregister(o);return s.success?a(`Flow "${o}" removed successfully.`):a(`Failed to unregister flow: ${s.error}`)}catch(e){return r.error(`flow action remove failed`,N(e)),a(`Error: ${i(e)}`)}}async function Ku(e,t){let{getFlows:n,log:r,toErrorText:i,toTextResponse:a}=t,{name:o}=e,s={createFlowTransform:t.createFlowTransform,getFlows:t.getFlows,resolveOpenSpecSource:t.resolveOpenSpecSource,toErrorText:t.toErrorText,toTextResponse:t.toTextResponse};try{let{registry:e}=await n();if(!e.has(o))return a(`Flow "${o}" is not installed.`);let t=e.get(o);return!t||t.sourceType!==`git`&&t.sourceType!==`npm-global`&&t.sourceType!==`local`&&t.sourceType!==`claude-plugin`?a(`Flow "${o}" was not installed from git, npm, or a local source — cannot update. Remove and re-add instead.`):t.sourceType===`local`||t.sourceType===`claude-plugin`?Vu(s,t):t.sourceType===`npm-global`?Hu(s,t):Uu(s,t)}catch(e){return r.error(`flow action update failed`,N(e)),a(`Error: ${i(e)}`)}}const qu=`IMPORTANT: Start/status/step only include a brief. Call flow({ action: "read" }) before executing this flow step.`,Ju=1200,Yu=/artifact|output contract|gate|completion criteria|deliverable|must|do not|forbidden/i;function Xu(){return{artifactsPath:null,currentStepInstruction:null,currentStepDescription:null,currentStepContent:null,currentStepBrief:null,currentStepPins:null,stepSequence:[]}}function Zu(e){if(e.length<=Ju)return e;let t=e.slice(0,Ju-1),n=Math.max(t.lastIndexOf(`
190
+ `),t.lastIndexOf(` `),t.lastIndexOf(` `));return`${(n>=Math.floor(t.length*.6)?t.slice(0,n):t).trimEnd()}…`}function Qu(e){if(!e?.trim())return{brief:null,pins:null};let t=/^##\s+/m.exec(e),n=(t?e.slice(0,t.index):e).trim(),r=null;if(n){let e=n.split(/\n\s*\n/).filter(e=>e.trim().length>0),t=(e[0]?.startsWith(`#`)&&e[1]?e.slice(0,2):e.slice(0,1)).join(`
191
191
 
192
- `).trim();r=t?Xu(t):null}let i=Array.from(e.matchAll(/^##\s+.*$/gm)),a=[];for(let[t,n]of i.entries()){let r=n[0];if(!Ju.test(r))continue;let o=n.index??0,s=i[t+1]?.index??e.length;a.push(e.slice(o,s).replace(/\s+$/,``))}return{brief:r,pins:a.length>0?a.join(`
192
+ `).trim();r=t?Zu(t):null}let i=Array.from(e.matchAll(/^##\s+.*$/gm)),a=[];for(let[t,n]of i.entries()){let r=n[0];if(!Yu.test(r))continue;let o=n.index??0,s=i[t+1]?.index??e.length;a.push(e.slice(o,s).replace(/\s+$/,``))}return{brief:r,pins:a.length>0?a.join(`
193
193
 
194
- `):null}}function Qu(e,t){return t(e)}async function $u(e){let{context:t,entry:n,state:r,activeRoot:i,primaryRoot:a,roots:o}=e,{instructionPath:s,description:c}=t.resolveCurrentStepInfo(n,r.currentStep,i),l=Qu(n,t.getStepSequence),u=await Ru({entry:n,stepId:r.currentStep,runDir:r.runDir,slug:r.slug,primaryRoot:a,roots:o,activeRoot:i,resolveInstructionPath:t.resolveInstructionPath,resolveEpilogueInstructionPath:t.resolveEpilogueInstructionPath}),{brief:d,pins:f}=Zu(u),p=d;if(d&&r.currentStep){let e=n.manifest.steps.find(e=>e.id===r.currentStep),a={stepId:r.currentStep,flowName:r.flow,flowSlug:r.slug,phase:`flow`,runDir:r.runDir,artifactsPath:I(r.runDir,n.manifest.artifacts_dir).replaceAll(`\\`,`/`),completedSteps:r.completedSteps??[],stepDescription:e?.description??c??void 0,agents:e?.agents??[],mode:`brief`,topic:r.topic??``,activeRoot:i};p=await t.stepPipeline.enrich(d,a,n.manifest.hooks)}return{artifactsPath:I(r.runDir,n.manifest.artifacts_dir).replaceAll(`\\`,`/`),currentStepInstruction:s,currentStepDescription:c,currentStepContent:u,currentStepBrief:p,currentStepPins:f,stepSequence:l}}function ed(e){let{state:t,data:n,started:r,includeStatus:i,action:a,includeInstructionPath:o}=e,s={};return r&&(s.started=!0),s.flow=t.flow,t.flowOrigin&&(s.flowOrigin=t.flowOrigin),i&&(s.status=t.status),a&&(s.action=a),s.slug=t.slug,s.topic=t.topic,s.runDir=t.runDir,s.artifactsPath=n.artifactsPath,s.currentStep=t.currentStep,s.currentStepInstruction=n.currentStepInstruction,o&&(s.instructionPath=n.currentStepInstruction),s.currentStepDescription=n.currentStepDescription,s.currentStepContent=null,s.currentStepBrief=n.currentStepBrief,s.currentStepPins=n.currentStepPins,s.fullContentHint=`Call flow({ action: 'read' }) for the complete step instructions.`,s}function td(e){return e.sourceType===`local`?{source:`local`,sourceType:e.sourceType,format:e.format,...e.commitSha?{commitSha:e.commitSha}:{}}:{source:e.source,sourceType:e.sourceType,format:e.format,...e.commitSha?{commitSha:e.commitSha}:{}}}async function nd(e,t){let{getAllRoots:n,getFlows:r,getWorkspaceRoot:i,isValidFlowRoot:a,log:o,patchMetaRoots:s,stateDir:c,toErrorText:l,toTextResponse:u}=t,{flow:d,topic:f,roots:p}=e;try{if(p&&p.length>0){let e=n().map(e=>e.replaceAll(`\\`,`/`)),t=p.filter(e=>!a(e));if(t.length>0)return u(`Invalid roots — not part of the workspace or a recognized sub-repository: ${t.join(`, `)}. Available roots: ${e.join(`, `)}`)}let e=n(),o=e.map(e=>e.replaceAll(`\\`,`/`)),l=i(),m=e.length>1,h=!p&&m,g=p?.[0]??l,{registry:_,stateMachine:v}=await r(g),y=_.get(d);if(!y)throw new Iu(`UNKNOWN_FLOW`,`Flow "${d}" not found. Use flow({ action: "list" }) to see available flows.`);let b=v.start(y.name,y.manifest,f,td(y));if(!b.success||!b.data){let e=b.error??`Unknown flow start error.`;return e.includes(`already active`)?u(`Cannot start: ${new Iu(`FLOW_ALREADY_ACTIVE`,e).message}`):u(`Cannot start: ${e}`)}let x=b.data;if(p&&p.length>1)try{s(x.slug,g,p),t.syncMetaToRoots(x.slug,g)}catch(e){return v.reset(),u(`Flow created but failed to sync to secondary roots — rolled back. Error: ${e instanceof Error?e.message:String(e)}`)}let S=I(c,`flow-context`),C=typeof Ln==`function`?await Ln(S).catch(()=>[]):[];for(let e of C)e!==x.slug&&typeof Rn==`function`&&await Rn(I(S,e),{recursive:!0,force:!0}).catch(()=>{});if(typeof Fn==`function`)try{await Fn(I(S,x.slug),{recursive:!0})}catch{}let w=await $u({context:t,entry:y,state:x,activeRoot:g,primaryRoot:null,roots:p??null}),T={...ed({state:x,data:w,started:!0}),phase:x.phase,isEpilogue:x.isEpilogue,totalSteps:w.stepSequence.length,stepSequence:w.stepSequence,artifactsDir:y.manifest.artifacts_dir,roots:p??[g.replaceAll(`\\`,`/`)],_hint:Ku,...h?{multiRootWarning:`No roots specified in multi-root workspace. Flow created at workspace root. Pass roots parameter with target repo for precise placement.`,availableRoots:o}:{}};return u(JSON.stringify(T,null,2))}catch(e){return Lu(e)?u(e.message):(o.error(`flow action start failed`,N(e)),u(`Error: ${l(e)}`))}}async function rd(e){let{getFlows:t,log:n,resolveFlowRoot:r,resolveRoots:i,toErrorText:a,toTextResponse:o}=e;try{let n=await r(),{registry:a,stateMachine:s}=await t(n),c=s.getStatus();if(!c.success||!c.data)throw new Iu(`NO_ACTIVE_FLOW`,`No active flow. Use flow({ action: "start", name: "<flow>" }) to begin one, or flow({ action: "list" }) to see available flows.`);let l=c.data,u=a.get(l.flow),d=u?await $u({context:e,entry:u,state:l,activeRoot:n,primaryRoot:l.primaryRoot,roots:l.roots}):Yu(),f={...ed({state:l,data:d,includeStatus:!0,includeInstructionPath:!0}),_hint:l.currentStep?Ku:void 0,phase:l.phase,isEpilogue:l.isEpilogue,completedSteps:l.completedSteps,skippedSteps:l.skippedSteps,artifacts:l.artifacts,startedAt:l.startedAt,updatedAt:l.updatedAt,totalSteps:d.stepSequence.length,progress:u?`${l.completedSteps.length+l.skippedSteps.length}/${d.stepSequence.length}`:`unknown`,workspaceRoot:n.replaceAll(`\\`,`/`),primaryRoot:(l.primaryRoot??n).replaceAll(`\\`,`/`),roots:l.roots??[n.replaceAll(`\\`,`/`)],allRoots:i().normalizedAllRoots,discoveredRepos:i().discoveredRepos};return o(JSON.stringify(f,null,2))}catch(e){return Lu(e)?o(e.message):(n.error(`flow action status failed`,N(e)),o(`Error: ${a(e)}`))}}async function id(e){let{getFlows:t,log:n,resolveFlowRoot:r,stateDir:i,syncMetaToRoots:a,toErrorText:o,toTextResponse:s}=e;try{let e=await r(),{stateMachine:n}=await t(e),o=n.getStatus(),c=n.reset();if(!c.success)return s(`Reset failed: ${c.error}`);if(o.success&&o.data&&a(o.data.slug,e),o.success&&o.data?.slug)try{await Rn(I(i,`flow-context`,o.data.slug),{recursive:!0,force:!0})}catch{}return s(`Flow abandoned. Use flow({ action: "start", name: "<flow>" }) to begin a new flow.`)}catch(e){return n.error(`flow action reset failed`,N(e)),s(`Error: ${o(e)}`)}}async function ad(e,t){let{getFlows:n,log:r,resolveFlowRoot:i,syncMetaToRoots:a,toErrorText:o,toTextResponse:s}=t,{action:c}=e;try{let e=await i(),{registry:r,stateMachine:o}=await n(e),l=o.getStatus();if(!l.success||!l.data)throw new Iu(`NO_ACTIVE_FLOW`,`No active flow. Use flow({ action: "start", name: "<flow>" }) first.`);let u=r.get(l.data.flow);if(!u)throw new Iu(`FLOW_NOT_FOUND`,`Flow "${l.data.flow}" not found in registry.`);let d=o.step(c,u.manifest);if(!d.success||!d.data)return s(`Cannot ${c}: ${d.error}`);a(d.data.slug,e);let f=d.data,p=[];if(f.status===`completed`){let e=I(t.stateDir,`flow-context`,f.slug);for(let t of[`decision`,`pattern`]){let n=I(e,t);try{let e=await Ln(n);for(let r of e){if(!r.endsWith(`.md`))continue;let e=await In(I(n,r),`utf-8`);e.length>100&&p.push({type:t,title:r.replace(/\.md$/,``).replace(/-/g,` `),content:e.length>500?`${e.slice(0,497)}...`:e})}}catch{}}typeof Rn==`function`&&await Rn(e,{recursive:!0,force:!0}).catch(()=>{})}let m=await $u({context:t,entry:u,state:f,activeRoot:e,primaryRoot:f.primaryRoot,roots:f.roots}),h={...ed({state:f,data:m,includeStatus:!0,action:c}),_hint:f.currentStep?Ku:void 0,phase:f.phase,isEpilogue:f.isEpilogue,completedSteps:f.completedSteps,skippedSteps:f.skippedSteps,totalSteps:m.stepSequence.length,remaining:m.stepSequence.filter(e=>!f.completedSteps.includes(e)&&!f.skippedSteps.includes(e)&&e!==f.currentStep),...p.length>0?{promotionCandidates:p}:{}};return s(JSON.stringify(h,null,2))}catch(e){return Lu(e)?s(e.message):(r.error(`flow action step failed`,N(e)),s(`Error: ${o(e)}`))}}async function od(e){let{getFlows:t,log:n,resolveFlowRoot:r,resolveRoots:i,toErrorText:a,toTextResponse:o}=e;try{let{registry:e,stateMachine:n,installer:a}=await t(await r()),s=e.list(),c=n.getStatus(),l={flows:s.map(e=>{let t={name:e.name,version:e.version,source:e.source,sourceType:e.sourceType,format:e.format,steps:e.manifest.steps.map(e=>e.id)};if(e.sourceType===`git`&&e.commitSha){let n=a.hasUpdates(e.installPath);return{...t,commitSha:e.commitSha,updateAvailable:n.success&&n.data?n.data.hasUpdates:void 0}}return t}),activeFlow:c.success&&c.data?{flow:c.data.flow,flowOrigin:c.data.flowOrigin,status:c.data.status,currentStep:c.data.currentStep,slug:c.data.slug,topic:c.data.topic,runDir:c.data.runDir}:null,allRoots:i().normalizedAllRoots,discoveredRepos:i().discoveredRepos};return o(JSON.stringify(l,null,2))}catch(e){return n.error(`flow action list failed`,N(e)),o(`Error: ${a(e)}`)}}async function sd(e,t){let{getFlows:n,log:r,resolveInstallPath:i,resolveInstructionPath:a,toErrorText:o,toTextResponse:s}=t,{name:c}=e;try{let{registry:e,installer:t}=await n(),r=e.get(c);if(!r)throw new Iu(`UNKNOWN_FLOW`,`Flow "${c}" not found. Use flow({ action: "list" }) to see available flows.`);let o=r.commitSha??null,l;if(r.sourceType===`git`&&r.installPath){let e=t.hasUpdates(r.installPath);l=e.success&&e.data?e.data.hasUpdates:void 0}let u={name:r.name,version:r.version,description:r.manifest.description,source:r.source,sourceType:r.sourceType,format:r.format,commitSha:o,updateAvailable:l,installPath:i(r.name,r),registeredAt:r.registeredAt,updatedAt:r.updatedAt,steps:r.manifest.steps.map(e=>({id:e.id,name:e.name,instruction:a(r,e.instruction),produces:e.produces,requires:e.requires,description:e.description})),agents:r.manifest.agents,artifactsDir:r.manifest.artifacts_dir,install:r.manifest.install};return s(JSON.stringify(u,null,2))}catch(e){return Lu(e)?s(e.message):(r.error(`flow action info failed`,N(e)),s(`Error: ${o(e)}`))}}async function cd(e,t){let{getAllRoots:n,getFlows:r,log:i,toErrorText:a,toTextResponse:o}=t,{flow:s,status:c,limit:l=50}=e,u=e=>{for(let t of[`updatedAt`,`startedAt`,`createdAt`]){let n=e[t];if(typeof n==`number`&&Number.isFinite(n))return n;if(typeof n==`string`){let e=Date.parse(n);if(!Number.isNaN(e))return e}}return null};try{let e=n(),t=[];for(let n of e){let{stateMachine:e}=await r(n),i=e.listRuns({flow:s,status:c});for(let e of i)t.push({...JSON.parse(JSON.stringify(e)),root:n.replaceAll(`\\`,`/`)})}let i=new Set,a=t.filter(e=>{let t=e.id;return i.has(t)?!1:(i.add(t),!0)});if(a.length===0)return o(`No flow runs found.`);let d=a.map((e,t)=>({run:e,index:t,recency:u(e)})).sort((e,t)=>e.recency==null&&t.recency==null?e.index-t.index:e.recency==null?1:t.recency==null?-1:t.recency===e.recency?e.index-t.index:t.recency-e.recency).map(({run:e})=>e).slice(0,l);return o(JSON.stringify({total:a.length,returned:d.length,truncated:a.length>d.length,runs:d},null,2))}catch(e){return i.error(`flow action runs failed`,N(e)),o(`Error: ${a(e)}`)}}function ld(e){let t=e.content?.find(e=>e.type===`text`)?.text??``;if(!t)return null;try{let e=JSON.parse(t);if(typeof e.slug==`string`&&e.slug.length>0)return e.slug}catch{}return t.match(/[Ss]lug[:\s]*`?([^`\s,]+)`?/)?.[1]??null}function ud(e,t,n,r){let i=n&&typeof n!=`function`?n:void 0,a=typeof n==`function`?n:r,o=Fu(e,t,i),s=W(`flow`);e.registerTool(`flow`,{title:s.title,description:`Manage development flows — list available flows, start/stop runs, navigate steps, read instructions, and install/remove/update flows. Use action parameter to select operation.`,annotations:s.annotations,inputSchema:{action:R.enum([`list`,`info`,`start`,`step`,`status`,`reset`,`read`,`runs`,`add`,`remove`,`update`]).describe(`The flow operation to perform.`),name:R.string().optional().describe(`Flow name — required for info, start, remove, update. Optional override for add.`),topic:R.string().optional().describe(`Human-readable topic for the run (used by start).`),roots:R.array(R.string()).optional().describe(`Workspace roots participating in this flow (used by start).`),advance:R.enum([`next`,`skip`,`redo`]).optional().describe(`Step navigation action — required for step.`),step:R.string().optional().describe(`Step id or name to read (used by read). Defaults to current step.`),source:R.string().optional().describe(`Git URL, local path, or "openspec" shorthand — required for add.`),token:R.string().optional().describe(`Auth token for private repos (used by add).`),filter_flow:R.string().optional().describe(`Filter runs by flow name (used by runs).`),filter_status:R.string().optional().describe(`Filter runs by status: active, completed, abandoned (used by runs).`),limit:R.number().int().positive().optional().describe(`Max runs to return (default 50).`)}},J(`flow`,async e=>{switch(e.action){case`list`:return od(o);case`info`:return e.name?sd({name:e.name},o):o.toTextResponse(`Missing required parameter: name`);case`start`:{if(!e.name)return o.toTextResponse(`Missing required parameter: name (flow to start)`);let t=await nd({flow:e.name,topic:e.topic,roots:e.roots},o),n=ld(t);return n&&a&&a(n),t}case`step`:return e.advance?ad({action:e.advance},o):o.toTextResponse(`Missing required parameter: advance (next/skip/redo)`);case`status`:{let e=await rd(o);return a&&a(ld(e)),e}case`reset`:{let e=await id(o);return a&&a(null),e}case`read`:return zu({step:e.step},o);case`runs`:return cd({flow:e.filter_flow,status:e.filter_status,limit:e.limit},o);case`add`:return e.source?Uu({source:e.source,name:e.name,token:e.token},o):o.toTextResponse(`Missing required parameter: source`);case`remove`:return e.name?Wu({name:e.name},o):o.toTextResponse(`Missing required parameter: name`);case`update`:return e.name?Gu({name:e.name},o):o.toTextResponse(`Missing required parameter: name`);default:return o.toTextResponse(`Unknown action: ${e.action}`)}}))}const dd=M(`tools`);function fd(e){let t=W(`evidence_map`);e.registerTool(`evidence_map`,{title:t.title,description:`Track verified/assumed/unresolved claims for complex tasks. Gate readiness: YIELD (proceed), HOLD (unknowns), HARD_BLOCK (critical gaps). Persists across calls.`,inputSchema:{action:R.enum([`create`,`add`,`update`,`get`,`gate`,`list`,`delete`]).describe(`Operation to perform`),task_id:R.string().optional().describe(`Task identifier (required for all except list)`),tier:R.enum([`floor`,`standard`,`critical`]).optional().describe(`FORGE tier (required for create)`),claim:R.string().optional().describe(`Critical-path claim text (for add)`),status:R.enum([`V`,`A`,`U`]).optional().describe(`Evidence status: V=Verified, A=Assumed, U=Unresolved`),receipt:R.string().optional().describe(`Evidence receipt: tool→ref for V, reasoning for A, attempts for U`),id:R.number().optional().describe(`Entry ID (for update)`),critical_path:R.boolean().default(!0).describe(`Whether this claim is on the critical path`),unknown_type:R.enum([`contract`,`convention`,`freshness`,`runtime`,`data-flow`,`impact`]).optional().describe(`Typed unknown classification`),safety_gate:R.enum([`provenance`,`commitment`,`coverage`]).optional().describe(`Safety gate tag: provenance (claim→evidence), commitment (user-approved), coverage (nothing dropped)`),retry_count:R.number().default(0).describe(`Retry count for gate evaluation (0 = first attempt)`),max_retries:R.number().int().min(0).optional().describe(`Maximum retries before escalating. Default: 3`),timeout_action:R.enum([`iterate`,`retry`,`manual`,`terminate`]).optional().describe(`Action to take when gate retries are exhausted. Default: manual`),cwd:R.string().optional().describe(`Working directory for evidence map storage (default: server cwd). Use root_path from forge_ground to match.`)},annotations:t.annotations},J(`evidence_map`,async({action:e,task_id:t,tier:n,claim:r,status:i,receipt:a,id:o,critical_path:s,unknown_type:c,safety_gate:l,retry_count:u,max_retries:d,timeout_action:f,cwd:p})=>{try{switch(e){case`create`:if(!t)throw Error(`task_id required for create`);if(!n)throw Error(`tier required for create`);return mt({action:`create`,taskId:t,tier:n},p),{content:[{type:`text`,text:`Created evidence map "${t}" (tier: ${n}).\n\n---\n_Next: Use \`evidence_map\` with action "add" to record critical-path claims._`}]};case`add`:{if(!t)throw Error(`task_id required for add`);if(!r)throw Error(`claim required for add`);if(!i)throw Error(`status required for add`);let e=mt({action:`add`,taskId:t,claim:r,status:i,receipt:a??``,criticalPath:s,unknownType:c,safetyGate:l},p),n=e.autoCreated?[`⚠️ Evidence map "${t}" was auto-created with tier "standard". Use \`create\` action to set a specific tier.`,``,`Added entry #${e.entry?.id} to "${t}": [${i}] ${r}`]:[`Added entry #${e.entry?.id} to "${t}": [${i}] ${r}`];return e.summary&&n.push(``,e.summary),{content:[{type:`text`,text:n.join(`
194
+ `):null}}function $u(e,t){return t(e)}async function ed(e){let{context:t,entry:n,state:r,activeRoot:i,primaryRoot:a,roots:o}=e,{instructionPath:s,description:c}=t.resolveCurrentStepInfo(n,r.currentStep,i),l=$u(n,t.getStepSequence),u=await zu({entry:n,stepId:r.currentStep,runDir:r.runDir,slug:r.slug,primaryRoot:a,roots:o,activeRoot:i,resolveInstructionPath:t.resolveInstructionPath,resolveEpilogueInstructionPath:t.resolveEpilogueInstructionPath}),{brief:d,pins:f}=Qu(u),p=d;if(d&&r.currentStep){let e=n.manifest.steps.find(e=>e.id===r.currentStep),a={stepId:r.currentStep,flowName:r.flow,flowSlug:r.slug,phase:`flow`,runDir:r.runDir,artifactsPath:I(r.runDir,n.manifest.artifacts_dir).replaceAll(`\\`,`/`),completedSteps:r.completedSteps??[],stepDescription:e?.description??c??void 0,agents:e?.agents??[],mode:`brief`,topic:r.topic??``,activeRoot:i};p=await t.stepPipeline.enrich(d,a,n.manifest.hooks)}return{artifactsPath:I(r.runDir,n.manifest.artifacts_dir).replaceAll(`\\`,`/`),currentStepInstruction:s,currentStepDescription:c,currentStepContent:u,currentStepBrief:p,currentStepPins:f,stepSequence:l}}function td(e){let{state:t,data:n,started:r,includeStatus:i,action:a,includeInstructionPath:o}=e,s={};return r&&(s.started=!0),s.flow=t.flow,t.flowOrigin&&(s.flowOrigin=t.flowOrigin),i&&(s.status=t.status),a&&(s.action=a),s.slug=t.slug,s.topic=t.topic,s.runDir=t.runDir,s.artifactsPath=n.artifactsPath,s.currentStep=t.currentStep,s.currentStepInstruction=n.currentStepInstruction,o&&(s.instructionPath=n.currentStepInstruction),s.currentStepDescription=n.currentStepDescription,s.currentStepContent=null,s.currentStepBrief=n.currentStepBrief,s.currentStepPins=n.currentStepPins,s.fullContentHint=`Call flow({ action: 'read' }) for the complete step instructions.`,s}function nd(e){return e.sourceType===`local`?{source:`local`,sourceType:e.sourceType,format:e.format,...e.commitSha?{commitSha:e.commitSha}:{}}:{source:e.source,sourceType:e.sourceType,format:e.format,...e.commitSha?{commitSha:e.commitSha}:{}}}async function rd(e,t){let{getAllRoots:n,getFlows:r,getWorkspaceRoot:i,isValidFlowRoot:a,log:o,patchMetaRoots:s,stateDir:c,toErrorText:l,toTextResponse:u}=t,{flow:d,topic:f,roots:p}=e;try{if(p&&p.length>0){let e=n().map(e=>e.replaceAll(`\\`,`/`)),t=p.filter(e=>!a(e));if(t.length>0)return u(`Invalid roots — not part of the workspace or a recognized sub-repository: ${t.join(`, `)}. Available roots: ${e.join(`, `)}`)}let e=n(),o=e.map(e=>e.replaceAll(`\\`,`/`)),l=i(),m=e.length>1,h=!p&&m,g=p?.[0]??l,{registry:_,stateMachine:v}=await r(g),y=_.get(d);if(!y)throw new Lu(`UNKNOWN_FLOW`,`Flow "${d}" not found. Use flow({ action: "list" }) to see available flows.`);let b=v.start(y.name,y.manifest,f,nd(y));if(!b.success||!b.data){let e=b.error??`Unknown flow start error.`;return e.includes(`already active`)?u(`Cannot start: ${new Lu(`FLOW_ALREADY_ACTIVE`,e).message}`):u(`Cannot start: ${e}`)}let x=b.data;if(p&&p.length>1)try{s(x.slug,g,p),t.syncMetaToRoots(x.slug,g)}catch(e){return v.reset(),u(`Flow created but failed to sync to secondary roots — rolled back. Error: ${e instanceof Error?e.message:String(e)}`)}let S=I(c,`flow-context`),C=typeof Ln==`function`?await Ln(S).catch(()=>[]):[];for(let e of C)e!==x.slug&&typeof Rn==`function`&&await Rn(I(S,e),{recursive:!0,force:!0}).catch(()=>{});if(typeof Fn==`function`)try{await Fn(I(S,x.slug),{recursive:!0})}catch{}let w=await ed({context:t,entry:y,state:x,activeRoot:g,primaryRoot:null,roots:p??null}),T={...td({state:x,data:w,started:!0}),phase:x.phase,isEpilogue:x.isEpilogue,totalSteps:w.stepSequence.length,stepSequence:w.stepSequence,artifactsDir:y.manifest.artifacts_dir,roots:p??[g.replaceAll(`\\`,`/`)],_hint:qu,...h?{multiRootWarning:`No roots specified in multi-root workspace. Flow created at workspace root. Pass roots parameter with target repo for precise placement.`,availableRoots:o}:{}};return u(JSON.stringify(T,null,2))}catch(e){return Ru(e)?u(e.message):(o.error(`flow action start failed`,N(e)),u(`Error: ${l(e)}`))}}async function id(e){let{getFlows:t,log:n,resolveFlowRoot:r,resolveRoots:i,toErrorText:a,toTextResponse:o}=e;try{let n=await r(),{registry:a,stateMachine:s}=await t(n),c=s.getStatus();if(!c.success||!c.data)throw new Lu(`NO_ACTIVE_FLOW`,`No active flow. Use flow({ action: "start", name: "<flow>" }) to begin one, or flow({ action: "list" }) to see available flows.`);let l=c.data,u=a.get(l.flow),d=u?await ed({context:e,entry:u,state:l,activeRoot:n,primaryRoot:l.primaryRoot,roots:l.roots}):Xu(),f={...td({state:l,data:d,includeStatus:!0,includeInstructionPath:!0}),_hint:l.currentStep?qu:void 0,phase:l.phase,isEpilogue:l.isEpilogue,completedSteps:l.completedSteps,skippedSteps:l.skippedSteps,artifacts:l.artifacts,startedAt:l.startedAt,updatedAt:l.updatedAt,totalSteps:d.stepSequence.length,progress:u?`${l.completedSteps.length+l.skippedSteps.length}/${d.stepSequence.length}`:`unknown`,workspaceRoot:n.replaceAll(`\\`,`/`),primaryRoot:(l.primaryRoot??n).replaceAll(`\\`,`/`),roots:l.roots??[n.replaceAll(`\\`,`/`)],allRoots:i().normalizedAllRoots,discoveredRepos:i().discoveredRepos};return o(JSON.stringify(f,null,2))}catch(e){return Ru(e)?o(e.message):(n.error(`flow action status failed`,N(e)),o(`Error: ${a(e)}`))}}async function ad(e){let{getFlows:t,log:n,resolveFlowRoot:r,stateDir:i,syncMetaToRoots:a,toErrorText:o,toTextResponse:s}=e;try{let e=await r(),{stateMachine:n}=await t(e),o=n.getStatus(),c=n.reset();if(!c.success)return s(`Reset failed: ${c.error}`);if(o.success&&o.data&&a(o.data.slug,e),o.success&&o.data?.slug)try{await Rn(I(i,`flow-context`,o.data.slug),{recursive:!0,force:!0})}catch{}return s(`Flow abandoned. Use flow({ action: "start", name: "<flow>" }) to begin a new flow.`)}catch(e){return n.error(`flow action reset failed`,N(e)),s(`Error: ${o(e)}`)}}async function od(e,t){let{getFlows:n,log:r,resolveFlowRoot:i,syncMetaToRoots:a,toErrorText:o,toTextResponse:s}=t,{action:c}=e;try{let e=await i(),{registry:r,stateMachine:o}=await n(e),l=o.getStatus();if(!l.success||!l.data)throw new Lu(`NO_ACTIVE_FLOW`,`No active flow. Use flow({ action: "start", name: "<flow>" }) first.`);let u=r.get(l.data.flow);if(!u)throw new Lu(`FLOW_NOT_FOUND`,`Flow "${l.data.flow}" not found in registry.`);let d=o.step(c,u.manifest);if(!d.success||!d.data)return s(`Cannot ${c}: ${d.error}`);a(d.data.slug,e);let f=d.data,p=[];if(f.status===`completed`){let e=I(t.stateDir,`flow-context`,f.slug);for(let t of[`decision`,`pattern`]){let n=I(e,t);try{let e=await Ln(n);for(let r of e){if(!r.endsWith(`.md`))continue;let e=await In(I(n,r),`utf-8`);e.length>100&&p.push({type:t,title:r.replace(/\.md$/,``).replace(/-/g,` `),content:e.length>500?`${e.slice(0,497)}...`:e})}}catch{}}typeof Rn==`function`&&await Rn(e,{recursive:!0,force:!0}).catch(()=>{})}let m=await ed({context:t,entry:u,state:f,activeRoot:e,primaryRoot:f.primaryRoot,roots:f.roots}),h={...td({state:f,data:m,includeStatus:!0,action:c}),_hint:f.currentStep?qu:void 0,phase:f.phase,isEpilogue:f.isEpilogue,completedSteps:f.completedSteps,skippedSteps:f.skippedSteps,totalSteps:m.stepSequence.length,remaining:m.stepSequence.filter(e=>!f.completedSteps.includes(e)&&!f.skippedSteps.includes(e)&&e!==f.currentStep),...p.length>0?{promotionCandidates:p}:{}};return s(JSON.stringify(h,null,2))}catch(e){return Ru(e)?s(e.message):(r.error(`flow action step failed`,N(e)),s(`Error: ${o(e)}`))}}async function sd(e){let{getFlows:t,log:n,resolveFlowRoot:r,resolveRoots:i,toErrorText:a,toTextResponse:o}=e;try{let{registry:e,stateMachine:n,installer:a}=await t(await r()),s=e.list(),c=n.getStatus(),l={flows:s.map(e=>{let t={name:e.name,version:e.version,source:e.source,sourceType:e.sourceType,format:e.format,steps:e.manifest.steps.map(e=>e.id)};if(e.sourceType===`git`&&e.commitSha){let n=a.hasUpdates(e.installPath);return{...t,commitSha:e.commitSha,updateAvailable:n.success&&n.data?n.data.hasUpdates:void 0}}return t}),activeFlow:c.success&&c.data?{flow:c.data.flow,flowOrigin:c.data.flowOrigin,status:c.data.status,currentStep:c.data.currentStep,slug:c.data.slug,topic:c.data.topic,runDir:c.data.runDir}:null,allRoots:i().normalizedAllRoots,discoveredRepos:i().discoveredRepos};return o(JSON.stringify(l,null,2))}catch(e){return n.error(`flow action list failed`,N(e)),o(`Error: ${a(e)}`)}}async function cd(e,t){let{getFlows:n,log:r,resolveInstallPath:i,resolveInstructionPath:a,toErrorText:o,toTextResponse:s}=t,{name:c}=e;try{let{registry:e,installer:t}=await n(),r=e.get(c);if(!r)throw new Lu(`UNKNOWN_FLOW`,`Flow "${c}" not found. Use flow({ action: "list" }) to see available flows.`);let o=r.commitSha??null,l;if(r.sourceType===`git`&&r.installPath){let e=t.hasUpdates(r.installPath);l=e.success&&e.data?e.data.hasUpdates:void 0}let u={name:r.name,version:r.version,description:r.manifest.description,source:r.source,sourceType:r.sourceType,format:r.format,commitSha:o,updateAvailable:l,installPath:i(r.name,r),registeredAt:r.registeredAt,updatedAt:r.updatedAt,steps:r.manifest.steps.map(e=>({id:e.id,name:e.name,instruction:a(r,e.instruction),produces:e.produces,requires:e.requires,description:e.description})),agents:r.manifest.agents,artifactsDir:r.manifest.artifacts_dir,install:r.manifest.install};return s(JSON.stringify(u,null,2))}catch(e){return Ru(e)?s(e.message):(r.error(`flow action info failed`,N(e)),s(`Error: ${o(e)}`))}}async function ld(e,t){let{getAllRoots:n,getFlows:r,log:i,toErrorText:a,toTextResponse:o}=t,{flow:s,status:c,limit:l=50}=e,u=e=>{for(let t of[`updatedAt`,`startedAt`,`createdAt`]){let n=e[t];if(typeof n==`number`&&Number.isFinite(n))return n;if(typeof n==`string`){let e=Date.parse(n);if(!Number.isNaN(e))return e}}return null};try{let e=n(),t=[];for(let n of e){let{stateMachine:e}=await r(n),i=e.listRuns({flow:s,status:c});for(let e of i)t.push({...JSON.parse(JSON.stringify(e)),root:n.replaceAll(`\\`,`/`)})}let i=new Set,a=t.filter(e=>{let t=e.id;return i.has(t)?!1:(i.add(t),!0)});if(a.length===0)return o(`No flow runs found.`);let d=a.map((e,t)=>({run:e,index:t,recency:u(e)})).sort((e,t)=>e.recency==null&&t.recency==null?e.index-t.index:e.recency==null?1:t.recency==null?-1:t.recency===e.recency?e.index-t.index:t.recency-e.recency).map(({run:e})=>e).slice(0,l);return o(JSON.stringify({total:a.length,returned:d.length,truncated:a.length>d.length,runs:d},null,2))}catch(e){return i.error(`flow action runs failed`,N(e)),o(`Error: ${a(e)}`)}}function ud(e){let t=e.content?.find(e=>e.type===`text`)?.text??``;if(!t)return null;try{let e=JSON.parse(t);if(typeof e.slug==`string`&&e.slug.length>0)return e.slug}catch{}return t.match(/[Ss]lug[:\s]*`?([^`\s,]+)`?/)?.[1]??null}function dd(e,t,n,r){let i=n&&typeof n!=`function`?n:void 0,a=typeof n==`function`?n:r,o=Iu(e,t,i),s=W(`flow`);e.registerTool(`flow`,{title:s.title,description:`Manage development flows — list available flows, start/stop runs, navigate steps, read instructions, and install/remove/update flows. Use action parameter to select operation.`,annotations:s.annotations,inputSchema:{action:R.enum([`list`,`info`,`start`,`step`,`status`,`reset`,`read`,`runs`,`add`,`remove`,`update`]).describe(`The flow operation to perform.`),name:R.string().optional().describe(`Flow name — required for info, start, remove, update. Optional override for add.`),topic:R.string().optional().describe(`Human-readable topic for the run (used by start).`),roots:R.array(R.string()).optional().describe(`Workspace roots participating in this flow (used by start).`),advance:R.enum([`next`,`skip`,`redo`]).optional().describe(`Step navigation action — required for step.`),step:R.string().optional().describe(`Step id or name to read (used by read). Defaults to current step.`),source:R.string().optional().describe(`Git URL, local path, or "openspec" shorthand — required for add.`),token:R.string().optional().describe(`Auth token for private repos (used by add).`),filter_flow:R.string().optional().describe(`Filter runs by flow name (used by runs).`),filter_status:R.string().optional().describe(`Filter runs by status: active, completed, abandoned (used by runs).`),limit:R.number().int().positive().optional().describe(`Max runs to return (default 50).`)}},J(`flow`,async e=>{switch(e.action){case`list`:return sd(o);case`info`:return e.name?cd({name:e.name},o):o.toTextResponse(`Missing required parameter: name`);case`start`:{if(!e.name)return o.toTextResponse(`Missing required parameter: name (flow to start)`);let t=await rd({flow:e.name,topic:e.topic,roots:e.roots},o),n=ud(t);return n&&a&&a(n),t}case`step`:return e.advance?od({action:e.advance},o):o.toTextResponse(`Missing required parameter: advance (next/skip/redo)`);case`status`:{let e=await id(o);return a&&a(ud(e)),e}case`reset`:{let e=await ad(o);return a&&a(null),e}case`read`:return Bu({step:e.step},o);case`runs`:return ld({flow:e.filter_flow,status:e.filter_status,limit:e.limit},o);case`add`:return e.source?Wu({source:e.source,name:e.name,token:e.token},o):o.toTextResponse(`Missing required parameter: source`);case`remove`:return e.name?Gu({name:e.name},o):o.toTextResponse(`Missing required parameter: name`);case`update`:return e.name?Ku({name:e.name},o):o.toTextResponse(`Missing required parameter: name`);default:return o.toTextResponse(`Unknown action: ${e.action}`)}}))}const fd=M(`tools`);function pd(e){let t=W(`evidence_map`);e.registerTool(`evidence_map`,{title:t.title,description:`Track verified/assumed/unresolved claims for complex tasks. Gate readiness: YIELD (proceed), HOLD (unknowns), HARD_BLOCK (critical gaps). Persists across calls.`,inputSchema:{action:R.enum([`create`,`add`,`update`,`get`,`gate`,`list`,`delete`]).describe(`Operation to perform`),task_id:R.string().optional().describe(`Task identifier (required for all except list)`),tier:R.enum([`floor`,`standard`,`critical`]).optional().describe(`FORGE tier (required for create)`),claim:R.string().optional().describe(`Critical-path claim text (for add)`),status:R.enum([`V`,`A`,`U`]).optional().describe(`Evidence status: V=Verified, A=Assumed, U=Unresolved`),receipt:R.string().optional().describe(`Evidence receipt: tool→ref for V, reasoning for A, attempts for U`),id:R.number().optional().describe(`Entry ID (for update)`),critical_path:R.boolean().default(!0).describe(`Whether this claim is on the critical path`),unknown_type:R.enum([`contract`,`convention`,`freshness`,`runtime`,`data-flow`,`impact`]).optional().describe(`Typed unknown classification`),safety_gate:R.enum([`provenance`,`commitment`,`coverage`]).optional().describe(`Safety gate tag: provenance (claim→evidence), commitment (user-approved), coverage (nothing dropped)`),retry_count:R.number().default(0).describe(`Retry count for gate evaluation (0 = first attempt)`),max_retries:R.number().int().min(0).optional().describe(`Maximum retries before escalating. Default: 3`),timeout_action:R.enum([`iterate`,`retry`,`manual`,`terminate`]).optional().describe(`Action to take when gate retries are exhausted. Default: manual`),cwd:R.string().optional().describe(`Working directory for evidence map storage (default: server cwd). Use root_path from forge_ground to match.`)},annotations:t.annotations},J(`evidence_map`,async({action:e,task_id:t,tier:n,claim:r,status:i,receipt:a,id:o,critical_path:s,unknown_type:c,safety_gate:l,retry_count:u,max_retries:d,timeout_action:f,cwd:p})=>{try{switch(e){case`create`:if(!t)throw Error(`task_id required for create`);if(!n)throw Error(`tier required for create`);return mt({action:`create`,taskId:t,tier:n},p),{content:[{type:`text`,text:`Created evidence map "${t}" (tier: ${n}).\n\n---\n_Next: Use \`evidence_map\` with action "add" to record critical-path claims._`}]};case`add`:{if(!t)throw Error(`task_id required for add`);if(!r)throw Error(`claim required for add`);if(!i)throw Error(`status required for add`);let e=mt({action:`add`,taskId:t,claim:r,status:i,receipt:a??``,criticalPath:s,unknownType:c,safetyGate:l},p),n=e.autoCreated?[`⚠️ Evidence map "${t}" was auto-created with tier "standard". Use \`create\` action to set a specific tier.`,``,`Added entry #${e.entry?.id} to "${t}": [${i}] ${r}`]:[`Added entry #${e.entry?.id} to "${t}": [${i}] ${r}`];return e.summary&&n.push(``,e.summary),{content:[{type:`text`,text:n.join(`
195
195
  `)}]}}case`update`:{if(!t)throw Error(`task_id required for update`);if(o===void 0)throw Error(`id required for update`);if(!i)throw Error(`status required for update`);let e=mt({action:`update`,taskId:t,id:o,status:i,receipt:a??``},p),n=[`Updated entry #${o} in "${t}" → ${i}`];return e.summary&&n.push(``,e.summary),{content:[{type:`text`,text:n.join(`
196
196
  `)}]}}case`get`:{if(!t)throw Error(`task_id required for get`);let e=mt({action:`get`,taskId:t},p);return e.state?{content:[{type:`text`,text:[`## Evidence Map: ${t} (${e.state.tier})`,``,e.formattedMap??`No entries.`,``,`_${e.state.entries.length} entries — created ${e.state.createdAt}_`].join(`
197
197
  `)}]}:{content:[{type:`text`,text:`Evidence map "${t}" not found.`}]}}case`gate`:{if(!t)throw Error(`task_id required for gate`);let e=mt({action:`gate`,taskId:t,retryCount:u,maxRetries:d,timeoutAction:f},p);if(!e.gate)return{content:[{type:`text`,text:`Evidence map "${t}" not found.`}]};let n=e.gate,r=[`## FORGE Gate: **${n.verdict}**`,``,`**Reason:** ${n.reason}`,``,`**Stats:** ${n.stats.verified}V / ${n.stats.assumed}A / ${n.stats.unresolved}U (${n.stats.total} total)`];return n.action&&r.push(``,`**Recommended action:** ${n.action}`),n.retriesRemaining!==void 0&&r.push(`**Retries remaining:** ${n.retriesRemaining}`),n.summary&&r.push(``,`**Summary:** ${n.summary}`),n.warnings.length>0&&r.push(``,`**Warnings:**`,...n.warnings.map(e=>`- ⚠️ ${e}`)),n.unresolvedCritical.length>0&&r.push(``,`**Blocking entries:**`,...n.unresolvedCritical.map(e=>`- #${e.id}: ${e.claim} [${e.unknownType??`untyped`}]`)),n.safetyGates&&(r.push(``,`**Safety Gates:**`,`- Provenance: ${n.safetyGates.provenance}`,`- Commitment: ${n.safetyGates.commitment}`,`- Coverage: ${n.safetyGates.coverage}`),n.safetyGates.failures.length>0&&r.push(``,`**Safety failures:**`,...n.safetyGates.failures.map(e=>`- \u{1F6D1} ${e}`))),n.annotation&&r.push(``,`**Annotation:**`,n.annotation),e.formattedMap&&r.push(``,`---`,``,e.formattedMap),r.push(``,`---`,`_Next: ${n.verdict===`YIELD`?`Proceed to implementation.`:n.action===`iterate`?`Re-run the build loop, then evaluate the gate again.`:n.action===`retry`?`Re-evaluate the gate after refreshing evidence.`:n.action===`manual`?`Ask for human review before proceeding.`:`Abort the current path and terminate the task.`}_`),{content:[{type:`text`,text:r.join(`
198
198
  `)}]}}case`list`:{let e=mt({action:`list`},p);return!e.states||e.states.length===0?{content:[{type:`text`,text:`No evidence maps found.`}]}:{content:[{type:`text`,text:e.states.map(e=>`- **${e.taskId}** (${e.tier}) — ${e.entries.length} entries — ${e.updatedAt}`).join(`
199
- `)}]}}case`delete`:if(!t)throw Error(`task_id required for delete`);return{content:[{type:`text`,text:mt({action:`delete`,taskId:t},p).deleted?`Deleted evidence map "${t}".`:`Evidence map "${t}" not found.`}]}}}catch(e){return dd.error(`Evidence map error`,N(e)),q(`INTERNAL`,`Evidence map error: ${e instanceof Error?e.message:String(e)}`)}}))}function pd(e,t){let n=W(`digest`);e.registerTool(`digest`,{title:n.title,description:`Compress multiple text sources (handoffs, debates, phase summaries) into a token-budgeted digest. Jointly ranks across all sources, pins structured fields (status, files, decisions, blockers), and allocates budget by priority weight.`,outputSchema:dc,inputSchema:{sources:R.array(R.object({id:R.string().describe(`Source identifier (e.g., "phase-2-handoff")`),text:R.string().max(5e5).describe(`Source text to compress`),weight:R.number().min(0).default(1).describe(`Priority weight (higher = more budget)`)})).min(1).max(20).describe(`Text sources to compress`),query:R.string().describe(`Focus query — what matters for the next step?`),max_chars:R.number().min(100).max(5e4).default(4e3).describe(`Target budget in characters`),pin_fields:R.array(R.string()).optional().describe(`Key fields to always extract (default: status, files, decisions, blockers, next)`),segmentation:R.enum([`paragraph`,`sentence`,`line`]).default(`paragraph`).describe(`How to split text for scoring`),token_budget:R.number().min(50).max(12500).optional().describe(`Token budget — overrides max_chars (approx 4 chars per token). Use to fit output into a specific context window.`)},annotations:n.annotations},async({sources:e,query:n,max_chars:r,pin_fields:i,segmentation:a,token_budget:o})=>{try{let s=await lt(t,{sources:e,query:n,maxChars:o?o*4:r,pinFields:i,segmentation:a}),c=[`## Digest (${s.totalOriginalChars} → ${s.totalCompressedChars} chars, ${(s.ratio*100).toFixed(0)}%)`,s.ref?`Ref: ${s.ref}`:void 0,``],l=Object.keys(s.fields);if(l.length>0){c.push(`### Extracted Fields`);for(let e of l){let t=s.fields[e];c.push(`**${e}:**`);for(let e of t)c.push(` - [${e.sourceId}] ${e.value}`)}c.push(``)}c.push(`### Compressed Content`,``,s.text),c.push(``,`### Source Stats`);for(let e of s.sourceStats)c.push(`- **${e.id}**: ${e.originalChars} → ${e.keptChars} chars (${e.segmentsKept}/${e.segmentsTotal} segments)`);c.push(``,`---`,"_Next: Use the digest as compressed context for the next phase. Use `stash` to persist it if needed._");let u=c.filter(e=>typeof e==`string`).join(`
200
- `);return{content:[{type:`text`,text:u}],structuredContent:{text:u,ref:s.ref,fields:s.fields,sourceStats:s.sourceStats,totalOriginalChars:s.totalOriginalChars,totalCompressedChars:s.totalCompressedChars,ratio:s.ratio}}}catch(e){return dd.error(`Digest failed`,N(e)),{...q(`INTERNAL`,`Digest failed: ${e instanceof Error?e.message:String(e)}`),structuredContent:{text:``,ref:void 0,fields:{},sourceStats:[],totalOriginalChars:0,totalCompressedChars:0,ratio:0}}}})}function md(e,t){let n=W(`forge_classify`);e.registerTool(`forge_classify`,{title:n.title,description:`Classify FORGE tier (Floor/Standard/Critical) from target files and task description. Checks blast radius, cross-package boundaries, schema/contract patterns, and security signals. Returns tier, triggers, typed unknown seeds, and ceremony guidance.`,inputSchema:{files:R.array(R.string()).min(1).max(100).describe(`Files being modified (paths)`),task:R.string().describe(`Task description`),root_path:R.string().describe(`Root path of the codebase`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},annotations:n.annotations},J(`forge_classify`,async({files:e,task:n,root_path:r,enrich:i})=>{try{let a=await yt({files:e,task:n,rootPath:r}),o=[`## FORGE Classification: **${a.tier.toUpperCase()}**`,``];if(a.triggers.length>0){o.push(`### Triggers`);for(let e of a.triggers)o.push(`- **${e.rule}** (${e.source}): ${e.detail}`);o.push(``)}if(a.packagesCrossed.length>0&&o.push(`**Packages crossed:** ${a.packagesCrossed.join(`, `)}`),a.typedUnknownSeeds.length>0){o.push(``,`### Typed Unknown Seeds`);for(let e of a.typedUnknownSeeds)o.push(`- [${e.type}] ${e.description} → use \`${e.suggestedTool}\``)}o.push(``,`### Ceremony`);let s=a.ceremony;o.push(`- **Ground:** ${s.ground}`,`- **Build:** ${s.build}`,`- **Break:** ${s.break}`,`- **Evidence Map:** ${s.evidenceMap}`,`- **Gate:** ${s.gate}`),o.push(``,`---`,`_Next: ${a.tier===`floor`?`Proceed directly to implementation.`:"Run `forge_ground` to execute the full Ground phase."}_`);let c=o.join(`
201
- `);if(i&&t){let e=await G(t,{query:`forge classify ${n}`});c+=K(e)}return{content:[{type:`text`,text:c}]}}catch(e){return dd.error(`FORGE classify failed`,N(e)),q(`INTERNAL`,`FORGE classify failed: ${e instanceof Error?e.message:String(e)}`)}}))}function hd(e,t,n){let r=W(`stratum_card`);e.registerTool(`stratum_card`,{title:r.title,description:`Generate context cards from files — a compressed alternative to reading full files (10-100x token reduction). Tier 1 (T1): structure only (~100 tokens/file — imports, exports, functions). Tier 2 (T2): structure + query-relevant content (~300 tokens/file).`,inputSchema:{files:R.array(R.string()).min(1).max(50).describe(`Absolute file paths to generate cards for`),query:R.string().describe(`Current task query — guides relevance scoring`),tier:R.enum([`T1`,`T2`]).default(`T1`).describe(`Card tier: T1 = structural only, T2 = T1 + compressed content`),max_content_chars:R.number().min(100).max(5e3).default(800).describe(`For T2: max chars for compressed content section`)},annotations:r.annotations},async({files:e,query:r,tier:i,max_content_chars:a})=>{try{let o=await Cn(t,{files:e,query:r,tier:i,maxContentChars:a,cache:n}),s=[`## STRATUM Cards (${i}) — ${o.cards.length} files`,`Total: ~${o.totalTokenEstimate} tokens (was ~${o.totalOriginalTokenEstimate}, ${(o.compressionRatio*100).toFixed(0)}% of original)`,``];for(let e of o.cards)s.push(e.card,``);return s.push(`---`,"_Next: Use these cards as context instead of reading full files. Use `compact` for deeper content extraction on specific files._"),{content:[{type:`text`,text:s.join(`
202
- `)}]}}catch(e){return dd.error(`STRATUM cards failed`,N(e)),q(`INTERNAL`,`STRATUM cards failed: ${e instanceof Error?e.message:String(e)}`)}})}function gd(e,t,n){let r=W(`forge_ground`);e.registerTool(`forge_ground`,{title:r.title,description:`Execute the complete FORGE Ground phase in a single call. Chains: tier classification → scope map → typed unknown seeds → constraint loading → file summaries → evidence map creation. Replaces 5-15 manual tool calls.`,inputSchema:{task:R.string().describe(`Task description`),files:R.array(R.string()).min(1).max(100).describe(`Target files being modified (absolute paths)`),root_path:R.string().describe(`Root path of the codebase`),max_constraints:R.number().min(0).max(10).default(3).describe(`Max constraint entries to load from AI Kit memory`),force_tier:R.enum([`floor`,`standard`,`critical`]).optional().describe(`Force a specific tier (skips auto-classification)`),task_id:R.string().optional().describe(`Custom task ID for evidence map (auto-generated if omitted)`)},annotations:r.annotations},J(`forge_ground`,async({task:e,files:r,root_path:i,max_constraints:a,force_tier:o,task_id:s},c)=>{try{let l=await bt(t,n,{task:e,files:r,rootPath:i,maxConstraints:a,forceTier:o,taskId:s}),u=Zc(c).createTask(`FORGE Ground`,3);u.progress(0,`Classification: ${l.tier}`),u.progress(1,`Files analyzed: ${l.fileSummaries.length}`),u.progress(2,`Unknowns: ${l.typedUnknownSeeds.length}`),u.complete(`FORGE Ground complete: tier=${l.tier}`);let d=[`## FORGE Ground: **${l.tier.toUpperCase()}**`,`Estimated output: ~${l.estimatedTokens} tokens`,``];if(l.classifyTriggers.length>0){d.push(`### Classification Triggers`);for(let e of l.classifyTriggers)d.push(`- **${e.rule}** (${e.source}): ${e.detail}`);d.push(``)}if(l.fileSummaries.length>0){d.push(`### Target Files`);for(let e of l.fileSummaries)d.push(`- **${e.path}** (${e.lines} lines) — exports: ${e.exports.join(`, `)||`none`} — functions: ${e.functions.join(`, `)||`none`}`);d.push(``)}if(l.typedUnknownSeeds.length>0){d.push(`### Typed Unknown Seeds`);for(let e of l.typedUnknownSeeds)d.push(`- [${e.type}] ${e.description} → \`${e.suggestedTool}\``);d.push(``)}if(l.constraints.length>0){d.push(`### Constraint Seed`);for(let e of l.constraints)d.push(`- **${e.source}** (${(e.relevance*100).toFixed(0)}%): ${e.snippet}`);d.push(``)}if(l.scopeMap){d.push(`### Scope Map: ${l.scopeMap.files.length} files (~${l.scopeMap.totalEstimatedTokens} tokens)`);for(let e of l.scopeMap.files.slice(0,5))d.push(`- ${e.path} (${(e.relevance*100).toFixed(0)}%) — ${e.reason}`);l.scopeMap.files.length>5&&d.push(`- _...and ${l.scopeMap.files.length-5} more_`),d.push(``)}l.evidenceMapTaskId&&(d.push(`**Evidence Map:** \`${l.evidenceMapTaskId}\` (initialized)`),d.push(``)),d.push(`### Ceremony Guidance`);let f=l.ceremony;return d.push(`- **Ground:** ${f.ground}`,`- **Build:** ${f.build}`,`- **Break:** ${f.break}`,`- **Evidence Map:** ${f.evidenceMap}`,`- **Gate:** ${f.gate}`),d.push(``,`---`,`_Next: ${l.tier===`floor`?`Proceed to Build phase.`:"Use `evidence_map` to track claims during Build, then `evidence_map` gate after Break."}_`),{content:[{type:`text`,text:d.join(`
203
- `)}]}}catch(e){return dd.error(`FORGE Ground failed`,N(e)),q(`INTERNAL`,`FORGE Ground failed: ${e instanceof Error?e.message:String(e)}`)}}))}const _d=M(`tools`),vd=R.object({id:R.string().optional().describe(`Node ID (auto-generated if omitted)`),type:R.string().describe(`Node type (entity, service, api, concept, decision)`),name:R.string().describe(`Display name`),properties:R.record(R.string(),R.unknown()).optional().describe(`Arbitrary properties`),sourceRecordId:R.string().optional().describe(`Back-link to knowledge record ID`),sourcePath:R.string().optional().describe(`Source file path`)}),yd=R.object({id:R.string().optional().describe(`Edge ID (auto-generated if omitted)`),fromId:R.string().describe(`Source node ID`),toId:R.string().describe(`Target node ID`),type:R.string().describe(`Relationship type (depends-on, implements, calls, affects)`),weight:R.number().min(0).max(1).optional().describe(`Relationship weight`),properties:R.record(R.string(),R.unknown()).optional().describe(`Arbitrary properties`)});function bd(e,t,n){let r=W(`graph`);e.registerTool(`graph`,{title:r.title,description:`Query the auto-populated code knowledge graph (modules, symbols, imports) to answer
199
+ `)}]}}case`delete`:if(!t)throw Error(`task_id required for delete`);return{content:[{type:`text`,text:mt({action:`delete`,taskId:t},p).deleted?`Deleted evidence map "${t}".`:`Evidence map "${t}" not found.`}]}}}catch(e){return fd.error(`Evidence map error`,N(e)),q(`INTERNAL`,`Evidence map error: ${e instanceof Error?e.message:String(e)}`)}}))}function md(e,t){let n=W(`digest`);e.registerTool(`digest`,{title:n.title,description:`Compress multiple text sources (handoffs, debates, phase summaries) into a token-budgeted digest. Jointly ranks across all sources, pins structured fields (status, files, decisions, blockers), and allocates budget by priority weight.`,outputSchema:fc,inputSchema:{sources:R.array(R.object({id:R.string().describe(`Source identifier (e.g., "phase-2-handoff")`),text:R.string().max(5e5).describe(`Source text to compress`),weight:R.number().min(0).default(1).describe(`Priority weight (higher = more budget)`)})).min(1).max(20).describe(`Text sources to compress`),query:R.string().describe(`Focus query — what matters for the next step?`),max_chars:R.number().min(100).max(5e4).default(4e3).describe(`Target budget in characters`),pin_fields:R.array(R.string()).optional().describe(`Key fields to always extract (default: status, files, decisions, blockers, next)`),segmentation:R.enum([`paragraph`,`sentence`,`line`]).default(`paragraph`).describe(`How to split text for scoring`),token_budget:R.number().min(50).max(12500).optional().describe(`Token budget — overrides max_chars (approx 4 chars per token). Use to fit output into a specific context window.`)},annotations:n.annotations},async({sources:e,query:n,max_chars:r,pin_fields:i,segmentation:a,token_budget:o})=>{try{let s=await lt(t,{sources:e,query:n,maxChars:o?o*4:r,pinFields:i,segmentation:a}),c=[`## Digest (${s.totalOriginalChars} → ${s.totalCompressedChars} chars, ${(s.ratio*100).toFixed(0)}%)`,s.ref?`Ref: ${s.ref}`:void 0,``],l=Object.keys(s.fields);if(l.length>0){c.push(`### Extracted Fields`);for(let e of l){let t=s.fields[e];c.push(`**${e}:**`);for(let e of t)c.push(` - [${e.sourceId}] ${e.value}`)}c.push(``)}c.push(`### Compressed Content`,``,s.text),c.push(``,`### Source Stats`);for(let e of s.sourceStats)c.push(`- **${e.id}**: ${e.originalChars} → ${e.keptChars} chars (${e.segmentsKept}/${e.segmentsTotal} segments)`);c.push(``,`---`,"_Next: Use the digest as compressed context for the next phase. Use `stash` to persist it if needed._");let u=c.filter(e=>typeof e==`string`).join(`
200
+ `);return{content:[{type:`text`,text:u}],structuredContent:{text:u,ref:s.ref,fields:s.fields,sourceStats:s.sourceStats,totalOriginalChars:s.totalOriginalChars,totalCompressedChars:s.totalCompressedChars,ratio:s.ratio}}}catch(e){return fd.error(`Digest failed`,N(e)),{...q(`INTERNAL`,`Digest failed: ${e instanceof Error?e.message:String(e)}`),structuredContent:{text:``,ref:void 0,fields:{},sourceStats:[],totalOriginalChars:0,totalCompressedChars:0,ratio:0}}}})}function hd(e,t){let n=W(`forge_classify`);e.registerTool(`forge_classify`,{title:n.title,description:`Classify FORGE tier (Floor/Standard/Critical) from target files and task description. Checks blast radius, cross-package boundaries, schema/contract patterns, and security signals. Returns tier, triggers, typed unknown seeds, and ceremony guidance.`,inputSchema:{files:R.array(R.string()).min(1).max(100).describe(`Files being modified (paths)`),task:R.string().describe(`Task description`),root_path:R.string().describe(`Root path of the codebase`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},annotations:n.annotations},J(`forge_classify`,async({files:e,task:n,root_path:r,enrich:i})=>{try{let a=await yt({files:e,task:n,rootPath:r}),o=[`## FORGE Classification: **${a.tier.toUpperCase()}**`,``];if(a.triggers.length>0){o.push(`### Triggers`);for(let e of a.triggers)o.push(`- **${e.rule}** (${e.source}): ${e.detail}`);o.push(``)}if(a.packagesCrossed.length>0&&o.push(`**Packages crossed:** ${a.packagesCrossed.join(`, `)}`),a.typedUnknownSeeds.length>0){o.push(``,`### Typed Unknown Seeds`);for(let e of a.typedUnknownSeeds)o.push(`- [${e.type}] ${e.description} → use \`${e.suggestedTool}\``)}o.push(``,`### Ceremony`);let s=a.ceremony;o.push(`- **Ground:** ${s.ground}`,`- **Build:** ${s.build}`,`- **Break:** ${s.break}`,`- **Evidence Map:** ${s.evidenceMap}`,`- **Gate:** ${s.gate}`),o.push(``,`---`,`_Next: ${a.tier===`floor`?`Proceed directly to implementation.`:"Run `forge_ground` to execute the full Ground phase."}_`);let c=o.join(`
201
+ `);if(i&&t){let e=await G(t,{query:`forge classify ${n}`});c+=K(e)}return{content:[{type:`text`,text:c}]}}catch(e){return fd.error(`FORGE classify failed`,N(e)),q(`INTERNAL`,`FORGE classify failed: ${e instanceof Error?e.message:String(e)}`)}}))}function gd(e,t,n){let r=W(`stratum_card`);e.registerTool(`stratum_card`,{title:r.title,description:`Generate context cards from files — a compressed alternative to reading full files (10-100x token reduction). Tier 1 (T1): structure only (~100 tokens/file — imports, exports, functions). Tier 2 (T2): structure + query-relevant content (~300 tokens/file).`,inputSchema:{files:R.array(R.string()).min(1).max(50).describe(`Absolute file paths to generate cards for`),query:R.string().describe(`Current task query — guides relevance scoring`),tier:R.enum([`T1`,`T2`]).default(`T1`).describe(`Card tier: T1 = structural only, T2 = T1 + compressed content`),max_content_chars:R.number().min(100).max(5e3).default(800).describe(`For T2: max chars for compressed content section`)},annotations:r.annotations},async({files:e,query:r,tier:i,max_content_chars:a})=>{try{let o=await Cn(t,{files:e,query:r,tier:i,maxContentChars:a,cache:n}),s=[`## STRATUM Cards (${i}) — ${o.cards.length} files`,`Total: ~${o.totalTokenEstimate} tokens (was ~${o.totalOriginalTokenEstimate}, ${(o.compressionRatio*100).toFixed(0)}% of original)`,``];for(let e of o.cards)s.push(e.card,``);return s.push(`---`,"_Next: Use these cards as context instead of reading full files. Use `compact` for deeper content extraction on specific files._"),{content:[{type:`text`,text:s.join(`
202
+ `)}]}}catch(e){return fd.error(`STRATUM cards failed`,N(e)),q(`INTERNAL`,`STRATUM cards failed: ${e instanceof Error?e.message:String(e)}`)}})}function _d(e,t,n){let r=W(`forge_ground`);e.registerTool(`forge_ground`,{title:r.title,description:`Execute the complete FORGE Ground phase in a single call. Chains: tier classification → scope map → typed unknown seeds → constraint loading → file summaries → evidence map creation. Replaces 5-15 manual tool calls.`,inputSchema:{task:R.string().describe(`Task description`),files:R.array(R.string()).min(1).max(100).describe(`Target files being modified (absolute paths)`),root_path:R.string().describe(`Root path of the codebase`),max_constraints:R.number().min(0).max(10).default(3).describe(`Max constraint entries to load from AI Kit memory`),force_tier:R.enum([`floor`,`standard`,`critical`]).optional().describe(`Force a specific tier (skips auto-classification)`),task_id:R.string().optional().describe(`Custom task ID for evidence map (auto-generated if omitted)`)},annotations:r.annotations},J(`forge_ground`,async({task:e,files:r,root_path:i,max_constraints:a,force_tier:o,task_id:s},c)=>{try{let l=await bt(t,n,{task:e,files:r,rootPath:i,maxConstraints:a,forceTier:o,taskId:s}),u=Qc(c).createTask(`FORGE Ground`,3);u.progress(0,`Classification: ${l.tier}`),u.progress(1,`Files analyzed: ${l.fileSummaries.length}`),u.progress(2,`Unknowns: ${l.typedUnknownSeeds.length}`),u.complete(`FORGE Ground complete: tier=${l.tier}`);let d=[`## FORGE Ground: **${l.tier.toUpperCase()}**`,`Estimated output: ~${l.estimatedTokens} tokens`,``];if(l.classifyTriggers.length>0){d.push(`### Classification Triggers`);for(let e of l.classifyTriggers)d.push(`- **${e.rule}** (${e.source}): ${e.detail}`);d.push(``)}if(l.fileSummaries.length>0){d.push(`### Target Files`);for(let e of l.fileSummaries)d.push(`- **${e.path}** (${e.lines} lines) — exports: ${e.exports.join(`, `)||`none`} — functions: ${e.functions.join(`, `)||`none`}`);d.push(``)}if(l.typedUnknownSeeds.length>0){d.push(`### Typed Unknown Seeds`);for(let e of l.typedUnknownSeeds)d.push(`- [${e.type}] ${e.description} → \`${e.suggestedTool}\``);d.push(``)}if(l.constraints.length>0){d.push(`### Constraint Seed`);for(let e of l.constraints)d.push(`- **${e.source}** (${(e.relevance*100).toFixed(0)}%): ${e.snippet}`);d.push(``)}if(l.scopeMap){d.push(`### Scope Map: ${l.scopeMap.files.length} files (~${l.scopeMap.totalEstimatedTokens} tokens)`);for(let e of l.scopeMap.files.slice(0,5))d.push(`- ${e.path} (${(e.relevance*100).toFixed(0)}%) — ${e.reason}`);l.scopeMap.files.length>5&&d.push(`- _...and ${l.scopeMap.files.length-5} more_`),d.push(``)}l.evidenceMapTaskId&&(d.push(`**Evidence Map:** \`${l.evidenceMapTaskId}\` (initialized)`),d.push(``)),d.push(`### Ceremony Guidance`);let f=l.ceremony;return d.push(`- **Ground:** ${f.ground}`,`- **Build:** ${f.build}`,`- **Break:** ${f.break}`,`- **Evidence Map:** ${f.evidenceMap}`,`- **Gate:** ${f.gate}`),d.push(``,`---`,`_Next: ${l.tier===`floor`?`Proceed to Build phase.`:"Use `evidence_map` to track claims during Build, then `evidence_map` gate after Break."}_`),{content:[{type:`text`,text:d.join(`
203
+ `)}]}}catch(e){return fd.error(`FORGE Ground failed`,N(e)),q(`INTERNAL`,`FORGE Ground failed: ${e instanceof Error?e.message:String(e)}`)}}))}const vd=M(`tools`),yd=R.object({id:R.string().optional().describe(`Node ID (auto-generated if omitted)`),type:R.string().describe(`Node type (entity, service, api, concept, decision)`),name:R.string().describe(`Display name`),properties:R.record(R.string(),R.unknown()).optional().describe(`Arbitrary properties`),sourceRecordId:R.string().optional().describe(`Back-link to knowledge record ID`),sourcePath:R.string().optional().describe(`Source file path`)}),bd=R.object({id:R.string().optional().describe(`Edge ID (auto-generated if omitted)`),fromId:R.string().describe(`Source node ID`),toId:R.string().describe(`Target node ID`),type:R.string().describe(`Relationship type (depends-on, implements, calls, affects)`),weight:R.number().min(0).max(1).optional().describe(`Relationship weight`),properties:R.record(R.string(),R.unknown()).optional().describe(`Arbitrary properties`)});function xd(e,t,n){let r=W(`graph`);e.registerTool(`graph`,{title:r.title,description:`Query the auto-populated code knowledge graph (modules, symbols, imports) to answer
204
204
  structural questions vector search cannot.
205
205
 
206
206
  Common flow (when you don't have a node_id yet — TWO STEPS):
@@ -219,7 +219,7 @@ Single-step read actions:
219
219
  Mutating actions (use deliberately): add, delete, clear, set_community,
220
220
  detect_communities, trace_process, delete_process.
221
221
 
222
- Complements: \`symbol\` (single lookup), \`trace\` (call-chain AST), \`blast_radius\` (change impact).`,outputSchema:rc,inputSchema:{action:R.enum([`find_nodes`,`find_edges`,`neighbors`,`traverse`,`stats`,`validate`,`add`,`delete`,`clear`,`detect_communities`,`set_community`,`trace_process`,`list_processes`,`delete_process`,`depth_traverse`,`cohesion`,`symbol360`]).describe(`Action: find_nodes (search nodes), find_edges (search edges), neighbors (direct connections), traverse (multi-hop), stats (graph overview), validate (check graph integrity), add (insert nodes/edges), delete (remove nodes), clear (remove all), detect_communities (find clusters), set_community (label a node), trace_process (persist execution flow), list_processes (list traced flows), delete_process (remove a flow), depth_traverse (bucket traversal by depth), cohesion (score a community), symbol360 (full node context)`),node_type:R.string().optional().describe(`Node type filter (for find_nodes)`),name_pattern:R.string().optional().describe(`Name substring match (for find_nodes)`),source_path:R.string().optional().describe(`Source path filter`),node_id:R.string().optional().describe(`Node ID (for neighbors, traverse, delete)`),edge_type:R.string().optional().describe(`Edge type filter`),from_id:R.string().optional().describe(`Source node ID (for find_edges)`),to_id:R.string().optional().describe(`Target node ID (for find_edges)`),direction:R.enum([`outgoing`,`incoming`,`both`]).default(`both`).describe(`Traversal direction`),max_depth:R.number().min(1).max(5).default(2).describe(`Max traversal depth`),limit:R.number().min(1).max(100).default(50).describe(`Max results`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),nodes:R.array(vd).max(500).optional().describe(`Nodes to add (for action=add)`),edges:R.array(yd).max(500).optional().describe(`Edges to add (for action=add)`),community:R.string().optional().describe(`Community label (for set_community, cohesion)`),process_id:R.string().optional().describe(`Process ID (for delete_process)`),label:R.string().optional().describe(`Label for process tracing (for trace_process)`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},annotations:r.annotations},J(`graph`,async e=>{try{let r=await wt(t,{action:e.action,nodeType:e.node_type,namePattern:e.name_pattern,sourcePath:e.source_path,nodeId:e.node_id,edgeType:e.edge_type,fromId:e.from_id,toId:e.to_id,direction:e.direction,maxDepth:e.max_depth,limit:e.limit,nodes:e.nodes,edges:e.edges,community:e.community,processId:e.process_id,label:e.label}),i=[r.summary];if(r.nodes&&r.nodes.length>0){i.push(`
222
+ Complements: \`symbol\` (single lookup), \`trace\` (call-chain AST), \`blast_radius\` (change impact).`,outputSchema:rc,inputSchema:{action:R.enum([`find_nodes`,`find_edges`,`neighbors`,`traverse`,`stats`,`validate`,`add`,`delete`,`clear`,`detect_communities`,`set_community`,`trace_process`,`list_processes`,`delete_process`,`depth_traverse`,`cohesion`,`symbol360`]).describe(`Action: find_nodes (search nodes), find_edges (search edges), neighbors (direct connections), traverse (multi-hop), stats (graph overview), validate (check graph integrity), add (insert nodes/edges), delete (remove nodes), clear (remove all), detect_communities (find clusters), set_community (label a node), trace_process (persist execution flow), list_processes (list traced flows), delete_process (remove a flow), depth_traverse (bucket traversal by depth), cohesion (score a community), symbol360 (full node context)`),node_type:R.string().optional().describe(`Node type filter (for find_nodes)`),name_pattern:R.string().optional().describe(`Name substring match (for find_nodes)`),source_path:R.string().optional().describe(`Source path filter`),node_id:R.string().optional().describe(`Node ID (for neighbors, traverse, delete)`),edge_type:R.string().optional().describe(`Edge type filter`),from_id:R.string().optional().describe(`Source node ID (for find_edges)`),to_id:R.string().optional().describe(`Target node ID (for find_edges)`),direction:R.enum([`outgoing`,`incoming`,`both`]).default(`both`).describe(`Traversal direction`),max_depth:R.number().min(1).max(5).default(2).describe(`Max traversal depth`),limit:R.number().min(1).max(100).default(50).describe(`Max results`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),nodes:R.array(yd).max(500).optional().describe(`Nodes to add (for action=add)`),edges:R.array(bd).max(500).optional().describe(`Edges to add (for action=add)`),community:R.string().optional().describe(`Community label (for set_community, cohesion)`),process_id:R.string().optional().describe(`Process ID (for delete_process)`),label:R.string().optional().describe(`Label for process tracing (for trace_process)`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)},annotations:r.annotations},J(`graph`,async e=>{try{let r=await wt(t,{action:e.action,nodeType:e.node_type,namePattern:e.name_pattern,sourcePath:e.source_path,nodeId:e.node_id,edgeType:e.edge_type,fromId:e.from_id,toId:e.to_id,direction:e.direction,maxDepth:e.max_depth,limit:e.limit,nodes:e.nodes,edges:e.edges,community:e.community,processId:e.process_id,label:e.label}),i=[r.summary];if(r.nodes&&r.nodes.length>0){i.push(`
223
223
  ### Nodes`);for(let e of r.nodes){let t=Object.keys(e.properties).length>0?` — ${JSON.stringify(e.properties)}`:``;i.push(`- **${e.name}** (${e.type}, id: \`${e.id}\`)${t}`)}}if(r.edges&&r.edges.length>0){i.push(`
224
224
  ### Edges`);for(let e of r.edges)i.push(`- \`${e.fromId}\` —[${e.type}]→ \`${e.toId}\`${e.weight===1?``:` (weight: ${e.weight})`}`)}if(r.stats&&(i.push(`\nNode types: ${JSON.stringify(r.stats.nodeTypes)}`),i.push(`Edge types: ${JSON.stringify(r.stats.edgeTypes)}`)),r.validation){if(i.push(`
225
225
  ### Validation`),i.push(`- **Valid**: ${r.validation.valid?`yes`:`no`}`),r.validation.danglingEdges.length>0){i.push(`- **Dangling edges**:`);for(let e of r.validation.danglingEdges)i.push(` - \`${e.edgeId}\` references missing node \`${e.missingNodeId}\``)}r.validation.orphanNodes.length>0&&i.push(`- **Orphan nodes**: ${r.validation.orphanNodes.map(e=>`\`${e}\``).join(`, `)}`)}if(r.communities){i.push(`
@@ -228,62 +228,62 @@ Complements: \`symbol\` (single lookup), \`trace\` (call-chain AST), \`blast_rad
228
228
  ### Processes`);for(let e of r.processes)i.push(`- **${e.label}** (id: \`${e.id}\`) — ${e.steps.length} step(s)`)}if(r.depthGroups){i.push(`
229
229
  ### Depth Groups`);for(let[e,t]of Object.entries(r.depthGroups))i.push(`- **Depth ${e}**: ${t.map(e=>`${e.name} (${e.type})`).join(`, `)}`)}if(r.cohesionScore!==void 0&&i.push(`\n**Cohesion Score**: ${(r.cohesionScore*100).toFixed(1)}%`),r.symbol360){let e=r.symbol360;i.push(`
230
230
  ### 360° Symbol View`),i.push(`- **Node**: ${e.node.name} (${e.node.type})`),i.push(`- **Community**: ${e.community??`none`}`),i.push(`- **Incoming**: ${e.incoming.length} edge(s)`),i.push(`- **Outgoing**: ${e.outgoing.length} edge(s)`),i.push(`- **Processes**: ${e.processes.length}`)}i.push("\n---\n_Next: Use `graph(traverse)` to explore connections, `graph(add)` to insert entities, `graph(symbol360)` for full node context, or `graph(detect_communities)` to find clusters._");let a=i.join(`
231
- `);if(e.enrich&&n){let t=await G(n,{query:`graph ${e.action} ${e.name_pattern??e.node_id??e.community??``}`.trim(),filePath:e.source_path});a+=K(t)}return{content:[{type:`text`,text:e.max_tokens?kn(a,e.max_tokens):a}],structuredContent:{nodes:(r.nodes??[]).map(e=>({id:e.id,name:e.name,type:e.type,...e.sourcePath?{sourcePath:e.sourcePath}:{}})),edges:(r.edges??[]).map(e=>({fromId:e.fromId,toId:e.toId,type:e.type})),totalNodes:r.stats?.nodeCount??r.nodes?.length??0,totalEdges:r.stats?.edgeCount??r.edges?.length??0,query:e.action}}}catch(e){return _d.error(`Graph query failed`,N(e)),q(`INTERNAL`,`Graph query failed: ${e instanceof Error?e.message:String(e)}`)}}))}const xd=M(`tools:infra`);function Sd(e){let t=W(`process`);e.registerTool(`process`,{title:t.title,description:`Start, stop, inspect, list, and tail logs for in-memory managed child processes.`,inputSchema:{action:R.enum([`start`,`stop`,`status`,`list`,`logs`]).describe(`Process action to perform`),id:R.string().optional().describe(`Managed process ID`),command:R.string().optional().describe(`Executable to start`),args:R.array(R.string()).optional().describe(`Arguments for start actions`),tail:R.number().min(1).max(500).optional().describe(`Log lines to return for logs actions`)},annotations:t.annotations},J(`process`,async({action:e,id:t,command:n,args:r,tail:i})=>{try{switch(e){case`start`:if(!t||!n)throw Error(`id and command are required for start`);return{content:[{type:`text`,text:JSON.stringify(Ht(t,n,r??[]))}]};case`stop`:if(!t)throw Error(`id is required for stop`);return{content:[{type:`text`,text:JSON.stringify(Wt(t)??null)}]};case`status`:if(!t)throw Error(`id is required for status`);return{content:[{type:`text`,text:JSON.stringify(Ut(t)??null)}]};case`list`:return{content:[{type:`text`,text:JSON.stringify(Bt())}]};case`logs`:if(!t)throw Error(`id is required for logs`);return{content:[{type:`text`,text:JSON.stringify(Vt(t,i))}]}}}catch(e){return xd.error(`Process action failed`,N(e)),q(`INTERNAL`,`Process action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Cd(e){let t=W(`watch`);e.registerTool(`watch`,{title:t.title,description:`Watch a directory for file changes (create/modify/delete). Actions: start (begin watching), stop (by ID), list (show active watchers). Events are emitted as structured JSON with path, event type, and timestamp.`,inputSchema:{action:R.enum([`start`,`stop`,`list`]).describe(`Watch action to perform`),path:R.string().optional().describe(`Directory path to watch for start actions`),id:R.string().optional().describe(`Watcher ID for stop actions`)},annotations:t.annotations},J(`watch`,async({action:e,path:t,id:n})=>{try{switch(e){case`start`:if(!t)throw Error(`path is required for start`);return{content:[{type:`text`,text:JSON.stringify(jn({path:t}))}]};case`stop`:if(!n)throw Error(`id is required for stop`);return{content:[{type:`text`,text:JSON.stringify({stopped:Mn(n)})}]};case`list`:return{content:[{type:`text`,text:JSON.stringify(An())}]}}}catch(e){return xd.error(`Watch action failed`,N(e)),q(`INTERNAL`,`Watch action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function wd(e){let t=W(`health`);e.registerTool(`health`,{title:t.title,description:`Run project health checks — verifies package.json, tsconfig, scripts, lockfile, README, LICENSE, .gitignore.`,outputSchema:Rs,inputSchema:{path:R.string().optional().describe(`Root directory to check (defaults to cwd)`)},annotations:t.annotations},J(`health`,async({path:e})=>{try{let t=Et(e),n={ok:t.checks.every(e=>e.status!==`fail`),checks:t.checks.map(e=>({name:e.name,ok:e.status===`pass`,message:e.message}))};return{content:[{type:`text`,text:JSON.stringify(t)}],structuredContent:n}}catch(e){return xd.error(`Health check failed`,N(e)),q(`INTERNAL`,`Health check failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Td(e){let t=W(`web_fetch`);e.registerTool(`web_fetch`,{title:t.title,description:`PREFERRED web fetcher — fetch one or many URLs and convert to LLM-optimized markdown. Pass one URL or multiple for parallel fetching. Supports CSS selectors, 4 output modes (markdown/raw/links/outline), smart paragraph-boundary truncation. Strips scripts/styles/nav automatically.`,inputSchema:{urls:R.array(R.string().url()).min(1).max(10).describe('URLs to fetch (1–10). Single URL: `["https://..."]`. Multiple fetched in parallel.'),mode:R.enum([`markdown`,`raw`,`links`,`outline`]).default(`markdown`).describe(`Output mode: markdown (clean content), raw (HTML), links (extracted URLs), outline (heading hierarchy)`),selector:R.string().optional().describe(`CSS selector to extract a specific element instead of auto-detecting main content`),max_length:R.number().min(500).max(1e5).default(15e3).describe(`Max characters in output — truncates at paragraph boundaries`),include_metadata:R.boolean().default(!0).describe(`Include page title, description, and URL as a header`),include_links:R.boolean().default(!1).describe(`Append extracted links list at the end`),include_images:R.boolean().default(!1).describe(`Include image alt texts inline`),timeout:R.number().min(1e3).max(12e4).default(3e4).describe(`Request timeout in milliseconds`)},annotations:t.annotations},J(`web_fetch`,async({urls:e,mode:t,selector:n,max_length:r,include_metadata:i,include_links:a,include_images:o,timeout:s})=>{let c=e,l=async(e,c)=>{let l=await Nn({url:e,mode:t,selector:n,maxLength:r,includeMetadata:i,includeLinks:a,includeImages:o,timeout:s}),u=[c?`## ${c} ${l.title||`Web Page`}\n> Source: ${e}`:`## ${l.title||`Web Page`}`,``,l.content];return l.truncated&&u.push(``,`_Original length: ${l.originalLength.toLocaleString()} chars_`),u.join(`
232
- `)};if(c.length===1)try{return{content:[{type:`text`,text:await l(c[0])+"\n\n---\n_Next: Use `remember` to save key findings, or `web_fetch` with a `selector` to extract a specific section._"}]}}catch(e){let t=e instanceof Error?e.message:String(e);return/HTTP [45]\d{2}/.test(t)?xd.warn(`Web fetch failed`,{error:t}):xd.error(`Web fetch failed`,N(e)),{...q(`INTERNAL`,`Web fetch failed: ${t}`)}}let u=c.length,d=await Promise.allSettled(c.map((e,t)=>l(e,`[${t+1}/${u}]`))),f=[],p=0;for(let e=0;e<d.length;e++){let t=d[e];if(t.status===`fulfilled`)f.push(t.value);else{p++;let n=t.reason instanceof Error?t.reason.message:String(t.reason);/HTTP [45]\d{2}/.test(n)?xd.warn(`Web fetch failed`,{url:c[e],error:n}):xd.error(`Web fetch failed`,{url:c[e],...N(t.reason)}),f.push(`## ❌ Failed: ${c[e]}\n\n${n}`)}}let m=`_Fetched ${d.length-p}/${d.length} URLs successfully._`;f.push(``,`---`,m,"_Next: Use `remember` to save key findings, or `web_fetch` with a `selector` to extract a specific section._");let h=f.join(`
233
-
234
- `);return p===d.length?q(`INTERNAL`,h):{content:[{type:`text`,text:h}]}}))}function Ed(e,t){let n=W(`guide`);e.registerTool(`guide`,{title:n.title,description:`Tool discovery — given a goal description, recommends which AI Kit tools to use and in what order. Matches against 10 predefined workflows: onboard, audit, bugfix, implement, refactor, search, context, memory, validate, analyze.`,inputSchema:{goal:R.string().describe(`What you want to accomplish (e.g., "audit this monorepo", "fix a failing test")`),max_recommendations:R.number().min(1).max(10).default(5).describe(`Maximum number of tool recommendations`)},annotations:n.annotations},J(`guide`,async({goal:e,max_recommendations:n})=>{try{let r=Tt(e,n,t),i=[`## Recommended Workflow: **${r.workflow}**`,r.description,``,`### Tools`,...r.tools.map(e=>{let t=e,n=t.suggestedArgs?` — \`${JSON.stringify(t.suggestedArgs)}\``:``,r=t.tokenTip?`\n 💡 ${t.tokenTip}`:``;return`${t.order}. **${t.tool}** — ${t.reason}${n}${r}`})];return r.alternativeWorkflows.length>0&&i.push(``,`_Alternative workflows: ${r.alternativeWorkflows.join(`, `)}_`),i.push(``,`---`,"_Next: Run the first recommended tool, or use `guide` again with a more specific goal._"),{content:[{type:`text`,text:i.join(`
235
- `)}]}}catch(e){return xd.error(`Guide failed`,N(e)),q(`INTERNAL`,`Guide failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Dd(e,t,n){if(!(!e||typeof e!=`string`)&&!(e.includes(`..`)||e.startsWith(`/`)||e.startsWith(`[`)))return{type:`resource_link`,uri:`aikit://curated/${e}`,name:t??e,mimeType:`text/markdown`,...n?{description:n}:{}}}function Od(e){let t=new Set,n=[];for(let r of e){let e=Dd(r.path,r.title,r.category?`[${r.category}]`:void 0);e&&!t.has(e.uri)&&(t.add(e.uri),n.push(e))}return n}function kd(e){if(e.startsWith(`.ai/curated/`))return e.slice(12)}const Ad={decisions:`decision`,patterns:`pattern`,conventions:`pattern`,context:`analysis`,session:`step-summary`},jd=new Set([`decision`,`pattern`,`file-card`,`analysis`,`search-result`,`step-summary`]),Md=R.enum([`remember`,`read`,`update`,`forget`,`list`,`history`,`diff`,`recover`,`orphaned`,`withdraw`,`flush`,`flagged`,`lesson`]),Nd=R.enum([`create`,`confirm`,`contradict`,`list-lessons`,`auto-observe`,`prune`,`group`,`promote`,`demote`]),Pd=R.enum([`confidence`,`recent`]),Fd=R.string().min(3).max(120).describe(`Short descriptive title for the knowledge entry`),Id=R.string().min(10).max(1e5),Ld=R.string().regex(/^[a-z][a-z0-9-]*$/).describe(`Category slug (e.g., "decisions", "patterns", "conventions", "api-contracts")`),Rd=R.array(R.string()).default([]).describe(`Optional tags for filtering`),zd=R.string().describe(`Relative path within .ai/curated/ (e.g., "decisions/use-lancedb.md")`),Bd=R.string().min(3),Vd=R.number().int().min(0).max(100).describe(`Lesson confidence from 0-100`),Hd=R.object({title:Fd,content:Id.describe(`The markdown content to store`),category:Ld,tags:Rd,force:R.boolean().optional().describe(`When true, supersede flagged similar entries without waiting for confirmation`)}),Ud=R.object({path:zd}),Wd=R.object({path:zd,content:Id.describe(`New markdown content to replace existing content`),reason:Bd.max(1e3).describe(`Why this update is being made (recorded in changelog)`)}),Gd=R.object({path:R.string().describe(`Relative path within .ai/curated/ (e.g., "decisions/deprecated-approach.md")`),reason:Bd.describe(`Why this entry is being removed`)}),Kd=R.object({category:R.string().optional().describe(`Filter by category (e.g., "decisions", "patterns")`),tag:R.string().optional().describe(`Filter by tag`),limit:R.number().int().min(1).max(200).default(50).describe(`Maximum entries to return`),offset:R.number().int().min(0).default(0).describe(`Pagination offset`)}),qd=R.object({title:Fd,context:Id.describe(`What happened (the situation)`),insight:Id.describe(`What was learned (the lesson)`),evidence:Id.describe(`Proof or justification`),confidence:Vd.default(50),tags:Rd.optional().default([])}),Jd=R.object({path:zd.optional(),id:zd.optional(),reason:Bd.max(1e3).optional()}).refine(e=>!!(e.path??e.id),{message:`path or id is required`,path:[`path`]}),Yd=R.object({topic:R.string().optional(),minConfidence:Vd.optional(),tag:R.string().optional(),tags:R.array(R.string()).optional(),sortBy:Pd.default(`confidence`),includeArchived:R.boolean().default(!1),limit:R.number().int().min(1).max(200).default(50),offset:R.number().int().min(0).default(0)}),Xd=R.object({bufferPath:R.string().optional()}),Zd=R.object({maxConfidence:Vd.optional(),minIdleDays:R.number().int().min(1).optional(),safetyDays:R.number().int().min(0).optional(),maxPrune:R.number().int().min(1).max(1e3).optional(),dryRun:R.boolean().default(!0)}),Qd=R.object({similarityThreshold:R.number().min(0).max(1).optional(),minGroupSize:R.number().int().min(2).max(1e3).optional(),maxGroups:R.number().int().min(1).max(1e3).optional(),dryRun:R.boolean().default(!0)}),$d=R.object({minWorkspaces:R.number().int().min(2).max(1e3).optional(),minAvgConfidence:Vd.optional(),similarityThreshold:R.number().min(0).max(1).optional(),dryRun:R.boolean().default(!0)}),ef=R.object({action:Md.describe(`Knowledge operation to perform`),title:Fd.optional(),content:Id.optional(),category:Ld.optional(),tags:R.array(R.string()).optional().describe(`Optional tags for remember`),path:zd.optional(),reason:Bd.max(1e3).optional(),scope:R.enum([`curated`,`flow`]).optional().describe(`Storage scope: curated (default) or flow-scoped ephemeral context`),profile:R.string().optional().describe(`Role profile for withdraw filtering (e.g., "implementer", "reviewer", "debugger")`),budget:R.number().int().min(100).max(5e4).optional().describe(`Maximum character budget for withdraw results (default: 6000)`),token_budget:R.number().int().min(50).max(12500).optional().describe(`Token budget (overrides budget). Approx 4 chars per token.`),tag:R.string().optional().describe(`Filter by tag when action="list"`),id:zd.optional().describe(`Alias for path when action="lesson"`),subAction:Nd.optional().describe(`Lesson sub-action when action="lesson"`),bufferPath:R.string().optional().describe(`Optional observation buffer path for lesson auto-observe`),context:Id.optional().describe(`What happened (the situation) for lesson creation`),insight:Id.optional().describe(`What was learned (the lesson) for lesson creation`),evidence:Id.optional().describe(`Proof or justification for lesson creation`),confidence:Vd.optional(),minConfidence:Vd.optional().describe(`Minimum confidence when listing lessons`),topic:R.string().optional().describe(`Topic filter when listing lessons`),sortBy:Pd.optional().describe(`Sort lessons by confidence or recency`),includeArchived:R.boolean().optional().describe(`Include auto-archived lessons in list-lessons`),maxConfidence:Vd.optional().describe(`Prune lessons below this effective confidence`),minIdleDays:R.number().int().min(1).optional().describe(`Minimum idle days required before pruning a lesson`),safetyDays:R.number().int().min(0).optional().describe(`Never prune if accessed within this many days`),maxPrune:R.number().int().min(1).max(1e3).optional().describe(`Maximum number of lessons to prune in one run`),similarityThreshold:R.number().min(0).max(1).optional().describe(`Minimum Jaccard similarity required to group lesson titles`),minGroupSize:R.number().int().min(2).max(1e3).optional().describe(`Minimum number of lessons required to form a group`),maxGroups:R.number().int().min(1).max(1e3).optional().describe(`Maximum number of lesson groups to create in one run`),minWorkspaces:R.number().int().min(2).max(1e3).optional().describe(`Minimum number of distinct workspaces required before promoting a lesson`),minAvgConfidence:Vd.optional().describe(`Minimum average lesson confidence required before promoting a lesson`),dryRun:R.boolean().optional().describe(`Preview the operation without modifying stored lessons`),limit:R.number().int().min(1).max(200).optional().describe(`Maximum entries to return for list/history operations`),offset:R.number().int().min(0).optional().describe(`Pagination offset when action="list"`),force:R.boolean().optional().describe(`When true, supersede flagged similar entries without waiting for confirmation`),from_sha:R.string().optional().describe(`Start SHA for diff (older version). If omitted with to_sha, shows full content.`),to_sha:R.string().optional().describe(`End SHA for diff (newer version). If omitted, uses the latest two versions.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)}),tf=M(`tools`);function nf(e,t){return[`knowledge`,e,t.path,t.id,t.title,t.topic,t.category,t.tag,t.profile].filter(e=>typeof e==`string`&&e.length>0).join(` `)}async function rf(e,t,n){let r=e.content?.find(e=>typeof e==`object`&&!!e&&`type`in e&&e.type===`text`);if(!r)return e;let i=r.text??``;if(t.enrich&&n){let e=await G(n,{query:nf(t.action,t)});i+=K(e)}t.max_tokens&&(i=kn(i,t.max_tokens));let a=Rl(i),o=zl(i,a),s=a&&e.structuredContent&&typeof e.structuredContent==`object`?{...e.structuredContent,ref:a}:a?{ref:a}:e.structuredContent;return{...e,content:e.content.map(e=>e.type===`text`?{...e,text:o}:e),structuredContent:s}}function af(e,t,n,r){b(e,t,n);let i=e.memoryMetaGet(t);if(!i)return;let a=g(i,{..._,...r});return a?(y(e,t,a),v(e,t,n)??e.memoryMetaGet(t)):i}function of(e,t){return`\n\n### ${e}\n${t.map(e=>`- **${e.title}** (${e.id}) — similarity ${e.similarity.toFixed(3)}`).join(`
236
- `)}`}async function sf(e,t,r,i){if(typeof e.list!=`function`||typeof e.read!=`function`)return[];let a=n(i),o=await e.list({category:r,limit:a.maxCompare,orderBy:`updated`,order:`desc`});return o.length===0?[]:u(t,await Promise.all(o.map(async t=>{let n=await e.read(t.path);return{id:t.path,title:n.title,content:n.content,path:t.path}})),a)}function cf(e,t,n){return{superseded:e.filter(e=>n||e.similarity>=t).map(e=>({id:e.entryId,title:e.title,similarity:e.similarity})),supersessionCandidates:n?[]:e.filter(e=>e.similarity<t).map(e=>({id:e.entryId,title:e.title,similarity:e.similarity}))}}function lf(e){if(!e)return`analysis`;let t=Ad[e]??e;return jd.has(t)?t:`analysis`}function uf(e){let t=[...new Set(e.issues.filter(e=>e.code===`invalid_type`&&/received undefined$/i.test(e.message)).map(e=>e.path.join(`.`)).filter(e=>e.length>0))];if(t.length>0)return`Missing required fields: ${t.join(`, `)}`;let n=e.issues.map(e=>`${e.path.length>0?`${e.path.join(`.`)}: `:``}${e.message}`).join(`; `);return n.length>0?`Invalid parameters: ${n}`:`Invalid parameters.`}function df(e,t){return e??t??``}function ff(e){return[...new Set([...e??[],`lesson`])]}function pf(e,t,n){if(e)return e.memoryMetaCreate(t,`working`),e.memoryMetaUpdateConfidence(t,n),e.memoryMetaGet(t)}function mf(e,t,n,r=d){if(!e)return;let i=f(r);e.memoryMetaCreate(t,`working`),e.memoryMetaTouch(t);let a=n??e.memoryMetaGet(t)?.confidence??50,o=Math.min(100,a+i.implicitUseIncrement);return e.memoryMetaUpdateConfidence(t,o),e.memoryMetaGet(t)}function hf(e){let t=e.matchAll(/(?:\.ai\/curated\/)?(lessons\/[A-Za-z0-9._/%-]+\.md)/g);return[...new Set(Array.from(t,e=>e[1]))]}async function gf(e,t,n){let r=await e.read(n),i=a(r.content),o=t?.memoryMetaGet(n)?.confidence??i.confidence??50;return{entry:r,confidence:o,meta:pf(t,n,o)??t?.memoryMetaGet(n)}}function _f(e){if(typeof e!=`object`||!e)return e;let t=e;if(t.title)return e;let n=typeof t.topic==`string`&&t.topic||typeof t.insight==`string`&&t.insight||``;if(!n)return e;let r=n.length<=120?n:`${n.slice(0,117)}...`;return{...t,title:r}}async function vf(e){if(e){let t=L(e);try{return await zn(t),t}catch{return}}let t=(await Ln(Gn(),{withFileTypes:!0})).filter(e=>e.isFile()&&e.name.startsWith(`aikit-obs-`)&&e.name.endsWith(`.jsonl`)).map(e=>I(Gn(),e.name)),n=await Promise.all(t.map(async e=>{try{return{path:e,mtimeMs:(await zn(e)).mtimeMs}}catch{return{path:e,mtimeMs:0}}}));return n.sort((e,t)=>t.mtimeMs-e.mtimeMs),n[0]?.path}function yf(e,t){return t.map(t=>({path:t.path,title:t.title,similarity:p(e,t.title)})).filter(e=>e.similarity>.8).sort((e,t)=>t.similarity-e.similarity)[0]}function bf(e){let t=[`Lesson prune ${e.dryRun?`preview`:`completed`}: ${e.pruned.length} lessons selected.`,`Skipped ${e.skipped} lessons.`];return e.pruned.length>0&&(t.push(``,`Pruned:`),t.push(...e.pruned.map(e=>`- ${e}`))),t.join(`
237
- `)}function xf(e){let t=[`Lesson grouping ${e.dryRun?`preview`:`completed`}: ${e.groupsCreated} groups, ${e.lessonsGrouped} lessons.`];return e.groups.length>0&&(t.push(``,`Groups:`),t.push(...e.groups.map(e=>`- ${e.label}: ${e.members.join(`, `)}`))),t.join(`
238
- `)}function Sf(e,n){let r=e;return new t(n,r.store,r.embedder)}function Cf(e,t){let n=e.candidates.filter(e=>e.action===`promote`),r=e.candidates.filter(e=>e.action===`skip`),i=[`Lesson promotion ${t?`preview`:`completed`}: ${n.length} candidates ready.`,`Skipped ${r.length} candidates.`];return n.length>0&&(i.push(``,`Candidates:`),i.push(...n.map(e=>`- ${e.insight} (${e.foundIn.join(`, `)}) avg ${e.avgConfidence}/100`))),r.length>0&&(i.push(``,`Skipped:`),i.push(...r.map(e=>`- ${e.insight}: ${e.reason}`))),e.promoted.length>0&&(i.push(``,`Promoted:`),i.push(...e.promoted.map(e=>`- ${e}`))),i.join(`
239
- `)}async function wf(e,t){let r=e;if(r.scope===`flow`&&t.flowContextAdapter){let{title:e,content:n,category:i}=r,a=(e??`untitled`).toLowerCase().replace(/[^a-z0-9]+/g,`-`).replace(/^-|-$/g,``),o=lf(i),s=o?`${o}/${a}.md`:`${a}.md`,c=`# ${e}\n\n${n??``}`;return await t.flowContextAdapter.write(s,c),{content:[{type:`text`,text:`Deposited flow context at \`${s}\``}]}}let{curated:i,policyStore:a,evolutionCollector:o,resourceNotifier:c,stateStore:l,supersessionConfig:u}=t,{title:d,content:f,category:p,tags:m,force:h=!1}=Hd.parse(e),g=n(u),_=await sf(i,f,p,g),v=await i.remember(d,f,p,m);l?.memoryMetaCreate(v.path,`working`);let y=cf(_,g.autoThreshold,h);if(l)for(let e of y.superseded)s(l,e.id,v.path);let b=``;if(a){let e=a.classify(d,f,m);o&&o.recordClassification(d,e.matchingRules.map(e=>e.ruleId),e.pushRecommended),e.matchingRules.length>0&&(b=`\n\n### Classification Signals\n${e.matchingRules.map(e=>` - **${e.ruleId}** (${e.category}, weight: ${e.pushWeight}) — matched: ${e.matchedPatterns.join(`, `)}`).join(`
231
+ `);if(e.enrich&&n){let t=await G(n,{query:`graph ${e.action} ${e.name_pattern??e.node_id??e.community??``}`.trim(),filePath:e.source_path});a+=K(t)}return{content:[{type:`text`,text:e.max_tokens?kn(a,e.max_tokens):a}],structuredContent:{nodes:(r.nodes??[]).map(e=>({id:e.id,name:e.name,type:e.type,...e.sourcePath?{sourcePath:e.sourcePath}:{}})),edges:(r.edges??[]).map(e=>({fromId:e.fromId,toId:e.toId,type:e.type})),totalNodes:r.stats?.nodeCount??r.nodes?.length??0,totalEdges:r.stats?.edgeCount??r.edges?.length??0,query:e.action}}}catch(e){return vd.error(`Graph query failed`,N(e)),q(`INTERNAL`,`Graph query failed: ${e instanceof Error?e.message:String(e)}`)}}))}const Sd=M(`tools:infra`);function Cd(e){let t=W(`process`);e.registerTool(`process`,{title:t.title,description:`Start, stop, inspect, list, and tail logs for in-memory managed child processes.`,inputSchema:{action:R.enum([`start`,`stop`,`status`,`list`,`logs`]).describe(`Process action to perform`),id:R.string().optional().describe(`Managed process ID`),command:R.string().optional().describe(`Executable to start`),args:R.array(R.string()).optional().describe(`Arguments for start actions`),tail:R.number().min(1).max(500).optional().describe(`Log lines to return for logs actions`)},annotations:t.annotations},J(`process`,async({action:e,id:t,command:n,args:r,tail:i})=>{try{switch(e){case`start`:if(!t||!n)throw Error(`id and command are required for start`);return{content:[{type:`text`,text:JSON.stringify(Ht(t,n,r??[]))}]};case`stop`:if(!t)throw Error(`id is required for stop`);return{content:[{type:`text`,text:JSON.stringify(Wt(t)??null)}]};case`status`:if(!t)throw Error(`id is required for status`);return{content:[{type:`text`,text:JSON.stringify(Ut(t)??null)}]};case`list`:return{content:[{type:`text`,text:JSON.stringify(Bt())}]};case`logs`:if(!t)throw Error(`id is required for logs`);return{content:[{type:`text`,text:JSON.stringify(Vt(t,i))}]}}}catch(e){return Sd.error(`Process action failed`,N(e)),q(`INTERNAL`,`Process action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function wd(e){let t=W(`watch`);e.registerTool(`watch`,{title:t.title,description:`Watch a directory for file changes (create/modify/delete). Actions: start (begin watching), stop (by ID), list (show active watchers). Events are emitted as structured JSON with path, event type, and timestamp.`,inputSchema:{action:R.enum([`start`,`stop`,`list`]).describe(`Watch action to perform`),path:R.string().optional().describe(`Directory path to watch for start actions`),id:R.string().optional().describe(`Watcher ID for stop actions`)},annotations:t.annotations},J(`watch`,async({action:e,path:t,id:n})=>{try{switch(e){case`start`:if(!t)throw Error(`path is required for start`);return{content:[{type:`text`,text:JSON.stringify(jn({path:t}))}]};case`stop`:if(!n)throw Error(`id is required for stop`);return{content:[{type:`text`,text:JSON.stringify({stopped:Mn(n)})}]};case`list`:return{content:[{type:`text`,text:JSON.stringify(An())}]}}}catch(e){return Sd.error(`Watch action failed`,N(e)),q(`INTERNAL`,`Watch action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Td(e){let t=W(`health`);e.registerTool(`health`,{title:t.title,description:`Run project health checks — verifies package.json, tsconfig, scripts, lockfile, README, LICENSE, .gitignore.`,outputSchema:Rs,inputSchema:{path:R.string().optional().describe(`Root directory to check (defaults to cwd)`)},annotations:t.annotations},J(`health`,async({path:e})=>{try{let t=Et(e),n={ok:t.checks.every(e=>e.status!==`fail`),checks:t.checks.map(e=>({name:e.name,ok:e.status===`pass`,message:e.message}))};return{content:[{type:`text`,text:JSON.stringify(t)}],structuredContent:n}}catch(e){return Sd.error(`Health check failed`,N(e)),q(`INTERNAL`,`Health check failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Ed(e){let t=W(`web_fetch`);e.registerTool(`web_fetch`,{title:t.title,description:`PREFERRED web fetcher — fetch one or many URLs and convert to LLM-optimized markdown. Pass one URL or multiple for parallel fetching. Supports CSS selectors, 4 output modes (markdown/raw/links/outline), smart paragraph-boundary truncation. Strips scripts/styles/nav automatically.`,inputSchema:{urls:R.array(R.string().url()).min(1).max(10).describe('URLs to fetch (1–10). Single URL: `["https://..."]`. Multiple fetched in parallel.'),mode:R.enum([`markdown`,`raw`,`links`,`outline`]).default(`markdown`).describe(`Output mode: markdown (clean content), raw (HTML), links (extracted URLs), outline (heading hierarchy)`),selector:R.string().optional().describe(`CSS selector to extract a specific element instead of auto-detecting main content`),max_length:R.number().min(500).max(1e5).default(15e3).describe(`Max characters in output — truncates at paragraph boundaries`),include_metadata:R.boolean().default(!0).describe(`Include page title, description, and URL as a header`),include_links:R.boolean().default(!1).describe(`Append extracted links list at the end`),include_images:R.boolean().default(!1).describe(`Include image alt texts inline`),timeout:R.number().min(1e3).max(12e4).default(3e4).describe(`Request timeout in milliseconds`),allow_localhost:R.boolean().default(!1).describe(`Allow requests to localhost/loopback addresses (127.0.0.1, localhost, ::1). Default false for SSRF protection. Set true for local dev servers.`)},annotations:t.annotations},J(`web_fetch`,async({urls:e,mode:t,selector:n,max_length:r,include_metadata:i,include_links:a,include_images:o,timeout:s,allow_localhost:c})=>{let l=e,u=async(e,l)=>{let u=await Nn({url:e,mode:t,selector:n,maxLength:r,includeMetadata:i,includeLinks:a,includeImages:o,timeout:s,allowLocalhost:c}),d=[l?`## ${l} ${u.title||`Web Page`}\n> Source: ${e}`:`## ${u.title||`Web Page`}`,``,u.content];return u.truncated&&d.push(``,`_Original length: ${u.originalLength.toLocaleString()} chars_`),d.join(`
232
+ `)};if(l.length===1)try{return{content:[{type:`text`,text:await u(l[0])+"\n\n---\n_Next: Use `remember` to save key findings, or `web_fetch` with a `selector` to extract a specific section._"}]}}catch(e){let t=e instanceof Error?e.message:String(e);return/HTTP [45]\d{2}/.test(t)?Sd.warn(`Web fetch failed`,{error:t}):Sd.error(`Web fetch failed`,N(e)),{...q(`INTERNAL`,`Web fetch failed: ${t}`)}}let d=l.length,f=await Promise.allSettled(l.map((e,t)=>u(e,`[${t+1}/${d}]`))),p=[],m=0;for(let e=0;e<f.length;e++){let t=f[e];if(t.status===`fulfilled`)p.push(t.value);else{m++;let n=t.reason instanceof Error?t.reason.message:String(t.reason);/HTTP [45]\d{2}/.test(n)?Sd.warn(`Web fetch failed`,{url:l[e],error:n}):Sd.error(`Web fetch failed`,{url:l[e],...N(t.reason)}),p.push(`## ❌ Failed: ${l[e]}\n\n${n}`)}}let h=`_Fetched ${f.length-m}/${f.length} URLs successfully._`;p.push(``,`---`,h,"_Next: Use `remember` to save key findings, or `web_fetch` with a `selector` to extract a specific section._");let g=p.join(`
233
+
234
+ `);return m===f.length?q(`INTERNAL`,g):{content:[{type:`text`,text:g}]}}))}function Dd(e,t){let n=W(`guide`);e.registerTool(`guide`,{title:n.title,description:`Tool discovery — given a goal description, recommends which AI Kit tools to use and in what order. Matches against 10 predefined workflows: onboard, audit, bugfix, implement, refactor, search, context, memory, validate, analyze.`,inputSchema:{goal:R.string().describe(`What you want to accomplish (e.g., "audit this monorepo", "fix a failing test")`),max_recommendations:R.number().min(1).max(10).default(5).describe(`Maximum number of tool recommendations`)},annotations:n.annotations},J(`guide`,async({goal:e,max_recommendations:n})=>{try{let r=Tt(e,n,t),i=[`## Recommended Workflow: **${r.workflow}**`,r.description,``,`### Tools`,...r.tools.map(e=>{let t=e,n=t.suggestedArgs?` — \`${JSON.stringify(t.suggestedArgs)}\``:``,r=t.tokenTip?`\n 💡 ${t.tokenTip}`:``;return`${t.order}. **${t.tool}** — ${t.reason}${n}${r}`})];return r.alternativeWorkflows.length>0&&i.push(``,`_Alternative workflows: ${r.alternativeWorkflows.join(`, `)}_`),i.push(``,`---`,"_Next: Run the first recommended tool, or use `guide` again with a more specific goal._"),{content:[{type:`text`,text:i.join(`
235
+ `)}]}}catch(e){return Sd.error(`Guide failed`,N(e)),q(`INTERNAL`,`Guide failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Od(e,t,n){if(!(!e||typeof e!=`string`)&&!(e.includes(`..`)||e.startsWith(`/`)||e.startsWith(`[`)))return{type:`resource_link`,uri:`aikit://curated/${e}`,name:t??e,mimeType:`text/markdown`,...n?{description:n}:{}}}function kd(e){let t=new Set,n=[];for(let r of e){let e=Od(r.path,r.title,r.category?`[${r.category}]`:void 0);e&&!t.has(e.uri)&&(t.add(e.uri),n.push(e))}return n}function Ad(e){if(e.startsWith(`.ai/curated/`))return e.slice(12)}const jd={decisions:`decision`,patterns:`pattern`,conventions:`pattern`,context:`analysis`,session:`step-summary`},Md=new Set([`decision`,`pattern`,`file-card`,`analysis`,`search-result`,`step-summary`]),Nd=R.enum([`remember`,`read`,`update`,`forget`,`list`,`history`,`diff`,`recover`,`orphaned`,`withdraw`,`flush`,`flagged`,`lesson`]),Pd=R.enum([`create`,`confirm`,`contradict`,`list-lessons`,`auto-observe`,`prune`,`group`,`promote`,`demote`]),Fd=R.enum([`confidence`,`recent`]),Id=R.string().min(3).max(120).describe(`Short descriptive title for the knowledge entry`),Ld=R.string().min(10).max(1e5),Rd=R.string().regex(/^[a-z][a-z0-9-]*$/).describe(`Category slug (e.g., "decisions", "patterns", "conventions", "api-contracts")`),zd=R.array(R.string()).default([]).describe(`Optional tags for filtering`),Bd=R.string().describe(`Relative path within .ai/curated/ (e.g., "decisions/use-lancedb.md")`),Vd=R.string().min(3),Hd=R.number().int().min(0).max(100).describe(`Lesson confidence from 0-100`),Ud=R.object({title:Id,content:Ld.describe(`The markdown content to store`),category:Rd,tags:zd,force:R.boolean().optional().describe(`When true, supersede flagged similar entries without waiting for confirmation`)}),Wd=R.object({path:Bd}),Gd=R.object({path:Bd,content:Ld.describe(`New markdown content to replace existing content`),reason:Vd.max(1e3).describe(`Why this update is being made (recorded in changelog)`)}),Kd=R.object({path:R.string().describe(`Relative path within .ai/curated/ (e.g., "decisions/deprecated-approach.md")`),reason:Vd.describe(`Why this entry is being removed`)}),qd=R.object({category:R.string().optional().describe(`Filter by category (e.g., "decisions", "patterns")`),tag:R.string().optional().describe(`Filter by tag`),limit:R.number().int().min(1).max(200).default(50).describe(`Maximum entries to return`),offset:R.number().int().min(0).default(0).describe(`Pagination offset`)}),Jd=R.object({title:Id,context:Ld.describe(`What happened (the situation)`),insight:Ld.describe(`What was learned (the lesson)`),evidence:Ld.describe(`Proof or justification`),confidence:Hd.default(50),tags:zd.optional().default([])}),Yd=R.object({path:Bd.optional(),id:Bd.optional(),reason:Vd.max(1e3).optional()}).refine(e=>!!(e.path??e.id),{message:`path or id is required`,path:[`path`]}),Xd=R.object({topic:R.string().optional(),minConfidence:Hd.optional(),tag:R.string().optional(),tags:R.array(R.string()).optional(),sortBy:Fd.default(`confidence`),includeArchived:R.boolean().default(!1),limit:R.number().int().min(1).max(200).default(50),offset:R.number().int().min(0).default(0)}),Zd=R.object({bufferPath:R.string().optional()}),Qd=R.object({maxConfidence:Hd.optional(),minIdleDays:R.number().int().min(1).optional(),safetyDays:R.number().int().min(0).optional(),maxPrune:R.number().int().min(1).max(1e3).optional(),dryRun:R.boolean().default(!0)}),$d=R.object({similarityThreshold:R.number().min(0).max(1).optional(),minGroupSize:R.number().int().min(2).max(1e3).optional(),maxGroups:R.number().int().min(1).max(1e3).optional(),dryRun:R.boolean().default(!0)}),ef=R.object({minWorkspaces:R.number().int().min(2).max(1e3).optional(),minAvgConfidence:Hd.optional(),similarityThreshold:R.number().min(0).max(1).optional(),dryRun:R.boolean().default(!0)}),tf=R.object({action:Nd.describe(`Knowledge operation to perform`),title:Id.optional(),content:Ld.optional(),category:Rd.optional(),tags:R.array(R.string()).optional().describe(`Optional tags for remember`),path:Bd.optional(),reason:Vd.max(1e3).optional(),scope:R.enum([`curated`,`flow`]).optional().describe(`Storage scope: curated (default) or flow-scoped ephemeral context`),profile:R.string().optional().describe(`Role profile for withdraw filtering (e.g., "implementer", "reviewer", "debugger")`),budget:R.number().int().min(100).max(5e4).optional().describe(`Maximum character budget for withdraw results (default: 6000)`),token_budget:R.number().int().min(50).max(12500).optional().describe(`Token budget (overrides budget). Approx 4 chars per token.`),tag:R.string().optional().describe(`Filter by tag when action="list"`),id:Bd.optional().describe(`Alias for path when action="lesson"`),subAction:Pd.optional().describe(`Lesson sub-action when action="lesson"`),bufferPath:R.string().optional().describe(`Optional observation buffer path for lesson auto-observe`),context:Ld.optional().describe(`What happened (the situation) for lesson creation`),insight:Ld.optional().describe(`What was learned (the lesson) for lesson creation`),evidence:Ld.optional().describe(`Proof or justification for lesson creation`),confidence:Hd.optional(),minConfidence:Hd.optional().describe(`Minimum confidence when listing lessons`),topic:R.string().optional().describe(`Topic filter when listing lessons`),sortBy:Fd.optional().describe(`Sort lessons by confidence or recency`),includeArchived:R.boolean().optional().describe(`Include auto-archived lessons in list-lessons`),maxConfidence:Hd.optional().describe(`Prune lessons below this effective confidence`),minIdleDays:R.number().int().min(1).optional().describe(`Minimum idle days required before pruning a lesson`),safetyDays:R.number().int().min(0).optional().describe(`Never prune if accessed within this many days`),maxPrune:R.number().int().min(1).max(1e3).optional().describe(`Maximum number of lessons to prune in one run`),similarityThreshold:R.number().min(0).max(1).optional().describe(`Minimum Jaccard similarity required to group lesson titles`),minGroupSize:R.number().int().min(2).max(1e3).optional().describe(`Minimum number of lessons required to form a group`),maxGroups:R.number().int().min(1).max(1e3).optional().describe(`Maximum number of lesson groups to create in one run`),minWorkspaces:R.number().int().min(2).max(1e3).optional().describe(`Minimum number of distinct workspaces required before promoting a lesson`),minAvgConfidence:Hd.optional().describe(`Minimum average lesson confidence required before promoting a lesson`),dryRun:R.boolean().optional().describe(`Preview the operation without modifying stored lessons`),limit:R.number().int().min(1).max(200).optional().describe(`Maximum entries to return for list/history operations`),offset:R.number().int().min(0).optional().describe(`Pagination offset when action="list"`),force:R.boolean().optional().describe(`When true, supersede flagged similar entries without waiting for confirmation`),from_sha:R.string().optional().describe(`Start SHA for diff (older version). If omitted with to_sha, shows full content.`),to_sha:R.string().optional().describe(`End SHA for diff (newer version). If omitted, uses the latest two versions.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),enrich:R.boolean().default(!1).optional().describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens.`)}),nf=M(`tools`);function rf(e,t){return[`knowledge`,e,t.path,t.id,t.title,t.topic,t.category,t.tag,t.profile].filter(e=>typeof e==`string`&&e.length>0).join(` `)}async function af(e,t,n){let r=e.content?.find(e=>typeof e==`object`&&!!e&&`type`in e&&e.type===`text`);if(!r)return e;let i=r.text??``;if(t.enrich&&n){let e=await G(n,{query:rf(t.action,t)});i+=K(e)}t.max_tokens&&(i=kn(i,t.max_tokens));let a=zl(i),o=Bl(i,a),s=a&&e.structuredContent&&typeof e.structuredContent==`object`?{...e.structuredContent,ref:a}:a?{ref:a}:e.structuredContent;return{...e,content:e.content.map(e=>e.type===`text`?{...e,text:o}:e),structuredContent:s}}function of(e,t,n,r){b(e,t,n);let i=e.memoryMetaGet(t);if(!i)return;let a=g(i,{..._,...r});return a?(y(e,t,a),v(e,t,n)??e.memoryMetaGet(t)):i}function sf(e,t){return`\n\n### ${e}\n${t.map(e=>`- **${e.title}** (${e.id}) — similarity ${e.similarity.toFixed(3)}`).join(`
236
+ `)}`}async function cf(e,t,r,i){if(typeof e.list!=`function`||typeof e.read!=`function`)return[];let a=n(i),o=await e.list({category:r,limit:a.maxCompare,orderBy:`updated`,order:`desc`});return o.length===0?[]:u(t,await Promise.all(o.map(async t=>{let n=await e.read(t.path);return{id:t.path,title:n.title,content:n.content,path:t.path}})),a)}function lf(e,t,n){return{superseded:e.filter(e=>n||e.similarity>=t).map(e=>({id:e.entryId,title:e.title,similarity:e.similarity})),supersessionCandidates:n?[]:e.filter(e=>e.similarity<t).map(e=>({id:e.entryId,title:e.title,similarity:e.similarity}))}}function uf(e){if(!e)return`analysis`;let t=jd[e]??e;return Md.has(t)?t:`analysis`}function df(e){let t=[...new Set(e.issues.filter(e=>e.code===`invalid_type`&&/received undefined$/i.test(e.message)).map(e=>e.path.join(`.`)).filter(e=>e.length>0))];if(t.length>0)return`Missing required fields: ${t.join(`, `)}`;let n=e.issues.map(e=>`${e.path.length>0?`${e.path.join(`.`)}: `:``}${e.message}`).join(`; `);return n.length>0?`Invalid parameters: ${n}`:`Invalid parameters.`}function ff(e,t){return e??t??``}function pf(e){return[...new Set([...e??[],`lesson`])]}function mf(e,t,n){if(e)return e.memoryMetaCreate(t,`working`),e.memoryMetaUpdateConfidence(t,n),e.memoryMetaGet(t)}function hf(e,t,n,r=d){if(!e)return;let i=f(r);e.memoryMetaCreate(t,`working`),e.memoryMetaTouch(t);let a=n??e.memoryMetaGet(t)?.confidence??50,o=Math.min(100,a+i.implicitUseIncrement);return e.memoryMetaUpdateConfidence(t,o),e.memoryMetaGet(t)}function gf(e){let t=e.matchAll(/(?:\.ai\/curated\/)?(lessons\/[A-Za-z0-9._/%-]+\.md)/g);return[...new Set(Array.from(t,e=>e[1]))]}async function _f(e,t,n){let r=await e.read(n),i=a(r.content),o=t?.memoryMetaGet(n)?.confidence??i.confidence??50;return{entry:r,confidence:o,meta:mf(t,n,o)??t?.memoryMetaGet(n)}}function vf(e){if(typeof e!=`object`||!e)return e;let t=e;if(t.title)return e;let n=typeof t.topic==`string`&&t.topic||typeof t.insight==`string`&&t.insight||``;if(!n)return e;let r=n.length<=120?n:`${n.slice(0,117)}...`;return{...t,title:r}}async function yf(e){if(e){let t=L(e);try{return await zn(t),t}catch{return}}let t=(await Ln(Gn(),{withFileTypes:!0})).filter(e=>e.isFile()&&e.name.startsWith(`aikit-obs-`)&&e.name.endsWith(`.jsonl`)).map(e=>I(Gn(),e.name)),n=await Promise.all(t.map(async e=>{try{return{path:e,mtimeMs:(await zn(e)).mtimeMs}}catch{return{path:e,mtimeMs:0}}}));return n.sort((e,t)=>t.mtimeMs-e.mtimeMs),n[0]?.path}function bf(e,t){return t.map(t=>({path:t.path,title:t.title,similarity:p(e,t.title)})).filter(e=>e.similarity>.8).sort((e,t)=>t.similarity-e.similarity)[0]}function xf(e){let t=[`Lesson prune ${e.dryRun?`preview`:`completed`}: ${e.pruned.length} lessons selected.`,`Skipped ${e.skipped} lessons.`];return e.pruned.length>0&&(t.push(``,`Pruned:`),t.push(...e.pruned.map(e=>`- ${e}`))),t.join(`
237
+ `)}function Sf(e){let t=[`Lesson grouping ${e.dryRun?`preview`:`completed`}: ${e.groupsCreated} groups, ${e.lessonsGrouped} lessons.`];return e.groups.length>0&&(t.push(``,`Groups:`),t.push(...e.groups.map(e=>`- ${e.label}: ${e.members.join(`, `)}`))),t.join(`
238
+ `)}function Cf(e,n){let r=e;return new t(n,r.store,r.embedder)}function wf(e,t){let n=e.candidates.filter(e=>e.action===`promote`),r=e.candidates.filter(e=>e.action===`skip`),i=[`Lesson promotion ${t?`preview`:`completed`}: ${n.length} candidates ready.`,`Skipped ${r.length} candidates.`];return n.length>0&&(i.push(``,`Candidates:`),i.push(...n.map(e=>`- ${e.insight} (${e.foundIn.join(`, `)}) avg ${e.avgConfidence}/100`))),r.length>0&&(i.push(``,`Skipped:`),i.push(...r.map(e=>`- ${e.insight}: ${e.reason}`))),e.promoted.length>0&&(i.push(``,`Promoted:`),i.push(...e.promoted.map(e=>`- ${e}`))),i.join(`
239
+ `)}async function Tf(e,t){let r=e;if(r.scope===`flow`&&t.flowContextAdapter){let{title:e,content:n,category:i}=r,a=(e??`untitled`).toLowerCase().replace(/[^a-z0-9]+/g,`-`).replace(/^-|-$/g,``),o=uf(i),s=o?`${o}/${a}.md`:`${a}.md`,c=`# ${e}\n\n${n??``}`;return await t.flowContextAdapter.write(s,c),{content:[{type:`text`,text:`Deposited flow context at \`${s}\``}]}}let{curated:i,policyStore:a,evolutionCollector:o,resourceNotifier:c,stateStore:l,supersessionConfig:u}=t,{title:d,content:f,category:p,tags:m,force:h=!1}=Ud.parse(e),g=n(u),_=await cf(i,f,p,g),v=await i.remember(d,f,p,m);l?.memoryMetaCreate(v.path,`working`);let y=lf(_,g.autoThreshold,h);if(l)for(let e of y.superseded)s(l,e.id,v.path);let b=``;if(a){let e=a.classify(d,f,m);o&&o.recordClassification(d,e.matchingRules.map(e=>e.ruleId),e.pushRecommended),e.matchingRules.length>0&&(b=`\n\n### Classification Signals\n${e.matchingRules.map(e=>` - **${e.ruleId}** (${e.category}, weight: ${e.pushWeight}) — matched: ${e.matchedPatterns.join(`, `)}`).join(`
240
240
  `)}\n- **Push recommended**: ${e.pushRecommended?`yes`:`no`} (max weight: ${e.maxPushWeight})`,e.pushRecommended&&(b+=`
241
241
 
242
- > 💡 This entry matches push rules. Consider \`er_push\` to share with Enterprise RAG.`))}c&&c.notifyAfterCuratedWrite(v.path).catch(()=>{});let x=Dd(v.path,d,`[${p}]`),S=y.superseded.length>0?of(`Superseded Entries`,y.superseded):``,C=y.supersessionCandidates.length>0?of(`Supersession Suggestions`,y.supersessionCandidates):``;return{content:[{type:`text`,text:`Remembered: **${d}**\n\nStored at \`.ai/curated/${v.path}\` and indexed for semantic search.${b}${S}${C}\n\n---\n_Next: Use \`search\` to verify the entry is findable, or \`knowledge({ action: "list" })\` to see all curated entries._`},...x?[x]:[]],structuredContent:{path:v.path,superseded:y.superseded,supersessionCandidates:y.supersessionCandidates}}}async function Tf(e,{curated:t,stateStore:n,retentionConfig:r,consolidationConfig:i}){let{path:a}=Ud.parse(e),o=await t.read(a),s=n?af(n,a,r,i):void 0,c=[`## ${o.title}`,`- **Path**: .ai/curated/${a}`,`- **Category**: ${o.category}`,o.tags.length?`- **Tags**: ${o.tags.join(`, `)}`:null,`- **Version**: ${o.version}`,`- **Created**: ${o.created}`,o.updated===o.created?null:`- **Updated**: ${o.updated}`,s?`- **Tier**: ${s.tier}`:null,s?`- **Retention**: ${s.retentionScore.toFixed(3)}`:null,``].filter(e=>e!==null).join(`
243
- `),l=Dd(a,o.title,`[${o.category}]`);return{content:[{type:`text`,text:`${c}\n${o.content}\n\n---\n_Next: Use \`knowledge({ action: "update", ... })\` to modify this entry, or \`search\` to find related entries._`},...l?[l]:[]]}}async function Ef(e,{curated:t,resourceNotifier:n}){let{path:r,content:i,reason:a}=Wd.parse(e),o=await t.update(r,i,a);return n&&n.notifyAfterCuratedWrite(r).catch(()=>{}),{content:[{type:`text`,text:`Updated: \`.ai/curated/${o.path}\` → version ${o.version}\n\nReason: ${a}\n\n---\n_Next: Use \`knowledge({ action: "read", path: "${o.path}" })\` to verify the updated content, or \`search\` to test searchability._`}]}}async function Df(e,{curated:t,resourceNotifier:n}){let{path:r,reason:i}=Gd.parse(e),a=L(t.curatedDir,r);if(P(a))try{nt(`forget`,[{path:a,content:F(a,`utf-8`)}],`forget: ${r}`)}catch{}let o=await t.forget(r,i);return tf.info(`Forgot entry`,{path:o.path,reason:i}),n&&(n.notifyAfterCuratedWrite().catch(()=>{}),n.notifyResourceListChanged().catch(()=>{})),{content:[{type:`text`,text:`Forgotten: \`.ai/curated/${o.path}\`\n\nRemoved from disk and vector store.\nReason: ${i}\n\n---\n_Next: Use \`knowledge({ action: "list" })\` to verify removal, or \`search\` to confirm the entry is no longer returned._`}]}}async function Of(e,t){if(e.scope===`flow`&&t.flowContextAdapter){let e=await t.flowContextAdapter.list();if(e.length===0)return{content:[{type:`text`,text:`## Flow Context
242
+ > 💡 This entry matches push rules. Consider \`er_push\` to share with Enterprise RAG.`))}c&&c.notifyAfterCuratedWrite(v.path).catch(()=>{});let x=Od(v.path,d,`[${p}]`),S=y.superseded.length>0?sf(`Superseded Entries`,y.superseded):``,C=y.supersessionCandidates.length>0?sf(`Supersession Suggestions`,y.supersessionCandidates):``;return{content:[{type:`text`,text:`Remembered: **${d}**\n\nStored at \`.ai/curated/${v.path}\` and indexed for semantic search.${b}${S}${C}\n\n---\n_Next: Use \`search\` to verify the entry is findable, or \`knowledge({ action: "list" })\` to see all curated entries._`},...x?[x]:[]],structuredContent:{path:v.path,superseded:y.superseded,supersessionCandidates:y.supersessionCandidates}}}async function Ef(e,{curated:t,stateStore:n,retentionConfig:r,consolidationConfig:i}){let{path:a}=Wd.parse(e),o=await t.read(a),s=n?of(n,a,r,i):void 0,c=[`## ${o.title}`,`- **Path**: .ai/curated/${a}`,`- **Category**: ${o.category}`,o.tags.length?`- **Tags**: ${o.tags.join(`, `)}`:null,`- **Version**: ${o.version}`,`- **Created**: ${o.created}`,o.updated===o.created?null:`- **Updated**: ${o.updated}`,s?`- **Tier**: ${s.tier}`:null,s?`- **Retention**: ${s.retentionScore.toFixed(3)}`:null,``].filter(e=>e!==null).join(`
243
+ `),l=Od(a,o.title,`[${o.category}]`);return{content:[{type:`text`,text:`${c}\n${o.content}\n\n---\n_Next: Use \`knowledge({ action: "update", ... })\` to modify this entry, or \`search\` to find related entries._`},...l?[l]:[]]}}async function Df(e,{curated:t,resourceNotifier:n}){let{path:r,content:i,reason:a}=Gd.parse(e),o=await t.update(r,i,a);return n&&n.notifyAfterCuratedWrite(r).catch(()=>{}),{content:[{type:`text`,text:`Updated: \`.ai/curated/${o.path}\` → version ${o.version}\n\nReason: ${a}\n\n---\n_Next: Use \`knowledge({ action: "read", path: "${o.path}" })\` to verify the updated content, or \`search\` to test searchability._`}]}}async function Of(e,{curated:t,resourceNotifier:n}){let{path:r,reason:i}=Kd.parse(e),a=L(t.curatedDir,r);if(P(a))try{nt(`forget`,[{path:a,content:F(a,`utf-8`)}],`forget: ${r}`)}catch{}let o=await t.forget(r,i);return nf.info(`Forgot entry`,{path:o.path,reason:i}),n&&(n.notifyAfterCuratedWrite().catch(()=>{}),n.notifyResourceListChanged().catch(()=>{})),{content:[{type:`text`,text:`Forgotten: \`.ai/curated/${o.path}\`\n\nRemoved from disk and vector store.\nReason: ${i}\n\n---\n_Next: Use \`knowledge({ action: "list" })\` to verify removal, or \`search\` to confirm the entry is no longer returned._`}]}}async function kf(e,t){if(e.scope===`flow`&&t.flowContextAdapter){let e=await t.flowContextAdapter.list();if(e.length===0)return{content:[{type:`text`,text:`## Flow Context
244
244
 
245
245
  No flow context entries found.`}]};let n=e.map(e=>` - \`${e.path}\` (${e.size} chars)`).join(`
246
- `);return{content:[{type:`text`,text:`## Flow Context (${e.length} entries)\n\n${n}`}]}}let{curated:n,stateStore:r,retentionConfig:i}=t,{category:a,tag:o,limit:s,offset:c}=Kd.parse(e),l=await n.listPage({category:a,tag:o,limit:s,offset:c,orderBy:`updated`,order:`desc`}),u=l.entries,d=u.map(e=>({entry:e,retentionMeta:r?v(r,e.path,i):void 0})),f={entries:d.map(({entry:e,retentionMeta:t})=>({path:e.path,title:e.title,category:e.category,tags:e.tags,version:e.version,preview:e.contentPreview?.slice(0,120)??``,...t?{retentionScore:t.retentionScore,tier:t.tier}:{}})),totalCount:l.totalCount,returnedCount:u.length,limit:l.limit,offset:l.offset,hasMore:l.hasMore};if(u.length===0)return{content:[{type:`text`,text:`No curated knowledge entries found.`+(a?` (category: ${a})`:``)+(o?` (tag: ${o})`:``)}],structuredContent:f};let p=d.map(({entry:e,retentionMeta:t})=>{let n=e.tags.length>0?` [${e.tags.join(`, `)}]`:``,r=t?` | tier ${t.tier} | retention ${t.retentionScore.toFixed(3)}`:``;return`- **${e.title}** (v${e.version})${n}${r}\n \`${e.path}\` — ${e.contentPreview.slice(0,80)}…`}).join(`
247
- `),m=Od(u),h=l.hasMore?`\n\n_Showing ${u.length} of ${l.totalCount} entries. Request \`offset: ${l.offset+u.length}\` for next page._`:l.totalCount>u.length?`\n\n_Showing ${u.length} of ${l.totalCount} entries._`:``;return{content:[{type:`text`,text:`## Curated Knowledge (${u.length} of ${l.totalCount} entries)\n\n${p}${h}\n\n---\n_Next: Use \`knowledge({ action: "read", path: "..." })\` to view full content of any entry, or \`knowledge({ action: "remember", ... })\` to store new knowledge._`},...m],structuredContent:f}}async function kf(e,{curated:t}){let{path:n}=Ud.parse(e),r=e.limit??20,i=await t.history(n,r);if(i.length===0)return{content:[{type:`text`,text:`No git history available for this entry. Git-backing may not be available or the entry predates git-backing.`}]};let a=i.map((e,t)=>`${t+1}. **${e.date}** \`${e.sha.slice(0,8)}\` — ${e.message}`).join(`
248
- `);return{content:[{type:`text`,text:`## History for \`${n}\` (${i.length} entries)\n\n${a}\n\n_Use \`knowledge({ action: "diff", path: "${n}", from_sha: "...", to_sha: "..." })\` to compare versions._`}]}}async function Af(e,{curated:t}){let{path:n}=Ud.parse(e),{from_sha:r,to_sha:i}=e,a=await t.diff(n,r,i);return a?{content:[{type:`text`,text:`## Diff for \`${n}\`\n\n\`\`\`diff\n${a}\n\`\`\``}]}:{content:[{type:`text`,text:`No diff available. Git-backing may not be available or the entry has no history.`}]}}async function jf(e,{curated:t}){let{path:n}=Ud.parse(e),r=await t.recover(n);return r?{content:[{type:`text`,text:`✅ Recovered \`${r.path}\` (version ${r.version}) from git history. The entry has been restored to the filesystem and re-indexed.`}]}:{content:[{type:`text`,text:`No git history found for \`${n}\`. Cannot recover — the entry either never existed or was never git-backed.`}]}}async function Mf(e,{curated:t}){let n=await t.listOrphaned();if(n.length===0)return{content:[{type:`text`,text:`No orphaned entries found. All git-backed entries have corresponding filesystem files.`}]};let r=n.map((e,t)=>`${t+1}. \`${e.path}\` — last: ${e.lastMessage}`).join(`
249
- `);return{content:[{type:`text`,text:`## Orphaned Knowledge Entries (${n.length})\n\nThese entries exist in git but are missing from the filesystem:\n\n${r}\n\n_Use \`knowledge({ action: "recover", path: "..." })\` to restore any of these entries._`}]}}async function Nf(e,{curated:t,stateStore:n,retentionConfig:r,lessonConfig:a}){if(!n)return{content:[{type:`text`,text:`Retention state store not available.`}],structuredContent:{entries:[],totalCount:0}};let o=S(n,r),s=f(a??d),l=await t.list({category:`lessons`}),u=(await Promise.all(l.filter(e=>e.tags.includes(`lesson`)).map(async e=>{let r=n.memoryMetaGet(e.path);return r||=(await gf(t,n,e.path)).meta,!r||!i(r,s)?null:{path:e.path,title:e.title,confidence:c(r.confidence,r.lastAccessedAt,r.createdAt,s),createdAt:r.createdAt,lastAccessedAt:r.lastAccessedAt,supersededBy:r.supersededBy}}))).filter(e=>e!==null).sort((e,t)=>e.confidence-t.confidence||Date.parse(e.lastAccessedAt??e.createdAt)-Date.parse(t.lastAccessedAt??t.createdAt));if(o.length===0&&u.length===0)return{content:[{type:`text`,text:`No flagged knowledge entries found below the current retention threshold.`}],structuredContent:{entries:[],totalCount:0}};let p=o.length===0?`### Retention
246
+ `);return{content:[{type:`text`,text:`## Flow Context (${e.length} entries)\n\n${n}`}]}}let{curated:n,stateStore:r,retentionConfig:i}=t,{category:a,tag:o,limit:s,offset:c}=qd.parse(e),l=await n.listPage({category:a,tag:o,limit:s,offset:c,orderBy:`updated`,order:`desc`}),u=l.entries,d=u.map(e=>({entry:e,retentionMeta:r?v(r,e.path,i):void 0})),f={entries:d.map(({entry:e,retentionMeta:t})=>({path:e.path,title:e.title,category:e.category,tags:e.tags,version:e.version,preview:e.contentPreview?.slice(0,120)??``,...t?{retentionScore:t.retentionScore,tier:t.tier}:{}})),totalCount:l.totalCount,returnedCount:u.length,limit:l.limit,offset:l.offset,hasMore:l.hasMore};if(u.length===0)return{content:[{type:`text`,text:`No curated knowledge entries found.`+(a?` (category: ${a})`:``)+(o?` (tag: ${o})`:``)}],structuredContent:f};let p=d.map(({entry:e,retentionMeta:t})=>{let n=e.tags.length>0?` [${e.tags.join(`, `)}]`:``,r=t?` | tier ${t.tier} | retention ${t.retentionScore.toFixed(3)}`:``;return`- **${e.title}** (v${e.version})${n}${r}\n \`${e.path}\` — ${e.contentPreview.slice(0,80)}…`}).join(`
247
+ `),m=kd(u),h=l.hasMore?`\n\n_Showing ${u.length} of ${l.totalCount} entries. Request \`offset: ${l.offset+u.length}\` for next page._`:l.totalCount>u.length?`\n\n_Showing ${u.length} of ${l.totalCount} entries._`:``;return{content:[{type:`text`,text:`## Curated Knowledge (${u.length} of ${l.totalCount} entries)\n\n${p}${h}\n\n---\n_Next: Use \`knowledge({ action: "read", path: "..." })\` to view full content of any entry, or \`knowledge({ action: "remember", ... })\` to store new knowledge._`},...m],structuredContent:f}}async function Af(e,{curated:t}){let{path:n}=Wd.parse(e),r=e.limit??20,i=await t.history(n,r);if(i.length===0)return{content:[{type:`text`,text:`No git history available for this entry. Git-backing may not be available or the entry predates git-backing.`}]};let a=i.map((e,t)=>`${t+1}. **${e.date}** \`${e.sha.slice(0,8)}\` — ${e.message}`).join(`
248
+ `);return{content:[{type:`text`,text:`## History for \`${n}\` (${i.length} entries)\n\n${a}\n\n_Use \`knowledge({ action: "diff", path: "${n}", from_sha: "...", to_sha: "..." })\` to compare versions._`}]}}async function jf(e,{curated:t}){let{path:n}=Wd.parse(e),{from_sha:r,to_sha:i}=e,a=await t.diff(n,r,i);return a?{content:[{type:`text`,text:`## Diff for \`${n}\`\n\n\`\`\`diff\n${a}\n\`\`\``}]}:{content:[{type:`text`,text:`No diff available. Git-backing may not be available or the entry has no history.`}]}}async function Mf(e,{curated:t}){let{path:n}=Wd.parse(e),r=await t.recover(n);return r?{content:[{type:`text`,text:`✅ Recovered \`${r.path}\` (version ${r.version}) from git history. The entry has been restored to the filesystem and re-indexed.`}]}:{content:[{type:`text`,text:`No git history found for \`${n}\`. Cannot recover — the entry either never existed or was never git-backed.`}]}}async function Nf(e,{curated:t}){let n=await t.listOrphaned();if(n.length===0)return{content:[{type:`text`,text:`No orphaned entries found. All git-backed entries have corresponding filesystem files.`}]};let r=n.map((e,t)=>`${t+1}. \`${e.path}\` — last: ${e.lastMessage}`).join(`
249
+ `);return{content:[{type:`text`,text:`## Orphaned Knowledge Entries (${n.length})\n\nThese entries exist in git but are missing from the filesystem:\n\n${r}\n\n_Use \`knowledge({ action: "recover", path: "..." })\` to restore any of these entries._`}]}}async function Pf(e,{curated:t,stateStore:n,retentionConfig:r,lessonConfig:a}){if(!n)return{content:[{type:`text`,text:`Retention state store not available.`}],structuredContent:{entries:[],totalCount:0}};let o=S(n,r),s=f(a??d),l=await t.list({category:`lessons`}),u=(await Promise.all(l.filter(e=>e.tags.includes(`lesson`)).map(async e=>{let r=n.memoryMetaGet(e.path);return r||=(await _f(t,n,e.path)).meta,!r||!i(r,s)?null:{path:e.path,title:e.title,confidence:c(r.confidence,r.lastAccessedAt,r.createdAt,s),createdAt:r.createdAt,lastAccessedAt:r.lastAccessedAt,supersededBy:r.supersededBy}}))).filter(e=>e!==null).sort((e,t)=>e.confidence-t.confidence||Date.parse(e.lastAccessedAt??e.createdAt)-Date.parse(t.lastAccessedAt??t.createdAt));if(o.length===0&&u.length===0)return{content:[{type:`text`,text:`No flagged knowledge entries found below the current retention threshold.`}],structuredContent:{entries:[],totalCount:0}};let p=o.length===0?`### Retention
250
250
  None.`:`### Retention\n${o.map(e=>`- \`${e.entryId}\` — score ${e.retentionScore.toFixed(3)}, tier ${e.tier}, accesses ${e.accessCount}`).join(`
251
251
  `)}`,m=u.length===0?`### Stale Lessons
252
252
  None.`:`### Stale Lessons\n${u.map(e=>`- **${e.title}** (\`${e.path}\`) — effective confidence ${e.confidence}/100, last access ${e.lastAccessedAt??e.createdAt}`).join(`
253
- `)}`;return{content:[{type:`text`,text:`## Flagged Knowledge Entries (${o.length+u.length})\n\n${p}\n\n${m}`}],structuredContent:{entries:o,staleLessons:u,totalCount:o.length+u.length}}}const Pf=/^(export|import|function|class|interface|type|const|let|var|→|├|└|─|##)/,Ff=/^(decision|rationale|status|context|consequence)/i,If=/finding|recommendation|warning|error|issue/i,Lf=/status|done|decision|blocker|next|file|created|modified/i,Rf=/(score|relevance)/i,zf=/[/.]|\.(ts|js)$/i;function Bf(e){return e.split(/\r?\n/u).map(e=>e.replace(/[ \t]+$/u,``)).join(`
253
+ `)}`;return{content:[{type:`text`,text:`## Flagged Knowledge Entries (${o.length+u.length})\n\n${p}\n\n${m}`}],structuredContent:{entries:o,staleLessons:u,totalCount:o.length+u.length}}}const Ff=/^(export|import|function|class|interface|type|const|let|var|→|├|└|─|##)/,If=/^(decision|rationale|status|context|consequence)/i,Lf=/finding|recommendation|warning|error|issue/i,Rf=/status|done|decision|blocker|next|file|created|modified/i,zf=/(score|relevance)/i,Bf=/[/.]|\.(ts|js)$/i;function Vf(e){return e.split(/\r?\n/u).map(e=>e.replace(/[ \t]+$/u,``)).join(`
254
254
  `).replace(/\n{3,}/gu,`
255
255
 
256
- `).trim()}function Vf(e,t){if(e.length<=t)return e;let n=e.split(`
256
+ `).trim()}function Hf(e,t){if(e.length<=t)return e;let n=e.split(`
257
257
  `),r=[],i=0;for(let e of n){let n=r.length===0?e.length:e.length+1;if(i+n>t)break;r.push(e),i+=n}return r.length>0?r.join(`
258
- `):e.slice(0,t).trimEnd()}function Hf(e,t,n){return Vf(e,Math.max(1,Math.floor(n*t)))}function Uf(e,t){if(e.length<50)return e;let n=Bf(t);return!n||n.length<e.length*.2?e:n}function Wf(e,t,n){let r=new Set;for(let n=0;n<Math.min(t,e.length);n+=1)r.add(n);return e.forEach((e,t)=>{n(e,t)&&r.add(t)}),e.filter((e,t)=>r.has(t)).join(`
259
- `)}function Gf(e,t){e.includes(t)||e.push(t)}function Kf(e){return Uf(e,Hf(Wf(e.split(/\r?\n/u),3,e=>Pf.test(e)||e.startsWith(`- `)),.6,e.length))}function qf(e){let t=e.split(/\r?\n/u),n=[];return t.forEach((e,t)=>{if(t<5||Rf.test(e)||zf.test(e)||/^Content:/i.test(e)){if(/^Content:/i.test(e)){Gf(n,`Content: ${e.replace(/^Content:\s*/i,``).trim().slice(0,200)}`);return}Gf(n,e)}}),Uf(e,n.join(`
260
- `))}function Jf(e){let t=e.split(/\r?\n/u),n=new Set;for(let e=0;e<t.length&&t[e].trim()!==``;e+=1)n.add(e);return t.forEach((e,t)=>{(e.startsWith(`- `)||e.startsWith(`* `)||Ff.test(e))&&n.add(t)}),Uf(e,Hf(t.filter((e,t)=>n.has(t)).join(`
261
- `),.7,e.length))}function Yf(e){let t=e.split(/\r?\n/u),n=new Set,r=!1;for(let e=0;e<Math.min(2,t.length);e+=1)n.add(e);return t.forEach((e,t)=>{if(e.startsWith("```")){n.add(t),r=!r;return}(r||e.startsWith(`##`)||e.startsWith(`- `)||e.startsWith(`* `))&&n.add(t)}),Uf(e,Hf(t.filter((e,t)=>n.has(t)).join(`
262
- `),.65,e.length))}function Xf(e){return Uf(e,Hf(e.split(/\r?\n/u).filter(e=>e.startsWith(`#`)||e.startsWith(`- `)||/\d/.test(e)||/\d+%/.test(e)||If.test(e)).join(`
263
- `),.6,e.length))}function Zf(e){return Uf(e,Hf(e.split(/\r?\n/u).filter(e=>e.startsWith(`- `)||e.startsWith(`* `)||Lf.test(e)).join(`
264
- `),.5,e.length))}function Qf(e,t){switch(e){case`file-card`:return Kf(t);case`search-result`:return qf(t);case`decision`:return Jf(t);case`pattern`:return Yf(t);case`analysis`:return Xf(t);case`step-summary`:return Zf(t)}}const $f={decision:6,pattern:5,"file-card":4,analysis:3,"search-result":2,"step-summary":1},ep={"search-result":864e5,"file-card":1728e5,analysis:1728e5,"step-summary":2592e5,decision:6048e5,pattern:6048e5},tp={implementer:{name:`implementer`,contextTypes:[`file-card`,`decision`,`pattern`],priority:{...$f}},documenter:{name:`documenter`,contextTypes:[`decision`,`pattern`,`step-summary`],priority:{...$f}},reviewer:{name:`reviewer`,contextTypes:[`file-card`,`search-result`,`decision`,`pattern`,`step-summary`,`analysis`],priority:{...$f}},researcher:{name:`researcher`,contextTypes:[`search-result`,`decision`,`analysis`],priority:{...$f}},debugger:{name:`debugger`,contextTypes:[`file-card`,`search-result`,`pattern`,`analysis`],priority:{...$f}}};function np(e){return tp[e]}function rp(e,t,n=Date.now()){let r=n-t;if(r<36e5)return!1;let i=ep[e];return i==null?!1:r>i}function ip(e,t,n){if(n<=0)return[];let r=new Set(t.contextTypes),i=e.filter(e=>r.has(e.type)).map((e,t)=>({entry:e,index:t})).sort((e,n)=>{let r=t.priority[n.entry.type]-t.priority[e.entry.type];return r===0?e.index-n.index:r}),a=[],o=0;for(let{entry:e}of i){let t=Qf(e.type,e.content),r=t.length;o+r>n||(a.push({type:e.type,content:t}),o+=r)}return a}async function ap(e,{curated:t,flowContextAdapter:n,stateStore:r,retentionConfig:i,consolidationConfig:a,lessonConfig:o}){let s=R.object({profile:R.string(),budget:R.number().int().min(100).max(5e4).default(6e3).describe(`Character budget for withdraw results`),token_budget:R.number().int().min(50).max(12500).optional().describe(`Token budget (overrides budget). Approx 4 chars per token.`)}).parse(e),c=s.token_budget?s.token_budget*4:s.budget;if(!n)return{content:[{type:`text`,text:`Flow context not available — no active flow or adapter not configured.`}]};let l=np(s.profile);if(!l)return{content:[{type:`text`,text:`Unknown profile: "implementer, documenter, reviewer, researcher, debugger".`}]};let u=await n.list();if(u.length===0)return{content:[{type:`text`,text:`No flow context available yet. Context is deposited automatically as agents use search, file_summary, and other analysis tools.`}]};let p=Date.now(),m=u.filter(e=>{let t=e.path.split(`/`)[0];return jd.has(t)?!rp(t,e.mtimeMs,p):!0}),h=(await Promise.all(m.map(async e=>{let t=e.path.split(`/`),o=t[0];if(t.length<2||!jd.has(o))return null;let s=await n.read(e.path);return s?(r&&af(r,e.path,i,a),{type:o,content:s}):null}))).filter(e=>e!==null),g=ip(h,l,c),_=f(o??d),v=[...new Set(g.flatMap(e=>hf(e.content)))];if(await Promise.all(v.map(async e=>{let n=r?.memoryMetaGet(e)?.confidence;if(n===void 0)try{n=(await gf(t,r,e)).confidence}catch{return}mf(r,e,n,_)})),g.length===0)return{content:[{type:`text`,text:`No relevant context for profile "${s.profile}". ${h.length} entries available but none match your role's context types.`}]};let y=g.map(e=>`### [${e.type}]\n${e.content}`).join(`
265
-
266
- `),b=g.reduce((e,t)=>e+t.content.length,0);return{content:[{type:`text`,text:`## Flow Context (${g.length}/${h.length} entries, ${b} chars, profile: ${s.profile})\n\n${y}`}]}}async function op(e,{flowContextAdapter:t}){return t?{content:[{type:`text`,text:`Flushed ${await t.flushAll()} flow context entries.`}]}:{content:[{type:`text`,text:`Flow context not available — no active flow or adapter not configured.`}]}}async function sp(e,{curated:t,stateStore:n,resourceNotifier:r}){let i=_f(e),{title:a,context:o,insight:s,evidence:c,confidence:l,tags:u}=qd.parse(i),d=h({title:a,context:o,insight:s,evidence:c,confidence:l,tags:u}),f=await t.remember(a,d,`lessons`,ff(u));return pf(n,f.path,l),r&&r.notifyAfterCuratedWrite(f.path).catch(()=>{}),{content:[{type:`text`,text:`Recorded lesson: **${a}**\n\nStored at \`.ai/curated/${f.path}\` with confidence ${l}/100.`}],structuredContent:{path:f.path,confidence:l,category:`lessons`,tags:ff(u)}}}async function cp(e,t,n){let{curated:i,stateStore:a,resourceNotifier:o,retentionConfig:s,consolidationConfig:c,lessonConfig:u}=n,p=Jd.parse(e);if(t===`contradict`&&!p.reason)throw new R.ZodError([{code:`custom`,path:[`reason`],message:`reason is required`}]);let m=df(p.path,p.id),h=f(u??d);a&&af(a,m,s,c);let{entry:g,confidence:_}=await gf(i,a,m),v=r(_,t,h),y=l(g.content,v),b=t===`confirm`?p.reason??`Confirmed lesson confidence`:`Contradicted lesson confidence: ${p.reason}`,x=await i.update(m,y,b);return a&&a.memoryMetaUpdateConfidence(m,v),o&&o.notifyAfterCuratedWrite(m).catch(()=>{}),{content:[{type:`text`,text:`${t===`confirm`?`Confirmed`:`Contradicted`} lesson: \`${m}\`\n\nConfidence ${_}/100 → ${v}/100.`}],structuredContent:{path:x.path,confidence:v,previousConfidence:_,version:x.version}}}async function lp(e,{curated:t,stateStore:n,lessonConfig:r}){let{topic:i,minConfidence:a,tag:s,tags:l,sortBy:u,includeArchived:p,limit:h,offset:g}=Yd.parse(e),_=ff([...l??[],...s?[s]:[]]),v=f(r??d),y=Math.max(h+g,500),b=await t.listPage({category:`lessons`,...s?{tag:s}:{},limit:y,orderBy:`updated`,order:`desc`}),x=b.entries,S=await Promise.all(x.filter(e=>e.tags.includes(`lesson`)).map(async e=>{let{confidence:r,meta:i}=await gf(t,n,e.path),a=i??n?.memoryMetaGet(e.path);a&&a.supersededBy===null&&o(a,v)&&n?.memoryMetaSetSuperseded(e.path,m);let s=n?.memoryMetaGet(e.path)??a,l=s?.createdAt??e.created,u=s?.confidence??r,d=c(u,s?.lastAccessedAt,l,v),f=s?.lastAccessedAt??s?.createdAt??null;return{path:e.path,title:e.title,category:e.category,tags:e.tags,version:e.version,preview:e.contentPreview,confidence:d,storedConfidence:u,createdAt:l,lastAccessedAt:s?.lastAccessedAt??null,recency:f,archived:s?.supersededBy===m,supersededBy:s?.supersededBy??null}})),C=S.filter(e=>e.archived).length,w=S.filter(e=>p?!0:e.supersededBy===null).filter(e=>a===void 0?!0:e.confidence>=a).filter(e=>_.length===0?!0:_.every(t=>e.tags.includes(t))).filter(e=>i?`${e.title}\n${e.preview}\n${e.tags.join(` `)}`.toLowerCase().includes(i.toLowerCase()):!0).sort((e,t)=>u===`recent`?Date.parse(t.recency??``)-Date.parse(e.recency??``)||t.confidence-e.confidence:t.confidence-e.confidence||Date.parse(t.recency??``)-Date.parse(e.recency??``)),T=w.slice(g,g+h);if(w.forEach(e=>{mf(n,e.path,e.storedConfidence,v)}),T.length===0)return{content:[{type:`text`,text:`No lessons matched the requested filters.`}],structuredContent:{entries:[],totalCount:w.length,scannedCount:S.length,limit:h,offset:g,hasMore:w.length>g+h||b.hasMore,archivedCount:C}};let E=T.map(e=>{let t=e.recency?` | recent ${e.recency}`:``;return`- **${e.title}** (${e.confidence}/100)${t}\n \`${e.path}\` — ${e.preview.slice(0,80)}…`}).join(`
267
- `);return{content:[{type:`text`,text:`## Lessons (${T.length} of ${w.length})\n\n${E}`}],structuredContent:{entries:T.map(({storedConfidence:e,...t})=>t),totalCount:w.length,scannedCount:S.length,limit:h,offset:g,hasMore:w.length>g+h||b.hasMore,archivedCount:C}}}async function up(e,{curated:t,stateStore:n,resourceNotifier:r}){let{bufferPath:i}=Xd.parse(e),a=await vf(i);if(!a)return{content:[{type:`text`,text:`No observation buffer found for auto-observe.`}],structuredContent:{bufferPath:null,observations:0,createdCount:0,skippedCount:0,candidates:[]}};let o=ji(F(a,`utf8`)),s=Ai(o,oi),c=await t.list({category:`lessons`}),l=[],u=[];try{for(let e of s){let i=yf(e.title,c);if(i){u.push({title:e.title,path:i.path,similarity:i.similarity});continue}let a=h({title:e.title,context:e.context,insight:e.insight,evidence:e.evidence,confidence:e.confidence,tags:e.tags}),o=await t.remember(e.title,a,`lessons`,ff(e.tags));pf(n,o.path,e.confidence),l.push({path:o.path,title:e.title,detector:e.detector}),c.push({path:o.path,title:e.title,category:`lessons`,tags:ff(e.tags),version:1,created:new Date().toISOString(),updated:new Date().toISOString(),contentPreview:e.insight}),r&&r.notifyAfterCuratedWrite(o.path).catch(()=>{})}}finally{try{Oe(a)}catch{}}let d=[`Auto-observe processed ${o.length} observations from \`${a}\`.`,`Created ${l.length} lessons and skipped ${u.length} duplicates from ${s.length} candidates.`];return l.length>0&&(d.push(``,`Created:`),d.push(...l.map(e=>`- **${e.title}** (${e.path})`))),u.length>0&&(d.push(``,`Skipped:`),d.push(...u.map(e=>`- **${e.title}** matched ${e.path} (${e.similarity.toFixed(2)})`))),{content:[{type:`text`,text:d.join(`
268
- `)}],structuredContent:{bufferPath:a,observations:o.length,createdCount:l.length,skippedCount:u.length,candidates:s.map(e=>({title:e.title,detector:e.detector,confidence:e.confidence,tags:e.tags})),created:l,skipped:u}}}async function dp(e,t){switch(e.subAction??`create`){case`create`:return sp(e,t);case`confirm`:return cp(e,`confirm`,t);case`contradict`:return cp(e,`contradict`,t);case`list-lessons`:return lp(e,t);case`auto-observe`:return up(e,t);case`prune`:{if(!t.stateStore)return q(`VALIDATION`,`StateStore required for lesson/prune`);let n=Zd.parse(e),r=await E(t.curated,t.stateStore,{maxConfidence:n.maxConfidence,minIdleDays:n.minIdleDays,safetyDays:n.safetyDays,maxPrune:n.maxPrune,dryRun:n.dryRun},t.lessonConfig?f(t.lessonConfig):d);return{content:[{type:`text`,text:bf(r)}],structuredContent:r}}case`group`:{if(!t.stateStore)return q(`VALIDATION`,`StateStore required for lesson/group`);let n=Qd.parse(e),r=await T(t.curated,t.stateStore,{similarityThreshold:n.similarityThreshold,minGroupSize:n.minGroupSize,maxGroups:n.maxGroups,dryRun:n.dryRun});return{content:[{type:`text`,text:xf(r)}],structuredContent:r}}case`promote`:{if(!xe())return{content:[{type:`text`,text:`Promotion requires user-level install (not workspace-scoped).`}]};let n=$d.parse(e),r={minWorkspaces:n.minWorkspaces??ne.minWorkspaces,minAvgConfidence:n.minAvgConfidence??ne.minAvgConfidence,similarityThreshold:n.similarityThreshold??ne.similarityThreshold,dryRun:n.dryRun},i=await D(te(await k(),r),Sf(t.curated,O()),r);return{content:[{type:`text`,text:Cf(i,r.dryRun)}],structuredContent:i}}case`demote`:{if(!xe())return{content:[{type:`text`,text:`Demotion requires user-level install.`}]};let n=df(e.path,e.id);if(!n)return{content:[{type:`text`,text:`Missing required "path" or "id" parameter for demote.`}]};let r=await ee(Sf(t.curated,O()),n);return{content:[{type:`text`,text:r.removed?`Demoted: ${n}`:`Not found in global: ${n}`}],structuredContent:r}}}}async function fp(e,t,n){switch(e){case`remember`:return wf(t,n);case`read`:return Tf(t,n);case`update`:return Ef(t,n);case`forget`:return Df(t,n);case`list`:return Of(t,n);case`history`:return kf(t,n);case`diff`:return Af(t,n);case`recover`:return jf(t,n);case`orphaned`:return Mf(t,n);case`withdraw`:return ap(t,n);case`flush`:return op(t,n);case`flagged`:return Nf(t,n);case`lesson`:return dp(t,n)}}function pp(e,t,n,r,i,a,o,s,c,l,u,d){let f=W(`knowledge`),p={curated:t,policyStore:n,evolutionCollector:r,resourceNotifier:i,flowContextAdapter:a,stateStore:o,retentionConfig:s,consolidationConfig:l,supersessionConfig:c,lessonConfig:u};e.registerTool(`knowledge`,{title:f.title,description:"Operate on curated knowledge entries with a single tool. Use `action` to remember, read, update, forget, list, history, diff, recover, orphaned, withdraw, flush, flagged, or lesson entries.",inputSchema:ef.shape,annotations:f.annotations},J(`knowledge`,async({action:e,...t})=>{try{let n=ef.parse({action:e,...t});return await rf(await fp(n.action,n,p),n,d)}catch(e){return e instanceof R.ZodError?q(`VALIDATION`,uf(e)):(tf.error(`Knowledge operation failed`,N(e)),q(`INTERNAL`,`Knowledge operation failed: ${e instanceof Error?e.message:String(e)}`))}}))}const mp=M(`tools`);function hp(e,t,n){let r=W(`lookup`);e.registerTool(`lookup`,{title:r.title,description:`Get all indexed content for a known file path, sorted by position. Use when you know the exact file. For discovery across files use search.`,inputSchema:{path:R.string().describe(`Relative file path to look up (e.g., "src/index.ts")`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`)},annotations:r.annotations},J(`lookup`,async({path:e,enrich:r})=>{try{let i=await t.getBySourcePath(e);if(i.length===0)return{content:[{type:`text`,text:`No indexed content found for: ${e}`}]};i.sort((e,t)=>e.chunkIndex-t.chunkIndex);let a=`## ${e}\n**Chunks**: ${i.length} | **Type**: ${i[0].contentType}\n`,o=i.map(e=>{let t=e.startLine?` (lines ${e.startLine}-${e.endLine})`:``;return`### Chunk ${e.chunkIndex+1}/${e.totalChunks}${t}\n${e.content}`}).join(`
269
-
270
- `),s=kd(e),c=s?Dd(s):void 0,l=`${a}\n${o}\n\n---\n_Next: Use \`search\` to find related content, or \`analyze({ aspect: "dependencies", path: "${e}" })\` to see what this file imports._`;if(r&&n){let t=await G(n,{query:e});l+=K(t)}return{content:[{type:`text`,text:l},...c?[c]:[]]}}catch(e){return mp.error(`Lookup failed`,N(e)),q(`INTERNAL`,`Lookup failed: ${e instanceof Error?e.message:String(e)}`)}}))}const gp=M(`tools:manipulation`);function _p(e){return e.sources[0]?.path??process.cwd()}function vp(e,t){let n=L(t,e),r=Ne(t,n);if(r.startsWith(`..`)||Me(r))throw Error(`Path "${e}" escapes workspace root: ${t}`);return n}function yp(e){let t=W(`git_context`);e.registerTool(`git_context`,{title:t.title,description:`Summarize the current Git branch, working tree state, recent commits, and optional diff statistics for the repository.`,inputSchema:{cwd:R.string().optional().describe(`Repository root or working directory`),commit_count:R.number().min(1).max(50).default(5).optional().describe(`How many recent commits to include`),include_diff:R.boolean().default(!1).optional().describe(`Include diff stat for working tree changes`)},annotations:t.annotations,outputSchema:oc},async({cwd:e,commit_count:t,include_diff:n})=>{try{let r=await St({cwd:e,commitCount:t,includeDiff:n});return{content:[{type:`text`,text:wp(r)}],structuredContent:{gitRoot:r.gitRoot,branch:r.branch,commitCount:r.recentCommits.length,hasUncommitted:r.status.staged.length>0||r.status.modified.length>0||r.status.untracked.length>0,recentCommits:r.recentCommits.map(e=>({hash:e.hash,message:e.message,author:e.author,date:e.date}))}}}catch(e){return gp.error(`Git context failed`,N(e)),q(`INTERNAL`,`Git context failed: ${e instanceof Error?e.message:String(e)}`)}})}function bp(e){let t=W(`diff_parse`);e.registerTool(`diff_parse`,{title:t.title,description:`Parse raw unified diff text into file-level and hunk-level structural changes.`,inputSchema:{diff:R.string().max(1e6).describe(`Raw unified diff text`)},annotations:t.annotations},async({diff:e})=>{try{return{content:[{type:`text`,text:Tp(ct({diff:e.replace(/\\n/g,`
271
- `).replace(/\\t/g,` `)}))}]}}catch(e){return gp.error(`Diff parse failed`,N(e)),q(`INTERNAL`,`Diff parse failed: ${e instanceof Error?e.message:String(e)}`)}})}function xp(e,t){let n=W(`rename`),r=_p(t);e.registerTool(`rename`,{title:n.title,description:`Rename a symbol across files using whole-word regex matching for exports, imports, and general usage references.`,inputSchema:{old_name:R.string().describe(`Existing symbol name to replace`),new_name:R.string().describe(`New symbol name to use`),root_path:R.string().describe(`Root directory to search within`),extensions:R.array(R.string()).optional().describe(`Optional file extensions to include, such as .ts,.tsx,.js,.jsx`),dry_run:R.boolean().default(!0).describe(`Preview changes without writing files`)},annotations:n.annotations},J(`rename`,async({old_name:e,new_name:t,root_path:n,extensions:i,dry_run:a},o)=>{let s;try{s=Zc(o).createTask(`Rename Symbol`,2),s.progress(0,`Scanning for references`);let c=vp(n,r);s.progress(1,`Applying renames`);let l=await an({oldName:e,newName:t,rootPath:c,extensions:i,dryRun:a});return s.complete(`Rename complete`),{content:[{type:`text`,text:JSON.stringify(l)}]}}catch(e){return s?.fail?.(`Rename failed`),gp.error(`Rename failed`,N(e)),q(`INTERNAL`,`Rename failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Sp(e,t){let n=W(`codemod`),r=_p(t);e.registerTool(`codemod`,{title:n.title,description:`Apply regex-based codemod rules across files and return structured before/after changes for each affected line.`,inputSchema:{root_path:R.string().describe(`Root directory to transform within`),rules:R.array(R.object({description:R.string().describe(`What the codemod rule does`),pattern:R.string().describe(`Regex pattern in string form`),replacement:R.string().describe(`Replacement string with optional capture groups`)})).min(1).describe(`Codemod rules to apply`),dry_run:R.boolean().default(!0).describe(`Preview changes without writing files`)},annotations:n.annotations},J(`codemod`,async({root_path:e,rules:t,dry_run:n},i)=>{let a;try{a=Zc(i).createTask(`Codemod`,2),a.progress(0,`Scanning files`);let o=vp(e,r);a.progress(1,`Applying transforms`);let s=await $e({rootPath:o,rules:t,dryRun:n});return a.complete(`Codemod complete`),{content:[{type:`text`,text:JSON.stringify(s)}]}}catch(e){return a?.fail?.(`Codemod failed`),gp.error(`Codemod failed`,N(e)),q(`INTERNAL`,`Codemod failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Cp(e){let t=W(`data_transform`);e.registerTool(`data_transform`,{title:t.title,description:`Apply small jq-like transforms to JSON input for filtering, projection, grouping, and path extraction.`,inputSchema:{input:R.string().max(5e5).describe(`Input JSON string`),expression:R.string().max(1e4).describe(`Transform expression to apply`)},annotations:t.annotations},async({input:e,expression:t})=>{try{return{content:[{type:`text`,text:it({input:e,expression:t}).outputString}]}}catch(e){return gp.error(`Data transform failed`,N(e)),q(`INTERNAL`,`Data transform failed: ${e instanceof Error?e.message:String(e)}`)}})}function wp(e){let t=[`Git root: ${e.gitRoot}`,`Branch: ${e.branch}`,`Staged: ${e.status.staged.length}`,...e.status.staged.map(e=>` - ${e}`),`Modified: ${e.status.modified.length}`,...e.status.modified.map(e=>` - ${e}`),`Untracked: ${e.status.untracked.length}`,...e.status.untracked.map(e=>` - ${e}`),``,`Recent commits:`];if(e.recentCommits.length===0)t.push(` none`);else for(let n of e.recentCommits)t.push(` - ${n.hash} ${n.message}`),t.push(` ${n.author} @ ${n.date}`);return e.diff&&t.push(``,`Diff stat:`,e.diff),t.join(`
272
- `)}function Tp(e){if(e.length===0)return`No diff files found.`;let t=[];for(let n of e){let e=n.oldPath?` (from ${n.oldPath})`:``;t.push(`${n.path}${e} [${n.status}] +${n.additions} -${n.deletions} (${n.hunks.length} hunks)`);for(let e of n.hunks){let n=e.header?` ${e.header}`:``;t.push(` @@ -${e.oldStart},${e.oldLines} +${e.newStart},${e.newLines} @@${n}`)}}return t.join(`
273
- `)}function Ep(e,t){return t?e.length<=500?e:`${e.slice(0,497)}...`:``}function Dp(e,t){let n=[];return e.keywordRank!==void 0&&n.push(`keyword match rank ${e.keywordRank+1}`),e.vectorRank!==void 0&&n.push(`semantic match rank ${e.vectorRank+1}`),e.result.record.origin===`curated`&&n.push(`curated memory`),e.result.record.category&&n.push(`category:${e.result.record.category}`),e.result.record.tags.length>0&&n.push(`tags:${e.result.record.tags.join(`,`)}`),{id:e.result.record.id,score:e.result.score,content:Ep(e.result.record.content,t),sourcePath:e.result.record.sourcePath,origin:e.result.record.origin,category:e.result.record.category,tags:e.result.record.tags,reason:n.join(`; `)||`store result`}}function Op(e,t){let n=new Map;return e.forEach((e,t)=>{n.set(e.record.id,{result:e,vectorRank:t})}),t.forEach((e,t)=>{let r=n.get(e.record.id);if(r){n.set(e.record.id,{result:{record:e.record,score:Math.max(r.result.score,e.score)},vectorRank:r.vectorRank,keywordRank:t});return}n.set(e.record.id,{result:e,keywordRank:t})}),[...n.values()].sort((e,t)=>{let n=Math.min(e.vectorRank??1/0,e.keywordRank??1/0),r=Math.min(t.vectorRank??1/0,t.keywordRank??1/0);return n===r?t.result.score-e.result.score:n-r})}async function kp(e,t,n={}){let r=n.limit??5,i=n.candidateLimit??Math.max(r*3,10),a=n.searchMode??`hybrid`,o={limit:i,origin:n.origin??`curated`,category:n.category,tags:n.tags?[...n.tags]:void 0},[s,c]=await Promise.all([a===`keyword`?Promise.resolve([]):t.embedder.embedQuery(e).then(e=>t.store.search(e,o)).catch(()=>[]),a===`semantic`?Promise.resolve([]):t.store.ftsSearch(e,o).catch(()=>[])]),l=Op(s,c).map(e=>Dp(e,n.includeContent??!0)),u=l.slice(0,r),d=l.slice(r).map(e=>({...e,ignoredReason:`lower ranked candidate outside selection limit`})),f=c.length,p=s.length;return{query:e,searchMode:a,retrieved:l,selected:u,ignored:d,finalReasoning:u.length===0?`No active matching memory was found. Deleted memories are not visible after store cleanup.`:`Selected ${u.length} of ${l.length} active candidate(s). Keyword candidates: ${f}; semantic candidates: ${p}.`}}function Ap(e,t,n){let r=W(`memory_explain`);e.registerTool(`memory_explain`,{title:r.title,description:`Explain why AI Kit memory search returns, selects, or ignores memories for a query. Debugs curated and auto-knowledge quality without invoking an LLM.`,inputSchema:{query:R.string().min(1).max(5e3).describe(`Memory query to explain`),limit:R.number().int().min(1).max(20).default(5),candidate_limit:R.number().int().min(1).max(100).optional(),search_mode:R.enum([`hybrid`,`semantic`,`keyword`]).default(`hybrid`),origin:R.enum(pe).default(`curated`),category:R.string().optional(),tags:R.array(R.string()).optional(),include_content:R.boolean().default(!0)},annotations:r.annotations},async({query:e,limit:r,candidate_limit:i,search_mode:a,origin:o,category:s,tags:c,include_content:l})=>{try{let u=await kp(e,{embedder:t,store:n},{limit:r,candidateLimit:i,searchMode:a,origin:o,category:s,tags:c,includeContent:l}),d=JSON.stringify(u,null,2),f=Rl(d);return{content:[{type:`text`,text:zl(d,f)}],structuredContent:{...u,ref:f}}}catch(e){return q(`INTERNAL`,`memory_explain failed: ${N(e).message}`)}})}const jp=[`list_tools`,`describe_tool`,`search_tools`];function Mp(e,t,n){let r=[...new Set(n)].sort();e.registerTool(`list_tools`,{title:W(`list_tools`).title,description:`List the available AI Kit tools with names, titles, and categories. Use this before describe_tool when you need to discover the active toolset.`,inputSchema:{category:R.string().optional().describe(`Optional category filter`)},annotations:W(`list_tools`).annotations},J(`list_tools`,async({category:e})=>{let t=e?.trim().toLowerCase();return{content:[{type:`text`,text:r.filter(e=>t?(U[e]?.category??[]).some(e=>e.toLowerCase()===t):!0).map(e=>{let t=U[e]??{title:e,category:[]},n=t.category?.join(`, `)||`uncategorized`;return`${e}: ${t.title} [${n}]`}).join(`
258
+ `):e.slice(0,t).trimEnd()}function Uf(e,t,n){return Hf(e,Math.max(1,Math.floor(n*t)))}function Wf(e,t){if(e.length<50)return e;let n=Vf(t);return!n||n.length<e.length*.2?e:n}function Gf(e,t,n){let r=new Set;for(let n=0;n<Math.min(t,e.length);n+=1)r.add(n);return e.forEach((e,t)=>{n(e,t)&&r.add(t)}),e.filter((e,t)=>r.has(t)).join(`
259
+ `)}function Kf(e,t){e.includes(t)||e.push(t)}function qf(e){return Wf(e,Uf(Gf(e.split(/\r?\n/u),3,e=>Ff.test(e)||e.startsWith(`- `)),.6,e.length))}function Jf(e){let t=e.split(/\r?\n/u),n=[];return t.forEach((e,t)=>{if(t<5||zf.test(e)||Bf.test(e)||/^Content:/i.test(e)){if(/^Content:/i.test(e)){Kf(n,`Content: ${e.replace(/^Content:\s*/i,``).trim().slice(0,200)}`);return}Kf(n,e)}}),Wf(e,n.join(`
260
+ `))}function Yf(e){let t=e.split(/\r?\n/u),n=new Set;for(let e=0;e<t.length&&t[e].trim()!==``;e+=1)n.add(e);return t.forEach((e,t)=>{(e.startsWith(`- `)||e.startsWith(`* `)||If.test(e))&&n.add(t)}),Wf(e,Uf(t.filter((e,t)=>n.has(t)).join(`
261
+ `),.7,e.length))}function Xf(e){let t=e.split(/\r?\n/u),n=new Set,r=!1;for(let e=0;e<Math.min(2,t.length);e+=1)n.add(e);return t.forEach((e,t)=>{if(e.startsWith("```")){n.add(t),r=!r;return}(r||e.startsWith(`##`)||e.startsWith(`- `)||e.startsWith(`* `))&&n.add(t)}),Wf(e,Uf(t.filter((e,t)=>n.has(t)).join(`
262
+ `),.65,e.length))}function Zf(e){return Wf(e,Uf(e.split(/\r?\n/u).filter(e=>e.startsWith(`#`)||e.startsWith(`- `)||/\d/.test(e)||/\d+%/.test(e)||Lf.test(e)).join(`
263
+ `),.6,e.length))}function Qf(e){return Wf(e,Uf(e.split(/\r?\n/u).filter(e=>e.startsWith(`- `)||e.startsWith(`* `)||Rf.test(e)).join(`
264
+ `),.5,e.length))}function $f(e,t){switch(e){case`file-card`:return qf(t);case`search-result`:return Jf(t);case`decision`:return Yf(t);case`pattern`:return Xf(t);case`analysis`:return Zf(t);case`step-summary`:return Qf(t)}}const ep={decision:6,pattern:5,"file-card":4,analysis:3,"search-result":2,"step-summary":1},tp={"search-result":864e5,"file-card":1728e5,analysis:1728e5,"step-summary":2592e5,decision:6048e5,pattern:6048e5},np={implementer:{name:`implementer`,contextTypes:[`file-card`,`decision`,`pattern`],priority:{...ep}},documenter:{name:`documenter`,contextTypes:[`decision`,`pattern`,`step-summary`],priority:{...ep}},reviewer:{name:`reviewer`,contextTypes:[`file-card`,`search-result`,`decision`,`pattern`,`step-summary`,`analysis`],priority:{...ep}},researcher:{name:`researcher`,contextTypes:[`search-result`,`decision`,`analysis`],priority:{...ep}},debugger:{name:`debugger`,contextTypes:[`file-card`,`search-result`,`pattern`,`analysis`],priority:{...ep}}};function rp(e){return np[e]}function ip(e,t,n=Date.now()){let r=n-t;if(r<36e5)return!1;let i=tp[e];return i==null?!1:r>i}function ap(e,t,n){if(n<=0)return[];let r=new Set(t.contextTypes),i=e.filter(e=>r.has(e.type)).map((e,t)=>({entry:e,index:t})).sort((e,n)=>{let r=t.priority[n.entry.type]-t.priority[e.entry.type];return r===0?e.index-n.index:r}),a=[],o=0;for(let{entry:e}of i){let t=$f(e.type,e.content),r=t.length;o+r>n||(a.push({type:e.type,content:t}),o+=r)}return a}async function op(e,{curated:t,flowContextAdapter:n,stateStore:r,retentionConfig:i,consolidationConfig:a,lessonConfig:o}){let s=R.object({profile:R.string(),budget:R.number().int().min(100).max(5e4).default(6e3).describe(`Character budget for withdraw results`),token_budget:R.number().int().min(50).max(12500).optional().describe(`Token budget (overrides budget). Approx 4 chars per token.`)}).parse(e),c=s.token_budget?s.token_budget*4:s.budget;if(!n)return{content:[{type:`text`,text:`Flow context not available — no active flow or adapter not configured.`}]};let l=rp(s.profile);if(!l)return{content:[{type:`text`,text:`Unknown profile: "implementer, documenter, reviewer, researcher, debugger".`}]};let u=await n.list();if(u.length===0)return{content:[{type:`text`,text:`No flow context available yet. Context is deposited automatically as agents use search, file_summary, and other analysis tools.`}]};let p=Date.now(),m=u.filter(e=>{let t=e.path.split(`/`)[0];return Md.has(t)?!ip(t,e.mtimeMs,p):!0}),h=(await Promise.all(m.map(async e=>{let t=e.path.split(`/`),o=t[0];if(t.length<2||!Md.has(o))return null;let s=await n.read(e.path);return s?(r&&of(r,e.path,i,a),{type:o,content:s}):null}))).filter(e=>e!==null),g=ap(h,l,c),_=f(o??d),v=[...new Set(g.flatMap(e=>gf(e.content)))];if(await Promise.all(v.map(async e=>{let n=r?.memoryMetaGet(e)?.confidence;if(n===void 0)try{n=(await _f(t,r,e)).confidence}catch{return}hf(r,e,n,_)})),g.length===0)return{content:[{type:`text`,text:`No relevant context for profile "${s.profile}". ${h.length} entries available but none match your role's context types.`}]};let y=g.map(e=>`### [${e.type}]\n${e.content}`).join(`
265
+
266
+ `),b=g.reduce((e,t)=>e+t.content.length,0);return{content:[{type:`text`,text:`## Flow Context (${g.length}/${h.length} entries, ${b} chars, profile: ${s.profile})\n\n${y}`}]}}async function sp(e,{flowContextAdapter:t}){return t?{content:[{type:`text`,text:`Flushed ${await t.flushAll()} flow context entries.`}]}:{content:[{type:`text`,text:`Flow context not available — no active flow or adapter not configured.`}]}}async function cp(e,{curated:t,stateStore:n,resourceNotifier:r}){let i=vf(e),{title:a,context:o,insight:s,evidence:c,confidence:l,tags:u}=Jd.parse(i),d=h({title:a,context:o,insight:s,evidence:c,confidence:l,tags:u}),f=await t.remember(a,d,`lessons`,pf(u));return mf(n,f.path,l),r&&r.notifyAfterCuratedWrite(f.path).catch(()=>{}),{content:[{type:`text`,text:`Recorded lesson: **${a}**\n\nStored at \`.ai/curated/${f.path}\` with confidence ${l}/100.`}],structuredContent:{path:f.path,confidence:l,category:`lessons`,tags:pf(u)}}}async function lp(e,t,n){let{curated:i,stateStore:a,resourceNotifier:o,retentionConfig:s,consolidationConfig:c,lessonConfig:u}=n,p=Yd.parse(e);if(t===`contradict`&&!p.reason)throw new R.ZodError([{code:`custom`,path:[`reason`],message:`reason is required`}]);let m=ff(p.path,p.id),h=f(u??d);a&&of(a,m,s,c);let{entry:g,confidence:_}=await _f(i,a,m),v=r(_,t,h),y=l(g.content,v),b=t===`confirm`?p.reason??`Confirmed lesson confidence`:`Contradicted lesson confidence: ${p.reason}`,x=await i.update(m,y,b);return a&&a.memoryMetaUpdateConfidence(m,v),o&&o.notifyAfterCuratedWrite(m).catch(()=>{}),{content:[{type:`text`,text:`${t===`confirm`?`Confirmed`:`Contradicted`} lesson: \`${m}\`\n\nConfidence ${_}/100 → ${v}/100.`}],structuredContent:{path:x.path,confidence:v,previousConfidence:_,version:x.version}}}async function up(e,{curated:t,stateStore:n,lessonConfig:r}){let{topic:i,minConfidence:a,tag:s,tags:l,sortBy:u,includeArchived:p,limit:h,offset:g}=Xd.parse(e),_=pf([...l??[],...s?[s]:[]]),v=f(r??d),y=Math.max(h+g,500),b=await t.listPage({category:`lessons`,...s?{tag:s}:{},limit:y,orderBy:`updated`,order:`desc`}),x=b.entries,S=await Promise.all(x.filter(e=>e.tags.includes(`lesson`)).map(async e=>{let{confidence:r,meta:i}=await _f(t,n,e.path),a=i??n?.memoryMetaGet(e.path);a&&a.supersededBy===null&&o(a,v)&&n?.memoryMetaSetSuperseded(e.path,m);let s=n?.memoryMetaGet(e.path)??a,l=s?.createdAt??e.created,u=s?.confidence??r,d=c(u,s?.lastAccessedAt,l,v),f=s?.lastAccessedAt??s?.createdAt??null;return{path:e.path,title:e.title,category:e.category,tags:e.tags,version:e.version,preview:e.contentPreview,confidence:d,storedConfidence:u,createdAt:l,lastAccessedAt:s?.lastAccessedAt??null,recency:f,archived:s?.supersededBy===m,supersededBy:s?.supersededBy??null}})),C=S.filter(e=>e.archived).length,w=S.filter(e=>p?!0:e.supersededBy===null).filter(e=>a===void 0?!0:e.confidence>=a).filter(e=>_.length===0?!0:_.every(t=>e.tags.includes(t))).filter(e=>i?`${e.title}\n${e.preview}\n${e.tags.join(` `)}`.toLowerCase().includes(i.toLowerCase()):!0).sort((e,t)=>u===`recent`?Date.parse(t.recency??``)-Date.parse(e.recency??``)||t.confidence-e.confidence:t.confidence-e.confidence||Date.parse(t.recency??``)-Date.parse(e.recency??``)),T=w.slice(g,g+h);if(w.forEach(e=>{hf(n,e.path,e.storedConfidence,v)}),T.length===0)return{content:[{type:`text`,text:`No lessons matched the requested filters.`}],structuredContent:{entries:[],totalCount:w.length,scannedCount:S.length,limit:h,offset:g,hasMore:w.length>g+h||b.hasMore,archivedCount:C}};let E=T.map(e=>{let t=e.recency?` | recent ${e.recency}`:``;return`- **${e.title}** (${e.confidence}/100)${t}\n \`${e.path}\` — ${e.preview.slice(0,80)}…`}).join(`
267
+ `);return{content:[{type:`text`,text:`## Lessons (${T.length} of ${w.length})\n\n${E}`}],structuredContent:{entries:T.map(({storedConfidence:e,...t})=>t),totalCount:w.length,scannedCount:S.length,limit:h,offset:g,hasMore:w.length>g+h||b.hasMore,archivedCount:C}}}async function dp(e,{curated:t,stateStore:n,resourceNotifier:r}){let{bufferPath:i}=Zd.parse(e),a=await yf(i);if(!a)return{content:[{type:`text`,text:`No observation buffer found for auto-observe.`}],structuredContent:{bufferPath:null,observations:0,createdCount:0,skippedCount:0,candidates:[]}};let o=ji(F(a,`utf8`)),s=Ai(o,oi),c=await t.list({category:`lessons`}),l=[],u=[];try{for(let e of s){let i=bf(e.title,c);if(i){u.push({title:e.title,path:i.path,similarity:i.similarity});continue}let a=h({title:e.title,context:e.context,insight:e.insight,evidence:e.evidence,confidence:e.confidence,tags:e.tags}),o=await t.remember(e.title,a,`lessons`,pf(e.tags));mf(n,o.path,e.confidence),l.push({path:o.path,title:e.title,detector:e.detector}),c.push({path:o.path,title:e.title,category:`lessons`,tags:pf(e.tags),version:1,created:new Date().toISOString(),updated:new Date().toISOString(),contentPreview:e.insight}),r&&r.notifyAfterCuratedWrite(o.path).catch(()=>{})}}finally{try{Oe(a)}catch{}}let d=[`Auto-observe processed ${o.length} observations from \`${a}\`.`,`Created ${l.length} lessons and skipped ${u.length} duplicates from ${s.length} candidates.`];return l.length>0&&(d.push(``,`Created:`),d.push(...l.map(e=>`- **${e.title}** (${e.path})`))),u.length>0&&(d.push(``,`Skipped:`),d.push(...u.map(e=>`- **${e.title}** matched ${e.path} (${e.similarity.toFixed(2)})`))),{content:[{type:`text`,text:d.join(`
268
+ `)}],structuredContent:{bufferPath:a,observations:o.length,createdCount:l.length,skippedCount:u.length,candidates:s.map(e=>({title:e.title,detector:e.detector,confidence:e.confidence,tags:e.tags})),created:l,skipped:u}}}async function fp(e,t){switch(e.subAction??`create`){case`create`:return cp(e,t);case`confirm`:return lp(e,`confirm`,t);case`contradict`:return lp(e,`contradict`,t);case`list-lessons`:return up(e,t);case`auto-observe`:return dp(e,t);case`prune`:{if(!t.stateStore)return q(`VALIDATION`,`StateStore required for lesson/prune`);let n=Qd.parse(e),r=await E(t.curated,t.stateStore,{maxConfidence:n.maxConfidence,minIdleDays:n.minIdleDays,safetyDays:n.safetyDays,maxPrune:n.maxPrune,dryRun:n.dryRun},t.lessonConfig?f(t.lessonConfig):d);return{content:[{type:`text`,text:xf(r)}],structuredContent:r}}case`group`:{if(!t.stateStore)return q(`VALIDATION`,`StateStore required for lesson/group`);let n=$d.parse(e),r=await T(t.curated,t.stateStore,{similarityThreshold:n.similarityThreshold,minGroupSize:n.minGroupSize,maxGroups:n.maxGroups,dryRun:n.dryRun});return{content:[{type:`text`,text:Sf(r)}],structuredContent:r}}case`promote`:{if(!xe())return{content:[{type:`text`,text:`Promotion requires user-level install (not workspace-scoped).`}]};let n=ef.parse(e),r={minWorkspaces:n.minWorkspaces??ne.minWorkspaces,minAvgConfidence:n.minAvgConfidence??ne.minAvgConfidence,similarityThreshold:n.similarityThreshold??ne.similarityThreshold,dryRun:n.dryRun},i=await D(te(await k(),r),Cf(t.curated,O()),r);return{content:[{type:`text`,text:wf(i,r.dryRun)}],structuredContent:i}}case`demote`:{if(!xe())return{content:[{type:`text`,text:`Demotion requires user-level install.`}]};let n=ff(e.path,e.id);if(!n)return{content:[{type:`text`,text:`Missing required "path" or "id" parameter for demote.`}]};let r=await ee(Cf(t.curated,O()),n);return{content:[{type:`text`,text:r.removed?`Demoted: ${n}`:`Not found in global: ${n}`}],structuredContent:r}}}}async function pp(e,t,n){switch(e){case`remember`:return Tf(t,n);case`read`:return Ef(t,n);case`update`:return Df(t,n);case`forget`:return Of(t,n);case`list`:return kf(t,n);case`history`:return Af(t,n);case`diff`:return jf(t,n);case`recover`:return Mf(t,n);case`orphaned`:return Nf(t,n);case`withdraw`:return op(t,n);case`flush`:return sp(t,n);case`flagged`:return Pf(t,n);case`lesson`:return fp(t,n)}}function mp(e,t,n,r,i,a,o,s,c,l,u,d){let f=W(`knowledge`),p={curated:t,policyStore:n,evolutionCollector:r,resourceNotifier:i,flowContextAdapter:a,stateStore:o,retentionConfig:s,consolidationConfig:l,supersessionConfig:c,lessonConfig:u};e.registerTool(`knowledge`,{title:f.title,description:"Operate on curated knowledge entries with a single tool. Use `action` to remember, read, update, forget, list, history, diff, recover, orphaned, withdraw, flush, flagged, or lesson entries.",inputSchema:tf.shape,annotations:f.annotations},J(`knowledge`,async({action:e,...t})=>{try{let n=tf.parse({action:e,...t});return await af(await pp(n.action,n,p),n,d)}catch(e){return e instanceof R.ZodError?q(`VALIDATION`,df(e)):(nf.error(`Knowledge operation failed`,N(e)),q(`INTERNAL`,`Knowledge operation failed: ${e instanceof Error?e.message:String(e)}`))}}))}const hp=M(`tools`);function gp(e,t,n){let r=W(`lookup`);e.registerTool(`lookup`,{title:r.title,description:`Get all indexed content for a known file path, sorted by position. Use when you know the exact file. For discovery across files use search.`,inputSchema:{path:R.string().describe(`Relative file path to look up (e.g., "src/index.ts")`),enrich:R.boolean().default(!1).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default false — set true when you need stored decisions, conventions, or relationship context.`)},annotations:r.annotations},J(`lookup`,async({path:e,enrich:r})=>{try{let i=await t.getBySourcePath(e);if(i.length===0)return{content:[{type:`text`,text:`No indexed content found for: ${e}`}]};i.sort((e,t)=>e.chunkIndex-t.chunkIndex);let a=`## ${e}\n**Chunks**: ${i.length} | **Type**: ${i[0].contentType}\n`,o=i.map(e=>{let t=e.startLine?` (lines ${e.startLine}-${e.endLine})`:``;return`### Chunk ${e.chunkIndex+1}/${e.totalChunks}${t}\n${e.content}`}).join(`
269
+
270
+ `),s=Ad(e),c=s?Od(s):void 0,l=`${a}\n${o}\n\n---\n_Next: Use \`search\` to find related content, or \`analyze({ aspect: "dependencies", path: "${e}" })\` to see what this file imports._`;if(r&&n){let t=await G(n,{query:e});l+=K(t)}return{content:[{type:`text`,text:l},...c?[c]:[]]}}catch(e){return hp.error(`Lookup failed`,N(e)),q(`INTERNAL`,`Lookup failed: ${e instanceof Error?e.message:String(e)}`)}}))}const _p=M(`tools:manipulation`);function vp(e){return e.sources[0]?.path??process.cwd()}function yp(e,t){let n=L(t,e),r=Ne(t,n);if(r.startsWith(`..`)||Me(r))throw Error(`Path "${e}" escapes workspace root: ${t}`);return n}function bp(e){let t=W(`git_context`);e.registerTool(`git_context`,{title:t.title,description:`Summarize the current Git branch, working tree state, recent commits, and optional diff statistics for the repository.`,inputSchema:{cwd:R.string().optional().describe(`Repository root or working directory`),commit_count:R.number().min(1).max(50).default(5).optional().describe(`How many recent commits to include`),include_diff:R.boolean().default(!1).optional().describe(`Include diff stat for working tree changes`)},annotations:t.annotations,outputSchema:sc},async({cwd:e,commit_count:t,include_diff:n})=>{try{let r=await St({cwd:e,commitCount:t,includeDiff:n});return{content:[{type:`text`,text:Tp(r)}],structuredContent:{gitRoot:r.gitRoot,branch:r.branch,commitCount:r.recentCommits.length,hasUncommitted:r.status.staged.length>0||r.status.modified.length>0||r.status.untracked.length>0,recentCommits:r.recentCommits.map(e=>({hash:e.hash,message:e.message,author:e.author,date:e.date}))}}}catch(e){return _p.error(`Git context failed`,N(e)),q(`INTERNAL`,`Git context failed: ${e instanceof Error?e.message:String(e)}`)}})}function xp(e){let t=W(`diff_parse`);e.registerTool(`diff_parse`,{title:t.title,description:`Parse raw unified diff text into file-level and hunk-level structural changes.`,inputSchema:{diff:R.string().max(1e6).describe(`Raw unified diff text`)},annotations:t.annotations},async({diff:e})=>{try{return{content:[{type:`text`,text:Ep(ct({diff:e.replace(/\\n/g,`
271
+ `).replace(/\\t/g,` `)}))}]}}catch(e){return _p.error(`Diff parse failed`,N(e)),q(`INTERNAL`,`Diff parse failed: ${e instanceof Error?e.message:String(e)}`)}})}function Sp(e,t){let n=W(`rename`),r=vp(t);e.registerTool(`rename`,{title:n.title,description:`Rename a symbol across files using whole-word regex matching for exports, imports, and general usage references.`,inputSchema:{old_name:R.string().describe(`Existing symbol name to replace`),new_name:R.string().describe(`New symbol name to use`),root_path:R.string().describe(`Root directory to search within`),extensions:R.array(R.string()).optional().describe(`Optional file extensions to include, such as .ts,.tsx,.js,.jsx`),dry_run:R.boolean().default(!0).describe(`Preview changes without writing files`)},annotations:n.annotations},J(`rename`,async({old_name:e,new_name:t,root_path:n,extensions:i,dry_run:a},o)=>{let s;try{s=Qc(o).createTask(`Rename Symbol`,2),s.progress(0,`Scanning for references`);let c=yp(n,r);s.progress(1,`Applying renames`);let l=await an({oldName:e,newName:t,rootPath:c,extensions:i,dryRun:a});return s.complete(`Rename complete`),{content:[{type:`text`,text:JSON.stringify(l)}]}}catch(e){return s?.fail?.(`Rename failed`),_p.error(`Rename failed`,N(e)),q(`INTERNAL`,`Rename failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Cp(e,t){let n=W(`codemod`),r=vp(t);e.registerTool(`codemod`,{title:n.title,description:`Apply regex-based codemod rules across files and return structured before/after changes for each affected line.`,inputSchema:{root_path:R.string().describe(`Root directory to transform within`),rules:R.array(R.object({description:R.string().describe(`What the codemod rule does`),pattern:R.string().describe(`Regex pattern in string form`),replacement:R.string().describe(`Replacement string with optional capture groups`)})).min(1).describe(`Codemod rules to apply`),dry_run:R.boolean().default(!0).describe(`Preview changes without writing files`)},annotations:n.annotations},J(`codemod`,async({root_path:e,rules:t,dry_run:n},i)=>{let a;try{a=Qc(i).createTask(`Codemod`,2),a.progress(0,`Scanning files`);let o=yp(e,r);a.progress(1,`Applying transforms`);let s=await $e({rootPath:o,rules:t,dryRun:n});return a.complete(`Codemod complete`),{content:[{type:`text`,text:JSON.stringify(s)}]}}catch(e){return a?.fail?.(`Codemod failed`),_p.error(`Codemod failed`,N(e)),q(`INTERNAL`,`Codemod failed: ${e instanceof Error?e.message:String(e)}`)}}))}function wp(e){let t=W(`data_transform`);e.registerTool(`data_transform`,{title:t.title,description:`Apply small jq-like transforms to JSON input for filtering, projection, grouping, and path extraction.`,inputSchema:{input:R.string().max(5e5).describe(`Input JSON string`),expression:R.string().max(1e4).describe(`Transform expression to apply`)},annotations:t.annotations},async({input:e,expression:t})=>{try{return{content:[{type:`text`,text:it({input:e,expression:t}).outputString}]}}catch(e){return _p.error(`Data transform failed`,N(e)),q(`INTERNAL`,`Data transform failed: ${e instanceof Error?e.message:String(e)}`)}})}function Tp(e){let t=[`Git root: ${e.gitRoot}`,`Branch: ${e.branch}`,`Staged: ${e.status.staged.length}`,...e.status.staged.map(e=>` - ${e}`),`Modified: ${e.status.modified.length}`,...e.status.modified.map(e=>` - ${e}`),`Untracked: ${e.status.untracked.length}`,...e.status.untracked.map(e=>` - ${e}`),``,`Recent commits:`];if(e.recentCommits.length===0)t.push(` none`);else for(let n of e.recentCommits)t.push(` - ${n.hash} ${n.message}`),t.push(` ${n.author} @ ${n.date}`);return e.diff&&t.push(``,`Diff stat:`,e.diff),t.join(`
272
+ `)}function Ep(e){if(e.length===0)return`No diff files found.`;let t=[];for(let n of e){let e=n.oldPath?` (from ${n.oldPath})`:``;t.push(`${n.path}${e} [${n.status}] +${n.additions} -${n.deletions} (${n.hunks.length} hunks)`);for(let e of n.hunks){let n=e.header?` ${e.header}`:``;t.push(` @@ -${e.oldStart},${e.oldLines} +${e.newStart},${e.newLines} @@${n}`)}}return t.join(`
273
+ `)}function Dp(e,t){return t?e.length<=500?e:`${e.slice(0,497)}...`:``}function Op(e,t){let n=[];return e.keywordRank!==void 0&&n.push(`keyword match rank ${e.keywordRank+1}`),e.vectorRank!==void 0&&n.push(`semantic match rank ${e.vectorRank+1}`),e.result.record.origin===`curated`&&n.push(`curated memory`),e.result.record.category&&n.push(`category:${e.result.record.category}`),e.result.record.tags.length>0&&n.push(`tags:${e.result.record.tags.join(`,`)}`),{id:e.result.record.id,score:e.result.score,content:Dp(e.result.record.content,t),sourcePath:e.result.record.sourcePath,origin:e.result.record.origin,category:e.result.record.category,tags:e.result.record.tags,reason:n.join(`; `)||`store result`}}function kp(e,t){let n=new Map;return e.forEach((e,t)=>{n.set(e.record.id,{result:e,vectorRank:t})}),t.forEach((e,t)=>{let r=n.get(e.record.id);if(r){n.set(e.record.id,{result:{record:e.record,score:Math.max(r.result.score,e.score)},vectorRank:r.vectorRank,keywordRank:t});return}n.set(e.record.id,{result:e,keywordRank:t})}),[...n.values()].sort((e,t)=>{let n=Math.min(e.vectorRank??1/0,e.keywordRank??1/0),r=Math.min(t.vectorRank??1/0,t.keywordRank??1/0);return n===r?t.result.score-e.result.score:n-r})}async function Ap(e,t,n={}){let r=n.limit??5,i=n.candidateLimit??Math.max(r*3,10),a=n.searchMode??`hybrid`,o={limit:i,origin:n.origin??`curated`,category:n.category,tags:n.tags?[...n.tags]:void 0},[s,c]=await Promise.all([a===`keyword`?Promise.resolve([]):t.embedder.embedQuery(e).then(e=>t.store.search(e,o)).catch(()=>[]),a===`semantic`?Promise.resolve([]):t.store.ftsSearch(e,o).catch(()=>[])]),l=kp(s,c).map(e=>Op(e,n.includeContent??!0)),u=l.slice(0,r),d=l.slice(r).map(e=>({...e,ignoredReason:`lower ranked candidate outside selection limit`})),f=c.length,p=s.length;return{query:e,searchMode:a,retrieved:l,selected:u,ignored:d,finalReasoning:u.length===0?`No active matching memory was found. Deleted memories are not visible after store cleanup.`:`Selected ${u.length} of ${l.length} active candidate(s). Keyword candidates: ${f}; semantic candidates: ${p}.`}}function jp(e,t,n){let r=W(`memory_explain`);e.registerTool(`memory_explain`,{title:r.title,description:`Explain why AI Kit memory search returns, selects, or ignores memories for a query. Debugs curated and auto-knowledge quality without invoking an LLM.`,inputSchema:{query:R.string().min(1).max(5e3).describe(`Memory query to explain`),limit:R.number().int().min(1).max(20).default(5),candidate_limit:R.number().int().min(1).max(100).optional(),search_mode:R.enum([`hybrid`,`semantic`,`keyword`]).default(`hybrid`),origin:R.enum(pe).default(`curated`),category:R.string().optional(),tags:R.array(R.string()).optional(),include_content:R.boolean().default(!0)},annotations:r.annotations},async({query:e,limit:r,candidate_limit:i,search_mode:a,origin:o,category:s,tags:c,include_content:l})=>{try{let u=await Ap(e,{embedder:t,store:n},{limit:r,candidateLimit:i,searchMode:a,origin:o,category:s,tags:c,includeContent:l}),d=JSON.stringify(u,null,2),f=zl(d);return{content:[{type:`text`,text:Bl(d,f)}],structuredContent:{...u,ref:f}}}catch(e){return q(`INTERNAL`,`memory_explain failed: ${N(e).message}`)}})}const Mp=[`list_tools`,`describe_tool`,`search_tools`];function Np(e,t,n){let r=[...new Set(n)].sort();e.registerTool(`list_tools`,{title:W(`list_tools`).title,description:`List the available AI Kit tools with names, titles, and categories. Use this before describe_tool when you need to discover the active toolset.`,inputSchema:{category:R.string().optional().describe(`Optional category filter`)},annotations:W(`list_tools`).annotations},J(`list_tools`,async({category:e})=>{let t=e?.trim().toLowerCase();return{content:[{type:`text`,text:r.filter(e=>t?(U[e]?.category??[]).some(e=>e.toLowerCase()===t):!0).map(e=>{let t=U[e]??{title:e,category:[]},n=t.category?.join(`, `)||`uncategorized`;return`${e}: ${t.title} [${n}]`}).join(`
274
274
  `)||`No tools matched the filter.`}]}})),e.registerTool(`describe_tool`,{title:W(`describe_tool`).title,description:`Describe a specific active AI Kit tool using centralized metadata. Use this after list_tools when you need a tool title, categories, and annotations before calling it directly.`,inputSchema:{tool_name:R.string().describe(`The active tool name to describe`)},annotations:W(`describe_tool`).annotations},J(`describe_tool`,async({tool_name:e})=>{if(!r.includes(e))return q(`VALIDATION`,`Unknown or inactive tool: ${e}`);let t=U[e],n={name:e,title:t?.title??e,categories:t?.category??[],annotations:t?.annotations??{},note:`Call the tool directly after discovery. AI Kit does not expose an execute_tool proxy.`};return{content:[{type:`text`,text:JSON.stringify(n,null,2)}]}})),e.registerTool(`search_tools`,{title:W(`search_tools`).title,description:`Search active AI Kit tools by keyword across tool names, titles, and categories.`,inputSchema:{query:R.string().min(1).describe(`Keyword query to match against active tools`)},annotations:W(`search_tools`).annotations},J(`search_tools`,async({query:e})=>{let t=e.trim().toLowerCase(),n=r.filter(e=>{let n=U[e];return e.toLowerCase().includes(t)||n?.title.toLowerCase().includes(t)||(n?.category??[]).some(e=>e.toLowerCase().includes(t))}).map(e=>{let t=U[e]??{title:e,category:[]},n=t.category?.join(`, `)||`uncategorized`;return`${e}: ${t.title} [${n}]`});return{content:[{type:`text`,text:n.length>0?n.join(`
275
- `):`No tools found matching "${e}"`}]}}))}const Np=M(`server`),Pp=le(Hn),Fp={"@huggingface/transformers":`4.2.0`,"onnxruntime-common":`1.24.3`,"onnxruntime-node":`1.24.3`};function Ip(e){return e.replace(/\\/g,`/`)}function Lp(e){return process.platform===`win32`?e.replace(/\//g,Pe):e}function Rp(){return L(je(ce(import.meta.url)),`..`,`..`,`..`)}function zp(e){return Ip(e).includes(`/_npx/`)}function Bp(e){return/^(1|true)$/i.test(process.env.AIKIT_DISABLE_DEP_REPAIR??``)?!1:/^(1|true)$/i.test(process.env.AIKIT_ALLOW_DEP_REPAIR??``)?!0:zp(e)}function Vp(e,t){let n=Ip(e),r=`/node_modules/${t}/`,i=n.lastIndexOf(r);if(i<0)return null;let a=i+r.length-1,o=n.slice(0,a),s=o.search(/[A-Za-z]:\/|\//);return s<0?null:Lp(o.slice(s))}function Hp(e,t){if(!e)return Fp[t]??`latest`;try{return JSON.parse(F(I(e,`package.json`),`utf8`)).version??Fp[t]??`latest`}catch{return Fp[t]??`latest`}}function Up(e){let t=Ip(e).toLowerCase();return/(cannot find module|cannot find package|module not found|err_module_not_found)/i.test(e)?t.includes(`@huggingface/transformers`)||t.includes(`transformers.node`)||t.includes(`onnxruntime-common`)||t.includes(`onnxruntime-node`):!1}function Wp(e){if(!Up(e))return[];let t=Ip(e).toLowerCase(),n=new Map;if(t.includes(`@huggingface/transformers`)){let t=Vp(e,`@huggingface/transformers`);n.set(`@huggingface/transformers`,`@huggingface/transformers@${Hp(t,`@huggingface/transformers`)}`)}if(t.includes(`onnxruntime-common`)){let t=Vp(e,`onnxruntime-common`);n.set(`onnxruntime-common`,`onnxruntime-common@${Hp(t,`onnxruntime-common`)}`)}if(t.includes(`onnxruntime-node`)){let t=Vp(e,`onnxruntime-node`);n.set(`onnxruntime-node`,`onnxruntime-node@${Hp(t,`onnxruntime-node`)}`)}return Array.from(n.values())}function Gp(e){if(!/index\.js/i.test(e)||!Ip(e).includes(`@huggingface`))return!1;let t=Vp(e,`@huggingface/transformers`);if(!t)return!1;let n=I(t,`index.js`),r=I(t,`dist`,`transformers.node.mjs`);return P(n)||!P(r)?!1:(ke(n,[`// Auto-generated by AI Kit runtime dependency repair.`,`export * from './dist/transformers.node.mjs';`,`export { default } from './dist/transformers.node.mjs';`,``].join(`
276
- `),`utf8`),Np.info(`Auto-heal: created @huggingface/transformers index.js shim`,{path:n}),!0)}async function Kp(e,t={}){let n=Wp(e),r=t.packageRoot??Rp(),i=Gp(e);if(n.length===0)return{attempted:i,repaired:i,packages:n,reason:i?`created transformer index shim`:`no missing runtime dependency detected`};if(!Bp(r))return{attempted:i,repaired:i,packages:n,reason:`runtime dependency auto-install disabled outside npx cache; set AIKIT_ALLOW_DEP_REPAIR=1 to enable`};let a=process.platform===`win32`?`npm.cmd`:`npm`,o=[`install`,`--no-save`,`--package-lock=false`,`--no-audit`,`--no-fund`,`--omit=dev`,`--prefer-online`,`--ignore-scripts`,...n];Np.warn(`Auto-heal: repairing missing runtime dependencies`,{packages:n,packageRoot:r});try{return await Pp(a,o,{cwd:r,timeout:t.timeoutMs??6e4,windowsHide:!0}),Np.info(`Auto-heal: runtime dependency repair completed`,{packages:n,packageRoot:r}),{attempted:!0,repaired:!0,packages:n,reason:`npm install repair completed`}}catch(e){let t=e instanceof Error?e.message:String(e);return Np.warn(`Auto-heal: runtime dependency repair failed`,{packages:n,packageRoot:r,...N(e)}),{attempted:!0,repaired:i,packages:n,reason:i?`created transformer shim but npm repair failed`:`npm repair failed`,error:t}}}const qp=M(`tools`);let Jp=!1;function Yp(e){let t=e instanceof Error?e.message:String(e);return Up(t)||/embedder worker|embedding worker|circuit breaker|timed out|killed|respawn|ipc_channel|epipe|econnreset/i.test(t)}async function Xp(e,t,n){try{return await e.embedBatch(t,n)}catch(r){if((await Kp(r instanceof Error?r.message:String(r))).repaired)return e.embedBatch(t,n);throw r}}async function Zp(e,t,n){for(let r of n.steps)if(!(r.status!==`success`||!r.output))try{let i=Fe(`sha256`).update(n.path).digest(`hex`).slice(0,12),a=`produced/onboard/${r.name}/${i}.md`,o=Fe(`sha256`).update(r.output).digest(`hex`).slice(0,16),s=new Date().toISOString(),c=r.output.length>2e3?r.output.split(/(?=^## )/m).filter(e=>e.trim().length>0):[r.output],l=c.map((e,t)=>({id:Fe(`sha256`).update(`${a}::${t}`).digest(`hex`).slice(0,16),content:e.trim(),sourcePath:a,contentType:`produced-knowledge`,chunkIndex:t,totalChunks:c.length,startLine:0,endLine:0,fileHash:o,indexedAt:s,origin:`produced`,tags:[`onboard`,r.name],category:`analysis`,version:1})),u=await Xp(t,l.map(e=>e.content));await e.upsert(l,u)}catch(e){if(Yp(e)){let t=e instanceof Error?e.message:String(e);fe.instance().reportDegraded(`embedder`,t),qp.warn(`Auto-persist onboard disabled — embedder unavailable`,{stepName:r.name,...N(e)});return}qp.warn(`Auto-persist onboard step failed`,{stepName:r.name,...N(e)})}}async function Qp(e,t,n){if(n.autoRemember?.length)for(let r of n.autoRemember)try{let n=Fe(`sha256`).update(`onboard-remember::${r.title}`).digest(`hex`).slice(0,16),i=new Date().toISOString(),a={id:n,content:`# ${r.title}\n\n${r.content}`,sourcePath:`curated/onboard/${r.category}/${n}.md`,contentType:`curated`,chunkIndex:0,totalChunks:1,startLine:0,endLine:0,fileHash:Fe(`sha256`).update(r.content).digest(`hex`).slice(0,16),indexedAt:i,origin:`curated`,tags:r.tags,category:r.category,version:1},[o]=await Xp(t,[a.content]);await e.upsert([a],[o])}catch(e){if(Yp(e)){let t=e instanceof Error?e.message:String(e);fe.instance().reportDegraded(`embedder`,t),qp.warn(`Auto-persist remember disabled — embedder unavailable`,{title:r.title,...N(e)});return}qp.warn(`Auto-persist remember entry failed`,{title:r.title,...N(e)})}}function $p(e,t,n,r,i,a){let o=W(`onboard`);e.registerTool(`onboard`,{title:o.title,description:`First-time codebase onboarding: runs all analysis tools (structure, dependencies, entry-points, symbols, patterns, diagram) in one command. Results are auto-persisted to AI Kit memory. Use mode=generate to also write structured output to .ai/context/ directory.`,inputSchema:{path:R.string().describe(`Root path of the codebase to onboard`),mode:R.enum([`memory`,`generate`]).default(`generate`).describe(`Output mode: generate (default) = persist to AI Kit + write .ai/context/ files; memory = AI Kit vector store only`),out_dir:R.string().optional().describe(`Custom output directory for generate mode (default: <path>/.ai/context)`),enrich:R.boolean().default(!0).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default true for planning tools — set false to save tokens when enrichment is not needed.`)},annotations:o.annotations},J(`onboard`,async({path:e,mode:o,out_dir:s,enrich:c},l)=>{try{if(Jp)return{content:[{type:`text`,text:`Onboard is already running. Please wait for it to complete before starting another.`}]};Jp=!0,qp.info(`Starting onboard`,{path:e,mode:o});let u=await Rt({path:e,mode:o,outDir:s??r?.onboardDir}),d=Zc(l).createTask(`Onboard`,u.steps.length);for(let e=0;e<u.steps.length;e++){let t=u.steps[e];d.progress(e,`${t.name}: ${t.status}`)}d.complete(`Onboard complete: ${u.steps.filter(e=>e.status===`success`).length}/${u.steps.length} steps succeeded`),Zp(t,n,u),u.autoRemember?.length&&Qp(t,n,u).catch(e=>{qp.warn(`Auto-persist autoRemember failed`,N(e))}),i&&(i.onboardComplete=!0,i.onboardTimestamp=new Date().toISOString());let f=[`## Onboard Complete`,``,`**Path:** \`${u.path}\``,`**Mode:** ${u.mode}`,`**Duration:** ${u.totalDurationMs}ms`,``];u.outDir&&(f.push(`**Output directory:** \`${u.outDir}\``),f.push(``)),f.push(`### Analysis Results`,``);let p=[],m=[];for(let e of u.steps)e.status===`success`?p.push(`- ✓ **${e.name}** (${e.durationMs}ms) — ${e.output.length} chars`):m.push(`- ✗ **${e.name}** — ${e.error}`);f.push(...p),m.length>0&&f.push(``,`### Failed`,``,...m),f.push(``,`---`,``);for(let e of u.steps)e.status===`success`&&f.push(`### ${e.name}`,``,e.output,``,`---`,``);f.push(`_All results auto-saved to AI Kit memory._`,u.mode===`generate`?` Files written to \`${u.outDir}\`.`:``,' Next: Use `search` to query the knowledge, or `knowledge({ action: "remember", ... })` to add custom insights.');let h=f.join(`
277
- `);if(c&&a){let e=await G(a,{query:`onboard codebase conventions`});h+=K(e)}return{content:[{type:`text`,text:h}]}}catch(e){return qp.error(`Onboard failed`,N(e)),q(`INTERNAL`,`Onboard failed: ${e instanceof Error?e.message:String(e)}`)}finally{Jp=!1}}))}const em=M(`tools:persistence`);function tm(e){let t=W(`workset`);e.registerTool(`workset`,{title:t.title,description:`Manage named file sets (worksets). Save, load, list, add/remove files. Worksets persist across sessions in the AI Kit state directory.`,inputSchema:{action:R.enum([`save`,`get`,`list`,`delete`,`add`,`remove`]).describe(`Operation to perform`),name:R.string().optional().describe(`Workset name (required for all except list)`),files:R.array(R.string()).optional().describe(`File paths (required for save, add, remove)`),description:R.string().optional().describe(`Description (for save)`)},annotations:t.annotations},J(`workset`,async({action:e,name:t,files:n,description:r})=>{try{switch(e){case`save`:{if(!t||!n)throw Error(`name and files required for save`);let e=dn(t,n,{description:r});return{content:[{type:`text`,text:`Saved workset "${e.name}" with ${e.files.length} files.`}]}}case`get`:{if(!t)throw Error(`name required for get`);let e=xt(t);return e?{content:[{type:`text`,text:JSON.stringify(e)}]}:{content:[{type:`text`,text:`Workset "${t}" not found.`}]}}case`list`:{let e=It();return e.length===0?{content:[{type:`text`,text:`No worksets.`}]}:{content:[{type:`text`,text:e.map(e=>`- **${e.name}** (${e.files.length} files) — ${e.description??`no description`}`).join(`
278
- `)}]}}case`delete`:if(!t)throw Error(`name required for delete`);return{content:[{type:`text`,text:st(t)?`Deleted workset "${t}".`:`Workset "${t}" not found.`}]};case`add`:{if(!t||!n)throw Error(`name and files required for add`);let e=Ve(t,n);return{content:[{type:`text`,text:`Added to workset "${e.name}": now ${e.files.length} files.`}]}}case`remove`:{if(!t||!n)throw Error(`name and files required for remove`);let e=rn(t,n);return e?{content:[{type:`text`,text:`Removed from workset "${e.name}": now ${e.files.length} files.`}]}:{content:[{type:`text`,text:`Workset "${t}" not found.`}]}}}}catch(e){return em.error(`Workset operation failed`,N(e)),q(`INTERNAL`,`Workset operation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function nm(e,t){let n=W(`stash`);e.registerTool(`stash`,{title:n.title,description:`Persist and retrieve named values in the SQLite-backed state store for intermediate results between tool calls.`,inputSchema:{action:R.enum([`set`,`get`,`list`,`delete`,`clear`]).describe(`Operation to perform on the stash`),key:R.string().optional().describe(`Entry key for set/get/delete operations`),value:R.string().optional().describe(`String or JSON value for set operations`)},annotations:n.annotations},J(`stash`,async({action:e,key:n,value:r})=>{try{switch(e){case`set`:{if(!n)throw Error(`key required for set`);let e=xn(t,n,sm(r??``));return{content:[{type:`text`,text:`Stored stash entry "${e.key}" (${e.type}) at ${e.storedAt}.`}]}}case`get`:{if(!n)throw Error(`key required for get`);let e=yn(t,n);return{content:[{type:`text`,text:e?JSON.stringify(e):`Stash entry "${n}" not found.`}]}}case`list`:{let e=bn(t);return{content:[{type:`text`,text:e.length===0?`Stash is empty.`:e.map(e=>`- ${e.key} (${e.type}) — ${e.storedAt}`).join(`
279
- `)}]}}case`delete`:if(!n)throw Error(`key required for delete`);return{content:[{type:`text`,text:vn(t,n)?`Deleted stash entry "${n}".`:`Stash entry "${n}" not found.`}]};case`clear`:{let e=_n(t);return{content:[{type:`text`,text:`Cleared ${e} stash entr${e===1?`y`:`ies`}.`}]}}}}catch(e){return em.error(`Stash operation failed`,N(e)),q(`INTERNAL`,`Stash operation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function rm(e,t){let n=W(`checkpoint`);e.registerTool(`checkpoint`,{title:n.title,description:`Save and restore lightweight session checkpoints in the SQLite-backed state store for cross-session continuity. Legacy AI Kit checkpoint directories are imported automatically on first access.`,inputSchema:{action:R.enum([`save`,`load`,`list`,`latest`,`diff`,`history`,`gc`]).describe(`Checkpoint action to perform`),label:R.string().optional().describe(`Checkpoint label for save, or checkpoint id for load`),data:R.string().max(5e5).optional().describe(`JSON object string for save actions`),notes:R.string().max(1e4).optional().describe(`Optional notes for save actions`),from_id:R.string().optional().describe(`Checkpoint ID to diff FROM (for diff action)`),to_id:R.string().optional().describe(`Checkpoint ID to diff TO (for diff action)`),limit:R.number().min(1).max(50).optional().describe(`Max history entries to return`),keep_last:R.number().min(1).max(100).optional().describe(`Keep N most recent checkpoints per label (default: 10, for gc action)`),max_age_days:R.number().min(1).optional().describe(`Delete checkpoints older than N days (for gc action)`),dry_run:R.boolean().optional().describe(`Preview changes without deleting (default: true, for gc action)`)},annotations:n.annotations},J(`checkpoint`,async({action:e,label:n,data:r,notes:i,from_id:a,to_id:o,limit:s,keep_last:c,max_age_days:l,dry_run:u})=>{try{switch(e){case`save`:if(!n)throw Error(`label required for save`);return{content:[{type:`text`,text:om(Qe(t,n,cm(r),{notes:i}))}]};case`load`:{if(!n)throw Error(`label required for load`);let e=Ze(t,n);return{content:[{type:`text`,text:e?om(e):`Checkpoint "${n}" not found.`}]}}case`list`:{let e=Xe(t,{label:n,limit:s});return{content:[{type:`text`,text:e.length===0?`No checkpoints saved.`:e.map(e=>`- ${e.id} — ${e.label} (${e.createdAt})`).join(`
280
- `)}]}}case`latest`:{let e=Ye(t,{label:n});return{content:[{type:`text`,text:e?om(e):`No checkpoints saved.`}]}}case`diff`:{if(!a||!o)throw Error(`from_id and to_id required for diff`);let e=Ke(t,a,o);return e?{content:[{type:`text`,text:[`## Checkpoint Diff: ${a} → ${o}`,e.added.length?`**Added:** ${e.added.join(`, `)}`:``,e.removed.length?`**Removed:** ${e.removed.join(`, `)}`:``,e.modified.length?`**Modified:** ${e.modified.join(`, `)}`:``,!e.added.length&&!e.removed.length&&!e.modified.length?`No differences found.`:``].filter(Boolean).join(`
275
+ `):`No tools found matching "${e}"`}]}}))}const Pp=M(`server`),Fp=le(Hn),Ip={"@huggingface/transformers":`4.2.0`,"onnxruntime-common":`1.24.3`,"onnxruntime-node":`1.24.3`};function Lp(e){return e.replace(/\\/g,`/`)}function Rp(e){return process.platform===`win32`?e.replace(/\//g,Pe):e}function zp(){return L(je(ce(import.meta.url)),`..`,`..`,`..`)}function Bp(e){return Lp(e).includes(`/_npx/`)}function Vp(e){return/^(1|true)$/i.test(process.env.AIKIT_DISABLE_DEP_REPAIR??``)?!1:/^(1|true)$/i.test(process.env.AIKIT_ALLOW_DEP_REPAIR??``)?!0:Bp(e)}function Hp(e,t){let n=Lp(e),r=`/node_modules/${t}/`,i=n.lastIndexOf(r);if(i<0)return null;let a=i+r.length-1,o=n.slice(0,a),s=o.search(/[A-Za-z]:\/|\//);return s<0?null:Rp(o.slice(s))}function Up(e,t){if(!e)return Ip[t]??`latest`;try{return JSON.parse(F(I(e,`package.json`),`utf8`)).version??Ip[t]??`latest`}catch{return Ip[t]??`latest`}}function Wp(e){let t=Lp(e).toLowerCase();return/(cannot find module|cannot find package|module not found|err_module_not_found)/i.test(e)?t.includes(`@huggingface/transformers`)||t.includes(`transformers.node`)||t.includes(`onnxruntime-common`)||t.includes(`onnxruntime-node`):!1}function Gp(e){if(!Wp(e))return[];let t=Lp(e).toLowerCase(),n=new Map;if(t.includes(`@huggingface/transformers`)){let t=Hp(e,`@huggingface/transformers`);n.set(`@huggingface/transformers`,`@huggingface/transformers@${Up(t,`@huggingface/transformers`)}`)}if(t.includes(`onnxruntime-common`)){let t=Hp(e,`onnxruntime-common`);n.set(`onnxruntime-common`,`onnxruntime-common@${Up(t,`onnxruntime-common`)}`)}if(t.includes(`onnxruntime-node`)){let t=Hp(e,`onnxruntime-node`);n.set(`onnxruntime-node`,`onnxruntime-node@${Up(t,`onnxruntime-node`)}`)}return Array.from(n.values())}function Kp(e){if(!/index\.js/i.test(e)||!Lp(e).includes(`@huggingface`))return!1;let t=Hp(e,`@huggingface/transformers`);if(!t)return!1;let n=I(t,`index.js`),r=I(t,`dist`,`transformers.node.mjs`);return P(n)||!P(r)?!1:(ke(n,[`// Auto-generated by AI Kit runtime dependency repair.`,`export * from './dist/transformers.node.mjs';`,`export { default } from './dist/transformers.node.mjs';`,``].join(`
276
+ `),`utf8`),Pp.info(`Auto-heal: created @huggingface/transformers index.js shim`,{path:n}),!0)}async function qp(e,t={}){let n=Gp(e),r=t.packageRoot??zp(),i=Kp(e);if(n.length===0)return{attempted:i,repaired:i,packages:n,reason:i?`created transformer index shim`:`no missing runtime dependency detected`};if(!Vp(r))return{attempted:i,repaired:i,packages:n,reason:`runtime dependency auto-install disabled outside npx cache; set AIKIT_ALLOW_DEP_REPAIR=1 to enable`};let a=process.platform===`win32`?`npm.cmd`:`npm`,o=[`install`,`--no-save`,`--package-lock=false`,`--no-audit`,`--no-fund`,`--omit=dev`,`--prefer-online`,`--ignore-scripts`,...n];Pp.warn(`Auto-heal: repairing missing runtime dependencies`,{packages:n,packageRoot:r});try{return await Fp(a,o,{cwd:r,timeout:t.timeoutMs??6e4,windowsHide:!0}),Pp.info(`Auto-heal: runtime dependency repair completed`,{packages:n,packageRoot:r}),{attempted:!0,repaired:!0,packages:n,reason:`npm install repair completed`}}catch(e){let t=e instanceof Error?e.message:String(e);return Pp.warn(`Auto-heal: runtime dependency repair failed`,{packages:n,packageRoot:r,...N(e)}),{attempted:!0,repaired:i,packages:n,reason:i?`created transformer shim but npm repair failed`:`npm repair failed`,error:t}}}const Jp=M(`tools`);let Yp=!1;function Xp(e){let t=e instanceof Error?e.message:String(e);return Wp(t)||/embedder worker|embedding worker|circuit breaker|timed out|killed|respawn|ipc_channel|epipe|econnreset/i.test(t)}async function Zp(e,t,n){try{return await e.embedBatch(t,n)}catch(r){if((await qp(r instanceof Error?r.message:String(r))).repaired)return e.embedBatch(t,n);throw r}}async function Qp(e,t,n){for(let r of n.steps)if(!(r.status!==`success`||!r.output))try{let i=Fe(`sha256`).update(n.path).digest(`hex`).slice(0,12),a=`produced/onboard/${r.name}/${i}.md`,o=Fe(`sha256`).update(r.output).digest(`hex`).slice(0,16),s=new Date().toISOString(),c=r.output.length>2e3?r.output.split(/(?=^## )/m).filter(e=>e.trim().length>0):[r.output],l=c.map((e,t)=>({id:Fe(`sha256`).update(`${a}::${t}`).digest(`hex`).slice(0,16),content:e.trim(),sourcePath:a,contentType:`produced-knowledge`,chunkIndex:t,totalChunks:c.length,startLine:0,endLine:0,fileHash:o,indexedAt:s,origin:`produced`,tags:[`onboard`,r.name],category:`analysis`,version:1})),u=await Zp(t,l.map(e=>e.content));await e.upsert(l,u)}catch(e){if(Xp(e)){let t=e instanceof Error?e.message:String(e);fe.instance().reportDegraded(`embedder`,t),Jp.warn(`Auto-persist onboard disabled — embedder unavailable`,{stepName:r.name,...N(e)});return}Jp.warn(`Auto-persist onboard step failed`,{stepName:r.name,...N(e)})}}async function $p(e,t,n){if(n.autoRemember?.length)for(let r of n.autoRemember)try{let n=Fe(`sha256`).update(`onboard-remember::${r.title}`).digest(`hex`).slice(0,16),i=new Date().toISOString(),a={id:n,content:`# ${r.title}\n\n${r.content}`,sourcePath:`curated/onboard/${r.category}/${n}.md`,contentType:`curated`,chunkIndex:0,totalChunks:1,startLine:0,endLine:0,fileHash:Fe(`sha256`).update(r.content).digest(`hex`).slice(0,16),indexedAt:i,origin:`curated`,tags:r.tags,category:r.category,version:1},[o]=await Zp(t,[a.content]);await e.upsert([a],[o])}catch(e){if(Xp(e)){let t=e instanceof Error?e.message:String(e);fe.instance().reportDegraded(`embedder`,t),Jp.warn(`Auto-persist remember disabled — embedder unavailable`,{title:r.title,...N(e)});return}Jp.warn(`Auto-persist remember entry failed`,{title:r.title,...N(e)})}}function em(e,t,n,r,i,a){let o=W(`onboard`);e.registerTool(`onboard`,{title:o.title,description:`First-time codebase onboarding: runs all analysis tools (structure, dependencies, entry-points, symbols, patterns, diagram) in one command. Results are auto-persisted to AI Kit memory. Use mode=generate to also write structured output to .ai/context/ directory.`,inputSchema:{path:R.string().describe(`Root path of the codebase to onboard`),mode:R.enum([`memory`,`generate`]).default(`generate`).describe(`Output mode: generate (default) = persist to AI Kit + write .ai/context/ files; memory = AI Kit vector store only`),out_dir:R.string().optional().describe(`Custom output directory for generate mode (default: <path>/.ai/context)`),enrich:R.boolean().default(!0).describe(`Append curated knowledge and graph context to output. Adds ~150-250 tokens. Default true for planning tools — set false to save tokens when enrichment is not needed.`)},annotations:o.annotations},J(`onboard`,async({path:e,mode:o,out_dir:s,enrich:c},l)=>{try{if(Yp)return{content:[{type:`text`,text:`Onboard is already running. Please wait for it to complete before starting another.`}]};Yp=!0,Jp.info(`Starting onboard`,{path:e,mode:o});let u=await Rt({path:e,mode:o,outDir:s??r?.onboardDir}),d=Qc(l).createTask(`Onboard`,u.steps.length);for(let e=0;e<u.steps.length;e++){let t=u.steps[e];d.progress(e,`${t.name}: ${t.status}`)}d.complete(`Onboard complete: ${u.steps.filter(e=>e.status===`success`).length}/${u.steps.length} steps succeeded`),Qp(t,n,u),u.autoRemember?.length&&$p(t,n,u).catch(e=>{Jp.warn(`Auto-persist autoRemember failed`,N(e))}),i&&(i.onboardComplete=!0,i.onboardTimestamp=new Date().toISOString());let f=[`## Onboard Complete`,``,`**Path:** \`${u.path}\``,`**Mode:** ${u.mode}`,`**Duration:** ${u.totalDurationMs}ms`,``];u.outDir&&(f.push(`**Output directory:** \`${u.outDir}\``),f.push(``)),f.push(`### Analysis Results`,``);let p=[],m=[];for(let e of u.steps)e.status===`success`?p.push(`- ✓ **${e.name}** (${e.durationMs}ms) — ${e.output.length} chars`):m.push(`- ✗ **${e.name}** — ${e.error}`);f.push(...p),m.length>0&&f.push(``,`### Failed`,``,...m),f.push(``,`---`,``);for(let e of u.steps)e.status===`success`&&f.push(`### ${e.name}`,``,e.output,``,`---`,``);f.push(`_All results auto-saved to AI Kit memory._`,u.mode===`generate`?` Files written to \`${u.outDir}\`.`:``,' Next: Use `search` to query the knowledge, or `knowledge({ action: "remember", ... })` to add custom insights.');let h=f.join(`
277
+ `);if(c&&a){let e=await G(a,{query:`onboard codebase conventions`});h+=K(e)}return{content:[{type:`text`,text:h}]}}catch(e){return Jp.error(`Onboard failed`,N(e)),q(`INTERNAL`,`Onboard failed: ${e instanceof Error?e.message:String(e)}`)}finally{Yp=!1}}))}const tm=M(`tools:persistence`);function nm(e){let t=W(`workset`);e.registerTool(`workset`,{title:t.title,description:`Manage named file sets (worksets). Save, load, list, add/remove files. Worksets persist across sessions in the AI Kit state directory.`,inputSchema:{action:R.enum([`save`,`get`,`list`,`delete`,`add`,`remove`]).describe(`Operation to perform`),name:R.string().optional().describe(`Workset name (required for all except list)`),files:R.array(R.string()).optional().describe(`File paths (required for save, add, remove)`),description:R.string().optional().describe(`Description (for save)`)},annotations:t.annotations},J(`workset`,async({action:e,name:t,files:n,description:r})=>{try{switch(e){case`save`:{if(!t||!n)throw Error(`name and files required for save`);let e=dn(t,n,{description:r});return{content:[{type:`text`,text:`Saved workset "${e.name}" with ${e.files.length} files.`}]}}case`get`:{if(!t)throw Error(`name required for get`);let e=xt(t);return e?{content:[{type:`text`,text:JSON.stringify(e)}]}:{content:[{type:`text`,text:`Workset "${t}" not found.`}]}}case`list`:{let e=It();return e.length===0?{content:[{type:`text`,text:`No worksets.`}]}:{content:[{type:`text`,text:e.map(e=>`- **${e.name}** (${e.files.length} files) — ${e.description??`no description`}`).join(`
278
+ `)}]}}case`delete`:if(!t)throw Error(`name required for delete`);return{content:[{type:`text`,text:st(t)?`Deleted workset "${t}".`:`Workset "${t}" not found.`}]};case`add`:{if(!t||!n)throw Error(`name and files required for add`);let e=Ve(t,n);return{content:[{type:`text`,text:`Added to workset "${e.name}": now ${e.files.length} files.`}]}}case`remove`:{if(!t||!n)throw Error(`name and files required for remove`);let e=rn(t,n);return e?{content:[{type:`text`,text:`Removed from workset "${e.name}": now ${e.files.length} files.`}]}:{content:[{type:`text`,text:`Workset "${t}" not found.`}]}}}}catch(e){return tm.error(`Workset operation failed`,N(e)),q(`INTERNAL`,`Workset operation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function rm(e,t){let n=W(`stash`);e.registerTool(`stash`,{title:n.title,description:`Persist and retrieve named values in the SQLite-backed state store for intermediate results between tool calls.`,inputSchema:{action:R.enum([`set`,`get`,`list`,`delete`,`clear`]).describe(`Operation to perform on the stash`),key:R.string().optional().describe(`Entry key for set/get/delete operations`),value:R.string().optional().describe(`String or JSON value for set operations`)},annotations:n.annotations},J(`stash`,async({action:e,key:n,value:r})=>{try{switch(e){case`set`:{if(!n)throw Error(`key required for set`);let e=xn(t,n,cm(r??``));return{content:[{type:`text`,text:`Stored stash entry "${e.key}" (${e.type}) at ${e.storedAt}.`}]}}case`get`:{if(!n)throw Error(`key required for get`);let e=yn(t,n);return{content:[{type:`text`,text:e?JSON.stringify(e):`Stash entry "${n}" not found.`}]}}case`list`:{let e=bn(t);return{content:[{type:`text`,text:e.length===0?`Stash is empty.`:e.map(e=>`- ${e.key} (${e.type}) — ${e.storedAt}`).join(`
279
+ `)}]}}case`delete`:if(!n)throw Error(`key required for delete`);return{content:[{type:`text`,text:vn(t,n)?`Deleted stash entry "${n}".`:`Stash entry "${n}" not found.`}]};case`clear`:{let e=_n(t);return{content:[{type:`text`,text:`Cleared ${e} stash entr${e===1?`y`:`ies`}.`}]}}}}catch(e){return tm.error(`Stash operation failed`,N(e)),q(`INTERNAL`,`Stash operation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function im(e,t){let n=W(`checkpoint`);e.registerTool(`checkpoint`,{title:n.title,description:`Save and restore lightweight session checkpoints in the SQLite-backed state store for cross-session continuity. Legacy AI Kit checkpoint directories are imported automatically on first access.`,inputSchema:{action:R.enum([`save`,`load`,`list`,`latest`,`diff`,`history`,`gc`]).describe(`Checkpoint action to perform`),label:R.string().optional().describe(`Checkpoint label for save, or checkpoint id for load`),data:R.string().max(5e5).optional().describe(`JSON object string for save actions`),notes:R.string().max(1e4).optional().describe(`Optional notes for save actions`),from_id:R.string().optional().describe(`Checkpoint ID to diff FROM (for diff action)`),to_id:R.string().optional().describe(`Checkpoint ID to diff TO (for diff action)`),limit:R.number().min(1).max(50).optional().describe(`Max history entries to return`),keep_last:R.number().min(1).max(100).optional().describe(`Keep N most recent checkpoints per label (default: 10, for gc action)`),max_age_days:R.number().min(1).optional().describe(`Delete checkpoints older than N days (for gc action)`),dry_run:R.boolean().optional().describe(`Preview changes without deleting (default: true, for gc action)`)},annotations:n.annotations},J(`checkpoint`,async({action:e,label:n,data:r,notes:i,from_id:a,to_id:o,limit:s,keep_last:c,max_age_days:l,dry_run:u})=>{try{switch(e){case`save`:if(!n)throw Error(`label required for save`);return{content:[{type:`text`,text:sm(Qe(t,n,lm(r),{notes:i}))}]};case`load`:{if(!n)throw Error(`label required for load`);let e=Ze(t,n);return{content:[{type:`text`,text:e?sm(e):`Checkpoint "${n}" not found.`}]}}case`list`:{let e=Xe(t,{label:n,limit:s});return{content:[{type:`text`,text:e.length===0?`No checkpoints saved.`:e.map(e=>`- ${e.id} — ${e.label} (${e.createdAt})`).join(`
280
+ `)}]}}case`latest`:{let e=Ye(t,{label:n});return{content:[{type:`text`,text:e?sm(e):`No checkpoints saved.`}]}}case`diff`:{if(!a||!o)throw Error(`from_id and to_id required for diff`);let e=Ke(t,a,o);return e?{content:[{type:`text`,text:[`## Checkpoint Diff: ${a} → ${o}`,e.added.length?`**Added:** ${e.added.join(`, `)}`:``,e.removed.length?`**Removed:** ${e.removed.join(`, `)}`:``,e.modified.length?`**Modified:** ${e.modified.join(`, `)}`:``,!e.added.length&&!e.removed.length&&!e.modified.length?`No differences found.`:``].filter(Boolean).join(`
281
281
  `)}]}:{content:[{type:`text`,text:`One or both checkpoints not found.`}]}}case`history`:{if(!n)throw Error(`label required for history`);let e=Je(t,n,{limit:s??20});return e.length===0?{content:[{type:`text`,text:`No history found for "${n}".`}]}:{content:[{type:`text`,text:`## History: ${n}\n${e.map(e=>`- ${e.sha?e.sha.slice(0,8):e.id} — ${e.createdAt}${e.label?` (${e.label})`:``}`).join(`
282
282
  `)}`}]}}case`gc`:{let e=qe(t,{label:n,keepLast:c,maxAgeDays:l,dryRun:u});return{content:[{type:`text`,text:[`## Checkpoint GC${e.labels.length?`: ${e.labels.join(`, `)}`:``}`,`Deleted: ${e.deleted}`,`Kept: ${e.kept}`,`Mode: ${u??!0?`dry-run`:`delete`}`,e.deletedIds.length?`Deleted IDs: ${e.deletedIds.join(`, `)}`:`Deleted IDs: none`].join(`
283
- `)}]}}}}catch(e){return em.error(`Checkpoint failed`,N(e)),q(`INTERNAL`,`Checkpoint failed: ${e instanceof Error?e.message:String(e)}`)}}))}function im(e){let t=W(`lane`);e.registerTool(`lane`,{title:t.title,description:`Manage verified lanes — isolated file copies for parallel exploration. Also provides advisory write-intent leases for multi-agent coordination.`,inputSchema:{action:R.enum([`create`,`list`,`status`,`diff`,`merge`,`discard`,`lease`,`unlease`,`leases`]).describe(`Lane action to perform`),name:R.string().optional().describe(`Lane name (required for create/status/diff/merge/discard)`),files:R.array(R.string()).optional().describe(`File paths to copy into the lane (required for create)`),agent:R.string().optional().describe(`Agent identifier (required for lease)`),intent:R.string().optional().describe(`What the agent plans to do (required for lease)`),id:R.string().optional().describe(`Lease ID (required for unlease)`),symbols:R.array(R.string()).optional().describe(`Symbol names within files (optional for lease)`),ttl_minutes:R.number().optional().describe(`Lease TTL in minutes (default 10, optional for lease)`)},annotations:t.annotations},J(`lane`,async({action:e,name:t,files:n,agent:r,intent:i,id:a,symbols:o,ttl_minutes:s})=>{try{switch(e){case`create`:{if(!t)throw Error(`name is required for create`);if(!n||n.length===0)throw Error(`files are required for create`);let e=Ot(t,n);return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`list`:return{content:[{type:`text`,text:JSON.stringify(jt())}]};case`status`:if(!t)throw Error(`name is required for status`);return{content:[{type:`text`,text:JSON.stringify(Nt(t))}]};case`diff`:if(!t)throw Error(`name is required for diff`);return{content:[{type:`text`,text:JSON.stringify(kt(t))}]};case`merge`:if(!t)throw Error(`name is required for merge`);return{content:[{type:`text`,text:JSON.stringify(Mt(t))}]};case`discard`:if(!t)throw Error(`name is required for discard`);return{content:[{type:`text`,text:JSON.stringify({discarded:At(t)})}]};case`lease`:{if(!r)throw Error(`agent is required for lease`);if(!n||n.length===0)throw Error(`files are required for lease`);if(!i)throw Error(`intent is required for lease`);let e=Be({agent:r,files:n,intent:i,symbols:o,ttl_minutes:s});return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`unlease`:{if(!a)throw Error(`id is required for unlease`);let e=nn({id:a});return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`leases`:{let e=Pt({agent:r});return{content:[{type:`text`,text:JSON.stringify(e)}]}}}}catch(e){return em.error(`Lane action failed`,N(e)),q(`INTERNAL`,`Lane action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function am(e){let t=W(`queue`);e.registerTool(`queue`,{title:t.title,description:`Manage task queues with optional DAG dependencies. Push items with dependsOn for wave-based execution. Take next, mark done/failed, list queues.`,inputSchema:{action:R.enum([`create`,`push`,`next`,`done`,`fail`,`get`,`list`,`clear`,`delete`,`dag`]).describe(`Queue action`),name:R.string().optional().describe(`Queue name (required for most actions)`),title:R.string().optional().describe(`Item title (required for push)`),id:R.string().optional().describe(`Item ID (required for done/fail)`),data:R.unknown().optional().describe(`Arbitrary data to attach to a queue item`),error:R.string().optional().describe(`Error message (required for fail)`),dependsOn:R.array(R.string()).optional().describe(`Item IDs this task depends on. Dependent items start as blocked until deps complete.`)},annotations:t.annotations},J(`queue`,async({action:e,name:t,title:n,id:r,data:i,error:a,dependsOn:o})=>{try{switch(e){case`create`:if(!t)throw Error(`name is required for create`);return{content:[{type:`text`,text:JSON.stringify(Kt(t))}]};case`push`:if(!t)throw Error(`name is required for push`);if(!n)throw Error(`title is required for push`);return{content:[{type:`text`,text:JSON.stringify(en(t,n,i,void 0,o))}]};case`next`:{if(!t)throw Error(`name is required for next`);let e=$t(t);return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`done`:if(!t)throw Error(`name is required for done`);if(!r)throw Error(`id is required for done`);return{content:[{type:`text`,text:JSON.stringify(Yt(t,r))}]};case`fail`:if(!t)throw Error(`name is required for fail`);if(!r)throw Error(`id is required for fail`);if(!a)throw Error(`error is required for fail`);return{content:[{type:`text`,text:JSON.stringify(Xt(t,r,a))}]};case`get`:if(!t)throw Error(`name is required for get`);return{content:[{type:`text`,text:JSON.stringify(Zt(t))}]};case`list`:return{content:[{type:`text`,text:JSON.stringify(Qt())}]};case`clear`:if(!t)throw Error(`name is required for clear`);return{content:[{type:`text`,text:JSON.stringify({cleared:Gt(t)})}]};case`delete`:if(!t)throw Error(`name is required for delete`);return{content:[{type:`text`,text:JSON.stringify({deleted:Jt(t)})}]};case`dag`:if(!t)throw Error(`name is required for dag`);return{content:[{type:`text`,text:JSON.stringify(qt(t))}]}}}catch(e){return em.error(`Queue action failed`,N(e)),q(`INTERNAL`,`Queue action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function om(e){let t=[e.id,`Label: ${e.label}`,`Created: ${e.createdAt}`];return e.notes&&t.push(`Notes: ${e.notes}`),t.push(``,`Data:`,JSON.stringify(e.data)),t.join(`
284
- `)}function sm(e){let t=e.trim();if(!t)return``;try{return JSON.parse(t)}catch{return e}}function cm(e){let t=e?.trim();if(!t)return{};let n;try{n=JSON.parse(t)}catch{throw Error(`data must be a valid JSON object string`)}if(!n||typeof n!=`object`||Array.isArray(n))throw Error(`data must be a JSON object string`);return n}const lm=M(`tools`);function um(e){let t=[`## Rule: ${e.id}`,``,`- **Status**: ${e.enabled?`enabled`:`disabled`}`,`- **Description**: ${e.description??`—`}`,`- **Category**: ${e.category??`—`}`,`- **Push weight**: ${e.pushWeight??`—`}`];return e.patterns?.length&&t.push(`- **Patterns**: ${e.patterns.join(`, `)}`),e.examples?.length&&t.push(`- **Examples**: ${e.examples.join(`, `)}`),t.join(`
285
- `)}function dm(e,t){let n=W(`er_update_policy`);e.registerTool(`er_update_policy`,{title:n.title,description:`Manage ER push classification rules. Supports listing, updating, creating, and deleting rules that determine when knowledge should be pushed to Enterprise RAG.`,inputSchema:{action:R.enum([`list`,`get`,`update`,`create`,`delete`]).describe(`Action to perform on classification rules`),rule_id:R.string().optional().describe(`Rule ID (required for get, update, delete)`),changes:R.object({patterns:R.array(R.string()).optional(),category:R.string().optional(),pushWeight:R.number().min(0).max(1).optional(),description:R.string().optional(),examples:R.array(R.string()).optional(),enabled:R.boolean().optional()}).optional().describe(`Changes to apply (for update action)`),new_rule:R.object({id:R.string().regex(/^[a-z][a-z0-9-]*$/),patterns:R.array(R.string()).min(1),category:R.string(),pushWeight:R.number().min(0).max(1),description:R.string(),examples:R.array(R.string()).default([]),enabled:R.boolean().default(!0)}).optional().describe(`New rule definition (for create action)`)},annotations:n.annotations},J(`er_update_policy`,async({action:e,rule_id:n,changes:r,new_rule:i})=>{try{if(e===`list`){let e=t.getRules();return{content:[{type:`text`,text:`## Classification Rules\n\n${e.map(e=>`- **${e.id}** (${e.enabled?`enabled`:`disabled`}) — ${e.description}\n Category: ${e.category} | Weight: ${e.pushWeight} | Patterns: ${e.patterns.join(`, `)}`).join(`
286
- `)}\n\n---\n_${e.length} rules total. Use \`action: "update"\` to modify a rule._`}]}}if(e===`get`){if(!n)return q(`VALIDATION`,'`rule_id` is required for "get" action.');let e=t.getRule(n);return e?{content:[{type:`text`,text:um(e)}]}:q(`NOT_FOUND`,`Rule "${n}" not found.`)}if(e===`update`){if(!n||!r)return q(`VALIDATION`,'`rule_id` and `changes` are required for "update" action.');let e=t.updateRule(n,r);return e?{content:[{type:`text`,text:`${um(e)}\n\n---\n_Updated. Next: Use \`action: "list"\` to verify._`}]}:q(`NOT_FOUND`,`Rule "${n}" not found.`)}return e===`create`?i?{content:[{type:`text`,text:`${um(t.addRule(i))}\n\n---\n_Created. Next: Test classification with \`remember\`._`}]}:q(`VALIDATION`,'`new_rule` is required for "create" action.'):e===`delete`?n?t.deleteRule(n)?{content:[{type:`text`,text:`Deleted rule **${n}**.\n\n---\n_Next: Use \`action: "list"\` to verify._`}]}:q(`NOT_FOUND`,`Rule "${n}" not found.`):q(`VALIDATION`,'`rule_id` is required for "delete" action.'):q(`VALIDATION`,`Unknown action: ${e}`)}catch(e){return lm.error(`Policy update failed`,N(e)),q(`INTERNAL`,`Policy update failed: ${e instanceof Error?e.message:String(e)}`)}}))}const fm=new Map;function pm(e){return e.replace(/[|\\{}()[\]^$+*?.]/g,`\\$&`)}function mm(e){let t=`(?=[^>]*\\bid=['"]${pm(e)}['"])`;return RegExp(`(<script\\b(?=[^>]*\\btype=['"]application\\/json['"])${t}[^>]*>)[\\s\\S]*?(<\/script>)`,`i`)}function hm(e){fm.has(e.id)&&console.warn(`[viewer-registry] Overwriting viewer template "${e.id}"`),fm.set(e.id,e)}function gm(e){return fm.get(e)}function _m(e){return typeof e==`string`&&fm.has(e)}function vm(){return[...fm.values()]}function ym(e,t,n,r){let i=mm(n);if(!i.test(e))throw Error(`No <script type="application/json" id="${n}"> found in template`);let a=r?r(t):t,o=JSON.stringify(a??null).replace(/<\/script/gi,`<\\/script`).replace(/<script/gi,`\\u003Cscript`).replace(/-->/g,`--\\u003E`).replace(/<!--/g,`\\u003C!--`);return e.replace(i,`$1\n${o}\n$2`)}const bm=import.meta.dirname??je(ce(import.meta.url)),xm={type:`object`,properties:{title:{type:`string`},description:{type:`string`},layout:{type:`object`,properties:{direction:{type:`string`},spacing:{type:`number`},layerSpacing:{type:`number`}}},nodes:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},type:{type:`string`,enum:[`person`,`system`,`container`,`component`,`database`,`queue`,`external`,`boundary`]},label:{type:`string`},technology:{type:`string`},icon:{type:`string`},description:{type:`string`}},required:[`id`,`type`,`label`]}},edges:{type:`array`,items:{type:`object`,properties:{source:{type:`string`},target:{type:`string`},label:{type:`string`},style:{type:`string`,enum:[`sync`,`async`,`dashed`,`dotted`,`solid`]}},required:[`source`,`target`]},default:[]}},required:[`nodes`]},Sm={type:`object`,properties:{nodes:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},label:{type:`string`},type:{type:`string`,enum:[`start-end`,`manual`,`automated`,`integration`,`decision`,`prerequisite`]},description:{type:`string`}},required:[`id`,`label`]}},edges:{type:`array`,items:{type:`object`,properties:{source:{type:`string`},target:{type:`string`},label:{type:`string`},type:{type:`string`,enum:[`standard`,`loop-back`,`exception`]}},required:[`source`,`target`]}}},required:[`nodes`]},Cm={type:`object`,properties:{title:{type:`string`},description:{type:`string`},phases:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},label:{type:`string`},outcome:{type:`string`},batches:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},order:{type:`number`},parallel:{type:`boolean`},label:{type:`string`},tasks:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},title:{type:`string`},agent:{type:`string`},files:{type:`array`,items:{type:`string`},default:[]},status:{type:`string`,enum:[`pending`,`in-progress`,`done`,`blocked`]},dependsOn:{type:`array`,items:{type:`string`},default:[]}},required:[`id`,`title`]},default:[]}},required:[`id`,`tasks`]},default:[]}},required:[`id`,`label`,`batches`]}}},required:[`phases`]};function wm(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function Tm(e,t){return wm(t)?{...t,kind:e}:{kind:e}}function Em(e){let t=e===`canvas.html`?[I(bm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,`src`,`canvas`,`index.html`),I(bm,`..`,`..`,`scaffold`,`general`,`viewers`,`src`,`canvas`,`index.html`)]:[],n=C(`server`,[I(`viewers`,`dist`,e),I(`viewers`,e)]),r=[...t,...n?[n]:[],I(bm,`..`,`..`,`..`,`viewers`,e),I(bm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,`src`,`static`,e),I(bm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,`dist`,e),I(bm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,e),I(bm,`..`,`..`,`scaffold`,`general`,`viewers`,`dist`,e),I(bm,`..`,`..`,`scaffold`,`general`,`viewers`,e),I(bm,`..`,`viewers`,`dist`,e),I(bm,`..`,`viewers`,e)];for(let e of r)try{return F(e,`utf8`)}catch{}throw Error(`Viewer HTML not found: ${e}. Searched: ${r.join(`, `)}`)}let Dm,Om,km,Am,jm,Mm;function Nm(){return Dm??=Em(`c4-viewer.html`),Dm}function Pm(){return Om??=Em(`tour-viewer.html`),Om}function Fm(){return km??=Em(`canvas.html`),km}function Im(){return Am??=Em(`architecture-static.html`),Am}function Lm(){return jm??=Em(`process-flow-static.html`),jm}function Rm(){return Mm??=Em(`task-plan-static.html`),Mm}function zm(){hm({id:`c4@1`,label:`C4 Architecture Diagram`,description:`Interactive C4 architecture diagram with zoom, pan, and ELK auto-layout`,inputSchema:xm,injectId:`diagram-data`,supportedTransports:[`browser`],resolveHtml:Nm}),hm({id:`c4-static@1`,label:`C4 Architecture Diagram (Static)`,description:`Static SVG architecture diagram for inline rendering`,inputSchema:xm,injectId:`diagram-data`,supportedTransports:[`mcp-app`],resolveHtml:Im}),hm({id:`tour@1`,label:`Code Tour Viewer`,description:`Interactive code tour with step navigation and dependency graph`,inputSchema:{type:`object`,properties:{title:{type:`string`},description:{type:`string`},estimatedTime:{type:`string`},steps:{type:`array`,items:{type:`object`,properties:{stepNumber:{type:`number`},id:{type:`string`},title:{type:`string`},file:{type:`string`},explanation:{type:`string`},description:{type:`string`},learnsConcept:{type:`string`},duration:{type:`string`},line:{type:`number`},code:{type:`string`}},required:[`id`,`title`]}},dependencies:{type:`array`,items:{type:`object`,properties:{source:{type:`string`},target:{type:`string`}},required:[`source`,`target`]},default:[]}},required:[`steps`]},injectId:`tour-data`,supportedTransports:[`browser`],resolveHtml:Pm}),hm({id:`process-flow-static@1`,label:`Process Flow Diagram (Static)`,description:`Static SVG process flow diagram for inline rendering`,inputSchema:Sm,injectId:`diagram-data`,supportedTransports:[`mcp-app`],resolveHtml:Lm}),hm({id:`task-plan-static@1`,label:`Task Execution Plan (Static)`,description:`Static SVG task execution plan for inline rendering`,inputSchema:Cm,injectId:`diagram-data`,supportedTransports:[`mcp-app`],resolveHtml:Rm}),hm({id:`task-plan@1`,label:`Task Execution Plan (Interactive)`,description:`Interactive task execution plan with ReactFlow, phase grouping, and dependency edges`,inputSchema:Cm,injectId:`diagram-data`,supportedTransports:[`browser`],resolveHtml:Fm,transformData:e=>Tm(`task-plan`,e)}),hm({id:`process-flow@1`,label:`Process Flow Diagram (Interactive)`,description:`Interactive process flow diagram with ReactFlow`,inputSchema:Sm,injectId:`diagram-data`,supportedTransports:[`browser`],resolveHtml:Fm,transformData:e=>Tm(`process-flow`,e)})}function Bm(){let e=new Or;for(let t of jr.list())e.register(t);return e.register(Ar),e.register(Fr),e.register(Ir),e.register(Mr),e}function Vm(e,t){return e?.supportedTransports.includes(t)??!1}const Hm=Bm();function Um(e){if(e.template)return Hm.get(e.template)}function Wm(e){if((e.actions?.length??0)>0)return!0;if(e.template&&_m(e.template)){let t=gm(e.template);return t?.supportedTransports.includes(`browser`)===!0&&!t.supportedTransports.includes(`mcp-app`)}let t=Um(e);return Vm(t,`browser`)&&!Vm(t,`mcp-app`)}zm();const Gm=new Map([{type:`markdown`,category:`content`,description:`Markdown content rendered with the marked parser.`,valueShape:`string`,relevantSkills:[`present`,`docs`]},{type:`code`,category:`content`,description:`Formatted code block rendered inside pre/code tags.`,valueShape:`string`,relevantSkills:[`present`,`docs`]},{type:`mermaid`,category:`visualization`,description:`Mermaid diagram source rendered in a mermaid pre block.`,valueShape:`string`,vendorScripts:[`mermaid`],relevantSkills:[`present`,`c4-architecture`,`docs`]},{type:`table`,category:`data`,description:`Tabular data rendered from records or explicit headers and rows.`,valueShape:`Record<string, unknown>[] | { headers: string[]; rows: unknown[][] }`,relevantSkills:[`present`,`docs`]},{type:`metrics`,category:`data`,description:`Metric cards showing label/value pairs with optional trend and status.`,valueShape:`Array<{ label: string; value: string | number; trend?: string | number; status?: string }>`,relevantSkills:[`present`]},{type:`cards`,category:`visualization`,description:`Card grid for titled items with optional body, badge, and status.`,valueShape:`Array<{ title: string; body?: string; badge?: string; status?: string; description?: string }>`,relevantSkills:[`present`,`docs`]},{type:`tree`,category:`visualization`,description:`Hierarchical object or name/children tree rendered recursively.`,valueShape:`{ name: string; children?: unknown[] } | Record<string, unknown>`,relevantSkills:[`present`]},{type:`graph`,category:`visualization`,description:`Node and edge graph rendered as a Mermaid flow graph in HTML mode.`,valueShape:`{ nodes: Array<{ id: string; label?: string }>; edges: Array<{ from: string; to: string; label?: string }> }`,vendorScripts:[`mermaid`],relevantSkills:[`present`,`c4-architecture`]},{type:`chart`,category:`data`,description:`Structured chart definition rendered as SVG.`,valueShape:`{ chartType: string; data: Record<string, unknown>[]; xKey: string; yKeys: string[] }`,relevantSkills:[`present`]},{type:`timeline`,category:`interactive`,description:`Timeline entries rendered as a vertical sequence of events.`,valueShape:`Array<{ title: string; description?: string; timestamp?: string; status?: string }>`,relevantSkills:[`present`]},{type:`checklist`,category:`interactive`,description:`Checklist items with boolean checked state.`,valueShape:`Array<{label, checked}> | {items: Array<{label, checked}>}`,relevantSkills:[`present`]},{type:`comparison`,category:`interactive`,description:`Side-by-side comparison columns with titled item lists.`,valueShape:`Array<{title, items}> | {columns: Array<{title, items}>}`,relevantSkills:[`present`]},{type:`status-board`,category:`interactive`,description:`Status categories containing labeled status items.`,valueShape:`Array<{category, items}> | {items: Array<{category, items}>}`,relevantSkills:[`present`]},{type:`prompt`,category:`interactive`,description:`Prompt payload rendered through the prompt display helper.`,valueShape:`unknown`,relevantSkills:[`present`]},{type:`progress`,category:`interactive`,description:`Progress bar with current value and optional maximum.`,valueShape:`{label, value, max?} | {items: Array<{label, value, max?, color?}>}`,relevantSkills:[`present`]},{type:`docs-browser`,category:`interactive`,description:`Documentation file list with inline content previews for chat-safe rendering.`,valueShape:`{ files: Array<{ path: string; title?: string; content?: string; status?: "current" | "stale" | "missing" }>; title?: string }`,relevantSkills:[`present`,`docs`],usageExample:`{
283
+ `)}]}}}}catch(e){return tm.error(`Checkpoint failed`,N(e)),q(`INTERNAL`,`Checkpoint failed: ${e instanceof Error?e.message:String(e)}`)}}))}function am(e){let t=W(`lane`);e.registerTool(`lane`,{title:t.title,description:`Manage verified lanes — isolated file copies for parallel exploration. Also provides advisory write-intent leases for multi-agent coordination.`,inputSchema:{action:R.enum([`create`,`list`,`status`,`diff`,`merge`,`discard`,`lease`,`unlease`,`leases`]).describe(`Lane action to perform`),name:R.string().optional().describe(`Lane name (required for create/status/diff/merge/discard)`),files:R.array(R.string()).optional().describe(`File paths to copy into the lane (required for create)`),agent:R.string().optional().describe(`Agent identifier (required for lease)`),intent:R.string().optional().describe(`What the agent plans to do (required for lease)`),id:R.string().optional().describe(`Lease ID (required for unlease)`),symbols:R.array(R.string()).optional().describe(`Symbol names within files (optional for lease)`),ttl_minutes:R.number().optional().describe(`Lease TTL in minutes (default 10, optional for lease)`)},annotations:t.annotations},J(`lane`,async({action:e,name:t,files:n,agent:r,intent:i,id:a,symbols:o,ttl_minutes:s})=>{try{switch(e){case`create`:{if(!t)throw Error(`name is required for create`);if(!n||n.length===0)throw Error(`files are required for create`);let e=Ot(t,n);return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`list`:return{content:[{type:`text`,text:JSON.stringify(jt())}]};case`status`:if(!t)throw Error(`name is required for status`);return{content:[{type:`text`,text:JSON.stringify(Nt(t))}]};case`diff`:if(!t)throw Error(`name is required for diff`);return{content:[{type:`text`,text:JSON.stringify(kt(t))}]};case`merge`:if(!t)throw Error(`name is required for merge`);return{content:[{type:`text`,text:JSON.stringify(Mt(t))}]};case`discard`:if(!t)throw Error(`name is required for discard`);return{content:[{type:`text`,text:JSON.stringify({discarded:At(t)})}]};case`lease`:{if(!r)throw Error(`agent is required for lease`);if(!n||n.length===0)throw Error(`files are required for lease`);if(!i)throw Error(`intent is required for lease`);let e=Be({agent:r,files:n,intent:i,symbols:o,ttl_minutes:s});return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`unlease`:{if(!a)throw Error(`id is required for unlease`);let e=nn({id:a});return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`leases`:{let e=Pt({agent:r});return{content:[{type:`text`,text:JSON.stringify(e)}]}}}}catch(e){return tm.error(`Lane action failed`,N(e)),q(`INTERNAL`,`Lane action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function om(e){let t=W(`queue`);e.registerTool(`queue`,{title:t.title,description:`Manage task queues with optional DAG dependencies. Push items with dependsOn for wave-based execution. Take next, mark done/failed, list queues.`,inputSchema:{action:R.enum([`create`,`push`,`next`,`done`,`fail`,`get`,`list`,`clear`,`delete`,`dag`]).describe(`Queue action`),name:R.string().optional().describe(`Queue name (required for most actions)`),title:R.string().optional().describe(`Item title (required for push)`),id:R.string().optional().describe(`Item ID (required for done/fail)`),data:R.unknown().optional().describe(`Arbitrary data to attach to a queue item`),error:R.string().optional().describe(`Error message (required for fail)`),dependsOn:R.array(R.string()).optional().describe(`Item IDs this task depends on. Dependent items start as blocked until deps complete.`)},annotations:t.annotations},J(`queue`,async({action:e,name:t,title:n,id:r,data:i,error:a,dependsOn:o})=>{try{switch(e){case`create`:if(!t)throw Error(`name is required for create`);return{content:[{type:`text`,text:JSON.stringify(Kt(t))}]};case`push`:if(!t)throw Error(`name is required for push`);if(!n)throw Error(`title is required for push`);return{content:[{type:`text`,text:JSON.stringify(en(t,n,i,void 0,o))}]};case`next`:{if(!t)throw Error(`name is required for next`);let e=$t(t);return{content:[{type:`text`,text:JSON.stringify(e)}]}}case`done`:if(!t)throw Error(`name is required for done`);if(!r)throw Error(`id is required for done`);return{content:[{type:`text`,text:JSON.stringify(Yt(t,r))}]};case`fail`:if(!t)throw Error(`name is required for fail`);if(!r)throw Error(`id is required for fail`);if(!a)throw Error(`error is required for fail`);return{content:[{type:`text`,text:JSON.stringify(Xt(t,r,a))}]};case`get`:if(!t)throw Error(`name is required for get`);return{content:[{type:`text`,text:JSON.stringify(Zt(t))}]};case`list`:return{content:[{type:`text`,text:JSON.stringify(Qt())}]};case`clear`:if(!t)throw Error(`name is required for clear`);return{content:[{type:`text`,text:JSON.stringify({cleared:Gt(t)})}]};case`delete`:if(!t)throw Error(`name is required for delete`);return{content:[{type:`text`,text:JSON.stringify({deleted:Jt(t)})}]};case`dag`:if(!t)throw Error(`name is required for dag`);return{content:[{type:`text`,text:JSON.stringify(qt(t))}]}}}catch(e){return tm.error(`Queue action failed`,N(e)),q(`INTERNAL`,`Queue action failed: ${e instanceof Error?e.message:String(e)}`)}}))}function sm(e){let t=[e.id,`Label: ${e.label}`,`Created: ${e.createdAt}`];return e.notes&&t.push(`Notes: ${e.notes}`),t.push(``,`Data:`,JSON.stringify(e.data)),t.join(`
284
+ `)}function cm(e){let t=e.trim();if(!t)return``;try{return JSON.parse(t)}catch{return e}}function lm(e){let t=e?.trim();if(!t)return{};let n;try{n=JSON.parse(t)}catch{throw Error(`data must be a valid JSON object string`)}if(!n||typeof n!=`object`||Array.isArray(n))throw Error(`data must be a JSON object string`);return n}const um=M(`tools`);function dm(e){let t=[`## Rule: ${e.id}`,``,`- **Status**: ${e.enabled?`enabled`:`disabled`}`,`- **Description**: ${e.description??`—`}`,`- **Category**: ${e.category??`—`}`,`- **Push weight**: ${e.pushWeight??`—`}`];return e.patterns?.length&&t.push(`- **Patterns**: ${e.patterns.join(`, `)}`),e.examples?.length&&t.push(`- **Examples**: ${e.examples.join(`, `)}`),t.join(`
285
+ `)}function fm(e,t){let n=W(`er_update_policy`);e.registerTool(`er_update_policy`,{title:n.title,description:`Manage ER push classification rules. Supports listing, updating, creating, and deleting rules that determine when knowledge should be pushed to Enterprise RAG.`,inputSchema:{action:R.enum([`list`,`get`,`update`,`create`,`delete`]).describe(`Action to perform on classification rules`),rule_id:R.string().optional().describe(`Rule ID (required for get, update, delete)`),changes:R.object({patterns:R.array(R.string()).optional(),category:R.string().optional(),pushWeight:R.number().min(0).max(1).optional(),description:R.string().optional(),examples:R.array(R.string()).optional(),enabled:R.boolean().optional()}).optional().describe(`Changes to apply (for update action)`),new_rule:R.object({id:R.string().regex(/^[a-z][a-z0-9-]*$/),patterns:R.array(R.string()).min(1),category:R.string(),pushWeight:R.number().min(0).max(1),description:R.string(),examples:R.array(R.string()).default([]),enabled:R.boolean().default(!0)}).optional().describe(`New rule definition (for create action)`)},annotations:n.annotations},J(`er_update_policy`,async({action:e,rule_id:n,changes:r,new_rule:i})=>{try{if(e===`list`){let e=t.getRules();return{content:[{type:`text`,text:`## Classification Rules\n\n${e.map(e=>`- **${e.id}** (${e.enabled?`enabled`:`disabled`}) — ${e.description}\n Category: ${e.category} | Weight: ${e.pushWeight} | Patterns: ${e.patterns.join(`, `)}`).join(`
286
+ `)}\n\n---\n_${e.length} rules total. Use \`action: "update"\` to modify a rule._`}]}}if(e===`get`){if(!n)return q(`VALIDATION`,'`rule_id` is required for "get" action.');let e=t.getRule(n);return e?{content:[{type:`text`,text:dm(e)}]}:q(`NOT_FOUND`,`Rule "${n}" not found.`)}if(e===`update`){if(!n||!r)return q(`VALIDATION`,'`rule_id` and `changes` are required for "update" action.');let e=t.updateRule(n,r);return e?{content:[{type:`text`,text:`${dm(e)}\n\n---\n_Updated. Next: Use \`action: "list"\` to verify._`}]}:q(`NOT_FOUND`,`Rule "${n}" not found.`)}return e===`create`?i?{content:[{type:`text`,text:`${dm(t.addRule(i))}\n\n---\n_Created. Next: Test classification with \`remember\`._`}]}:q(`VALIDATION`,'`new_rule` is required for "create" action.'):e===`delete`?n?t.deleteRule(n)?{content:[{type:`text`,text:`Deleted rule **${n}**.\n\n---\n_Next: Use \`action: "list"\` to verify._`}]}:q(`NOT_FOUND`,`Rule "${n}" not found.`):q(`VALIDATION`,'`rule_id` is required for "delete" action.'):q(`VALIDATION`,`Unknown action: ${e}`)}catch(e){return um.error(`Policy update failed`,N(e)),q(`INTERNAL`,`Policy update failed: ${e instanceof Error?e.message:String(e)}`)}}))}const pm=new Map;function mm(e){return e.replace(/[|\\{}()[\]^$+*?.]/g,`\\$&`)}function hm(e){let t=`(?=[^>]*\\bid=['"]${mm(e)}['"])`;return RegExp(`(<script\\b(?=[^>]*\\btype=['"]application\\/json['"])${t}[^>]*>)[\\s\\S]*?(<\/script>)`,`i`)}function gm(e){pm.has(e.id)&&console.warn(`[viewer-registry] Overwriting viewer template "${e.id}"`),pm.set(e.id,e)}function _m(e){return pm.get(e)}function vm(e){return typeof e==`string`&&pm.has(e)}function ym(){return[...pm.values()]}function bm(e,t,n,r){let i=hm(n);if(!i.test(e))throw Error(`No <script type="application/json" id="${n}"> found in template`);let a=r?r(t):t,o=JSON.stringify(a??null).replace(/<\/script/gi,`<\\/script`).replace(/<script/gi,`\\u003Cscript`).replace(/-->/g,`--\\u003E`).replace(/<!--/g,`\\u003C!--`);return e.replace(i,`$1\n${o}\n$2`)}const xm=import.meta.dirname??je(ce(import.meta.url)),Sm={type:`object`,properties:{title:{type:`string`},description:{type:`string`},layout:{type:`object`,properties:{direction:{type:`string`},spacing:{type:`number`},layerSpacing:{type:`number`}}},nodes:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},type:{type:`string`,enum:[`person`,`system`,`container`,`component`,`database`,`queue`,`external`,`boundary`]},label:{type:`string`},technology:{type:`string`},icon:{type:`string`},description:{type:`string`}},required:[`id`,`type`,`label`]}},edges:{type:`array`,items:{type:`object`,properties:{source:{type:`string`},target:{type:`string`},label:{type:`string`},style:{type:`string`,enum:[`sync`,`async`,`dashed`,`dotted`,`solid`]}},required:[`source`,`target`]},default:[]}},required:[`nodes`]},Cm={type:`object`,properties:{nodes:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},label:{type:`string`},type:{type:`string`,enum:[`start-end`,`manual`,`automated`,`integration`,`decision`,`prerequisite`]},description:{type:`string`}},required:[`id`,`label`]}},edges:{type:`array`,items:{type:`object`,properties:{source:{type:`string`},target:{type:`string`},label:{type:`string`},type:{type:`string`,enum:[`standard`,`loop-back`,`exception`]}},required:[`source`,`target`]}}},required:[`nodes`]},wm={type:`object`,properties:{title:{type:`string`},description:{type:`string`},phases:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},label:{type:`string`},outcome:{type:`string`},batches:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},order:{type:`number`},parallel:{type:`boolean`},label:{type:`string`},tasks:{type:`array`,items:{type:`object`,properties:{id:{type:`string`},title:{type:`string`},agent:{type:`string`},files:{type:`array`,items:{type:`string`},default:[]},status:{type:`string`,enum:[`pending`,`in-progress`,`done`,`blocked`]},dependsOn:{type:`array`,items:{type:`string`},default:[]}},required:[`id`,`title`]},default:[]}},required:[`id`,`tasks`]},default:[]}},required:[`id`,`label`,`batches`]}}},required:[`phases`]};function Tm(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function Em(e,t){return Tm(t)?{...t,kind:e}:{kind:e}}function Dm(e){let t=e===`canvas.html`?[I(xm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,`src`,`canvas`,`index.html`),I(xm,`..`,`..`,`scaffold`,`general`,`viewers`,`src`,`canvas`,`index.html`)]:[],n=C(`server`,[I(`viewers`,`dist`,e),I(`viewers`,e)]),r=[...t,...n?[n]:[],I(xm,`..`,`..`,`..`,`viewers`,e),I(xm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,`src`,`static`,e),I(xm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,`dist`,e),I(xm,`..`,`..`,`..`,`..`,`..`,`scaffold`,`general`,`viewers`,e),I(xm,`..`,`..`,`scaffold`,`general`,`viewers`,`dist`,e),I(xm,`..`,`..`,`scaffold`,`general`,`viewers`,e),I(xm,`..`,`viewers`,`dist`,e),I(xm,`..`,`viewers`,e)];for(let e of r)try{return F(e,`utf8`)}catch{}throw Error(`Viewer HTML not found: ${e}. Searched: ${r.join(`, `)}`)}let Om,km,Am,jm,Mm,Nm;function Pm(){return Om??=Dm(`c4-viewer.html`),Om}function Fm(){return km??=Dm(`tour-viewer.html`),km}function Im(){return Am??=Dm(`canvas.html`),Am}function Lm(){return jm??=Dm(`architecture-static.html`),jm}function Rm(){return Mm??=Dm(`process-flow-static.html`),Mm}function zm(){return Nm??=Dm(`task-plan-static.html`),Nm}function Bm(){gm({id:`c4@1`,label:`C4 Architecture Diagram`,description:`Interactive C4 architecture diagram with zoom, pan, and ELK auto-layout`,inputSchema:Sm,injectId:`diagram-data`,supportedTransports:[`browser`],resolveHtml:Pm}),gm({id:`c4-static@1`,label:`C4 Architecture Diagram (Static)`,description:`Static SVG architecture diagram for inline rendering`,inputSchema:Sm,injectId:`diagram-data`,supportedTransports:[`mcp-app`],resolveHtml:Lm}),gm({id:`tour@1`,label:`Code Tour Viewer`,description:`Interactive code tour with step navigation and dependency graph`,inputSchema:{type:`object`,properties:{title:{type:`string`},description:{type:`string`},estimatedTime:{type:`string`},steps:{type:`array`,items:{type:`object`,properties:{stepNumber:{type:`number`},id:{type:`string`},title:{type:`string`},file:{type:`string`},explanation:{type:`string`},description:{type:`string`},learnsConcept:{type:`string`},duration:{type:`string`},line:{type:`number`},code:{type:`string`}},required:[`id`,`title`]}},dependencies:{type:`array`,items:{type:`object`,properties:{source:{type:`string`},target:{type:`string`}},required:[`source`,`target`]},default:[]}},required:[`steps`]},injectId:`tour-data`,supportedTransports:[`browser`],resolveHtml:Fm}),gm({id:`process-flow-static@1`,label:`Process Flow Diagram (Static)`,description:`Static SVG process flow diagram for inline rendering`,inputSchema:Cm,injectId:`diagram-data`,supportedTransports:[`mcp-app`],resolveHtml:Rm}),gm({id:`task-plan-static@1`,label:`Task Execution Plan (Static)`,description:`Static SVG task execution plan for inline rendering`,inputSchema:wm,injectId:`diagram-data`,supportedTransports:[`mcp-app`],resolveHtml:zm}),gm({id:`task-plan@1`,label:`Task Execution Plan (Interactive)`,description:`Interactive task execution plan with ReactFlow, phase grouping, and dependency edges`,inputSchema:wm,injectId:`diagram-data`,supportedTransports:[`browser`],resolveHtml:Im,transformData:e=>Em(`task-plan`,e)}),gm({id:`process-flow@1`,label:`Process Flow Diagram (Interactive)`,description:`Interactive process flow diagram with ReactFlow`,inputSchema:Cm,injectId:`diagram-data`,supportedTransports:[`browser`],resolveHtml:Im,transformData:e=>Em(`process-flow`,e)})}function Vm(){let e=new Or;for(let t of jr.list())e.register(t);return e.register(Ar),e.register(Fr),e.register(Ir),e.register(Mr),e}function Hm(e,t){return e?.supportedTransports.includes(t)??!1}const Um=Vm();function Wm(e){if(e.template)return Um.get(e.template)}function Gm(e){if((e.actions?.length??0)>0)return!0;if(e.template&&vm(e.template)){let t=_m(e.template);return t?.supportedTransports.includes(`browser`)===!0&&!t.supportedTransports.includes(`mcp-app`)}let t=Wm(e);return Hm(t,`browser`)&&!Hm(t,`mcp-app`)}Bm();const Km=new Map([{type:`markdown`,category:`content`,description:`Markdown content rendered with the marked parser.`,valueShape:`string`,relevantSkills:[`present`,`docs`]},{type:`code`,category:`content`,description:`Formatted code block rendered inside pre/code tags.`,valueShape:`string`,relevantSkills:[`present`,`docs`]},{type:`mermaid`,category:`visualization`,description:`Mermaid diagram source rendered in a mermaid pre block.`,valueShape:`string`,vendorScripts:[`mermaid`],relevantSkills:[`present`,`c4-architecture`,`docs`]},{type:`table`,category:`data`,description:`Tabular data rendered from records or explicit headers and rows.`,valueShape:`Record<string, unknown>[] | { headers: string[]; rows: unknown[][] }`,relevantSkills:[`present`,`docs`]},{type:`metrics`,category:`data`,description:`Metric cards showing label/value pairs with optional trend and status.`,valueShape:`Array<{ label: string; value: string | number; trend?: string | number; status?: string }>`,relevantSkills:[`present`]},{type:`cards`,category:`visualization`,description:`Card grid for titled items with optional body, badge, and status.`,valueShape:`Array<{ title: string; body?: string; badge?: string; status?: string; description?: string }>`,relevantSkills:[`present`,`docs`]},{type:`tree`,category:`visualization`,description:`Hierarchical object or name/children tree rendered recursively.`,valueShape:`{ name: string; children?: unknown[] } | Record<string, unknown>`,relevantSkills:[`present`]},{type:`graph`,category:`visualization`,description:`Node and edge graph rendered as a Mermaid flow graph in HTML mode.`,valueShape:`{ nodes: Array<{ id: string; label?: string }>; edges: Array<{ from: string; to: string; label?: string }> }`,vendorScripts:[`mermaid`],relevantSkills:[`present`,`c4-architecture`]},{type:`chart`,category:`data`,description:`Structured chart definition rendered as SVG.`,valueShape:`{ chartType: string; data: Record<string, unknown>[]; xKey: string; yKeys: string[] }`,relevantSkills:[`present`]},{type:`timeline`,category:`interactive`,description:`Timeline entries rendered as a vertical sequence of events.`,valueShape:`Array<{ title: string; description?: string; timestamp?: string; status?: string }>`,relevantSkills:[`present`]},{type:`checklist`,category:`interactive`,description:`Checklist items with boolean checked state.`,valueShape:`Array<{label, checked}> | {items: Array<{label, checked}>}`,relevantSkills:[`present`]},{type:`comparison`,category:`interactive`,description:`Side-by-side comparison columns with titled item lists.`,valueShape:`Array<{title, items}> | {columns: Array<{title, items}>}`,relevantSkills:[`present`]},{type:`status-board`,category:`interactive`,description:`Status categories containing labeled status items.`,valueShape:`Array<{category, items}> | {items: Array<{category, items}>}`,relevantSkills:[`present`]},{type:`prompt`,category:`interactive`,description:`Prompt payload rendered through the prompt display helper.`,valueShape:`unknown`,relevantSkills:[`present`]},{type:`progress`,category:`interactive`,description:`Progress bar with current value and optional maximum.`,valueShape:`{label, value, max?} | {items: Array<{label, value, max?, color?}>}`,relevantSkills:[`present`]},{type:`docs-browser`,category:`interactive`,description:`Documentation file list with inline content previews for chat-safe rendering.`,valueShape:`{ files: Array<{ path: string; title?: string; content?: string; status?: "current" | "stale" | "missing" }>; title?: string }`,relevantSkills:[`present`,`docs`],usageExample:`{
287
287
  type: 'docs-browser',
288
288
  value: {
289
289
  title: 'Project Docs',
@@ -292,7 +292,7 @@ None.`:`### Stale Lessons\n${u.map(e=>`- **${e.title}** (\`${e.path}\`) — effe
292
292
  { path: 'docs/api.md', title: 'API Reference', status: 'stale' },
293
293
  ],
294
294
  },
295
- }`},{type:`text`,category:`content`,description:`Plain text content rendered through the markdown parser.`,valueShape:`string`},{type:`heading`,category:`content`,description:`Single heading with configurable level from h1 to h6.`,valueShape:`string`},{type:`paragraph`,category:`content`,description:`Single paragraph rendered inside a p tag.`,valueShape:`string`},{type:`separator`,category:`layout`,description:`Horizontal rule used to separate adjacent blocks.`,valueShape:`undefined`},{type:`actions`,category:`layout`,description:`Action bar containing button and select action definitions.`,valueShape:`Array<{ type: string; id: string; label: string; variant?: string; options?: Array<string | { label: string; value: string }> }>`},{type:`diff`,category:`content`,description:`Diff view with +/- lines for showing changes between text.`,valueShape:`string | { content: string } | { before: string; after: string }`},{type:`finding`,category:`content`,description:`Finding with severity pill showing title, severity, and detail.`,valueShape:`{ title?: string; severity?: string; detail?: unknown }`},{type:`kv`,category:`data`,description:`Key-value pairs rendered as labeled entries.`,valueShape:`Array<{ key: string; value: unknown }> | Record<string, unknown>`},{type:`tags`,category:`data`,description:`Tag pills rendered with optional tone/color.`,valueShape:`Array<string | { text?: string; label?: string; status?: string; tone?: string; color?: string }> | { items: Array<...> }`},{type:`list`,category:`content`,description:`Bullet list items rendered as an unordered list.`,valueShape:`string[]`},{type:`lifecycle-flow`,category:`visualization`,description:`SVG flow diagram with labeled steps, edges, and status colors.`,valueShape:`{ title?: string; steps: Array<{ id: string; label: string; type?: string; status?: string; description?: string }>; edges?: Array<{ from: string; to: string; label?: string }> }`},{type:`component-detail`,category:`visualization`,description:`Component detail view with name, type, technology, responsibilities, interfaces, dependencies, metrics, and code links.`,valueShape:`{ name: string; description?: string; type?: string; technology?: string; responsibilities?: string[]; interfaces?: Array<{ name: string; type: string; description?: string }>; dependencies?: Array<{ name: string; relationship?: string }>; metrics?: Record<string, string | number>; codeLinks?: Array<{ href: string; label: string }> }`},{type:`data-table-schema`,category:`data`,description:`Schema table with field names, types, constraints, and indexes.`,valueShape:`{ name: string; description?: string; fields: Array<{ name: string; type: string; required?: boolean; default?: unknown; constraints?: string[]; description?: string }>; indexes?: Array<{ name: string; columns: string[]; unique?: boolean }> }`},{type:`annotation`,category:`interactive`,description:`Annotation groups with COMMENT, DELETION, and GLOBAL_COMMENT types.`,valueShape:`Array<{ id: string; type: "COMMENT" | "DELETION" | "GLOBAL_COMMENT"; body: string; author?: string; createdAt?: string }>`},{type:`approval`,category:`interactive`,description:`Approval widget with radio options and optional comment textarea.`,valueShape:`{ prompt: string; options: Array<{ id: string; label: string; description?: string }>; requireComment?: boolean }`},{type:`docs-hub`,category:`content`,description:`Doc hub card grid with titled pages, descriptions, categories, and statuses.`,valueShape:`{ title?: string; description?: string; pages?: Array<{ title: string; description?: string; href?: string; icon?: string; category?: string; status?: "draft" | "published" | "deprecated" }> }`}].map(e=>[e.type,{...e}]));function Km(){let e={};for(let[t,n]of Gm)n.vendorScripts?.length&&(e[t]=n.vendorScripts);return e}const X={TIMEOUT:`timeout`,DUPLICATE_CALLBACK:`duplicate_callback`,INVALID_NONCE:`invalid_nonce`,INVALID_ORIGIN:`invalid_origin`,SESSION_NOT_FOUND:`session_not_found`,SESSION_LIMIT_REACHED:`session_limit_reached`,ASSET_NOT_FOUND:`asset_not_found`,ASSET_FORBIDDEN:`asset_forbidden`,RATE_LIMITED:`rate_limited`,PAYLOAD_TOO_LARGE:`payload_too_large`,UNSUPPORTED_MEDIA_TYPE:`unsupported_media_type`,INVALID_TRANSITION:`invalid_transition`,ANNOTATION_CAP_EXCEEDED:`annotation_cap_exceeded`},qm={[X.TIMEOUT]:408,[X.DUPLICATE_CALLBACK]:409,[X.INVALID_NONCE]:400,[X.INVALID_ORIGIN]:403,[X.SESSION_NOT_FOUND]:404,[X.SESSION_LIMIT_REACHED]:429,[X.ASSET_NOT_FOUND]:404,[X.ASSET_FORBIDDEN]:403,[X.RATE_LIMITED]:429,[X.PAYLOAD_TOO_LARGE]:413,[X.UNSUPPORTED_MEDIA_TYPE]:415,[X.INVALID_TRANSITION]:400,[X.ANNOTATION_CAP_EXCEEDED]:403};function Jm(e,t,n){return{code:e,message:t,httpStatus:n??qm[e]}}const Ym={created:[`rendering`,`errored`,`cleaned_up`,`timed_out`,`cancelled`,`responded`],rendering:[`listening`,`errored`,`cleaned_up`,`timed_out`,`cancelled`],listening:[`connected`,`timed_out`,`cancelled`,`errored`,`cleaned_up`],connected:[`responded`,`timed_out`,`cancelled`,`errored`,`cleaned_up`],responded:[`cleaned_up`],timed_out:[`cleaned_up`],cancelled:[`cleaned_up`],errored:[`cleaned_up`],cleaned_up:[]};function Xm(e,t,n,r){return Ym[e].includes(t)?{ok:!0,to:t,entry:{from:e,to:t,timestamp:Date.now(),trigger:r}}:{ok:!1,error:{code:`invalid_transition`,message:`Cannot transition from "${e}" to "${t}"`,from:e,to:t}}}function Zm(e){return Ym[e].length===0}const Qm=1024,$m=new Set([`user-closed`,`host-dismissed`,`replaced`]);function eh(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function th(e,t,n){let r={code:e,message:t};return n!==void 0&&(r.details=n),{kind:`error`,error:r}}function nh(e,t,n,r){e.writeHead(t,{"Content-Type":`application/json`,"Access-Control-Allow-Origin":r??`null`}),e.end(JSON.stringify(n))}async function rh(e){return await new Promise((t,n)=>{let r=[],i=0;e.on(`data`,t=>{if(i+=t.length,i>65536){n(Error(`Callback payload exceeds 64KB limit`)),e.destroy();return}r.push(t)}),e.on(`end`,()=>t(Buffer.concat(r).toString(`utf8`))),e.on(`error`,n)})}function ih(e,t){if(typeof e!=`string`||e.length!==t.length)return!1;let n=Buffer.from(e,`hex`),r=Buffer.from(t,`hex`);return n.length===r.length?Re(n,r):!1}function ah(e,t){let n=e.headers.origin;if(n!=null)return n===t;let r=e.headers.referer;return r==null?!1:r.startsWith(t)}function oh(e){return(e.headers[`content-type`]??``).startsWith(`application/json`)}function sh(e){for(let[t,n]of Object.entries(e)){let e=typeof n==`string`?n:JSON.stringify(n);if(Buffer.byteLength(e,`utf8`)>8192)return`Form field "${t}" exceeds 8KB limit`}return null}function ch(e){return Array.isArray(e)&&e.length>Qm?`Selection exceeds ${Qm} items (got ${e.length})`:null}function lh(e,t,n){let r=typeof e.actionId==`string`?e.actionId:``,i=n.find(e=>e.id===r);if(!i)return th(`INVALID_ACTION`,`Unknown actionId: ${r||`(missing)`}`);let a=typeof e.selection==`string`||Array.isArray(e.selection)?e.selection:void 0,o=eh(e.formData)?e.formData:void 0,s={surfaceId:t,actionId:i.id,actionType:i.type,timestamp:typeof e.timestamp==`string`?e.timestamp:new Date().toISOString(),sourceTransport:`browser`};return e.value!==void 0&&(s.value=e.value),a!==void 0&&(s.selection=a),o!==void 0&&(s.formData=o),typeof e.label==`string`?s.label=e.label:i.label&&(s.label=i.label),{kind:`result`,result:s}}function uh(e){switch(e.kind){case`timeout`:return`timed_out`;case`cancelled`:return`cancelled`;case`error`:return`errored`;case`result`:return`responded`;default:return`errored`}}function dh(e,t,n,r,i){let a=i??Ie(16).toString(`hex`),o=`created`,s=[],c=!1,l,u,d=new Promise(e=>{u=e}),f=e=>{if(Zm(o))return l;let t=uh(e),i=Xm(o,t,s,`resolve`);return i.ok?(o=t,s.push(i.entry),l=e,u?.(e),n&&r&&n.transitionSession(r,t,`resolve`),e):l};return{nonce:a,promise:d,get state(){return o},get stateHistory(){return s},settleTimeout(e){return f({kind:`timeout`,waitedMs:e})},settleCancelled(e){return f({kind:`cancelled`,reason:e})},settleError(e,t,n){return f(th(e,t,n))},async handle(n,r,i){if(!oh(n)){let e=f(th(X.UNSUPPORTED_MEDIA_TYPE,`Content-Type must be application/json`));return nh(r,415,{ok:!1,error:X.UNSUPPORTED_MEDIA_TYPE},i),e}if(!ah(n,i)){let e=n.headers.origin??n.headers.referer??`(missing)`,t=f(th(X.INVALID_ORIGIN,`Unexpected callback origin: ${e}`));return nh(r,403,{ok:!1,error:X.INVALID_ORIGIN},i),t}let o=``;try{o=await rh(n)}catch(e){let t=f(th(`INVALID_PAYLOAD`,e instanceof Error?e.message:`Unable to read callback payload`));return nh(r,413,{ok:!1,error:X.PAYLOAD_TOO_LARGE},i),t}let s;try{let e=JSON.parse(o);if(!eh(e))throw Error(`Callback payload must be an object`);s=e}catch(e){let t=f(th(`INVALID_PAYLOAD`,e instanceof Error?e.message:`Malformed callback payload`));return nh(r,400,{ok:!1,error:`invalid-json`},i),t}if(c){let e=th(X.DUPLICATE_CALLBACK,`Nonce has already been used`);return nh(r,403,{ok:!1,error:X.DUPLICATE_CALLBACK},i),e}if(!ih(typeof s.nonce==`string`?s.nonce:``,a)){let e=f(th(X.INVALID_NONCE,`Callback nonce did not match`));return nh(r,403,{ok:!1,error:X.INVALID_NONCE},i),e}c=!0;let l=ch(s.selection);if(l){let e=f(th(`SELECTION_TOO_LARGE`,l));return nh(r,413,{ok:!1,error:`selection-too-large`},i),e}if(eh(s.formData)){let e=sh(s.formData);if(e){let t=f(th(`PAYLOAD_FIELD_TOO_LARGE`,e));return nh(r,413,{ok:!1,error:`field-too-large`},i),t}}if(s.kind===`cancelled`){let e=typeof s.reason==`string`?s.reason:``;if(!$m.has(e)){let t=f(th(`INVALID_CANCEL_REASON`,`Unsupported cancel reason: ${e||`(missing)`}`));return nh(r,400,{ok:!1,error:`invalid-cancel-reason`},i),t}let t=f({kind:`cancelled`,reason:e});return nh(r,200,{ok:!0,kind:`cancelled`},i),t}let u=f(lh(s,e,t));return nh(r,u.kind===`error`?400:200,{ok:u.kind!==`error`,kind:u.kind},i),u}}}const fh=`Install AI Kit with <code>${Y(`npx -y @vpxa/aikit@latest init --user`)}</code>.`;function ph(e){let t=Date.now();return{id:e.id,state:`created`,nonce:e.nonce,surfaceId:e.surfaceId,transport:e.transport,createdAt:t,updatedAt:t,stateHistory:[],responsePromise:null,resolveOutcome:null,cleanupCallbacks:[],nonceConsumed:!1}}var mh=class{sessions;maxSessions;rejectedCount;constructor(e=16){this.sessions=new Map,this.maxSessions=e,this.rejectedCount=0}createSession(e){if(this.sessions.size>=this.maxSessions)return this.rejectedCount++,{ok:!1,error:Jm(X.SESSION_LIMIT_REACHED,`Session limit reached`)};let t=Le(),n=ph({id:t,nonce:e.nonce,surfaceId:e.surfaceId,transport:e.transport});return this.sessions.set(t,n),{ok:!0,session:n}}getSession(e){return this.sessions.get(e)||Jm(X.SESSION_NOT_FOUND,`Session ${e} not found`)}transitionSession(e,t,n){let r=this.sessions.get(e);if(!r)return{ok:!1,error:Jm(X.SESSION_NOT_FOUND,`Session ${e} not found`)};let i=Xm(r.state,t,r.stateHistory,n);return i.ok?(r.state=i.to,r.stateHistory.push(i.entry),r.updatedAt=Date.now(),{ok:!0,record:r}):{ok:!1,error:Jm(X.INVALID_TRANSITION,i.error.message)}}consumeNonce(e){let t=this.sessions.get(e);return t?t.nonceConsumed?{ok:!1,error:Jm(X.DUPLICATE_CALLBACK,`Nonce already consumed`)}:(t.nonceConsumed=!0,t.updatedAt=Date.now(),{ok:!0}):{ok:!1,error:Jm(X.SESSION_NOT_FOUND,`Session ${e} not found`)}}removeSession(e){return this.sessions.delete(e)}cleanupStale(e){let t=Date.now(),n=0;for(let[r,i]of this.sessions.entries())i.state!==`connected`&&t-i.updatedAt>e&&(i.resolveOutcome&&(i.resolveOutcome({outcome:`timeout`}),i.resolveOutcome=null,i.responsePromise=null),this.sessions.delete(r),n++);return n}shutdown(){for(let[,e]of this.sessions.entries()){e.resolveOutcome&&(e.resolveOutcome({outcome:`shutdown`}),e.resolveOutcome=null,e.responsePromise=null);for(let t of e.cleanupCallbacks)try{t()}catch{}e.cleanupCallbacks=[]}this.sessions.clear()}get activeCount(){return this.sessions.size}get rejectedSessionCount(){return this.rejectedCount}setResponseResolver(e,t){let n=this.sessions.get(e);return n?(n.resolveOutcome=t,n.updatedAt=Date.now(),{ok:!0}):{ok:!1,error:Jm(X.SESSION_NOT_FOUND,`Session ${e} not found`)}}};const hh=String.raw`(function(){
295
+ }`},{type:`text`,category:`content`,description:`Plain text content rendered through the markdown parser.`,valueShape:`string`},{type:`heading`,category:`content`,description:`Single heading with configurable level from h1 to h6.`,valueShape:`string`},{type:`paragraph`,category:`content`,description:`Single paragraph rendered inside a p tag.`,valueShape:`string`},{type:`separator`,category:`layout`,description:`Horizontal rule used to separate adjacent blocks.`,valueShape:`undefined`},{type:`actions`,category:`layout`,description:`Action bar containing button and select action definitions.`,valueShape:`Array<{ type: string; id: string; label: string; variant?: string; options?: Array<string | { label: string; value: string }> }>`},{type:`diff`,category:`content`,description:`Diff view with +/- lines for showing changes between text.`,valueShape:`string | { content: string } | { before: string; after: string }`},{type:`finding`,category:`content`,description:`Finding with severity pill showing title, severity, and detail.`,valueShape:`{ title?: string; severity?: string; detail?: unknown }`},{type:`kv`,category:`data`,description:`Key-value pairs rendered as labeled entries.`,valueShape:`Array<{ key: string; value: unknown }> | Record<string, unknown>`},{type:`tags`,category:`data`,description:`Tag pills rendered with optional tone/color.`,valueShape:`Array<string | { text?: string; label?: string; status?: string; tone?: string; color?: string }> | { items: Array<...> }`},{type:`list`,category:`content`,description:`Bullet list items rendered as an unordered list.`,valueShape:`string[]`},{type:`lifecycle-flow`,category:`visualization`,description:`SVG flow diagram with labeled steps, edges, and status colors.`,valueShape:`{ title?: string; steps: Array<{ id: string; label: string; type?: string; status?: string; description?: string }>; edges?: Array<{ from: string; to: string; label?: string }> }`},{type:`component-detail`,category:`visualization`,description:`Component detail view with name, type, technology, responsibilities, interfaces, dependencies, metrics, and code links.`,valueShape:`{ name: string; description?: string; type?: string; technology?: string; responsibilities?: string[]; interfaces?: Array<{ name: string; type: string; description?: string }>; dependencies?: Array<{ name: string; relationship?: string }>; metrics?: Record<string, string | number>; codeLinks?: Array<{ href: string; label: string }> }`},{type:`data-table-schema`,category:`data`,description:`Schema table with field names, types, constraints, and indexes.`,valueShape:`{ name: string; description?: string; fields: Array<{ name: string; type: string; required?: boolean; default?: unknown; constraints?: string[]; description?: string }>; indexes?: Array<{ name: string; columns: string[]; unique?: boolean }> }`},{type:`annotation`,category:`interactive`,description:`Annotation groups with COMMENT, DELETION, and GLOBAL_COMMENT types.`,valueShape:`Array<{ id: string; type: "COMMENT" | "DELETION" | "GLOBAL_COMMENT"; body: string; author?: string; createdAt?: string }>`},{type:`approval`,category:`interactive`,description:`Approval widget with radio options and optional comment textarea.`,valueShape:`{ prompt: string; options: Array<{ id: string; label: string; description?: string }>; requireComment?: boolean }`},{type:`docs-hub`,category:`content`,description:`Doc hub card grid with titled pages, descriptions, categories, and statuses.`,valueShape:`{ title?: string; description?: string; pages?: Array<{ title: string; description?: string; href?: string; icon?: string; category?: string; status?: "draft" | "published" | "deprecated" }> }`}].map(e=>[e.type,{...e}]));function qm(){let e={};for(let[t,n]of Km)n.vendorScripts?.length&&(e[t]=n.vendorScripts);return e}const X={TIMEOUT:`timeout`,DUPLICATE_CALLBACK:`duplicate_callback`,INVALID_NONCE:`invalid_nonce`,INVALID_ORIGIN:`invalid_origin`,SESSION_NOT_FOUND:`session_not_found`,SESSION_LIMIT_REACHED:`session_limit_reached`,ASSET_NOT_FOUND:`asset_not_found`,ASSET_FORBIDDEN:`asset_forbidden`,RATE_LIMITED:`rate_limited`,PAYLOAD_TOO_LARGE:`payload_too_large`,UNSUPPORTED_MEDIA_TYPE:`unsupported_media_type`,INVALID_TRANSITION:`invalid_transition`,ANNOTATION_CAP_EXCEEDED:`annotation_cap_exceeded`},Jm={[X.TIMEOUT]:408,[X.DUPLICATE_CALLBACK]:409,[X.INVALID_NONCE]:400,[X.INVALID_ORIGIN]:403,[X.SESSION_NOT_FOUND]:404,[X.SESSION_LIMIT_REACHED]:429,[X.ASSET_NOT_FOUND]:404,[X.ASSET_FORBIDDEN]:403,[X.RATE_LIMITED]:429,[X.PAYLOAD_TOO_LARGE]:413,[X.UNSUPPORTED_MEDIA_TYPE]:415,[X.INVALID_TRANSITION]:400,[X.ANNOTATION_CAP_EXCEEDED]:403};function Ym(e,t,n){return{code:e,message:t,httpStatus:n??Jm[e]}}const Xm={created:[`rendering`,`errored`,`cleaned_up`,`timed_out`,`cancelled`,`responded`],rendering:[`listening`,`errored`,`cleaned_up`,`timed_out`,`cancelled`],listening:[`connected`,`timed_out`,`cancelled`,`errored`,`cleaned_up`],connected:[`responded`,`timed_out`,`cancelled`,`errored`,`cleaned_up`],responded:[`cleaned_up`],timed_out:[`cleaned_up`],cancelled:[`cleaned_up`],errored:[`cleaned_up`],cleaned_up:[]};function Zm(e,t,n,r){return Xm[e].includes(t)?{ok:!0,to:t,entry:{from:e,to:t,timestamp:Date.now(),trigger:r}}:{ok:!1,error:{code:`invalid_transition`,message:`Cannot transition from "${e}" to "${t}"`,from:e,to:t}}}function Qm(e){return Xm[e].length===0}const $m=1024,eh=new Set([`user-closed`,`host-dismissed`,`replaced`]);function th(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function nh(e,t,n){let r={code:e,message:t};return n!==void 0&&(r.details=n),{kind:`error`,error:r}}function rh(e,t,n,r){e.writeHead(t,{"Content-Type":`application/json`,"Access-Control-Allow-Origin":r??`null`}),e.end(JSON.stringify(n))}async function ih(e){return await new Promise((t,n)=>{let r=[],i=0;e.on(`data`,t=>{if(i+=t.length,i>65536){n(Error(`Callback payload exceeds 64KB limit`)),e.destroy();return}r.push(t)}),e.on(`end`,()=>t(Buffer.concat(r).toString(`utf8`))),e.on(`error`,n)})}function ah(e,t){if(typeof e!=`string`||e.length!==t.length)return!1;let n=Buffer.from(e,`hex`),r=Buffer.from(t,`hex`);return n.length===r.length?Re(n,r):!1}function oh(e,t){let n=e.headers.origin;if(n!=null)return n===t;let r=e.headers.referer;return r==null?!1:r.startsWith(t)}function sh(e){return(e.headers[`content-type`]??``).startsWith(`application/json`)}function ch(e){for(let[t,n]of Object.entries(e)){let e=typeof n==`string`?n:JSON.stringify(n);if(Buffer.byteLength(e,`utf8`)>8192)return`Form field "${t}" exceeds 8KB limit`}return null}function lh(e){return Array.isArray(e)&&e.length>$m?`Selection exceeds ${$m} items (got ${e.length})`:null}function uh(e,t,n){let r=typeof e.actionId==`string`?e.actionId:``,i=n.find(e=>e.id===r);if(!i)return nh(`INVALID_ACTION`,`Unknown actionId: ${r||`(missing)`}`);let a=typeof e.selection==`string`||Array.isArray(e.selection)?e.selection:void 0,o=th(e.formData)?e.formData:void 0,s={surfaceId:t,actionId:i.id,actionType:i.type,timestamp:typeof e.timestamp==`string`?e.timestamp:new Date().toISOString(),sourceTransport:`browser`};return e.value!==void 0&&(s.value=e.value),a!==void 0&&(s.selection=a),o!==void 0&&(s.formData=o),typeof e.label==`string`?s.label=e.label:i.label&&(s.label=i.label),{kind:`result`,result:s}}function dh(e){switch(e.kind){case`timeout`:return`timed_out`;case`cancelled`:return`cancelled`;case`error`:return`errored`;case`result`:return`responded`;default:return`errored`}}function fh(e,t,n,r,i){let a=i??Ie(16).toString(`hex`),o=`created`,s=[],c=!1,l,u,d=new Promise(e=>{u=e}),f=e=>{if(Qm(o))return l;let t=dh(e),i=Zm(o,t,s,`resolve`);return i.ok?(o=t,s.push(i.entry),l=e,u?.(e),n&&r&&n.transitionSession(r,t,`resolve`),e):l};return{nonce:a,promise:d,get state(){return o},get stateHistory(){return s},settleTimeout(e){return f({kind:`timeout`,waitedMs:e})},settleCancelled(e){return f({kind:`cancelled`,reason:e})},settleError(e,t,n){return f(nh(e,t,n))},async handle(n,r,i){if(!sh(n)){let e=f(nh(X.UNSUPPORTED_MEDIA_TYPE,`Content-Type must be application/json`));return rh(r,415,{ok:!1,error:X.UNSUPPORTED_MEDIA_TYPE},i),e}if(!oh(n,i)){let e=n.headers.origin??n.headers.referer??`(missing)`,t=f(nh(X.INVALID_ORIGIN,`Unexpected callback origin: ${e}`));return rh(r,403,{ok:!1,error:X.INVALID_ORIGIN},i),t}let o=``;try{o=await ih(n)}catch(e){let t=f(nh(`INVALID_PAYLOAD`,e instanceof Error?e.message:`Unable to read callback payload`));return rh(r,413,{ok:!1,error:X.PAYLOAD_TOO_LARGE},i),t}let s;try{let e=JSON.parse(o);if(!th(e))throw Error(`Callback payload must be an object`);s=e}catch(e){let t=f(nh(`INVALID_PAYLOAD`,e instanceof Error?e.message:`Malformed callback payload`));return rh(r,400,{ok:!1,error:`invalid-json`},i),t}if(c){let e=nh(X.DUPLICATE_CALLBACK,`Nonce has already been used`);return rh(r,403,{ok:!1,error:X.DUPLICATE_CALLBACK},i),e}if(!ah(typeof s.nonce==`string`?s.nonce:``,a)){let e=f(nh(X.INVALID_NONCE,`Callback nonce did not match`));return rh(r,403,{ok:!1,error:X.INVALID_NONCE},i),e}c=!0;let l=lh(s.selection);if(l){let e=f(nh(`SELECTION_TOO_LARGE`,l));return rh(r,413,{ok:!1,error:`selection-too-large`},i),e}if(th(s.formData)){let e=ch(s.formData);if(e){let t=f(nh(`PAYLOAD_FIELD_TOO_LARGE`,e));return rh(r,413,{ok:!1,error:`field-too-large`},i),t}}if(s.kind===`cancelled`){let e=typeof s.reason==`string`?s.reason:``;if(!eh.has(e)){let t=f(nh(`INVALID_CANCEL_REASON`,`Unsupported cancel reason: ${e||`(missing)`}`));return rh(r,400,{ok:!1,error:`invalid-cancel-reason`},i),t}let t=f({kind:`cancelled`,reason:e});return rh(r,200,{ok:!0,kind:`cancelled`},i),t}let u=f(uh(s,e,t));return rh(r,u.kind===`error`?400:200,{ok:u.kind!==`error`,kind:u.kind},i),u}}}const ph=`Install AI Kit with <code>${Y(`npx -y @vpxa/aikit@latest init --user`)}</code>.`;function mh(e){let t=Date.now();return{id:e.id,state:`created`,nonce:e.nonce,surfaceId:e.surfaceId,transport:e.transport,createdAt:t,updatedAt:t,stateHistory:[],responsePromise:null,resolveOutcome:null,cleanupCallbacks:[],nonceConsumed:!1}}var hh=class{sessions;maxSessions;rejectedCount;constructor(e=16){this.sessions=new Map,this.maxSessions=e,this.rejectedCount=0}createSession(e){if(this.sessions.size>=this.maxSessions)return this.rejectedCount++,{ok:!1,error:Ym(X.SESSION_LIMIT_REACHED,`Session limit reached`)};let t=Le(),n=mh({id:t,nonce:e.nonce,surfaceId:e.surfaceId,transport:e.transport});return this.sessions.set(t,n),{ok:!0,session:n}}getSession(e){return this.sessions.get(e)||Ym(X.SESSION_NOT_FOUND,`Session ${e} not found`)}transitionSession(e,t,n){let r=this.sessions.get(e);if(!r)return{ok:!1,error:Ym(X.SESSION_NOT_FOUND,`Session ${e} not found`)};let i=Zm(r.state,t,r.stateHistory,n);return i.ok?(r.state=i.to,r.stateHistory.push(i.entry),r.updatedAt=Date.now(),{ok:!0,record:r}):{ok:!1,error:Ym(X.INVALID_TRANSITION,i.error.message)}}consumeNonce(e){let t=this.sessions.get(e);return t?t.nonceConsumed?{ok:!1,error:Ym(X.DUPLICATE_CALLBACK,`Nonce already consumed`)}:(t.nonceConsumed=!0,t.updatedAt=Date.now(),{ok:!0}):{ok:!1,error:Ym(X.SESSION_NOT_FOUND,`Session ${e} not found`)}}removeSession(e){return this.sessions.delete(e)}cleanupStale(e){let t=Date.now(),n=0;for(let[r,i]of this.sessions.entries())i.state!==`connected`&&t-i.updatedAt>e&&(i.resolveOutcome&&(i.resolveOutcome({outcome:`timeout`}),i.resolveOutcome=null,i.responsePromise=null),this.sessions.delete(r),n++);return n}shutdown(){for(let[,e]of this.sessions.entries()){e.resolveOutcome&&(e.resolveOutcome({outcome:`shutdown`}),e.resolveOutcome=null,e.responsePromise=null);for(let t of e.cleanupCallbacks)try{t()}catch{}e.cleanupCallbacks=[]}this.sessions.clear()}get activeCount(){return this.sessions.size}get rejectedSessionCount(){return this.rejectedCount}setResponseResolver(e,t){let n=this.sessions.get(e);return n?(n.resolveOutcome=t,n.updatedAt=Date.now(),{ok:!0}):{ok:!1,error:Ym(X.SESSION_NOT_FOUND,`Session ${e} not found`)}}};const gh=String.raw`(function(){
296
296
  'use strict';
297
297
 
298
298
  var SVG_NS = 'http://www.w3.org/2000/svg';
@@ -2668,7 +2668,7 @@ None.`:`### Stale Lessons\n${u.map(e=>`- **${e.title}** (\`${e.path}\`) — effe
2668
2668
  };
2669
2669
 
2670
2670
  init();
2671
- })();`;function gh(){let e;return()=>{if(e!==void 0)return e;try{e=F(se(import.meta.url).resolve(`mermaid/dist/mermaid.min.js`),`utf-8`)}catch{e=``}return e}}const _h={id:`mermaid`,cdn:`https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js`,inlineSource:hh,initScript:`window.__aikit_initMermaid = function() {
2671
+ })();`;function _h(){let e;return()=>{if(e!==void 0)return e;try{e=F(se(import.meta.url).resolve(`mermaid/dist/mermaid.min.js`),`utf-8`)}catch{e=``}return e}}const vh={id:`mermaid`,cdn:`https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js`,inlineSource:gh,initScript:`window.__aikit_initMermaid = function() {
2672
2672
  if (typeof mermaid === 'undefined') return;
2673
2673
  if (document.readyState === 'loading') {
2674
2674
  document.addEventListener('DOMContentLoaded', window.__aikit_initMermaid);
@@ -2681,7 +2681,7 @@ None.`:`### Stale Lessons\n${u.map(e=>`- **${e.title}** (\`${e.path}\`) — effe
2681
2681
  }
2682
2682
  mermaid.initialize({ startOnLoad: false, theme: theme });
2683
2683
  mermaid.run();
2684
- };`,onload:`window.__aikit_initMermaid&&window.__aikit_initMermaid()`,local:{route:`/vendor/mermaid.min.js`,getSource:gh()}},vh=new Map([[`mermaid`,_h]]);function yh(e,t){if(!e?.length)return;let n=[];for(let r of e){let e=vh.get(r);if(e){if(t===`browser`){n.push({inlineSource:e.inlineSource,onload:e.onload});continue}if(t===`mcp-app`){n.push({inlineSource:e.inlineSource,onload:e.onload});continue}n.push({src:e.cdn,initScript:e.initScript,onload:e.onload})}}return n.length>0?n:void 0}function bh(){let e=[];for(let t of vh.values())t.local&&e.push({route:t.local.route,getSource:t.local.getSource,cdn:t.cdn});return e}const xh=300*1e3,Sh=15*1e3,Ch=`/@aikit/blocks-interactive/dist/`;var wh=class{maxTokens;refillPerSecond;tokens;lastRefill;constructor(e,t){this.maxTokens=e,this.refillPerSecond=t,this.tokens=e,this.lastRefill=Date.now()}tryConsume(){return this.#e(),this.tokens>=1?(--this.tokens,!0):!1}#e(){let e=Date.now(),t=(e-this.lastRefill)/1e3;this.tokens=Math.min(this.maxTokens,this.tokens+t*this.refillPerSecond),this.lastRefill=e}};let Th=null,Eh=null;const Dh=new Map,Oh=new wh(10,10),kh=new wh(50,50);function Ah(){return Th||(Th={manager:new mh,server:null,port:0},process.on(`exit`,()=>{Th?.manager.shutdown()})),Th.manager}async function jh(){if(!Th)throw Error(`Browser server state not initialized`);let e=Th;if(e.server)return e.port;if(Eh)return Eh;let t=Rr((e,t)=>{Ih(e,t)});return e.server=t,Eh=new Promise((n,r)=>{t.listen(0,`127.0.0.1`,()=>{let i=t.address();typeof i==`object`&&i?(e.port=i.port,n(i.port)):r(Error(`Failed to resolve local browser address`))}),t.on(`error`,r)}),Eh}let Mh;function Nh(){return Mh===void 0&&(Mh=w(`blocks-interactive`)),Mh}function Ph(e){if(!e.startsWith(Ch))return null;let t=Nh();if(!t)return null;let n=L(I(t,`dist`,e.slice(32))),r=L(I(t,`dist`)),i=process.platform===`win32`?`\\`:`/`;return!n.startsWith(r+i)&&n!==r?null:n}function Fh(e){return`script-src 'nonce-${e}' 'strict-dynamic'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; frame-ancestors 'self'`}function Ih(e,t){let n=Th;if(!n){Gh(t);return}try{let r=new URL(e.url??`/`,`http://${e.headers.host??`127.0.0.1`}`).pathname;if((e.method??`GET`)===`OPTIONS`){t.writeHead(204,{"Access-Control-Allow-Origin":`*`,"Access-Control-Allow-Methods":`POST, GET, OPTIONS`,"Access-Control-Allow-Headers":`Content-Type`}),t.end();return}if(r.startsWith(`/__aikit_screenshot.png`)){let r=e.headers.referer;qh(t,typeof r==`string`&&r.length>0?r:`http://127.0.0.1:${n.port}`);return}let i=r.match(/^\/present\/([^/]+)(?:\/(.*))?$/);if(i){let r=i[1],a=i[2]??``,o=Dh.get(r);if(!o){Lh(t,404,X.SESSION_NOT_FOUND,`Session ${r} not found`);return}if(o.hasClientConnected=!0,n.manager.transitionSession(r,`connected`,`client-connect`),a===``||a===`/`){t.writeHead(200,{"Content-Type":`text/html; charset=utf-8`,"Content-Security-Policy":Fh(o.callbackSession.nonce)}),t.end(o.html);return}if(a===`viewer`){if(!o.viewerHtml){t.writeHead(404,{"Content-Type":`text/plain`}),t.end(`Not Found`);return}t.writeHead(200,{"Content-Type":`text/html; charset=utf-8`}),t.end(o.viewerHtml);return}if(a===`callback`){if(!Oh.tryConsume()){Lh(t,429,X.RATE_LIMITED,`Too many requests`);return}o.callbackSession.handle(e,t,`http://127.0.0.1:${n.port}`).catch(()=>{Gh(t)});return}t.writeHead(404,{"Content-Type":`text/plain`}),t.end(`Not Found`);return}let a=bh().find(t=>e.url===t.route);if(a){let e=a.getSource();if(e){t.writeHead(200,{"Content-Type":`application/javascript; charset=utf-8`,"Cache-Control":`public, max-age=86400`}),t.end(e);return}t.writeHead(302,{Location:a.cdn}),t.end();return}if(r.startsWith(Ch)){if(!kh.tryConsume()){Lh(t,429,X.RATE_LIMITED,`Too many requests`);return}let e=Ph(r);if(e)try{let n=F(e,`utf8`);t.writeHead(200,{"Content-Type":`application/javascript; charset=utf-8`}),t.end(n);return}catch{}}t.writeHead(404,{"Content-Type":`text/plain`}),t.end(`Not Found`)}catch{Gh(t)}}function Lh(e,t,n,r){if(!e.headersSent)try{e.writeHead(t,{"Content-Type":`application/json; charset=utf-8`}),e.end(JSON.stringify({error:n,message:r}))}catch{try{e.end()}catch{}}}function Rh(e,t){if(e.length===0)return``;let n=e.map(e=>{let t=Y(e.id),n=Y(e.label);if(e.type===`select`||e.type===`multi-select`)return`<label class="present-action-field"><span>${n}</span><select data-action-id="${t}"${e.type===`multi-select`?` multiple`:``}>${(e.options??[]).map(e=>`<option value="${Y(e.value)}">${Y(e.label)}</option>`).join(``)}</select></label>`;if(e.type===`text-submit`)return`<label class="present-action-field"><span>${n}</span><div class="present-text-submit"><input type="text" class="present-text-input" data-action-id="${t}" data-action-label="${n}" placeholder="${n}" /><button type="button" class="present-action-btn present-action-primary present-submit-btn" data-submit-for="${t}">Send</button></div></label>`;if(e.type===`form-submit`){let r=e.schema;if(r)return`<form class="present-form" data-action-id="${t}" data-action-label="${n}">${Object.entries(r).map(([e,t])=>{let n=Y(t.description??e);return`<label class="present-action-field"><span>${n}</span><input type="${t.type===`number`?`number`:t.type===`boolean`?`checkbox`:`text`}" class="present-text-input" name="${Y(e)}" placeholder="${n}" /></label>`}).join(``)}<button type="submit" class="present-action-btn present-action-primary">${n}</button></form>`}return`<button type="button" class="present-action-btn present-action-${Y(e.variant??`default`)}" data-action-id="${t}" data-action-label="${n}">${n}</button>`}).join(``),r=JSON.stringify(t);return`
2684
+ };`,onload:`window.__aikit_initMermaid&&window.__aikit_initMermaid()`,local:{route:`/vendor/mermaid.min.js`,getSource:_h()}},yh=new Map([[`mermaid`,vh]]);function bh(e,t){if(!e?.length)return;let n=[];for(let r of e){let e=yh.get(r);if(e){if(t===`browser`){n.push({inlineSource:e.inlineSource,onload:e.onload});continue}if(t===`mcp-app`){n.push({inlineSource:e.inlineSource,onload:e.onload});continue}n.push({src:e.cdn,initScript:e.initScript,onload:e.onload})}}return n.length>0?n:void 0}function xh(){let e=[];for(let t of yh.values())t.local&&e.push({route:t.local.route,getSource:t.local.getSource,cdn:t.cdn});return e}const Sh=300*1e3,Ch=15*1e3,wh=`/@aikit/blocks-interactive/dist/`;var Th=class{maxTokens;refillPerSecond;tokens;lastRefill;constructor(e,t){this.maxTokens=e,this.refillPerSecond=t,this.tokens=e,this.lastRefill=Date.now()}tryConsume(){return this.#e(),this.tokens>=1?(--this.tokens,!0):!1}#e(){let e=Date.now(),t=(e-this.lastRefill)/1e3;this.tokens=Math.min(this.maxTokens,this.tokens+t*this.refillPerSecond),this.lastRefill=e}};let Eh=null,Dh=null;const Oh=new Map,kh=new Th(10,10),Ah=new Th(50,50);function jh(){return Eh||(Eh={manager:new hh,server:null,port:0},process.on(`exit`,()=>{Eh?.manager.shutdown()})),Eh.manager}async function Mh(){if(!Eh)throw Error(`Browser server state not initialized`);let e=Eh;if(e.server)return e.port;if(Dh)return Dh;let t=Rr((e,t)=>{Lh(e,t)});return e.server=t,Dh=new Promise((n,r)=>{t.listen(0,`127.0.0.1`,()=>{let i=t.address();typeof i==`object`&&i?(e.port=i.port,n(i.port)):r(Error(`Failed to resolve local browser address`))}),t.on(`error`,r)}),Dh}let Nh;function Ph(){return Nh===void 0&&(Nh=w(`blocks-interactive`)),Nh}function Fh(e){if(!e.startsWith(wh))return null;let t=Ph();if(!t)return null;let n=L(I(t,`dist`,e.slice(32))),r=L(I(t,`dist`)),i=process.platform===`win32`?`\\`:`/`;return!n.startsWith(r+i)&&n!==r?null:n}function Ih(e){return`script-src 'nonce-${e}' 'strict-dynamic'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; frame-ancestors 'self'`}function Lh(e,t){let n=Eh;if(!n){Kh(t);return}try{let r=new URL(e.url??`/`,`http://${e.headers.host??`127.0.0.1`}`).pathname;if((e.method??`GET`)===`OPTIONS`){t.writeHead(204,{"Access-Control-Allow-Origin":`*`,"Access-Control-Allow-Methods":`POST, GET, OPTIONS`,"Access-Control-Allow-Headers":`Content-Type`}),t.end();return}if(r.startsWith(`/__aikit_screenshot.png`)){let r=e.headers.referer;Jh(t,typeof r==`string`&&r.length>0?r:`http://127.0.0.1:${n.port}`);return}let i=r.match(/^\/present\/([^/]+)(?:\/(.*))?$/);if(i){let r=i[1],a=i[2]??``,o=Oh.get(r);if(!o){Rh(t,404,X.SESSION_NOT_FOUND,`Session ${r} not found`);return}if(o.hasClientConnected=!0,n.manager.transitionSession(r,`connected`,`client-connect`),a===``||a===`/`){t.writeHead(200,{"Content-Type":`text/html; charset=utf-8`,"Content-Security-Policy":Ih(o.callbackSession.nonce)}),t.end(o.html);return}if(a===`viewer`){if(!o.viewerHtml){t.writeHead(404,{"Content-Type":`text/plain`}),t.end(`Not Found`);return}t.writeHead(200,{"Content-Type":`text/html; charset=utf-8`}),t.end(o.viewerHtml);return}if(a===`callback`){if(!kh.tryConsume()){Rh(t,429,X.RATE_LIMITED,`Too many requests`);return}o.callbackSession.handle(e,t,`http://127.0.0.1:${n.port}`).catch(()=>{Kh(t)});return}t.writeHead(404,{"Content-Type":`text/plain`}),t.end(`Not Found`);return}let a=xh().find(t=>e.url===t.route);if(a){let e=a.getSource();if(e){t.writeHead(200,{"Content-Type":`application/javascript; charset=utf-8`,"Cache-Control":`public, max-age=86400`}),t.end(e);return}t.writeHead(302,{Location:a.cdn}),t.end();return}if(r.startsWith(wh)){if(!Ah.tryConsume()){Rh(t,429,X.RATE_LIMITED,`Too many requests`);return}let e=Fh(r);if(e)try{let n=F(e,`utf8`);t.writeHead(200,{"Content-Type":`application/javascript; charset=utf-8`}),t.end(n);return}catch{}}t.writeHead(404,{"Content-Type":`text/plain`}),t.end(`Not Found`)}catch{Kh(t)}}function Rh(e,t,n,r){if(!e.headersSent)try{e.writeHead(t,{"Content-Type":`application/json; charset=utf-8`}),e.end(JSON.stringify({error:n,message:r}))}catch{try{e.end()}catch{}}}function zh(e,t){if(e.length===0)return``;let n=e.map(e=>{let t=Y(e.id),n=Y(e.label);if(e.type===`select`||e.type===`multi-select`)return`<label class="present-action-field"><span>${n}</span><select data-action-id="${t}"${e.type===`multi-select`?` multiple`:``}>${(e.options??[]).map(e=>`<option value="${Y(e.value)}">${Y(e.label)}</option>`).join(``)}</select></label>`;if(e.type===`text-submit`)return`<label class="present-action-field"><span>${n}</span><div class="present-text-submit"><input type="text" class="present-text-input" data-action-id="${t}" data-action-label="${n}" placeholder="${n}" /><button type="button" class="present-action-btn present-action-primary present-submit-btn" data-submit-for="${t}">Send</button></div></label>`;if(e.type===`form-submit`){let r=e.schema;if(r)return`<form class="present-form" data-action-id="${t}" data-action-label="${n}">${Object.entries(r).map(([e,t])=>{let n=Y(t.description??e);return`<label class="present-action-field"><span>${n}</span><input type="${t.type===`number`?`number`:t.type===`boolean`?`checkbox`:`text`}" class="present-text-input" name="${Y(e)}" placeholder="${n}" /></label>`}).join(``)}<button type="submit" class="present-action-btn present-action-primary">${n}</button></form>`}return`<button type="button" class="present-action-btn present-action-${Y(e.variant??`default`)}" data-action-id="${t}" data-action-label="${n}">${n}</button>`}).join(``),r=JSON.stringify(t);return`
2685
2685
  <section class="present-surface-actions">
2686
2686
  <div class="present-action-bar">${n}</div>
2687
2687
  <p id="present-action-status" class="present-action-status" aria-live="polite"></p>
@@ -2886,8 +2886,8 @@ None.`:`### Stale Lessons\n${u.map(e=>`- **${e.title}** (\`${e.path}\`) — effe
2886
2886
  navigator.sendBeacon('/callback', new Blob([body], { type: 'application/json' }));
2887
2887
  });
2888
2888
  })();
2889
- <\/script>`}function zh(e){try{if(process.platform===`win32`){Hn(`cmd`,[`/c`,`start`,``,e],{windowsHide:!0});return}if(process.platform===`darwin`){Hn(`open`,[e]);return}Hn(`xdg-open`,[e])}catch{}}async function Bh(e){try{let t=$n();return await t.launch(`ui`),t.resetIdleTimer(),await(await t.getContext().newPage()).goto(e,{waitUntil:`domcontentloaded`}),!0}catch{return zh(e),!1}}function Vh(e,t,n){let r=[e.title];return e.description&&r.push(e.description),r.push(``,`Opened in browser at ${t}`,n),r.join(`
2890
- `)}function Hh(e){return e.some(e=>e.id!==`__dismiss`)}function Uh(e){return`<script nonce="${Y(e)}">
2889
+ <\/script>`}function Bh(e){try{if(process.platform===`win32`){Hn(`cmd`,[`/c`,`start`,``,e],{windowsHide:!0});return}if(process.platform===`darwin`){Hn(`open`,[e]);return}Hn(`xdg-open`,[e])}catch{}}async function Vh(e){try{let t=$n();return await t.launch(`ui`),t.resetIdleTimer(),await(await t.getContext().newPage()).goto(e,{waitUntil:`domcontentloaded`}),!0}catch{return Bh(e),!1}}function Hh(e,t,n){let r=[e.title];return e.description&&r.push(e.description),r.push(``,`Opened in browser at ${t}`,n),r.join(`
2890
+ `)}function Uh(e){return e.some(e=>e.id!==`__dismiss`)}function Wh(e){return`<script nonce="${Y(e)}">
2891
2891
  (function() {
2892
2892
  const iframe = document.querySelector('.present-viewer-iframe');
2893
2893
  if (!iframe) return;
@@ -2901,7 +2901,7 @@ None.`:`### Stale Lessons\n${u.map(e=>`- **${e.title}** (\`${e.path}\`) — effe
2901
2901
  observer.observe(document.documentElement, { attributes: true, attributeFilter: ['data-theme'] });
2902
2902
  iframe.addEventListener('load', sendTheme);
2903
2903
  })();
2904
- <\/script>`}function Wh(e){return e.replace(`</head>`,`<style>
2904
+ <\/script>`}function Gh(e){return e.replace(`</head>`,`<style>
2905
2905
  .toolbar, .badge, body > header, body > footer { display: none !important; }
2906
2906
  body { padding-top: 0 !important; margin-top: 0 !important; }
2907
2907
  </style>
@@ -2912,11 +2912,11 @@ window.addEventListener('message', function(e) {
2912
2912
  }
2913
2913
  });
2914
2914
  <\/script>
2915
- </body>`)}function Gh(e){if(!e.headersSent)try{e.writeHead(500,{"Content-Type":`text/plain`}),e.end(`Internal Server Error`)}catch{try{e.end()}catch{}}}async function Kh(e){let t=$n();t.isLaunched()||await t.launch(`headless`),t.resetIdleTimer();let n=await t.getContext().newPage();try{return await n.goto(e,{waitUntil:`domcontentloaded`}),await n.waitForLoadState(`networkidle`,{timeout:2e3}).catch(()=>{}),await n.screenshot({fullPage:!0,type:`png`})}finally{await n.close().catch(()=>{})}}async function qh(e,t){if(!t){e.writeHead(503,{"Content-Type":`text/plain; charset=utf-8`}),e.end(`Screenshot target is not ready.`);return}try{let n=await Kh(t);e.writeHead(200,{"Content-Type":`image/png`,"Cache-Control":`no-store`}),e.end(n)}catch{Gh(e)}}function Jh(e,t){return e.replace(/'\/callback'/g,`'/present/${t}/callback'`).replace(/"\/callback"/g,`"/present/${t}/callback"`)}function Yh(e,t){return e.replace(/src="\/viewer"/g,`src="/present/${t}/viewer"`)}async function Xh(e,t){if(Cg(`<html><body style="font-family:system-ui;padding:2rem;color:#888;text-align:center"><p>Content opened in browser window.</p></body></html>`),e.data!=null&&t.inputSchema){let n=fn({data:e.data,schema:t.inputSchema});if(!n.valid){let e=n.errors.map(e=>` ${e.path}: ${e.message}${e.expected?` (expected: ${e.expected}, got: ${e.received})`:``}`).join(`
2916
- `);return{content:[{type:`text`,text:`[ERROR:VALIDATION] Template "${t.id}" data validation failed:\n${e}\n\nExpected schema: ${JSON.stringify(t.inputSchema,null,2)}`}],structuredContent:{kind:`error`,error:{code:`VIEWER_DATA_INVALID`,message:`Template "${t.id}" data validation failed:\n${e}\n\nExpected schema: ${JSON.stringify(t.inputSchema,null,2)}`}},isError:!0}}}let n=Wh(ym(t.resolveHtml(),e.data??null,t.injectId,t.transformData)),r=Ah(),i=Ie(16).toString(`hex`),a=r.createSession({surfaceId:`viewer`,transport:`viewer`,nonce:i});if(!a.ok)return{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:{kind:`error`,error:{code:`BROWSER_START_FAILED`,message:a.error.message}},isError:!0};let o=a.session.id,s=dh(`viewer`,e.actions??[],r,o,i),c=Yh(kr({title:e.title,subtitle:e.description,html:[`<div class="present-viewer-container">`,` <iframe class="present-viewer-iframe" src="/viewer" sandbox="allow-scripts allow-same-origin"></iframe>`,` ${Uh(i)}`,`</div>`].join(`
2915
+ </body>`)}function Kh(e){if(!e.headersSent)try{e.writeHead(500,{"Content-Type":`text/plain`}),e.end(`Internal Server Error`)}catch{try{e.end()}catch{}}}async function qh(e){let t=$n();t.isLaunched()||await t.launch(`headless`),t.resetIdleTimer();let n=await t.getContext().newPage();try{return await n.goto(e,{waitUntil:`domcontentloaded`}),await n.waitForLoadState(`networkidle`,{timeout:2e3}).catch(()=>{}),await n.screenshot({fullPage:!0,type:`png`})}finally{await n.close().catch(()=>{})}}async function Jh(e,t){if(!t){e.writeHead(503,{"Content-Type":`text/plain; charset=utf-8`}),e.end(`Screenshot target is not ready.`);return}try{let n=await qh(t);e.writeHead(200,{"Content-Type":`image/png`,"Cache-Control":`no-store`}),e.end(n)}catch{Kh(e)}}function Yh(e,t){return e.replace(/'\/callback'/g,`'/present/${t}/callback'`).replace(/"\/callback"/g,`"/present/${t}/callback"`)}function Xh(e,t){return e.replace(/src="\/viewer"/g,`src="/present/${t}/viewer"`)}async function Zh(e,t){if(wg(`<html><body style="font-family:system-ui;padding:2rem;color:#888;text-align:center"><p>Content opened in browser window.</p></body></html>`),e.data!=null&&t.inputSchema){let n=fn({data:e.data,schema:t.inputSchema});if(!n.valid){let e=n.errors.map(e=>` ${e.path}: ${e.message}${e.expected?` (expected: ${e.expected}, got: ${e.received})`:``}`).join(`
2916
+ `);return{content:[{type:`text`,text:`[ERROR:VALIDATION] Template "${t.id}" data validation failed:\n${e}\n\nExpected schema: ${JSON.stringify(t.inputSchema,null,2)}`}],structuredContent:{kind:`error`,error:{code:`VIEWER_DATA_INVALID`,message:`Template "${t.id}" data validation failed:\n${e}\n\nExpected schema: ${JSON.stringify(t.inputSchema,null,2)}`}},isError:!0}}}let n=Gh(bm(t.resolveHtml(),e.data??null,t.injectId,t.transformData)),r=jh(),i=Ie(16).toString(`hex`),a=r.createSession({surfaceId:`viewer`,transport:`viewer`,nonce:i});if(!a.ok)return{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:{kind:`error`,error:{code:`BROWSER_START_FAILED`,message:a.error.message}},isError:!0};let o=a.session.id,s=fh(`viewer`,e.actions??[],r,o,i),c=Xh(kr({title:e.title,subtitle:e.description,html:[`<div class="present-viewer-container">`,` <iframe class="present-viewer-iframe" src="/viewer" sandbox="allow-scripts allow-same-origin"></iframe>`,` ${Wh(i)}`,`</div>`].join(`
2917
2917
  `),css:[[`.present-viewer-container {`,` flex: 1;`,` min-height: calc(100vh - 12rem);`,` position: relative;`,` border-radius: 0.75rem;`,` overflow: hidden;`,` border: none;`,`}`,`.present-viewer-iframe {`,` border: none;`,` width: 100%;`,` height: 100%;`,` position: absolute;`,` inset: 0;`,` border-radius: inherit;`,`}`].join(`
2918
- `)],islands:[],payload:void 0,nonce:i,generatedAt:new Date().toISOString(),colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`browser`,exportPolicy:`local-interactive`,footerContentHtml:fh}),o);Dh.set(o,{callbackSession:s,html:c,viewerHtml:n,hasClientConnected:!1,createdAt:Date.now()});let l=``;try{l=`http://127.0.0.1:${await jh()}/present/${o}`}catch(t){return Dh.delete(o),r.removeSession(o),{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:{kind:`error`,error:{code:`BROWSER_START_FAILED`,message:t instanceof Error?t.message:`Unable to start browser transport`}},isError:!0}}return await Bh(l),setTimeout(()=>{Dh.delete(o),r.removeSession(o)},xh),{content:[{type:`text`,text:Vh(e,l,`Rendered.`)}],structuredContent:{kind:`rendered`,reason:`no-response-required`}}}async function Zh(e){Cg(`<html><body style="font-family:system-ui;padding:2rem;color:#888;text-align:center"><p>Content opened in browser window.</p></body></html>`);let t=Ah(),n=Ie(16).toString(`hex`),r=Lr(e,{transport:`browser`,registry:Hm,blockVendorScripts:Km(),nonce:n}),i=t.createSession({surfaceId:r.surfaceId,transport:`browser`,nonce:n});if(!i.ok)return{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:{kind:`error`,error:{code:`BROWSER_START_FAILED`,message:i.error.message}},isError:!0};let a=i.session.id,o=dh(r.surfaceId,r.actions,t,a,n),s=yh(r.vendorScripts,`browser`);bh();let c=Jh(kr({title:e.title,subtitle:e.description,html:[r.html,Rh(r.actions,o.nonce)].filter(Boolean).join(`
2919
- `),css:r.css,islands:r.islands,payload:r.payload,nonce:r.nonce,generatedAt:new Date().toISOString(),colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`browser`,exportPolicy:r.exportPolicy,footerContentHtml:fh,headScripts:s}),a);Dh.set(a,{callbackSession:o,html:c,hasClientConnected:!1,createdAt:Date.now()});let l=``;try{l=`http://127.0.0.1:${await jh()}/present/${a}`;let e=Dh.get(a);e&&e.hasClientConnected}catch(n){return Dh.delete(a),t.removeSession(a),t.shutdown(),{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:o.settleError(`BROWSER_START_FAILED`,n instanceof Error?n.message:`Unable to start browser transport`),isError:!0}}let u=await Bh(l);if(!Hh(r.actions))return setTimeout(()=>{Dh.delete(a);try{t.removeSession(a)}catch{}},xh),{content:[{type:`text`,text:Vh(e,l,`Rendered.`)}],structuredContent:{kind:`rendered`,reason:`no-response-required`}};let d=await Promise.race([o.promise,new Promise(e=>{setTimeout(()=>{Dh.get(a)?.hasClientConnected||(Dh.delete(a),e(o.settleError(`BROWSER_CONNECT_TIMEOUT`,u?`No browser client connected within ${Sh}ms.`:`Fell back to system browser, but no browser client connected within ${Sh}ms.`)))},Sh)}),new Promise(e=>{setTimeout(()=>e(o.settleTimeout(xh)),xh)})]);setTimeout(()=>{Dh.delete(a);try{t.removeSession(a)}catch{}},xh);let f=d.kind===`result`?`Selected action: ${d.result.actionId}`:d.kind===`timeout`?`Timed out after ${d.waitedMs}ms.`:d.kind===`cancelled`?`Cancelled: ${d.reason}.`:d.kind===`error`?`Error: ${d.error.message}`:`Rendered.`;return{content:[{type:`text`,text:Vh(e,l,f)}],structuredContent:d,isError:d.kind===`error`}}const Qh={id:`browser`,priority:20,canHandle(e,t){let n=Hg(e);return Wm(n)||!!t.preferBrowser&&!!Ug(n)},async render(e,t){return Zh(e)}},$h=`openai/outputTemplate`,eg=`ui/resourceUri`,tg={connectDomains:[],resourceDomains:[]},ng={connect_domains:[],resource_domains:[]};function rg(e){return{ui:{resourceUri:e,visibility:[`model`,`app`]},[eg]:e,[$h]:e,"openai/widgetAccessible":!0}}function ig(){return{ui:{prefersBorder:!1,csp:tg},"openai/widgetDescription":`AI Kit renders structured visual surfaces such as dashboards, charts, reports, and diagrams.`,"openai/widgetPrefersBorder":!1,"openai/widgetCSP":ng}}function ag(e){return{ui:{resourceUri:e},[eg]:e,[$h]:e}}function og(e){return{...e,schemaVersion:1}}function sg(e){try{let t=Lr(e,{transport:`mcp-app`,registry:Hm,blockVendorScripts:Km()}),n=yh(t.vendorScripts,`mcp-app`),r=kr({title:e.title,subtitle:e.description,html:t.html,css:t.css,islands:t.islands,payload:t.payload,nonce:t.nonce,colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`mcp-app`,exportPolicy:t.exportPolicy,footerContentHtml:fh,headScripts:n}),i={kind:`rendered`,reason:`no-response-required`},a=Kg(r);Cg(a);let o=Wg(e,i,{includeSurfaceHeader:!1}),s=xg(),c=Eg(s);return c&&wg(c,a),{content:[{type:`text`,text:o}],structuredContent:og(e),_meta:ag(s),ui:{type:`resource`,uri:s}}}catch(t){return Jg(`RENDER_FAILED`,t instanceof Error?t.message:`Failed to render ChannelSurface`,void 0,e.title)}}const cg={id:`mcp-app`,priority:30,canHandle(e,t){return!0},async render(e,t){return sg(e)}};var lg=class{handlers=[];register(e){let t=this.handlers.findIndex(t=>t.id===e.id);t===-1?this.handlers.push(e):this.handlers[t]=e}unregister(e){let t=this.handlers.findIndex(t=>t.id===e);t!==-1&&this.handlers.splice(t,1)}select(e,t){return[...this.handlers].sort((e,t)=>(e.priority??99)-(t.priority??99)).find(n=>n.canHandle(e,t))??null}getAll(){return[...this.handlers]}};function ug(e){return`<script nonce="${Y(e)}">
2918
+ `)],islands:[],payload:void 0,nonce:i,generatedAt:new Date().toISOString(),colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`browser`,exportPolicy:`local-interactive`,footerContentHtml:ph}),o);Oh.set(o,{callbackSession:s,html:c,viewerHtml:n,hasClientConnected:!1,createdAt:Date.now()});let l=``;try{l=`http://127.0.0.1:${await Mh()}/present/${o}`}catch(t){return Oh.delete(o),r.removeSession(o),{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:{kind:`error`,error:{code:`BROWSER_START_FAILED`,message:t instanceof Error?t.message:`Unable to start browser transport`}},isError:!0}}return await Vh(l),setTimeout(()=>{Oh.delete(o),r.removeSession(o)},Sh),{content:[{type:`text`,text:Hh(e,l,`Rendered.`)}],structuredContent:{kind:`rendered`,reason:`no-response-required`}}}async function Qh(e){wg(`<html><body style="font-family:system-ui;padding:2rem;color:#888;text-align:center"><p>Content opened in browser window.</p></body></html>`);let t=jh(),n=Ie(16).toString(`hex`),r=Lr(e,{transport:`browser`,registry:Um,blockVendorScripts:qm(),nonce:n}),i=t.createSession({surfaceId:r.surfaceId,transport:`browser`,nonce:n});if(!i.ok)return{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:{kind:`error`,error:{code:`BROWSER_START_FAILED`,message:i.error.message}},isError:!0};let a=i.session.id,o=fh(r.surfaceId,r.actions,t,a,n),s=bh(r.vendorScripts,`browser`);xh();let c=Yh(kr({title:e.title,subtitle:e.description,html:[r.html,zh(r.actions,o.nonce)].filter(Boolean).join(`
2919
+ `),css:r.css,islands:r.islands,payload:r.payload,nonce:r.nonce,generatedAt:new Date().toISOString(),colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`browser`,exportPolicy:r.exportPolicy,footerContentHtml:ph,headScripts:s}),a);Oh.set(a,{callbackSession:o,html:c,hasClientConnected:!1,createdAt:Date.now()});let l=``;try{l=`http://127.0.0.1:${await Mh()}/present/${a}`;let e=Oh.get(a);e&&e.hasClientConnected}catch(n){return Oh.delete(a),t.removeSession(a),t.shutdown(),{content:[{type:`text`,text:`${e.title}\n\nUnable to start local browser transport.`}],structuredContent:o.settleError(`BROWSER_START_FAILED`,n instanceof Error?n.message:`Unable to start browser transport`),isError:!0}}let u=await Vh(l);if(!Uh(r.actions))return setTimeout(()=>{Oh.delete(a);try{t.removeSession(a)}catch{}},Sh),{content:[{type:`text`,text:Hh(e,l,`Rendered.`)}],structuredContent:{kind:`rendered`,reason:`no-response-required`}};let d=await Promise.race([o.promise,new Promise(e=>{setTimeout(()=>{Oh.get(a)?.hasClientConnected||(Oh.delete(a),e(o.settleError(`BROWSER_CONNECT_TIMEOUT`,u?`No browser client connected within ${Ch}ms.`:`Fell back to system browser, but no browser client connected within ${Ch}ms.`)))},Ch)}),new Promise(e=>{setTimeout(()=>e(o.settleTimeout(Sh)),Sh)})]);setTimeout(()=>{Oh.delete(a);try{t.removeSession(a)}catch{}},Sh);let f=d.kind===`result`?`Selected action: ${d.result.actionId}`:d.kind===`timeout`?`Timed out after ${d.waitedMs}ms.`:d.kind===`cancelled`?`Cancelled: ${d.reason}.`:d.kind===`error`?`Error: ${d.error.message}`:`Rendered.`;return{content:[{type:`text`,text:Hh(e,l,f)}],structuredContent:d,isError:d.kind===`error`}}const $h={id:`browser`,priority:20,canHandle(e,t){let n=Ug(e);return Gm(n)||!!t.preferBrowser&&!!Wg(n)},async render(e,t){return Qh(e)}},eg=`openai/outputTemplate`,tg=`ui/resourceUri`,ng={connectDomains:[],resourceDomains:[]},rg={connect_domains:[],resource_domains:[]};function ig(e){return{ui:{resourceUri:e,visibility:[`model`,`app`]},[tg]:e,[eg]:e,"openai/widgetAccessible":!0}}function ag(){return{ui:{prefersBorder:!1,csp:ng},"openai/widgetDescription":`AI Kit renders structured visual surfaces such as dashboards, charts, reports, and diagrams.`,"openai/widgetPrefersBorder":!1,"openai/widgetCSP":rg}}function og(e){return{ui:{resourceUri:e},[tg]:e,[eg]:e}}function sg(e){return{...e,schemaVersion:1}}function cg(e){try{let t=Lr(e,{transport:`mcp-app`,registry:Um,blockVendorScripts:qm()}),n=bh(t.vendorScripts,`mcp-app`),r=kr({title:e.title,subtitle:e.description,html:t.html,css:t.css,islands:t.islands,payload:t.payload,nonce:t.nonce,colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`mcp-app`,exportPolicy:t.exportPolicy,footerContentHtml:ph,headScripts:n}),i={kind:`rendered`,reason:`no-response-required`},a=qg(r);wg(a);let o=Gg(e,i,{includeSurfaceHeader:!1}),s=Sg(),c=Dg(s);return c&&Tg(c,a),{content:[{type:`text`,text:o}],structuredContent:sg(e),_meta:og(s),ui:{type:`resource`,uri:s}}}catch(t){return Yg(`RENDER_FAILED`,t instanceof Error?t.message:`Failed to render ChannelSurface`,void 0,e.title)}}const lg={id:`mcp-app`,priority:30,canHandle(e,t){return!0},async render(e,t){return cg(e)}};var ug=class{handlers=[];register(e){let t=this.handlers.findIndex(t=>t.id===e.id);t===-1?this.handlers.push(e):this.handlers[t]=e}unregister(e){let t=this.handlers.findIndex(t=>t.id===e);t!==-1&&this.handlers.splice(t,1)}select(e,t){return[...this.handlers].sort((e,t)=>(e.priority??99)-(t.priority??99)).find(n=>n.canHandle(e,t))??null}getAll(){return[...this.handlers]}};function dg(e){return`<script nonce="${Y(e)}">
2920
2920
  (function() {
2921
2921
  const iframe = document.querySelector('.present-viewer-iframe');
2922
2922
  if (!iframe) return;
@@ -2930,23 +2930,23 @@ window.addEventListener('message', function(e) {
2930
2930
  observer.observe(document.documentElement, { attributes: true, attributeFilter: ['data-theme'] });
2931
2931
  iframe.addEventListener('load', sendTheme);
2932
2932
  })();
2933
- <\/script>`}function dg(e){return`<script nonce="${Y(e)}">
2933
+ <\/script>`}function fg(e){return`<script nonce="${Y(e)}">
2934
2934
  window.addEventListener('message', function(e) {
2935
2935
  if (e.data && e.data.type === 'aikit-viewer-height') {
2936
2936
  var container = document.querySelector('.present-viewer-container');
2937
2937
  if (container) { container.style.height = e.data.height + 'px'; }
2938
2938
  }
2939
2939
  });
2940
- <\/script>`}async function fg(e,t){try{let n=Gg(ym(t.resolveHtml(),e.data??null,t.injectId,t.transformData)).replace(/&/g,`&amp;`).replace(/"/g,`&quot;`),r=Ie(16).toString(`hex`),i={kind:`rendered`,reason:`no-response-required`};Cg(Kg(kr({title:e.title,subtitle:e.description,html:[`<div class="present-viewer-container">`,` <iframe class="present-viewer-iframe" srcdoc="${n}" sandbox="allow-scripts allow-same-origin"></iframe>`,` ${ug(r)}`,` ${dg(r)}`,`</div>`].join(`
2940
+ <\/script>`}async function pg(e,t){try{let n=Kg(bm(t.resolveHtml(),e.data??null,t.injectId,t.transformData)).replace(/&/g,`&amp;`).replace(/"/g,`&quot;`),r=Ie(16).toString(`hex`),i={kind:`rendered`,reason:`no-response-required`};wg(qg(kr({title:e.title,subtitle:e.description,html:[`<div class="present-viewer-container">`,` <iframe class="present-viewer-iframe" srcdoc="${n}" sandbox="allow-scripts allow-same-origin"></iframe>`,` ${dg(r)}`,` ${fg(r)}`,`</div>`].join(`
2941
2941
  `),css:[[`.present-viewer-container {`,` flex: 1;`,` min-height: 640px;`,` position: relative;`,` border-radius: 0.75rem;`,` overflow: hidden;`,` border: none;`,`}`,`.present-viewer-iframe {`,` border: none;`,` width: 100%;`,` height: 100%;`,` position: absolute;`,` inset: 0;`,` border-radius: inherit;`,`}`].join(`
2942
- `)],islands:[],payload:void 0,nonce:r,generatedAt:new Date().toISOString(),footerContentHtml:fh,colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`mcp-app`,exportPolicy:`local-interactive`})));let a=Wg(e,i,{includeSurfaceHeader:!1}),o=xg();return{content:[{type:`text`,text:a}],structuredContent:og(e),_meta:ag(o),ui:{type:`resource`,uri:o}}}catch(t){return Jg(`VIEWER_RENDER_FAILED`,t instanceof Error?t.message:`Failed to render viewer template`,void 0,e.title)}}const pg={id:`viewer`,priority:10,canHandle(e,t){return e.template?gm(e.template)!=null:!1},async render(e,t){let n=gm(e.template??``);if(!n)return Jg(`VIEWER_NOT_FOUND`,`Viewer template "${e.template}" not found`,void 0,e.title);if(e.data!=null&&n.inputSchema){let t=fn({data:e.data,schema:n.inputSchema});if(!t.valid){let r=t.errors.map(e=>` ${e.path}: ${e.message}${e.expected?` (expected: ${e.expected}, got: ${e.received})`:``}`).join(`
2943
- `);return Jg(`VIEWER_DATA_INVALID`,`Template "${n.id}" data validation failed:\n${r}\n\nExpected schema: ${JSON.stringify(n.inputSchema,null,2)}`,void 0,e.title)}}let r=n.supportedTransports.includes(`browser`),i=n.supportedTransports.includes(`mcp-app`);return t.preferBrowser&&r||r&&!i?await Xh(e,n):i?fg(e,n):Jg(`VIEWER_TRANSPORT_UNSUPPORTED`,`Viewer template "${n.id}" does not support an available transport`,void 0,e.title)}},mg=`ui://aikit/present.html`,hg=`ui://aikit/present/{id}.html`,gg=M(`present`);let _g=0,vg=``;const yg=new Map,bg=new Map;function xg(){return`ui://aikit/present/${`${Date.now().toString(36)}_${(++_g).toString(36)}`}.html`}function Sg(){return vg}function Cg(e){vg=e}function wg(e,t){let n=bg.get(e);n&&clearTimeout(n),yg.set(e,t),bg.set(e,setTimeout(()=>{yg.delete(e),bg.delete(e)},3e4))}function Tg(e){return yg.get(e)}function Eg(e){return e.match(/\/present\/(.+)\.html$/)?.[1]}const Dg=new lg;Dg.register(pg),Dg.register(Qh),Dg.register(cg);function Og(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}const kg=/\\u[0-9a-fA-F]{4}/,Ag=/^\s*\|(?:[^|\r\n]+\|){2,}\s*$/,jg=/^\s*\|?(?:\s*:?-{3,}:?\s*\|){2,}\s*$/,Mg=/\b(cli|terminal|tty|console|command(?:-|\s)?line)\b/i;function Ng(e){let t=[e.value,e.markdown,e.text,e.content];for(let e of t)if(typeof e==`string`&&e.trim().length>0)return e}function Pg(e){let t=e.split(/\r?\n/);for(let e=0;e<t.length-1;e+=1)if(Ag.test(t[e])&&jg.test(t[e+1]))return!0;return!1}function Fg(e){let t=e.trim().split(`|`),n=+(t[0]?.trim()===``),r=t.at(-1)?.trim()===``?t.length-1:t.length;return t.slice(n,r).map(e=>e.trim())}function Ig(e,t){if(t<2)return!1;let n=e.trim();return n.startsWith(`|`)?Fg(n).length===t:!1}function Lg(e){let t=e.split(/\r?\n/),n=[],r=[],i=()=>{r.length!==0&&(n.push({type:`text`,content:r.join(`
2944
- `)}),r.length=0)},a=0;for(;a<t.length;){let e=t[a],o=t[a+1];if(o!==void 0&&Ag.test(e)&&jg.test(o)){let r=Fg(e),o=[];i();let s=a+2;for(;s<t.length&&Ig(t[s],r.length);)o.push(Fg(t[s])),s+=1;n.push({type:`table`,headers:r,rows:o}),a=s;continue}r.push(e),a+=1}return i(),n}function Rg(e){let t=Ng(e);return!t||!Pg(t)?[e]:Lg(t).flatMap(e=>{if(e.type===`text`){let t=e.content.trim();return t.length>0?[{type:`markdown`,value:t}]:[]}return[{type:`table`,value:{headers:e.headers,rows:e.rows}}]})}function zg(e){if(typeof e==`string`)return Mg.test(e);if(Array.isArray(e))return e.some(e=>zg(e));if(!Og(e))return!1;let t=[`client`,`clientInfo`,`host`,`source`,`mode`,`name`,`title`,`channel`];return Object.entries(e).some(([e,n])=>t.includes(e)?zg(n):!1)}function Bg(e,t){return{preferBrowser:[t,e._meta,Og(e.metadata)?e.metadata.source:void 0].some(e=>zg(e))}}const Vg={id:`__dismiss`,type:`button`,label:`Done`,variant:`default`};function Hg(e){if((e.actions?.length??0)>0||!e.template)return e;let t=Um(e);return t?.supportedTransports.includes(`browser`)===!0&&!t.supportedTransports.includes(`mcp-app`)?{...e,actions:[Vg]}:e}function Ug(e){if(!e.template)return!0;let t=gm(e.template);return t?t.supportedTransports.includes(`browser`):Um(e)?.supportedTransports.includes(`browser`)??!1}function Wg(e,t,n={}){let r=n.includeSurfaceHeader??!0,i=r?[e.title]:[];return r&&e.description&&i.push(e.description),Pr(t)?i.push(``,`Selected action: ${t.result.actionId}`):Nr(t)?i.push(``,`Error: ${t.error.message}`):t.kind===`timeout`?i.push(``,`Timed out after ${t.waitedMs}ms.`):t.kind===`cancelled`?i.push(``,`Cancelled: ${t.reason}.`):r||i.push(`Rendered inline.`),i.join(`
2945
- `)}function Gg(e){let t=e.replace(`</head>`,`<style>
2942
+ `)],islands:[],payload:void 0,nonce:r,generatedAt:new Date().toISOString(),footerContentHtml:ph,colorScheme:e.colorScheme,lang:e.lang,dir:e.dir,transport:`mcp-app`,exportPolicy:`local-interactive`})));let a=Gg(e,i,{includeSurfaceHeader:!1}),o=Sg();return{content:[{type:`text`,text:a}],structuredContent:sg(e),_meta:og(o),ui:{type:`resource`,uri:o}}}catch(t){return Yg(`VIEWER_RENDER_FAILED`,t instanceof Error?t.message:`Failed to render viewer template`,void 0,e.title)}}const mg={id:`viewer`,priority:10,canHandle(e,t){return e.template?_m(e.template)!=null:!1},async render(e,t){let n=_m(e.template??``);if(!n)return Yg(`VIEWER_NOT_FOUND`,`Viewer template "${e.template}" not found`,void 0,e.title);if(e.data!=null&&n.inputSchema){let t=fn({data:e.data,schema:n.inputSchema});if(!t.valid){let r=t.errors.map(e=>` ${e.path}: ${e.message}${e.expected?` (expected: ${e.expected}, got: ${e.received})`:``}`).join(`
2943
+ `);return Yg(`VIEWER_DATA_INVALID`,`Template "${n.id}" data validation failed:\n${r}\n\nExpected schema: ${JSON.stringify(n.inputSchema,null,2)}`,void 0,e.title)}}let r=n.supportedTransports.includes(`browser`),i=n.supportedTransports.includes(`mcp-app`);return t.preferBrowser&&r||r&&!i?await Zh(e,n):i?pg(e,n):Yg(`VIEWER_TRANSPORT_UNSUPPORTED`,`Viewer template "${n.id}" does not support an available transport`,void 0,e.title)}},hg=`ui://aikit/present.html`,gg=`ui://aikit/present/{id}.html`,_g=M(`present`);let vg=0,yg=``;const bg=new Map,xg=new Map;function Sg(){return`ui://aikit/present/${`${Date.now().toString(36)}_${(++vg).toString(36)}`}.html`}function Cg(){return yg}function wg(e){yg=e}function Tg(e,t){let n=xg.get(e);n&&clearTimeout(n),bg.set(e,t),xg.set(e,setTimeout(()=>{bg.delete(e),xg.delete(e)},3e4))}function Eg(e){return bg.get(e)}function Dg(e){return e.match(/\/present\/(.+)\.html$/)?.[1]}const Og=new ug;Og.register(mg),Og.register($h),Og.register(lg);function kg(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}const Ag=/\\u[0-9a-fA-F]{4}/,jg=/^\s*\|(?:[^|\r\n]+\|){2,}\s*$/,Mg=/^\s*\|?(?:\s*:?-{3,}:?\s*\|){2,}\s*$/,Ng=/\b(cli|terminal|tty|console|command(?:-|\s)?line)\b/i;function Pg(e){let t=[e.value,e.markdown,e.text,e.content];for(let e of t)if(typeof e==`string`&&e.trim().length>0)return e}function Fg(e){let t=e.split(/\r?\n/);for(let e=0;e<t.length-1;e+=1)if(jg.test(t[e])&&Mg.test(t[e+1]))return!0;return!1}function Ig(e){let t=e.trim().split(`|`),n=+(t[0]?.trim()===``),r=t.at(-1)?.trim()===``?t.length-1:t.length;return t.slice(n,r).map(e=>e.trim())}function Lg(e,t){if(t<2)return!1;let n=e.trim();return n.startsWith(`|`)?Ig(n).length===t:!1}function Rg(e){let t=e.split(/\r?\n/),n=[],r=[],i=()=>{r.length!==0&&(n.push({type:`text`,content:r.join(`
2944
+ `)}),r.length=0)},a=0;for(;a<t.length;){let e=t[a],o=t[a+1];if(o!==void 0&&jg.test(e)&&Mg.test(o)){let r=Ig(e),o=[];i();let s=a+2;for(;s<t.length&&Lg(t[s],r.length);)o.push(Ig(t[s])),s+=1;n.push({type:`table`,headers:r,rows:o}),a=s;continue}r.push(e),a+=1}return i(),n}function zg(e){let t=Pg(e);return!t||!Fg(t)?[e]:Rg(t).flatMap(e=>{if(e.type===`text`){let t=e.content.trim();return t.length>0?[{type:`markdown`,value:t}]:[]}return[{type:`table`,value:{headers:e.headers,rows:e.rows}}]})}function Bg(e){if(typeof e==`string`)return Ng.test(e);if(Array.isArray(e))return e.some(e=>Bg(e));if(!kg(e))return!1;let t=[`client`,`clientInfo`,`host`,`source`,`mode`,`name`,`title`,`channel`];return Object.entries(e).some(([e,n])=>t.includes(e)?Bg(n):!1)}function Vg(e,t){return{preferBrowser:[t,e._meta,kg(e.metadata)?e.metadata.source:void 0].some(e=>Bg(e))}}const Hg={id:`__dismiss`,type:`button`,label:`Done`,variant:`default`};function Ug(e){if((e.actions?.length??0)>0||!e.template)return e;let t=Wm(e);return t?.supportedTransports.includes(`browser`)===!0&&!t.supportedTransports.includes(`mcp-app`)?{...e,actions:[Hg]}:e}function Wg(e){if(!e.template)return!0;let t=_m(e.template);return t?t.supportedTransports.includes(`browser`):Wm(e)?.supportedTransports.includes(`browser`)??!1}function Gg(e,t,n={}){let r=n.includeSurfaceHeader??!0,i=r?[e.title]:[];return r&&e.description&&i.push(e.description),Pr(t)?i.push(``,`Selected action: ${t.result.actionId}`):Nr(t)?i.push(``,`Error: ${t.error.message}`):t.kind===`timeout`?i.push(``,`Timed out after ${t.waitedMs}ms.`):t.kind===`cancelled`?i.push(``,`Cancelled: ${t.reason}.`):r||i.push(`Rendered inline.`),i.join(`
2945
+ `)}function Kg(e){let t=e.replace(`</head>`,`<style>
2946
2946
  .toolbar, .badge, body > header, body > footer { display: none !important; }
2947
2947
  body { padding-top: 0 !important; margin-top: 0 !important; }
2948
2948
  </style>
2949
- </head>`);t===e&&gg.warn(`injectEmbeddedViewerRuntime: </head> not found — viewer style not injected`);let n=t.replace(`</body>`,`<script>
2949
+ </head>`);t===e&&_g.warn(`injectEmbeddedViewerRuntime: </head> not found — viewer style not injected`);let n=t.replace(`</body>`,`<script>
2950
2950
  (function() {
2951
2951
  function report() {
2952
2952
  var h = document.documentElement.scrollHeight;
@@ -2965,7 +2965,7 @@ window.addEventListener('message', function(e) {
2965
2965
  }
2966
2966
  });
2967
2967
  <\/script>
2968
- </body>`);return n===t&&gg.warn(`injectEmbeddedViewerRuntime: </body> not found — runtime scripts not injected`),n}function Kg(e){let t=`<script>
2968
+ </body>`);return n===t&&_g.warn(`injectEmbeddedViewerRuntime: </body> not found — runtime scripts not injected`),n}function qg(e){let t=`<script>
2969
2969
  (function(){
2970
2970
  var last=0;
2971
2971
  function notify(){
@@ -2976,12 +2976,12 @@ window.addEventListener('message', function(e) {
2976
2976
  if(typeof ResizeObserver!=="undefined"){new ResizeObserver(notify).observe(document.documentElement)}
2977
2977
  else{setInterval(notify,500)}
2978
2978
  })();
2979
- <\/script>`;return e.includes(`</body>`)?e.replace(`</body>`,`${t}</body>`):`${e}${t}`}function qg(e,t){return[`<!DOCTYPE html>`,`<html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1">`,`<title>Error — ${Y(e)}</title>`,`<style>`,` * { box-sizing: border-box; margin: 0; padding: 0; }`,` body { font-family: system-ui, -apple-system, sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: #fafafa; color: #333; }`,` .error-card { max-width: 560px; width: 100%; padding: 2.5rem; border-radius: 1rem; background: #fff; border: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }`,` .error-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #dc2626; background: #fef2f2; border: 1px solid #fecaca; border-radius: 0.375rem; padding: 0.25rem 0.625rem; margin-bottom: 1rem; }`,` .error-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: #111; }`,` .error-message { font-size: 0.875rem; line-height: 1.6; color: #6b7280; white-space: pre-wrap; word-break: break-word; }`,`</style></head><body>`,`<div class="error-card">`,` <span class="error-badge">Render Error</span>`,` <h1 class="error-title">${Y(e)}</h1>`,` <p class="error-message">${Y(t)}</p>`,`</div>`,`</body></html>`].join(`
2980
- `)}function Jg(e,t,n,r){return Cg(qg(r??`Present`,t)),{content:[{type:`text`,text:`[ERROR:VALIDATION] ${t}`}],isError:!0}}function Yg(e,t){if(!Og(e)||!(`schemaVersion`in e))return{ok:!1,response:Jg(`INVALID_CHANNEL_SURFACE`,`present expects a ChannelSurface object with schemaVersion: 1`)};if(e.schemaVersion!==1)return{ok:!1,response:Jg(`UNSUPPORTED_SCHEMA_VERSION`,`Unsupported ChannelSurface schemaVersion: ${String(e.schemaVersion)}`)};if(typeof e.title==`string`&&kg.test(e.title))return{ok:!1,response:Jg(`TITLE_UNICODE_ESCAPE_NOT_ALLOWED`,`Use actual Unicode characters in title, not escape sequences.`)};let n=Array.isArray(e.blocks)?{...e,blocks:e.blocks.flatMap(e=>{if(!Og(e)||e.type!==`markdown`)return[e];let t=Ng(e);return!t||!Pg(t)?[e]:Rg(e)})}:e;return{ok:!0,surface:n,options:Bg(n,t)}}const Xg={id:`__feedback`,type:`text-submit`,label:`💬 Feedback`,variant:`default`};function Zg(e){return!e.actions||e.actions.length===0||e.actions.some(e=>e.id===`__feedback`)?e:{...e,actions:[...e.actions,Xg]}}function Qg(e){return(e.actions?.length??0)>0||e.response?.required===!0?Dg.getAll().some(e=>e.id===`browser`):!1}async function $g(e,t={}){let n=Qg(e)?{...t,preferBrowser:!0}:t,r=Hg(e),i=Dg.select(r,n),a=i?.id===`browser`?Zg(r):r,o;if(o=i?await i.render(a,n):sg(a),t.compact){let{structuredContent:e,...t}=o;return t}return o}function Z(e,t=``){return typeof e==`string`?e:typeof e==`number`||typeof e==`boolean`?String(e):t}function e_(e){return{type:`kv`,value:e}}function t_(e){if(Array.isArray(e))return e}const n_=[{name:`summary`,description:`Title + markdown summary + optional metrics (pass/fail counts)`,expand(e){let t=Z(e.title,`Summary`),n=[{type:`heading`,value:t}],r=Z(e.summary);r&&n.push({type:`markdown`,value:r});let i=Number(e.passed)||0,a=Number(e.failed)||0;if(i>0||a>0){let e=[];i>0&&e.push({label:`Passed`,value:i,status:`success`}),a>0&&e.push({label:`Failed`,value:a,status:`error`}),n.push({type:`metrics`,value:e})}return{title:t,blocks:n}}},{name:`plan`,description:`Title + heading per step + checklist items`,expand(e){let t=Z(e.title,`Plan`),n=[{type:`heading`,value:t}],r=t_(e.steps);return r&&n.push({type:`checklist`,value:{items:r}}),{title:t,blocks:n}}},{name:`understanding`,description:`Title + markdown explanation + kv pairs`,expand(e){let t=Z(e.title,`Understanding`),n=[{type:`heading`,value:t}],r=Z(e.explanation);return r&&n.push({type:`markdown`,value:r}),e.details&&typeof e.details==`object`&&!Array.isArray(e.details)&&n.push(e_(e.details)),{title:t,blocks:n}}},{name:`bug-analyze`,description:`Title + heading + severity/status kv + code block + markdown`,expand(e){let t=Z(e.title,`Bug Analysis`),n=[{type:`heading`,value:t}],r={};e.severity&&(r.Severity=e.severity),e.status&&(r.Status=e.status),Object.keys(r).length>0&&n.push({type:`kv`,value:r});let i=Z(e.code);i&&n.push({type:`code`,value:i});let a=Z(e.analysis);return a&&n.push({type:`markdown`,value:a}),{title:t,blocks:n}}},{name:`task-done`,description:`Title + checklist of completed items + optional metrics`,expand(e){let t=Z(e.title,`Task Complete`),n=[{type:`heading`,value:t}],r=t_(e.items);r&&n.push({type:`checklist`,value:{items:r}});let i=e.completed,a=e.total;if(i!==void 0||a!==void 0){let e=[];i!==void 0&&e.push({label:`Completed`,value:Number(i)||i,status:`success`}),a!==void 0&&e.push({label:`Total`,value:Number(a)||a}),n.push({type:`metrics`,value:e})}return{title:t,blocks:n}}},{name:`review`,description:`Title + criteria checklist + annotation items + approval controls`,expand(e){let t=Z(e.title,`Review`),n=[{type:`heading`,value:t}],r=t_(e.criteria);r&&n.push({type:`checklist`,value:{items:r}});let i=e.annotations;Array.isArray(i)&&i.length>0&&n.push({type:`annotation`,value:i});let a=e.approval;return a&&typeof a==`object`?n.push({type:`approval`,value:a}):n.push({type:`actions`,value:[{type:`button`,id:`approve`,label:`Approve`,variant:`primary`},{type:`button`,id:`reject`,label:`Reject`,variant:`danger`}]}),{title:t,blocks:n}}},{name:`explore`,description:`Title + heading per finding + code blocks`,expand(e){let t=Z(e.title,`Exploration`),n=[{type:`heading`,value:t}],r=t_(e.findings);if(r)for(let e of r)n.push({type:`heading`,value:Z(e.heading,`Finding`)}),e.code&&n.push({type:`code`,value:e.code});return{title:t,blocks:n}}},{name:`decision`,description:`Title + kv for recommendation + comparison blocks per option`,expand(e){let t=Z(e.title,`Decision`),n=[{type:`heading`,value:t}];e.recommendation&&n.push({type:`kv`,value:{Recommendation:e.recommendation}});let r=t_(e.options);return r&&r.length>0&&n.push({type:`comparison`,value:r.map(e=>({title:Z(e.title,`Option`),items:Array.isArray(e.items)?e.items:[]}))}),{title:t,blocks:n}}}],r_=new Map;for(let e of n_)r_.set(e.name,e);function i_(e,t){let n=r_.get(e);return n?n.expand(t):null}const a_={h:`heading`,m:`markdown`,t:`table`,p:`paragraph`,c:`code`,s:`separator`,M:`metrics`,C:`chart`,T:`timeline`,g:`graph`,tr:`tree`,tl:`timeline`,cl:`checklist`,pr:`progress`,sb:`status-board`,kv:`kv`,ac:`actions`,di:`mermaid`},o_=/^(#{1,6})\s/,s_=/^(`{3,}|~{3,})/,c_=/^\|.+\|.+\|/m;function l_(e){let t=e.trim(),n=t.match(o_);if(n)return{type:`heading`,value:t.slice(n[0].length)};if(s_.test(t)){let e=t.indexOf(`
2981
- `),n=t.lastIndexOf(t[0]);return{type:`code`,value:e>=0?t.slice(e+1,n).trimEnd():t}}return c_.test(t)?{type:`table`,value:t}:{type:`markdown`,value:t}}function u_(e,t){let n=a_[e];if(!n)return null;switch(e){case`M`:return{type:`metrics`,value:t};case`C`:return{type:`chart`,value:t};case`T`:case`tl`:return{type:`timeline`,value:t};case`g`:return{type:`graph`,value:t};case`tr`:return{type:`tree`,value:t};case`cl`:return{type:`checklist`,value:t};case`pr`:return{type:`progress`,value:t};case`sb`:return{type:`status-board`,value:t};case`kv`:return{type:`kv`,value:t};case`ac`:return{type:`actions`,value:t};case`di`:return{type:`mermaid`,value:t};case`s`:return{type:`separator`,value:t||!0};default:return{type:n,value:typeof t==`string`?t:String(t??``)}}}function d_(e){if(typeof e==`string`){let t=l_(e);return{type:t.type,value:t.value}}if(Array.isArray(e)){let[t,n]=e;if(typeof t==`string`){let e=u_(t,n);if(e)return e}return{type:`markdown`,value:String(t??``)}}if(typeof e==`object`&&e){let{blockId:t,...n}=e;return n}return{type:`markdown`,value:String(e??``)}}function f_(e){return{title:e.title??``,blocks:Array.isArray(e.blocks)?e.blocks.map(d_):[]}}function p_(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function m_(e){return p_(e)&&typeof e.schemaVersion==`number`&&e.schemaVersion===1}function h_(e){return p_(e)&&typeof e.schemaVersion==`number`&&e.schemaVersion!==1}function g_(e){return e.schemaVersion===1?typeof e.title!=`string`||e.title.length===0?{ok:!1,error:{code:`MISSING_TITLE`,reason:`ChannelSurface requires a non-empty title`}}:e.blocks!==void 0&&!Array.isArray(e.blocks)?{ok:!1,error:{code:`INVALID_BLOCKS`,reason:`blocks must be an array of TypedBlock objects`}}:{ok:!0,surface:e}:{ok:!1,error:{code:`UNSUPPORTED_SCHEMA_VERSION`,reason:`Unsupported schemaVersion: ${String(e.schemaVersion)}`}}}function __(e){try{let t=re(e);return p_(t)?(t.schemaVersion===void 0&&(t.schemaVersion=1),v_(t)):{ok:!1,error:{code:`INVALID_RAW_INPUT`,reason:`raw field must contain a JSON object (ChannelSurface)`}}}catch(e){return{ok:!1,error:{code:`INVALID_RAW_JSON`,reason:`Failed to parse raw field: ${e.message}`,hint:`JSON repair attempted. Ensure the raw string contains a valid ChannelSurface object. Common LLM errors (newlines in strings, trailing commas) are auto-repaired.`}}}}function v_(e){if(Array.isArray(e)){if(e.length!==2)return{ok:!1,error:{code:`INVALID_PRESET_INPUT`,reason:`Preset input must be a [name, data] tuple`,hint:`Use [presetName, { title, ...fields }]`}};let[t,n]=e;if(typeof t!=`string`)return{ok:!1,error:{code:`INVALID_PRESET_INPUT`,reason:`Preset name must be a string`}};if(!p_(n))return{ok:!1,error:{code:`INVALID_PRESET_INPUT`,reason:`Preset data must be an object`}};let r=i_(t,n);return r?{ok:!0,surface:{schemaVersion:1,title:r.title,blocks:r.blocks}}:{ok:!1,error:{code:`UNKNOWN_PRESET`,reason:`Unknown preset: ${t}`,hint:`Available presets: summary, plan, understanding, bug-analyze, task-done, review, explore, decision`}}}if(h_(e))return{ok:!1,error:{code:`UNSUPPORTED_SCHEMA_VERSION`,reason:`Unsupported schemaVersion: ${String(e.schemaVersion)}`,hint:`Use schemaVersion: 1`}};if(m_(e))return g_(e);if(typeof e==`string`){let t=f_({blocks:[e]});return{ok:!0,surface:{schemaVersion:1,title:t.title||`Present`,blocks:t.blocks}}}if(p_(e)){if(typeof e.raw==`string`)return __(e.raw);if(!(`blocks`in e)&&!(`title`in e))return{ok:!1,error:{code:`INVALID_INPUT`,reason:`Expected a ChannelSurface object, preset tuple, or shorthand input`}};let t=f_(e);return{ok:!0,surface:{schemaVersion:1,title:t.title||`Present`,blocks:t.blocks}}}return{ok:!1,error:{code:`INVALID_INPUT`,reason:`Expected a ChannelSurface object, preset tuple, or shorthand input`}}}const y_=R.object({label:R.string(),value:R.string(),description:R.string().optional()}),b_=R.object({id:R.string().describe(`Unique action identifier`),type:R.enum([`button`,`select`,`multi-select`,`form-submit`,`text-submit`,`confirm`,`custom`]).describe(`Interactive action type`),label:R.string().describe(`Visible action label`),variant:R.enum([`primary`,`danger`,`default`]).optional(),options:R.array(y_).optional(),schema:R.record(R.string(),R.unknown()).optional()}),x_=R.object({type:R.string(),title:R.string().optional(),value:R.unknown().optional(),language:R.string().optional()}).catchall(R.unknown()),S_={schemaVersion:R.literal(1).describe(`ChannelSurface schema version. Must be 1.`),title:R.string().describe(`Surface title shown to the user.`),description:R.string().optional().describe(`Optional supporting copy for the surface.`),template:R.string().optional().describe(`Optional template id such as report@1.`),layout:R.object({maxWidth:R.string().optional(),padding:R.string().optional(),columns:R.number().optional()}).optional(),blocks:R.array(x_).optional().describe(`Typed block content for the surface.`),data:R.unknown().optional().describe(`Template data payload, if the template expands data.`),actions:R.array(b_).optional().describe(`Interactive actions. Presence triggers browser transport.`),response:R.object({timeout:R.number().optional(),required:R.boolean().optional()}).optional(),metadata:R.object({surfaceId:R.string().optional(),createdAt:R.string().optional(),source:R.string().optional()}).optional(),colorScheme:R.enum([`light`,`dark`,`auto`]).optional(),lang:R.string().optional(),dir:R.enum([`ltr`,`rtl`,`auto`]).optional(),raw:R.string().optional().describe(`Raw JSON string with auto-repair. Accepts common LLM JSON errors (unescaped newlines in strings, trailing commas). Use for complex payloads with mermaid/code/markdown blocks.`)};R.object({surfaceId:R.string(),actionId:R.string(),actionType:R.enum([`button`,`select`,`multi-select`,`form-submit`,`text-submit`,`confirm`,`custom`]),value:R.unknown().optional(),formData:R.record(R.string(),R.unknown()).optional(),selection:R.union([R.string(),R.array(R.string())]).optional(),label:R.string().optional(),timestamp:R.string(),sourceTransport:R.enum([`mcp-app`,`browser`,`export`])});function C_(e){let t=e.server?.getClientCapabilities?.();if(!t)return`unknown`;let n=yr(t);return!n||Array.isArray(n.mimeTypes)&&n.mimeTypes.length>0&&!n.mimeTypes.includes(vr)?`unsupported`:`supported`}const w_=[{name:`summary`,description:`Title + markdown summary + optional metrics (pass/fail counts)`,inputSchema:{type:`object`,properties:{title:{type:`string`,description:`Section heading`},summary:{type:`string`,description:`Free-form markdown summary`},passed:{type:`number`,description:`Pass count for metrics`},failed:{type:`number`,description:`Fail count for metrics`}},required:[`title`]},example:JSON.stringify({title:`Build Summary`,summary:`All tests passed.`,passed:42,failed:0}),expandsTo:`blocks: [heading, markdown, metrics]`},{name:`plan`,description:`Title + heading per step + checklist items`,inputSchema:{type:`object`,properties:{title:{type:`string`},steps:{type:`array`,items:{type:`object`,properties:{label:{type:`string`},checked:{type:`boolean`}}}}},required:[`title`]},example:JSON.stringify({title:`Sprint Plan`,steps:[{label:`Write tests`,checked:!1},{label:`Deploy`,checked:!1}]}),expandsTo:`blocks: [heading, checklist]`},{name:`understanding`,description:`Title + markdown explanation + kv pairs`,inputSchema:{type:`object`,properties:{title:{type:`string`},explanation:{type:`string`},details:{type:`object`,additionalProperties:{type:`string`}}},required:[`title`,`explanation`]},example:JSON.stringify({title:`Architecture Overview`,explanation:`The system uses microservices.`,details:{Language:`TypeScript`,Runtime:`Node`}}),expandsTo:`blocks: [heading, markdown, kv]`},{name:`bug-analyze`,description:`Title + heading + severity/status kv + code block + markdown`,inputSchema:{type:`object`,properties:{title:{type:`string`},severity:{type:`string`},status:{type:`string`},code:{type:`string`},analysis:{type:`string`}},required:[`title`,`severity`,`status`]},example:JSON.stringify({title:`Null pointer in auth`,severity:`high`,status:`open`,code:`const x = obj.prop;`,analysis:`obj may be null when token missing.`}),expandsTo:`blocks: [heading, kv, code, markdown]`},{name:`task-done`,description:`Title + checklist of completed items + optional metrics`,inputSchema:{type:`object`,properties:{title:{type:`string`},items:{type:`array`,items:{type:`object`,properties:{label:{type:`string`},checked:{type:`boolean`}}}},completed:{type:`number`},total:{type:`number`}},required:[`title`,`items`]},example:JSON.stringify({title:`PR #42 Done`,items:[{label:`Lint pass`,checked:!0},{label:`Tests pass`,checked:!0}],completed:2,total:2}),expandsTo:`blocks: [heading, checklist, metrics]`},{name:`review`,description:`Title + criteria checklist + approval actions`,inputSchema:{type:`object`,properties:{title:{type:`string`,description:`Review title`},criteria:{type:`array`,description:`Checklist criteria items`,items:{type:`object`,properties:{label:{type:`string`},checked:{type:`boolean`}}}},annotations:{type:`array`,description:`Optional annotation items`,items:{type:`object`,properties:{label:{type:`string`},description:{type:`string`},severity:{type:`string`}}}},approval:{type:`object`,description:`Optional approval config`,properties:{prompt:{type:`string`},options:{type:`array`,items:{type:`object`,properties:{label:{type:`string`},value:{type:`string`}}}}}}},required:[`title`,`criteria`]},example:JSON.stringify({title:`Code Review`,criteria:[{label:`Tests included`,checked:!0},{label:`No regressions`,checked:!1}]}),expandsTo:`blocks: [heading, checklist] + actions: [approve, reject]`},{name:`explore`,description:`Title + heading per finding + code blocks`,inputSchema:{type:`object`,properties:{title:{type:`string`},findings:{type:`array`,items:{type:`object`,properties:{heading:{type:`string`},code:{type:`string`}}}}},required:[`title`,`findings`]},example:JSON.stringify({title:`Codebase Exploration`,findings:[{heading:`Auth flow`,code:`function login()`},{heading:`API routes`,code:`router.get("/api")`}]}),expandsTo:`blocks: [heading, code] per finding`},{name:`decision`,description:`Title + kv for recommendation + comparison blocks per option`,inputSchema:{type:`object`,properties:{title:{type:`string`},recommendation:{type:`string`},options:{type:`array`,items:{type:`object`,properties:{title:{type:`string`},items:{type:`array`,items:{type:`string`}}}}}},required:[`title`,`recommendation`]},example:JSON.stringify({title:`DB Choice`,recommendation:`PostgreSQL`,options:[{title:`Postgres`,items:[`ACID`,`Rich types`]},{title:`Mongo`,items:[`Schema-less`,`Horizontal`]}]}),expandsTo:`blocks: [heading, kv, comparison]`}];function T_(e,t){let n=W(`present`);xr(e,`present`,{title:n.title,description:"Render a ChannelSurface. Required: schemaVersion: 1, title. Supports blocks, template+data, named presets, and raw JSON string with auto-repair. Use `raw` for complex payloads (mermaid, code, many blocks) — common LLM JSON errors are auto-fixed. Actions use browser transport. Resources: aikit://schemas/channel-surface (schema+blocks), aikit://present/presets (presets), aikit://present/templates (viewers).",inputSchema:S_,annotations:n.annotations,_meta:rg(hg)},J(`present`,async(t,n)=>{let r=v_(t);if(!r.ok)return Jg(r.error.code,r.error.reason,void 0,`Present`);let i=Yg(r.surface,n);if(!i.ok)return i.response;let a=C_(e);return await $g(i.surface,{...i.options,preferBrowser:i.options.preferBrowser||a===`unsupported`})}));try{let t=new qn(hg,{list:void 0});e.registerResource(`Present View`,t,{description:`AI Kit present tool viewer`},async(e,t,n)=>{let r=Array.isArray(t.id)?t.id[0]:t.id,i=r?Tg(r):void 0;return{contents:[{uri:e.href,mimeType:vr,_meta:ig(),text:i??Sg()??`<html><body><p>No content generated yet. Call the present tool first.</p></body></html>`}]}})}catch{}try{e.registerResource(`Present App`,mg,{description:`AI Kit present app - entry point`},async()=>({contents:[{uri:mg,mimeType:vr,_meta:ig(),text:Sg()||`<html><body><p>No content generated yet. Call the present tool first.</p></body></html>`}]}))}catch{}try{e.registerResource(`present-templates`,`aikit://present/templates`,{description:`List all registered present viewer templates with their input schemas`},async()=>{let e=vm().map(e=>({id:e.id,label:e.label,description:e.description,transports:e.supportedTransports,inputSchema:e.inputSchema}));return{contents:[{uri:`aikit://present/templates`,mimeType:`application/json`,text:JSON.stringify(e,null,2)}]}})}catch{}try{e.registerResource(`present-presets`,`aikit://present/presets`,{description:`List all registered present presets with input schemas and examples`},async()=>({contents:[{uri:`aikit://present/presets`,mimeType:`application/json`,text:JSON.stringify(w_,null,2)}]}))}catch{}}const E_=M(`tools`);function D_(e,t){let n=new ar({structure:new sr,dependencies:new nr,symbols:new cr,patterns:new or,entryPoints:new ir,diagrams:new rr}),r=W(`produce_knowledge`);e.registerTool(`produce_knowledge`,{title:r.title,description:`Run automated codebase analysis and produce synthesis instructions. Executes Tier 1 deterministic analyzers, then returns structured baselines and instructions for you to synthesize knowledge using remember.`,inputSchema:{scope:R.string().optional().describe(`Root path to analyze (defaults to workspace root)`),aspects:R.array(R.enum([`all`,`structure`,`dependencies`,`symbols`,`patterns`,`entry-points`,`diagrams`])).default([`all`]).describe(`Which analysis aspects to run`)},annotations:r.annotations},J(`produce_knowledge`,async({scope:e,aspects:r},i)=>{let a;try{a=Zc(i).createTask(`Produce Knowledge`,3),a.progress(0,`Running analyzers`);let o=e??`.`;E_.info(`Running knowledge production`,{rootPath:o,aspects:r});let s=await n.runExtraction(o,r);try{let e=t?.onboardDir??``;if(!e)throw E_.warn(`onboardDir not configured — skipping artifact persistence.`),Error(`skip`);Ce(e,{recursive:!0});let n=`<!-- Generated by produce_knowledge at ${new Date().toISOString()} -->\n\n`;for(let[t,r]of Object.entries(s))r&&typeof r==`string`&&ke(I(e,`${t}.md`),n+r,`utf-8`);E_.info(`Knowledge persisted to .ai/context/`,{files:Object.keys(s).length})}catch(e){E_.warn(`Failed to persist knowledge to .ai/context/`,{error:N(e)})}a.progress(1,`Synthesizing results`);let c=n.buildSynthesisInstructions(s,r);return a.complete(`Knowledge production complete`),{content:[{type:`text`,text:c+`
2979
+ <\/script>`;return e.includes(`</body>`)?e.replace(`</body>`,`${t}</body>`):`${e}${t}`}function Jg(e,t){return[`<!DOCTYPE html>`,`<html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1">`,`<title>Error — ${Y(e)}</title>`,`<style>`,` * { box-sizing: border-box; margin: 0; padding: 0; }`,` body { font-family: system-ui, -apple-system, sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: #fafafa; color: #333; }`,` .error-card { max-width: 560px; width: 100%; padding: 2.5rem; border-radius: 1rem; background: #fff; border: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }`,` .error-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #dc2626; background: #fef2f2; border: 1px solid #fecaca; border-radius: 0.375rem; padding: 0.25rem 0.625rem; margin-bottom: 1rem; }`,` .error-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: #111; }`,` .error-message { font-size: 0.875rem; line-height: 1.6; color: #6b7280; white-space: pre-wrap; word-break: break-word; }`,`</style></head><body>`,`<div class="error-card">`,` <span class="error-badge">Render Error</span>`,` <h1 class="error-title">${Y(e)}</h1>`,` <p class="error-message">${Y(t)}</p>`,`</div>`,`</body></html>`].join(`
2980
+ `)}function Yg(e,t,n,r){return wg(Jg(r??`Present`,t)),{content:[{type:`text`,text:`[ERROR:VALIDATION] ${t}`}],isError:!0}}function Xg(e,t){if(!kg(e)||!(`schemaVersion`in e))return{ok:!1,response:Yg(`INVALID_CHANNEL_SURFACE`,`present expects a ChannelSurface object with schemaVersion: 1`)};if(e.schemaVersion!==1)return{ok:!1,response:Yg(`UNSUPPORTED_SCHEMA_VERSION`,`Unsupported ChannelSurface schemaVersion: ${String(e.schemaVersion)}`)};if(typeof e.title==`string`&&Ag.test(e.title))return{ok:!1,response:Yg(`TITLE_UNICODE_ESCAPE_NOT_ALLOWED`,`Use actual Unicode characters in title, not escape sequences.`)};let n=Array.isArray(e.blocks)?{...e,blocks:e.blocks.flatMap(e=>{if(!kg(e)||e.type!==`markdown`)return[e];let t=Pg(e);return!t||!Fg(t)?[e]:zg(e)})}:e;return{ok:!0,surface:n,options:Vg(n,t)}}const Zg={id:`__feedback`,type:`text-submit`,label:`💬 Feedback`,variant:`default`};function Qg(e){return!e.actions||e.actions.length===0||e.actions.some(e=>e.id===`__feedback`)?e:{...e,actions:[...e.actions,Zg]}}function $g(e){return(e.actions?.length??0)>0||e.response?.required===!0?Og.getAll().some(e=>e.id===`browser`):!1}async function e_(e,t={}){let n=$g(e)?{...t,preferBrowser:!0}:t,r=Ug(e),i=Og.select(r,n),a=i?.id===`browser`?Qg(r):r,o;if(o=i?await i.render(a,n):cg(a),t.compact){let{structuredContent:e,...t}=o;return t}return o}function Z(e,t=``){return typeof e==`string`?e:typeof e==`number`||typeof e==`boolean`?String(e):t}function t_(e){return{type:`kv`,value:e}}function n_(e){if(Array.isArray(e))return e}const r_=[{name:`summary`,description:`Title + markdown summary + optional metrics (pass/fail counts)`,expand(e){let t=Z(e.title,`Summary`),n=[{type:`heading`,value:t}],r=Z(e.summary);r&&n.push({type:`markdown`,value:r});let i=Number(e.passed)||0,a=Number(e.failed)||0;if(i>0||a>0){let e=[];i>0&&e.push({label:`Passed`,value:i,status:`success`}),a>0&&e.push({label:`Failed`,value:a,status:`error`}),n.push({type:`metrics`,value:e})}return{title:t,blocks:n}}},{name:`plan`,description:`Title + heading per step + checklist items`,expand(e){let t=Z(e.title,`Plan`),n=[{type:`heading`,value:t}],r=n_(e.steps);return r&&n.push({type:`checklist`,value:{items:r}}),{title:t,blocks:n}}},{name:`understanding`,description:`Title + markdown explanation + kv pairs`,expand(e){let t=Z(e.title,`Understanding`),n=[{type:`heading`,value:t}],r=Z(e.explanation);return r&&n.push({type:`markdown`,value:r}),e.details&&typeof e.details==`object`&&!Array.isArray(e.details)&&n.push(t_(e.details)),{title:t,blocks:n}}},{name:`bug-analyze`,description:`Title + heading + severity/status kv + code block + markdown`,expand(e){let t=Z(e.title,`Bug Analysis`),n=[{type:`heading`,value:t}],r={};e.severity&&(r.Severity=e.severity),e.status&&(r.Status=e.status),Object.keys(r).length>0&&n.push({type:`kv`,value:r});let i=Z(e.code);i&&n.push({type:`code`,value:i});let a=Z(e.analysis);return a&&n.push({type:`markdown`,value:a}),{title:t,blocks:n}}},{name:`task-done`,description:`Title + checklist of completed items + optional metrics`,expand(e){let t=Z(e.title,`Task Complete`),n=[{type:`heading`,value:t}],r=n_(e.items);r&&n.push({type:`checklist`,value:{items:r}});let i=e.completed,a=e.total;if(i!==void 0||a!==void 0){let e=[];i!==void 0&&e.push({label:`Completed`,value:Number(i)||i,status:`success`}),a!==void 0&&e.push({label:`Total`,value:Number(a)||a}),n.push({type:`metrics`,value:e})}return{title:t,blocks:n}}},{name:`review`,description:`Title + criteria checklist + annotation items + approval controls`,expand(e){let t=Z(e.title,`Review`),n=[{type:`heading`,value:t}],r=n_(e.criteria);r&&n.push({type:`checklist`,value:{items:r}});let i=e.annotations;Array.isArray(i)&&i.length>0&&n.push({type:`annotation`,value:i});let a=e.approval;return a&&typeof a==`object`?n.push({type:`approval`,value:a}):n.push({type:`actions`,value:[{type:`button`,id:`approve`,label:`Approve`,variant:`primary`},{type:`button`,id:`reject`,label:`Reject`,variant:`danger`}]}),{title:t,blocks:n}}},{name:`explore`,description:`Title + heading per finding + code blocks`,expand(e){let t=Z(e.title,`Exploration`),n=[{type:`heading`,value:t}],r=n_(e.findings);if(r)for(let e of r)n.push({type:`heading`,value:Z(e.heading,`Finding`)}),e.code&&n.push({type:`code`,value:e.code});return{title:t,blocks:n}}},{name:`decision`,description:`Title + kv for recommendation + comparison blocks per option`,expand(e){let t=Z(e.title,`Decision`),n=[{type:`heading`,value:t}];e.recommendation&&n.push({type:`kv`,value:{Recommendation:e.recommendation}});let r=n_(e.options);return r&&r.length>0&&n.push({type:`comparison`,value:r.map(e=>({title:Z(e.title,`Option`),items:Array.isArray(e.items)?e.items:[]}))}),{title:t,blocks:n}}}],i_=new Map;for(let e of r_)i_.set(e.name,e);function a_(e,t){let n=i_.get(e);return n?n.expand(t):null}const o_={h:`heading`,m:`markdown`,t:`table`,p:`paragraph`,c:`code`,s:`separator`,M:`metrics`,C:`chart`,T:`timeline`,g:`graph`,tr:`tree`,tl:`timeline`,cl:`checklist`,pr:`progress`,sb:`status-board`,kv:`kv`,ac:`actions`,di:`mermaid`},s_=/^(#{1,6})\s/,c_=/^(`{3,}|~{3,})/,l_=/^\|.+\|.+\|/m;function u_(e){let t=e.trim(),n=t.match(s_);if(n)return{type:`heading`,value:t.slice(n[0].length)};if(c_.test(t)){let e=t.indexOf(`
2981
+ `),n=t.lastIndexOf(t[0]);return{type:`code`,value:e>=0?t.slice(e+1,n).trimEnd():t}}return l_.test(t)?{type:`table`,value:t}:{type:`markdown`,value:t}}function d_(e,t){let n=o_[e];if(!n)return null;switch(e){case`M`:return{type:`metrics`,value:t};case`C`:return{type:`chart`,value:t};case`T`:case`tl`:return{type:`timeline`,value:t};case`g`:return{type:`graph`,value:t};case`tr`:return{type:`tree`,value:t};case`cl`:return{type:`checklist`,value:t};case`pr`:return{type:`progress`,value:t};case`sb`:return{type:`status-board`,value:t};case`kv`:return{type:`kv`,value:t};case`ac`:return{type:`actions`,value:t};case`di`:return{type:`mermaid`,value:t};case`s`:return{type:`separator`,value:t||!0};default:return{type:n,value:typeof t==`string`?t:String(t??``)}}}function f_(e){if(typeof e==`string`){let t=u_(e);return{type:t.type,value:t.value}}if(Array.isArray(e)){let[t,n]=e;if(typeof t==`string`){let e=d_(t,n);if(e)return e}return{type:`markdown`,value:String(t??``)}}if(typeof e==`object`&&e){let{blockId:t,...n}=e;return n}return{type:`markdown`,value:String(e??``)}}function p_(e){return{title:e.title??``,blocks:Array.isArray(e.blocks)?e.blocks.map(f_):[]}}function m_(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function h_(e){return m_(e)&&typeof e.schemaVersion==`number`&&e.schemaVersion===1}function g_(e){return m_(e)&&typeof e.schemaVersion==`number`&&e.schemaVersion!==1}function __(e){return e.schemaVersion===1?typeof e.title!=`string`||e.title.length===0?{ok:!1,error:{code:`MISSING_TITLE`,reason:`ChannelSurface requires a non-empty title`}}:e.blocks!==void 0&&!Array.isArray(e.blocks)?{ok:!1,error:{code:`INVALID_BLOCKS`,reason:`blocks must be an array of TypedBlock objects`}}:{ok:!0,surface:e}:{ok:!1,error:{code:`UNSUPPORTED_SCHEMA_VERSION`,reason:`Unsupported schemaVersion: ${String(e.schemaVersion)}`}}}function v_(e){try{let t=re(e);return m_(t)?(t.schemaVersion===void 0&&(t.schemaVersion=1),y_(t)):{ok:!1,error:{code:`INVALID_RAW_INPUT`,reason:`raw field must contain a JSON object (ChannelSurface)`}}}catch(e){return{ok:!1,error:{code:`INVALID_RAW_JSON`,reason:`Failed to parse raw field: ${e.message}`,hint:`JSON repair attempted. Ensure the raw string contains a valid ChannelSurface object. Common LLM errors (newlines in strings, trailing commas) are auto-repaired.`}}}}function y_(e){if(Array.isArray(e)){if(e.length!==2)return{ok:!1,error:{code:`INVALID_PRESET_INPUT`,reason:`Preset input must be a [name, data] tuple`,hint:`Use [presetName, { title, ...fields }]`}};let[t,n]=e;if(typeof t!=`string`)return{ok:!1,error:{code:`INVALID_PRESET_INPUT`,reason:`Preset name must be a string`}};if(!m_(n))return{ok:!1,error:{code:`INVALID_PRESET_INPUT`,reason:`Preset data must be an object`}};let r=a_(t,n);return r?{ok:!0,surface:{schemaVersion:1,title:r.title,blocks:r.blocks}}:{ok:!1,error:{code:`UNKNOWN_PRESET`,reason:`Unknown preset: ${t}`,hint:`Available presets: summary, plan, understanding, bug-analyze, task-done, review, explore, decision`}}}if(g_(e))return{ok:!1,error:{code:`UNSUPPORTED_SCHEMA_VERSION`,reason:`Unsupported schemaVersion: ${String(e.schemaVersion)}`,hint:`Use schemaVersion: 1`}};if(h_(e))return __(e);if(typeof e==`string`){let t=p_({blocks:[e]});return{ok:!0,surface:{schemaVersion:1,title:t.title||`Present`,blocks:t.blocks}}}if(m_(e)){if(typeof e.raw==`string`)return v_(e.raw);if(!(`blocks`in e)&&!(`title`in e))return{ok:!1,error:{code:`INVALID_INPUT`,reason:`Expected a ChannelSurface object, preset tuple, or shorthand input`}};let t=p_(e);return{ok:!0,surface:{schemaVersion:1,title:t.title||`Present`,blocks:t.blocks}}}return{ok:!1,error:{code:`INVALID_INPUT`,reason:`Expected a ChannelSurface object, preset tuple, or shorthand input`}}}const b_=R.object({label:R.string(),value:R.string(),description:R.string().optional()}),x_=R.object({id:R.string().describe(`Unique action identifier`),type:R.enum([`button`,`select`,`multi-select`,`form-submit`,`text-submit`,`confirm`,`custom`]).describe(`Interactive action type`),label:R.string().describe(`Visible action label`),variant:R.enum([`primary`,`danger`,`default`]).optional(),options:R.array(b_).optional(),schema:R.record(R.string(),R.unknown()).optional()}),S_=R.object({type:R.string(),title:R.string().optional(),value:R.unknown().optional(),language:R.string().optional()}).catchall(R.unknown()),C_={schemaVersion:R.literal(1).describe(`ChannelSurface schema version. Must be 1.`),title:R.string().describe(`Surface title shown to the user.`),description:R.string().optional().describe(`Optional supporting copy for the surface.`),template:R.string().optional().describe(`Optional template id such as report@1.`),layout:R.object({maxWidth:R.string().optional(),padding:R.string().optional(),columns:R.number().optional()}).optional(),blocks:R.array(S_).optional().describe(`Typed block content for the surface.`),data:R.unknown().optional().describe(`Template data payload, if the template expands data.`),actions:R.array(x_).optional().describe(`Interactive actions. Presence triggers browser transport.`),response:R.object({timeout:R.number().optional(),required:R.boolean().optional()}).optional(),metadata:R.object({surfaceId:R.string().optional(),createdAt:R.string().optional(),source:R.string().optional()}).optional(),colorScheme:R.enum([`light`,`dark`,`auto`]).optional(),lang:R.string().optional(),dir:R.enum([`ltr`,`rtl`,`auto`]).optional(),raw:R.string().optional().describe(`Raw JSON string with auto-repair. Accepts common LLM JSON errors (unescaped newlines in strings, trailing commas). Use for complex payloads with mermaid/code/markdown blocks.`)};R.object({surfaceId:R.string(),actionId:R.string(),actionType:R.enum([`button`,`select`,`multi-select`,`form-submit`,`text-submit`,`confirm`,`custom`]),value:R.unknown().optional(),formData:R.record(R.string(),R.unknown()).optional(),selection:R.union([R.string(),R.array(R.string())]).optional(),label:R.string().optional(),timestamp:R.string(),sourceTransport:R.enum([`mcp-app`,`browser`,`export`])});function w_(e){let t=e.server?.getClientCapabilities?.();if(!t)return`unknown`;let n=yr(t);return!n||Array.isArray(n.mimeTypes)&&n.mimeTypes.length>0&&!n.mimeTypes.includes(vr)?`unsupported`:`supported`}const T_=[{name:`summary`,description:`Title + markdown summary + optional metrics (pass/fail counts)`,inputSchema:{type:`object`,properties:{title:{type:`string`,description:`Section heading`},summary:{type:`string`,description:`Free-form markdown summary`},passed:{type:`number`,description:`Pass count for metrics`},failed:{type:`number`,description:`Fail count for metrics`}},required:[`title`]},example:JSON.stringify({title:`Build Summary`,summary:`All tests passed.`,passed:42,failed:0}),expandsTo:`blocks: [heading, markdown, metrics]`},{name:`plan`,description:`Title + heading per step + checklist items`,inputSchema:{type:`object`,properties:{title:{type:`string`},steps:{type:`array`,items:{type:`object`,properties:{label:{type:`string`},checked:{type:`boolean`}}}}},required:[`title`]},example:JSON.stringify({title:`Sprint Plan`,steps:[{label:`Write tests`,checked:!1},{label:`Deploy`,checked:!1}]}),expandsTo:`blocks: [heading, checklist]`},{name:`understanding`,description:`Title + markdown explanation + kv pairs`,inputSchema:{type:`object`,properties:{title:{type:`string`},explanation:{type:`string`},details:{type:`object`,additionalProperties:{type:`string`}}},required:[`title`,`explanation`]},example:JSON.stringify({title:`Architecture Overview`,explanation:`The system uses microservices.`,details:{Language:`TypeScript`,Runtime:`Node`}}),expandsTo:`blocks: [heading, markdown, kv]`},{name:`bug-analyze`,description:`Title + heading + severity/status kv + code block + markdown`,inputSchema:{type:`object`,properties:{title:{type:`string`},severity:{type:`string`},status:{type:`string`},code:{type:`string`},analysis:{type:`string`}},required:[`title`,`severity`,`status`]},example:JSON.stringify({title:`Null pointer in auth`,severity:`high`,status:`open`,code:`const x = obj.prop;`,analysis:`obj may be null when token missing.`}),expandsTo:`blocks: [heading, kv, code, markdown]`},{name:`task-done`,description:`Title + checklist of completed items + optional metrics`,inputSchema:{type:`object`,properties:{title:{type:`string`},items:{type:`array`,items:{type:`object`,properties:{label:{type:`string`},checked:{type:`boolean`}}}},completed:{type:`number`},total:{type:`number`}},required:[`title`,`items`]},example:JSON.stringify({title:`PR #42 Done`,items:[{label:`Lint pass`,checked:!0},{label:`Tests pass`,checked:!0}],completed:2,total:2}),expandsTo:`blocks: [heading, checklist, metrics]`},{name:`review`,description:`Title + criteria checklist + approval actions`,inputSchema:{type:`object`,properties:{title:{type:`string`,description:`Review title`},criteria:{type:`array`,description:`Checklist criteria items`,items:{type:`object`,properties:{label:{type:`string`},checked:{type:`boolean`}}}},annotations:{type:`array`,description:`Optional annotation items`,items:{type:`object`,properties:{label:{type:`string`},description:{type:`string`},severity:{type:`string`}}}},approval:{type:`object`,description:`Optional approval config`,properties:{prompt:{type:`string`},options:{type:`array`,items:{type:`object`,properties:{label:{type:`string`},value:{type:`string`}}}}}}},required:[`title`,`criteria`]},example:JSON.stringify({title:`Code Review`,criteria:[{label:`Tests included`,checked:!0},{label:`No regressions`,checked:!1}]}),expandsTo:`blocks: [heading, checklist] + actions: [approve, reject]`},{name:`explore`,description:`Title + heading per finding + code blocks`,inputSchema:{type:`object`,properties:{title:{type:`string`},findings:{type:`array`,items:{type:`object`,properties:{heading:{type:`string`},code:{type:`string`}}}}},required:[`title`,`findings`]},example:JSON.stringify({title:`Codebase Exploration`,findings:[{heading:`Auth flow`,code:`function login()`},{heading:`API routes`,code:`router.get("/api")`}]}),expandsTo:`blocks: [heading, code] per finding`},{name:`decision`,description:`Title + kv for recommendation + comparison blocks per option`,inputSchema:{type:`object`,properties:{title:{type:`string`},recommendation:{type:`string`},options:{type:`array`,items:{type:`object`,properties:{title:{type:`string`},items:{type:`array`,items:{type:`string`}}}}}},required:[`title`,`recommendation`]},example:JSON.stringify({title:`DB Choice`,recommendation:`PostgreSQL`,options:[{title:`Postgres`,items:[`ACID`,`Rich types`]},{title:`Mongo`,items:[`Schema-less`,`Horizontal`]}]}),expandsTo:`blocks: [heading, kv, comparison]`}];function E_(e,t){let n=W(`present`);xr(e,`present`,{title:n.title,description:"Render a ChannelSurface. Required: schemaVersion: 1, title. Supports blocks, template+data, named presets, and raw JSON string with auto-repair. Use `raw` for complex payloads (mermaid, code, many blocks) — common LLM JSON errors are auto-fixed. Actions use browser transport. Resources: aikit://schemas/channel-surface (schema+blocks), aikit://present/presets (presets), aikit://present/templates (viewers).",inputSchema:C_,annotations:n.annotations,_meta:ig(gg)},J(`present`,async(t,n)=>{let r=y_(t);if(!r.ok)return Yg(r.error.code,r.error.reason,void 0,`Present`);let i=Xg(r.surface,n);if(!i.ok)return i.response;let a=w_(e);return await e_(i.surface,{...i.options,preferBrowser:i.options.preferBrowser||a===`unsupported`})}));try{let t=new qn(gg,{list:void 0});e.registerResource(`Present View`,t,{description:`AI Kit present tool viewer`},async(e,t,n)=>{let r=Array.isArray(t.id)?t.id[0]:t.id,i=r?Eg(r):void 0;return{contents:[{uri:e.href,mimeType:vr,_meta:ag(),text:i??Cg()??`<html><body><p>No content generated yet. Call the present tool first.</p></body></html>`}]}})}catch{}try{e.registerResource(`Present App`,hg,{description:`AI Kit present app - entry point`},async()=>({contents:[{uri:hg,mimeType:vr,_meta:ag(),text:Cg()||`<html><body><p>No content generated yet. Call the present tool first.</p></body></html>`}]}))}catch{}try{e.registerResource(`present-templates`,`aikit://present/templates`,{description:`List all registered present viewer templates with their input schemas`},async()=>{let e=ym().map(e=>({id:e.id,label:e.label,description:e.description,transports:e.supportedTransports,inputSchema:e.inputSchema}));return{contents:[{uri:`aikit://present/templates`,mimeType:`application/json`,text:JSON.stringify(e,null,2)}]}})}catch{}try{e.registerResource(`present-presets`,`aikit://present/presets`,{description:`List all registered present presets with input schemas and examples`},async()=>({contents:[{uri:`aikit://present/presets`,mimeType:`application/json`,text:JSON.stringify(T_,null,2)}]}))}catch{}}const D_=M(`tools`);function O_(e,t){let n=new ar({structure:new sr,dependencies:new nr,symbols:new cr,patterns:new or,entryPoints:new ir,diagrams:new rr}),r=W(`produce_knowledge`);e.registerTool(`produce_knowledge`,{title:r.title,description:`Run automated codebase analysis and produce synthesis instructions. Executes Tier 1 deterministic analyzers, then returns structured baselines and instructions for you to synthesize knowledge using remember.`,inputSchema:{scope:R.string().optional().describe(`Root path to analyze (defaults to workspace root)`),aspects:R.array(R.enum([`all`,`structure`,`dependencies`,`symbols`,`patterns`,`entry-points`,`diagrams`])).default([`all`]).describe(`Which analysis aspects to run`)},annotations:r.annotations},J(`produce_knowledge`,async({scope:e,aspects:r},i)=>{let a;try{a=Qc(i).createTask(`Produce Knowledge`,3),a.progress(0,`Running analyzers`);let o=e??`.`;D_.info(`Running knowledge production`,{rootPath:o,aspects:r});let s=await n.runExtraction(o,r);try{let e=t?.onboardDir??``;if(!e)throw D_.warn(`onboardDir not configured — skipping artifact persistence.`),Error(`skip`);Ce(e,{recursive:!0});let n=`<!-- Generated by produce_knowledge at ${new Date().toISOString()} -->\n\n`;for(let[t,r]of Object.entries(s))r&&typeof r==`string`&&ke(I(e,`${t}.md`),n+r,`utf-8`);D_.info(`Knowledge persisted to .ai/context/`,{files:Object.keys(s).length})}catch(e){D_.warn(`Failed to persist knowledge to .ai/context/`,{error:N(e)})}a.progress(1,`Synthesizing results`);let c=n.buildSynthesisInstructions(s,r);return a.complete(`Knowledge production complete`),{content:[{type:`text`,text:c+`
2982
2982
 
2983
2983
  ---
2984
- _Next: Review the baselines above and use \`remember\` to store synthesized knowledge entries._`}]}}catch(e){return a?.fail?.(`Production failed`),E_.error(`Knowledge production failed`,N(e)),q(`INTERNAL`,`Knowledge production failed: ${e instanceof Error?e.message:String(e)}`)}}))}const O_=M(`tools`);function k_(e,t,n,r,i,a,o){let s=W(`reindex`);e.registerTool(`reindex`,{title:s.title,description:`Trigger re-indexing of the AI Kit index. Can do incremental (only changed files) or full re-index. When smart indexing is active, use force: true to override the automatic trickle indexer.`,inputSchema:{full:R.boolean().default(!1).describe(`If true, force full re-index ignoring file hashes`),force:R.boolean().default(!1).describe(`If true, override smart indexing guard and run reindex anyway`)},annotations:s.annotations},J(`reindex`,async({full:e,force:s},c)=>{try{if(t.isIndexing)return{content:[{type:`text`,text:`## Reindex Already in Progress
2984
+ _Next: Review the baselines above and use \`remember\` to store synthesized knowledge entries._`}]}}catch(e){return a?.fail?.(`Production failed`),D_.error(`Knowledge production failed`,N(e)),q(`INTERNAL`,`Knowledge production failed: ${e instanceof Error?e.message:String(e)}`)}}))}const k_=M(`tools`);function A_(e,t,n,r,i,a,o){let s=W(`reindex`);e.registerTool(`reindex`,{title:s.title,description:`Trigger re-indexing of the AI Kit index. Can do incremental (only changed files) or full re-index. When smart indexing is active, use force: true to override the automatic trickle indexer.`,inputSchema:{full:R.boolean().default(!1).describe(`If true, force full re-index ignoring file hashes`),force:R.boolean().default(!1).describe(`If true, override smart indexing guard and run reindex anyway`)},annotations:s.annotations},J(`reindex`,async({full:e,force:s},c)=>{try{if(t.isIndexing)return{content:[{type:`text`,text:`## Reindex Already in Progress
2985
2985
 
2986
2986
  A reindex operation is currently running. Search and other tools continue to work with existing data. Use \`status({})\` to check when it completes.`}]};if(o===`smart`&&!s)return{content:[{type:`text`,text:`## Smart Indexing Active
2987
2987
 
@@ -2989,47 +2989,47 @@ Smart indexing (trickle mode) is enabled — files are automatically indexed as
2989
2989
 
2990
2990
  **If the index is severely outdated**, use \`reindex({ force: true })\` to override.
2991
2991
 
2992
- Use \`status({})\` to check smart indexing queue status.`}]};let l=Zc(c).createTask(`Reindex`,1);l.progress(0,`Starting ${e?`full`:`incremental`} reindex`),O_.info(`Starting background re-index`,{mode:e?`full`:`incremental`});let u=e=>t=>{t.phase===`chunking`&&t.currentFile&&O_.debug(`Re-index progress`,{prefix:e,current:t.filesProcessed+1,total:t.filesTotal,file:t.currentFile})};return(e?t.reindexAll(n,u(`Reindex`)):t.index(n,u(`Index`))).then(async e=>{if(O_.info(`Background re-index complete`,{filesProcessed:e.filesProcessed,chunksCreated:e.chunksCreated,durationMs:e.durationMs}),l.complete(`Reindex complete: ${e.filesProcessed} files, ${e.chunksCreated} chunks in ${e.durationMs}ms`),i)try{await i.createFtsIndex(),O_.info(`FTS index rebuilt after reindex`)}catch(e){O_.warn(`FTS index rebuild failed`,N(e))}try{let e=await r.reindexAll();O_.info(`Curated re-index complete`,{indexed:e.indexed})}catch(e){O_.warn(`Curated re-index failed`,N(e))}if(a)try{await a.notifyAfterReindex()}catch(e){O_.warn(`Post-reindex resource notification failed`,N(e))}}).catch(e=>{l.fail(`Reindex failed: ${e instanceof Error?e.message:String(e)}`),O_.error(`Background reindex failed`,N(e))}),{content:[{type:`text`,text:`## Reindex Started (Background)\n\n- **Mode**: ${e?`Full`:`Incremental`}\n- Search and other tools continue to work with existing data during reindex.\n- Completion will be logged. Use \`status({})\` to check index stats afterward.\n\n---\n_Next: Continue working — the reindex runs in the background._`}]}}catch(e){return O_.error(`Reindex failed`,N(e)),q(`INTERNAL`,`Reindex failed: ${e instanceof Error?e.message:String(e)}`)}}))}const A_=M(`tools`);function j_(e){let t=W(`replay`);e.registerTool(`replay`,{title:t.title,description:`View or clear the audit trail of recent MCP tool and CLI invocations. Shows tool name, duration, status, and input/output summaries.`,inputSchema:{action:R.enum([`list`,`clear`]).default(`list`).describe(`Action: "list" (default) to view entries, "clear" to wipe the log`),last:R.number().optional().describe(`Number of entries to return (default: 20, list only)`),tool:R.string().optional().describe(`Filter by tool name (list only)`),source:R.enum([`mcp`,`cli`]).optional().describe(`Filter by source: "mcp" or "cli" (list only)`),since:R.string().optional().describe(`ISO timestamp — only show entries after this time (list only)`)},annotations:t.annotations},J(`replay`,async({action:e,last:t,tool:n,source:r,since:i})=>{try{if(e===`clear`)return sn(),{content:[{type:`text`,text:`Replay log cleared.`}]};let a=cn({last:t,tool:n,source:r,since:i});if(a.length===0)return{content:[{type:`text`,text:`No replay entries found. Activity is logged when tools are invoked via MCP or CLI.`}]};let o=a.map(e=>`${e.ts.split(`T`)[1]?.split(`.`)[0]??e.ts} ${e.status===`ok`?`✓`:`✗`} ${e.tool} (${e.durationMs}ms) [${e.source}]\n in: ${e.input}\n out: ${e.output}`);return ln().catch(()=>{}),{content:[{type:`text`,text:`**Replay Log** (${a.length} entries)\n\n${o.join(`
2992
+ Use \`status({})\` to check smart indexing queue status.`}]};let l=Qc(c).createTask(`Reindex`,1);l.progress(0,`Starting ${e?`full`:`incremental`} reindex`),k_.info(`Starting background re-index`,{mode:e?`full`:`incremental`});let u=e=>t=>{t.phase===`chunking`&&t.currentFile&&k_.debug(`Re-index progress`,{prefix:e,current:t.filesProcessed+1,total:t.filesTotal,file:t.currentFile})};return(e?t.reindexAll(n,u(`Reindex`)):t.index(n,u(`Index`))).then(async e=>{if(k_.info(`Background re-index complete`,{filesProcessed:e.filesProcessed,chunksCreated:e.chunksCreated,durationMs:e.durationMs}),l.complete(`Reindex complete: ${e.filesProcessed} files, ${e.chunksCreated} chunks in ${e.durationMs}ms`),i)try{await i.createFtsIndex(),k_.info(`FTS index rebuilt after reindex`)}catch(e){k_.warn(`FTS index rebuild failed`,N(e))}try{let e=await r.reindexAll();k_.info(`Curated re-index complete`,{indexed:e.indexed})}catch(e){k_.warn(`Curated re-index failed`,N(e))}if(a)try{await a.notifyAfterReindex()}catch(e){k_.warn(`Post-reindex resource notification failed`,N(e))}}).catch(e=>{l.fail(`Reindex failed: ${e instanceof Error?e.message:String(e)}`),k_.error(`Background reindex failed`,N(e))}),{content:[{type:`text`,text:`## Reindex Started (Background)\n\n- **Mode**: ${e?`Full`:`Incremental`}\n- Search and other tools continue to work with existing data during reindex.\n- Completion will be logged. Use \`status({})\` to check index stats afterward.\n\n---\n_Next: Continue working — the reindex runs in the background._`}]}}catch(e){return k_.error(`Reindex failed`,N(e)),q(`INTERNAL`,`Reindex failed: ${e instanceof Error?e.message:String(e)}`)}}))}const j_=M(`tools`);function M_(e){let t=W(`replay`);e.registerTool(`replay`,{title:t.title,description:`View or clear the audit trail of recent MCP tool and CLI invocations. Shows tool name, duration, status, and input/output summaries.`,inputSchema:{action:R.enum([`list`,`clear`]).default(`list`).describe(`Action: "list" (default) to view entries, "clear" to wipe the log`),last:R.number().optional().describe(`Number of entries to return (default: 20, list only)`),tool:R.string().optional().describe(`Filter by tool name (list only)`),source:R.enum([`mcp`,`cli`]).optional().describe(`Filter by source: "mcp" or "cli" (list only)`),since:R.string().optional().describe(`ISO timestamp — only show entries after this time (list only)`)},annotations:t.annotations},J(`replay`,async({action:e,last:t,tool:n,source:r,since:i})=>{try{if(e===`clear`)return sn(),{content:[{type:`text`,text:`Replay log cleared.`}]};let a=cn({last:t,tool:n,source:r,since:i});if(a.length===0)return{content:[{type:`text`,text:`No replay entries found. Activity is logged when tools are invoked via MCP or CLI.`}]};let o=a.map(e=>`${e.ts.split(`T`)[1]?.split(`.`)[0]??e.ts} ${e.status===`ok`?`✓`:`✗`} ${e.tool} (${e.durationMs}ms) [${e.source}]\n in: ${e.input}\n out: ${e.output}`);return ln().catch(()=>{}),{content:[{type:`text`,text:`**Replay Log** (${a.length} entries)\n\n${o.join(`
2993
2993
 
2994
- `)}`}]}}catch(e){return A_.error(`Replay failed`,N(e)),q(`INTERNAL`,`Replay failed: ${e instanceof Error?e.message:String(e)}`)}}))}const M_=M(`tools`);function N_(e){let t=W(`restore`);e.registerTool(`restore`,{title:t.title,description:`List and restore file snapshots taken before destructive operations (codemod, rename, forget). Use action=list to see available restore points, action=restore with an id to undo.`,inputSchema:{action:R.enum([`list`,`restore`]).describe(`list: show restore points, restore: apply a restore point`),id:R.string().optional().describe(`Restore point ID (required for action=restore)`),limit:R.number().min(1).max(50).default(10).describe(`Max restore points to list`)},annotations:t.annotations},async({action:e,id:t,limit:n})=>{try{if(e===`list`){let e=Ft().slice(0,n);return e.length===0?{content:[{type:`text`,text:`No restore points found.`}]}:{content:[{type:`text`,text:`## Restore Points\n\n${e.map(e=>`- **${e.id}** (${e.timestamp}) — ${e.operation}: ${e.description} (${e.files.length} files)`).join(`
2994
+ `)}`}]}}catch(e){return j_.error(`Replay failed`,N(e)),q(`INTERNAL`,`Replay failed: ${e instanceof Error?e.message:String(e)}`)}}))}const N_=M(`tools`);function P_(e){let t=W(`restore`);e.registerTool(`restore`,{title:t.title,description:`List and restore file snapshots taken before destructive operations (codemod, rename, forget). Use action=list to see available restore points, action=restore with an id to undo.`,inputSchema:{action:R.enum([`list`,`restore`]).describe(`list: show restore points, restore: apply a restore point`),id:R.string().optional().describe(`Restore point ID (required for action=restore)`),limit:R.number().min(1).max(50).default(10).describe(`Max restore points to list`)},annotations:t.annotations},async({action:e,id:t,limit:n})=>{try{if(e===`list`){let e=Ft().slice(0,n);return e.length===0?{content:[{type:`text`,text:`No restore points found.`}]}:{content:[{type:`text`,text:`## Restore Points\n\n${e.map(e=>`- **${e.id}** (${e.timestamp}) — ${e.operation}: ${e.description} (${e.files.length} files)`).join(`
2995
2995
  `)}`}]}}if(!t)throw Error(`id is required for restore action`);let r=await un(t);return{content:[{type:`text`,text:`Restored ${r.length} files:\n${r.map(e=>`- \`${e}\``).join(`
2996
- `)}`}]}}catch(e){return M_.error(`Restore failed`,N(e)),q(`INTERNAL`,`Restore failed: ${e instanceof Error?e.message:String(e)}`)}})}const P_=/<\/?curated-context>/gi;function F_(e){return e.replace(P_,``)}function I_(e){return`<curated-context>\n${F_(e)}\n</curated-context>`}const L_=M(`tools`);function R_(e,t,n,r){b(e,t,n);let i=e.memoryMetaGet(t);if(!i)return;let a=g(i,{..._,...r});a&&(y(e,t,a),v(e,t,n))}function z_(e,t){let n=[],r=Ae(process.cwd());r&&n.push(`[project: ${r}]`);let i=t?yn(t,`__context_boost`):void 0;return i&&n.push(`[focus: ${i.value}]`),n.length===0?e:`${n.join(` `)} ${e}`}function B_(e,t,n){return n?e:t===`curated`?e*1.2:e}function V_(e,t){return t?e:e.map(e=>({record:e.record,score:B_(e.score,e.record.origin,t)})).sort((e,t)=>t.score-e.score)}function H_(e,t){let n=e?Math.floor(e/Math.max(1,t)):96;return Math.max(40,Math.min(160,n))}function U_(e,t){let n=e.origin===`curated`?I_(e.content):e.content,r=kn(n,t);return{body:r,truncated:r!==n}}async function W_(e,t,n,r,i){if(!e||t>=e.config.fallbackThreshold&&n.length>0)return{results:n,triggered:!1,cacheHit:!1};let a=!1;try{let t=e.cache.get(r);return t?a=!0:(t=await e.client.search(r,i),t.length>0&&e.cache.set(r,t)),t.length>0?{results:_r(n,t,i).map(e=>({record:{id:`er:${e.sourcePath}`,content:e.content,sourcePath:e.source===`er`?`[ER] ${e.sourcePath}`:e.sourcePath,startLine:e.startLine??0,endLine:e.endLine??0,contentType:e.contentType??`documentation`,headingPath:e.headingPath,origin:e.source===`er`?`curated`:e.origin??`indexed`,category:e.category,tags:e.tags??[],chunkIndex:0,totalChunks:1,fileHash:``,indexedAt:new Date().toISOString(),version:1},score:e.score})),triggered:!0,cacheHit:a}:{results:n,triggered:!0,cacheHit:a}}catch(e){return L_.warn(`ER fallback failed`,N(e)),{results:n,triggered:!0,cacheHit:a}}}function G_(e,t,n=60){let r=new Map,i=e[0]?.score||1,a=t[0]?.score||1;for(let t=0;t<e.length;t++){let a=e[t],o=a.score/i;r.set(a.record.id,{record:a.record,score:1/(n+t+1)*o})}for(let e=0;e<t.length;e++){let i=t[e],o=i.score/a,s=r.get(i.record.id);s?s.score+=1/(n+e+1)*o:r.set(i.record.id,{record:i.record,score:1/(n+e+1)*o})}return[...r.values()].sort((e,t)=>t.score-e.score).map(({record:e,score:t})=>({record:e,score:t*(n+1)}))}function K_(e,t){let n=t.toLowerCase().split(/\s+/).filter(e=>e.length>=2);return n.length<2?e:e.map(e=>{let t=e.record.content.toLowerCase();if(t.length>5e3)return e;let r=n.map(e=>{let n=[],r=t.indexOf(e);for(;r!==-1&&n.length<10;)n.push(r),r=t.indexOf(e,r+1);return n});if(r.some(e=>e.length===0))return e;let i=t.length;for(let e of r[0]){let t=e,a=e+n[0].length;for(let i=1;i<r.length;i++){let o=r[i][0],s=Math.abs(o-e);for(let t=1;t<r[i].length;t++){let n=Math.abs(r[i][t]-e);n<s&&(s=n,o=r[i][t])}t=Math.min(t,o),a=Math.max(a,o+n[i].length)}i=Math.min(i,a-t)}let a=1+.25/(1+i/200);return{record:e.record,score:e.score*a}}).sort((e,t)=>t.score-e.score)}function q_(e){if(e.length<=1)return e;let t=new Set;return e.filter(e=>{let n=e.record.contentHash;return n?t.has(n)?!1:(t.add(n),!0):!0})}function J_(e,t,n=8){let r=new Set(t.toLowerCase().split(/\s+/).filter(e=>e.length>=2)),i=new Map,a=e.length;for(let t of e){let e=t.record.content.split(/[^a-zA-Z0-9_]+/).filter(e=>e.length>=3&&!Y_.has(e.toLowerCase())),n=new Set;for(let t of e){let e=t.toLowerCase();/[_A-Z]/.test(t)&&i.set(`__id__${e}`,1),n.has(e)||(n.add(e),i.set(e,(i.get(e)??0)+1))}}let o=[];for(let[e,t]of i){if(e.startsWith(`__id__`)||r.has(e)||t>a*.8)continue;let n=Math.log(a/t),s=+!!i.has(`__id__${e}`),c=e.length>8?.5:0;o.push({term:e,score:n+s+c})}return o.sort((e,t)=>t.score-e.score).slice(0,n).map(e=>e.term)}const Y_=new Set(`the.and.for.are.but.not.you.all.can.had.her.was.one.our.out.has.have.from.this.that.with.they.been.said.each.which.their.will.other.about.many.then.them.these.some.would.make.like.into.could.time.very.when.come.just.know.take.people.also.back.after.only.more.than.over.such.import.export.const.function.return.true.false.null.undefined.string.number.boolean.void.type.interface`.split(`.`));async function X_(e,t){try{let n=await e.getStats();if(!n.lastIndexedAt)return;let r=new Date(n.lastIndexedAt).getTime(),i=Date.now(),a=[...new Set(t.map(e=>e.record.sourcePath))].filter(e=>!e.startsWith(`[ER]`)).slice(0,5);if(a.length===0)return;let o=0;for(let e of a)try{(await zn(e)).mtimeMs>r&&o++}catch{o++}if(o>0){let e=i-r,t=Math.floor(e/6e4),n=t<1?`<1 min`:`${t} min`;return`> ⚠️ **Index may be stale** — ${o} file(s) modified since last index (${n} ago). Use \`reindex\` to refresh.`}}catch{}}function Z_(e,t,n,r,i,a,o,s,c,l,u){let d=W(`search`);e.registerTool(`search`,{title:d.title,description:`Search AI Kit for code, docs, and prior decisions. Default choice for discovery. Modes: hybrid (default), semantic, keyword. For multi-strategy precision queries use find; for a known file path use lookup.`,outputSchema:Ks,inputSchema:{query:R.string().max(5e3).describe(`Natural language search query`),limit:R.number().min(1).max(20).default(5).describe(`Maximum results to return`),search_mode:R.enum([`hybrid`,`semantic`,`keyword`]).default(`hybrid`).describe(`Search strategy: hybrid (vector + FTS + RRF fusion, default), semantic (vector only), keyword (FTS only)`),content_type:R.enum(j).optional().describe(`Filter by content type`),source_type:R.enum(he).optional().describe(`Coarse filter: "source" (code only), "documentation" (md, curated), "test", "config". Overrides content_type if both set.`),origin:R.enum(pe).optional().describe(`Filter by knowledge origin`),category:R.string().optional().describe(`Filter by category (e.g., decisions, patterns, conventions)`),tags:R.array(R.string()).optional().describe(`Filter by exact tag membership (any supplied tag may match)`),min_score:R.number().min(0).max(1).default(.25).describe(`Minimum similarity score`),graph_hops:R.number().min(0).max(3).default(1).describe(`Number of graph hops to augment results with connected entities (0 = disabled, 1 = direct connections, 2-3 = deeper traversal). Default 1 provides module/symbol context automatically.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),dedup:R.enum([`file`,`chunk`]).default(`chunk`).describe(`Deduplication mode: "chunk" (default, show all matching chunks) or "file" (collapse chunks from same file into single result with merged line ranges)`),workspaces:R.array(R.string()).optional().describe(`Cross-workspace search: partition names or folder basenames to include. Use ["*"] for all registered workspaces. Only works in user-level install mode.`)},annotations:d.annotations},async({query:e,limit:d,search_mode:f,content_type:p,source_type:m,origin:h,category:g,tags:_,min_score:v,graph_hops:y,max_tokens:b,dedup:x,workspaces:S})=>{let C=Date.now();try{let w={limit:d,minScore:v,contentType:p,sourceType:m,origin:h,category:g,tags:_},T,E=!1,D=!1,O=``,k=f!==`keyword`,ee=z_(e,s);if(f===`keyword`)T=await n.ftsSearch(e,w),T=T.slice(0,d);else if(f===`semantic`)try{let r=await t.embedQuery(ee);T=await n.search(r,w);let a=await W_(i,T[0]?.score??0,T,e,d);T=a.results,E=a.triggered,D=a.cacheHit}catch(t){k=!1,L_.warn(`Embedder unavailable in semantic mode, falling back to FTS`,N(t)),T=await n.ftsSearch(e,{...w,limit:d}),O=`> _⚠️ Semantic search unavailable (embedder recovering). Showing keyword results instead._
2996
+ `)}`}]}}catch(e){return N_.error(`Restore failed`,N(e)),q(`INTERNAL`,`Restore failed: ${e instanceof Error?e.message:String(e)}`)}})}const F_=/<\/?curated-context>/gi;function I_(e){return e.replace(F_,``)}function L_(e){return`<curated-context>\n${I_(e)}\n</curated-context>`}const R_=M(`tools`);function z_(e,t,n,r){b(e,t,n);let i=e.memoryMetaGet(t);if(!i)return;let a=g(i,{..._,...r});a&&(y(e,t,a),v(e,t,n))}function B_(e,t){let n=[],r=Ae(process.cwd());r&&n.push(`[project: ${r}]`);let i=t?yn(t,`__context_boost`):void 0;return i&&n.push(`[focus: ${i.value}]`),n.length===0?e:`${n.join(` `)} ${e}`}function V_(e,t,n){return n?e:t===`curated`?e*1.2:e}function H_(e,t){return t?e:e.map(e=>({record:e.record,score:V_(e.score,e.record.origin,t)})).sort((e,t)=>t.score-e.score)}function U_(e,t){let n=e?Math.floor(e/Math.max(1,t)):96;return Math.max(40,Math.min(160,n))}function W_(e,t){let n=e.origin===`curated`?L_(e.content):e.content,r=kn(n,t);return{body:r,truncated:r!==n}}async function G_(e,t,n,r,i){if(!e||t>=e.config.fallbackThreshold&&n.length>0)return{results:n,triggered:!1,cacheHit:!1};let a=!1;try{let t=e.cache.get(r);return t?a=!0:(t=await e.client.search(r,i),t.length>0&&e.cache.set(r,t)),t.length>0?{results:_r(n,t,i).map(e=>({record:{id:`er:${e.sourcePath}`,content:e.content,sourcePath:e.source===`er`?`[ER] ${e.sourcePath}`:e.sourcePath,startLine:e.startLine??0,endLine:e.endLine??0,contentType:e.contentType??`documentation`,headingPath:e.headingPath,origin:e.source===`er`?`curated`:e.origin??`indexed`,category:e.category,tags:e.tags??[],chunkIndex:0,totalChunks:1,fileHash:``,indexedAt:new Date().toISOString(),version:1},score:e.score})),triggered:!0,cacheHit:a}:{results:n,triggered:!0,cacheHit:a}}catch(e){return R_.warn(`ER fallback failed`,N(e)),{results:n,triggered:!0,cacheHit:a}}}function K_(e,t,n=60){let r=new Map,i=e[0]?.score||1,a=t[0]?.score||1;for(let t=0;t<e.length;t++){let a=e[t],o=a.score/i;r.set(a.record.id,{record:a.record,score:1/(n+t+1)*o})}for(let e=0;e<t.length;e++){let i=t[e],o=i.score/a,s=r.get(i.record.id);s?s.score+=1/(n+e+1)*o:r.set(i.record.id,{record:i.record,score:1/(n+e+1)*o})}return[...r.values()].sort((e,t)=>t.score-e.score).map(({record:e,score:t})=>({record:e,score:t*(n+1)}))}function q_(e,t){let n=t.toLowerCase().split(/\s+/).filter(e=>e.length>=2);return n.length<2?e:e.map(e=>{let t=e.record.content.toLowerCase();if(t.length>5e3)return e;let r=n.map(e=>{let n=[],r=t.indexOf(e);for(;r!==-1&&n.length<10;)n.push(r),r=t.indexOf(e,r+1);return n});if(r.some(e=>e.length===0))return e;let i=t.length;for(let e of r[0]){let t=e,a=e+n[0].length;for(let i=1;i<r.length;i++){let o=r[i][0],s=Math.abs(o-e);for(let t=1;t<r[i].length;t++){let n=Math.abs(r[i][t]-e);n<s&&(s=n,o=r[i][t])}t=Math.min(t,o),a=Math.max(a,o+n[i].length)}i=Math.min(i,a-t)}let a=1+.25/(1+i/200);return{record:e.record,score:e.score*a}}).sort((e,t)=>t.score-e.score)}function J_(e){if(e.length<=1)return e;let t=new Set;return e.filter(e=>{let n=e.record.contentHash;return n?t.has(n)?!1:(t.add(n),!0):!0})}function Y_(e,t,n=8){let r=new Set(t.toLowerCase().split(/\s+/).filter(e=>e.length>=2)),i=new Map,a=e.length;for(let t of e){let e=t.record.content.split(/[^a-zA-Z0-9_]+/).filter(e=>e.length>=3&&!X_.has(e.toLowerCase())),n=new Set;for(let t of e){let e=t.toLowerCase();/[_A-Z]/.test(t)&&i.set(`__id__${e}`,1),n.has(e)||(n.add(e),i.set(e,(i.get(e)??0)+1))}}let o=[];for(let[e,t]of i){if(e.startsWith(`__id__`)||r.has(e)||t>a*.8)continue;let n=Math.log(a/t),s=+!!i.has(`__id__${e}`),c=e.length>8?.5:0;o.push({term:e,score:n+s+c})}return o.sort((e,t)=>t.score-e.score).slice(0,n).map(e=>e.term)}const X_=new Set(`the.and.for.are.but.not.you.all.can.had.her.was.one.our.out.has.have.from.this.that.with.they.been.said.each.which.their.will.other.about.many.then.them.these.some.would.make.like.into.could.time.very.when.come.just.know.take.people.also.back.after.only.more.than.over.such.import.export.const.function.return.true.false.null.undefined.string.number.boolean.void.type.interface`.split(`.`));async function Z_(e,t){try{let n=await e.getStats();if(!n.lastIndexedAt)return;let r=new Date(n.lastIndexedAt).getTime(),i=Date.now(),a=[...new Set(t.map(e=>e.record.sourcePath))].filter(e=>!e.startsWith(`[ER]`)).slice(0,5);if(a.length===0)return;let o=0;for(let e of a)try{(await zn(e)).mtimeMs>r&&o++}catch{o++}if(o>0){let e=i-r,t=Math.floor(e/6e4),n=t<1?`<1 min`:`${t} min`;return`> ⚠️ **Index may be stale** — ${o} file(s) modified since last index (${n} ago). Use \`reindex\` to refresh.`}}catch{}}function Q_(e,t,n,r,i,a,o,s,c,l,u){let d=W(`search`);e.registerTool(`search`,{title:d.title,description:`Search AI Kit for code, docs, and prior decisions. Default choice for discovery. Modes: hybrid (default), semantic, keyword. For multi-strategy precision queries use find; for a known file path use lookup.`,outputSchema:Ks,inputSchema:{query:R.string().max(5e3).describe(`Natural language search query`),limit:R.number().min(1).max(20).default(5).describe(`Maximum results to return`),search_mode:R.enum([`hybrid`,`semantic`,`keyword`]).default(`hybrid`).describe(`Search strategy: hybrid (vector + FTS + RRF fusion, default), semantic (vector only), keyword (FTS only)`),content_type:R.enum(j).optional().describe(`Filter by content type`),source_type:R.enum(he).optional().describe(`Coarse filter: "source" (code only), "documentation" (md, curated), "test", "config". Overrides content_type if both set.`),origin:R.enum(pe).optional().describe(`Filter by knowledge origin`),category:R.string().optional().describe(`Filter by category (e.g., decisions, patterns, conventions)`),tags:R.array(R.string()).optional().describe(`Filter by exact tag membership (any supplied tag may match)`),min_score:R.number().min(0).max(1).default(.25).describe(`Minimum similarity score`),graph_hops:R.number().min(0).max(3).default(1).describe(`Number of graph hops to augment results with connected entities (0 = disabled, 1 = direct connections, 2-3 = deeper traversal). Default 1 provides module/symbol context automatically.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`),dedup:R.enum([`file`,`chunk`]).default(`chunk`).describe(`Deduplication mode: "chunk" (default, show all matching chunks) or "file" (collapse chunks from same file into single result with merged line ranges)`),workspaces:R.array(R.string()).optional().describe(`Cross-workspace search: partition names or folder basenames to include. Use ["*"] for all registered workspaces. Only works in user-level install mode.`)},annotations:d.annotations},async({query:e,limit:d,search_mode:f,content_type:p,source_type:m,origin:h,category:g,tags:_,min_score:v,graph_hops:y,max_tokens:b,dedup:x,workspaces:S})=>{let C=Date.now();try{let w={limit:d,minScore:v,contentType:p,sourceType:m,origin:h,category:g,tags:_},T,E=!1,D=!1,O=``,k=f!==`keyword`,ee=B_(e,s);if(f===`keyword`)T=await n.ftsSearch(e,w),T=T.slice(0,d);else if(f===`semantic`)try{let r=await t.embedQuery(ee);T=await n.search(r,w);let a=await G_(i,T[0]?.score??0,T,e,d);T=a.results,E=a.triggered,D=a.cacheHit}catch(t){k=!1,R_.warn(`Embedder unavailable in semantic mode, falling back to FTS`,N(t)),T=await n.ftsSearch(e,{...w,limit:d}),O=`> _⚠️ Semantic search unavailable (embedder recovering). Showing keyword results instead._
2997
2997
 
2998
- `}else{let r=[],a=[];try{let i=await t.embedQuery(ee),o=n.coarseSearch,s=o?o.bind(n):n.search.bind(n);[r,a]=await Promise.all([s(i,{...w,limit:d*2}),n.ftsSearch(e,{...w,limit:d*2}).catch(()=>[])])}catch(t){k=!1,L_.warn(`Embedder unavailable, falling back to FTS-only`,N(t)),a=await n.ftsSearch(e,{...w,limit:d*2}),O=`> _⚠️ Vector search unavailable (embedder recovering). Results from keyword search only._
2998
+ `}else{let r=[],a=[];try{let i=await t.embedQuery(ee),o=n.coarseSearch,s=o?o.bind(n):n.search.bind(n);[r,a]=await Promise.all([s(i,{...w,limit:d*2}),n.ftsSearch(e,{...w,limit:d*2}).catch(()=>[])])}catch(t){k=!1,R_.warn(`Embedder unavailable, falling back to FTS-only`,N(t)),a=await n.ftsSearch(e,{...w,limit:d*2}),O=`> _⚠️ Vector search unavailable (embedder recovering). Results from keyword search only._
2999
2999
 
3000
- `}if(k?r.length===0&&a.length>0?(T=a.slice(0,d),O=` (FTS-only: vector index rebuilding)`):T=a.length===0&&r.length>0?r.slice(0,d):G_(r,a).slice(0,d):T=a.slice(0,d),k){let t=await W_(i,r[0]?.score??0,T,e,d);T=t.results,E=t.triggered,D=t.cacheHit}}T=V_(T,h).slice(0,d),a&&a.recordSearch(e,E,D),T.length>1&&(T=K_(T,e)),T=q_(T);let te=``;if(S&&S.length>0){let n=jl(S,u);if(n.length>0){let{stores:r,closeAll:i}=await Ml(n);try{let i;i=f===`keyword`||!k?await Pl(r,e,{...w,limit:d}):await Nl(r,await t.embedQuery(e),{...w,limit:d});for(let e of i)T.push({record:{...e.record,sourcePath:`[${e.workspace}] ${e.record.sourcePath}`},score:e.score});T=T.sort((e,t)=>t.score-e.score).slice(0,d),te=` + ${n.length} workspace(s)`}finally{await i()}}}if(x===`file`&&T.length>1){let e=new Map;for(let t of T){let n=t.record.sourcePath,r=e.get(n);r?(t.score>r.best.score&&(r.best=t),r.ranges.push({start:t.record.startLine,end:t.record.endLine})):e.set(n,{best:t,ranges:[{start:t.record.startLine,end:t.record.endLine}]})}T=[...e.values()].sort((e,t)=>t.best.score-e.best.score).map(({best:e,ranges:t})=>({record:{...e.record,content:t.length>1?`${e.record.content}\n\n_Matched ${t.length} sections: ${t.sort((e,t)=>e.start-t.start).map(e=>`L${e.start}-${e.end}`).join(`, `)}_`:e.record.content},score:e.score}))}if(T.length>1){let e=T[0].score,t=Math.max(e*.4,.1);T=T.filter(e=>e.score>=t)}if(T.length===0){if(o?.available)try{let r=(await o.createMessage({prompt:`The search query "${e}" returned 0 results in AI Kit code search. Suggest ONE alternative search query that might find relevant results. Reply with ONLY the alternative query, nothing else.`,systemPrompt:`You are a search query optimizer for AI Kit code search. Generate a single alternative query.`,maxTokens:100,timeoutMs:1e4})).text.trim().split(`
3001
- `)[0].slice(0,500);if(r&&r!==e){let i=f===`keyword`||!k?await n.ftsSearch(r,w):await n.search(await t.embedQuery(r),w);i.length>0&&(T=i,O=`> _Original query "${e}" returned 0 results. Auto-reformulated to "${r}"._\n\n`,L_.debug(`Smart search fallback succeeded`,{originalQuery:e,altQuery:r,resultCount:i.length}))}}catch(e){L_.debug(`Smart search fallback failed`,{error:String(e)})}if(T.length===0){let t=rt({text:`No results found for the given query.`,query:e,searchMode:f,limit:d,results:[],durationMs:Date.now()-C}),n=Rl(t.summary);return{content:[{type:`text`,text:zl(t.summary,n)}],isError:!t.ok,structuredContent:{...t.data??{results:[],totalResults:0,searchMode:f,query:e},ref:n}}}}let ne,re;if(y>0&&!r&&(re="> **Note:** `graph_hops` was set but no graph store is available. Graph augmentation skipped."),y>0&&r)try{let e=await Ct(r,T.map(e=>({recordId:e.record.id,score:e.score,sourcePath:e.record.sourcePath})),{hops:y,maxPerHit:5});ne=new Map;for(let t of e)if(t.graphContext.nodes.length>0){let e=t.graphContext.nodes.slice(0,5).map(e=>` - **${e.name}** (${e.type})`).join(`
3000
+ `}if(k?r.length===0&&a.length>0?(T=a.slice(0,d),O=` (FTS-only: vector index rebuilding)`):T=a.length===0&&r.length>0?r.slice(0,d):K_(r,a).slice(0,d):T=a.slice(0,d),k){let t=await G_(i,r[0]?.score??0,T,e,d);T=t.results,E=t.triggered,D=t.cacheHit}}T=H_(T,h).slice(0,d),a&&a.recordSearch(e,E,D),T.length>1&&(T=q_(T,e)),T=J_(T);let te=``;if(S&&S.length>0){let n=Ml(S,u);if(n.length>0){let{stores:r,closeAll:i}=await Nl(n);try{let i;i=f===`keyword`||!k?await Fl(r,e,{...w,limit:d}):await Pl(r,await t.embedQuery(e),{...w,limit:d});for(let e of i)T.push({record:{...e.record,sourcePath:`[${e.workspace}] ${e.record.sourcePath}`},score:e.score});T=T.sort((e,t)=>t.score-e.score).slice(0,d),te=` + ${n.length} workspace(s)`}finally{await i()}}}if(x===`file`&&T.length>1){let e=new Map;for(let t of T){let n=t.record.sourcePath,r=e.get(n);r?(t.score>r.best.score&&(r.best=t),r.ranges.push({start:t.record.startLine,end:t.record.endLine})):e.set(n,{best:t,ranges:[{start:t.record.startLine,end:t.record.endLine}]})}T=[...e.values()].sort((e,t)=>t.best.score-e.best.score).map(({best:e,ranges:t})=>({record:{...e.record,content:t.length>1?`${e.record.content}\n\n_Matched ${t.length} sections: ${t.sort((e,t)=>e.start-t.start).map(e=>`L${e.start}-${e.end}`).join(`, `)}_`:e.record.content},score:e.score}))}if(T.length>1){let e=T[0].score,t=Math.max(e*.4,.1);T=T.filter(e=>e.score>=t)}if(T.length===0){if(o?.available)try{let r=(await o.createMessage({prompt:`The search query "${e}" returned 0 results in AI Kit code search. Suggest ONE alternative search query that might find relevant results. Reply with ONLY the alternative query, nothing else.`,systemPrompt:`You are a search query optimizer for AI Kit code search. Generate a single alternative query.`,maxTokens:100,timeoutMs:1e4})).text.trim().split(`
3001
+ `)[0].slice(0,500);if(r&&r!==e){let i=f===`keyword`||!k?await n.ftsSearch(r,w):await n.search(await t.embedQuery(r),w);i.length>0&&(T=i,O=`> _Original query "${e}" returned 0 results. Auto-reformulated to "${r}"._\n\n`,R_.debug(`Smart search fallback succeeded`,{originalQuery:e,altQuery:r,resultCount:i.length}))}}catch(e){R_.debug(`Smart search fallback failed`,{error:String(e)})}if(T.length===0){let t=rt({text:`No results found for the given query.`,query:e,searchMode:f,limit:d,results:[],durationMs:Date.now()-C}),n=zl(t.summary);return{content:[{type:`text`,text:Bl(t.summary,n)}],isError:!t.ok,structuredContent:{...t.data??{results:[],totalResults:0,searchMode:f,query:e},ref:n}}}}let ne,re;if(y>0&&!r&&(re="> **Note:** `graph_hops` was set but no graph store is available. Graph augmentation skipped."),y>0&&r)try{let e=await Ct(r,T.map(e=>({recordId:e.record.id,score:e.score,sourcePath:e.record.sourcePath})),{hops:y,maxPerHit:5});ne=new Map;for(let t of e)if(t.graphContext.nodes.length>0){let e=t.graphContext.nodes.slice(0,5).map(e=>` - **${e.name}** (${e.type})`).join(`
3002
3002
  `),n=new Map;for(let e of t.graphContext.nodes)n.set(e.id,e.name);let r=t.graphContext.edges.slice(0,5).map(e=>` - ${n.get(e.fromId)??e.fromId} —[${e.type}]→ ${n.get(e.toId)??e.toId}`).join(`
3003
3003
  `),i=[`- **Graph Context** (${y} hop${y>1?`s`:``}):`];e&&i.push(` Entities:\n${e}`),r&&i.push(` Relationships:\n${r}`),ne.set(t.recordId,i.join(`
3004
- `))}}catch(e){L_.warn(`Graph augmentation failed`,N(e)),re=`> **Note:** Graph augmentation failed. Results shown without graph context.`}let ie=Date.now();for(let e of T)if(e.record.origin===`curated`&&e.record.indexedAt){let t=ie-new Date(e.record.indexedAt).getTime(),n=Math.max(0,t/864e5);e.score*=.95**n}if(T.sort((e,t)=>t.score-e.score),T=Ue(T),s)for(let e of T){if(e.record.origin!==`curated`)continue;let t=kd(e.record.sourcePath);t&&R_(s,t,c,l)}let ae=H_(b,T.length),oe=!1,se=T.map((e,t)=>{let n=e.record,r=`### Result ${t+1} (score: ${e.score.toFixed(3)})`,i=[`- **Source**: ${n.sourcePath}`,n.headingPath?`- **Section**: ${n.headingPath}`:null,`- **Type**: ${n.contentType}`,n.startLine?`- **Lines**: ${n.startLine}-${n.endLine}`:null,n.origin===`indexed`?null:`- **Origin**: ${n.origin}`,n.category?`- **Category**: ${n.category}`:null,n.tags?.length?`- **Tags**: ${n.tags.join(`, `)}`:null,ne?.get(n.id)??null].filter(Boolean).join(`
3005
- `),{body:a,truncated:o}=U_(n,ae);return oe||=o,`${r}\n${i}\n\n${a}${o?`\n\n_Full content: use \`lookup\` on \`${n.sourcePath}\`._`:``}`}).join(`
3004
+ `))}}catch(e){R_.warn(`Graph augmentation failed`,N(e)),re=`> **Note:** Graph augmentation failed. Results shown without graph context.`}let ie=Date.now();for(let e of T)if(e.record.origin===`curated`&&e.record.indexedAt){let t=ie-new Date(e.record.indexedAt).getTime(),n=Math.max(0,t/864e5);e.score*=.95**n}if(T.sort((e,t)=>t.score-e.score),T=Ue(T),s)for(let e of T){if(e.record.origin!==`curated`)continue;let t=Ad(e.record.sourcePath);t&&z_(s,t,c,l)}let ae=U_(b,T.length),oe=!1,se=T.map((e,t)=>{let n=e.record,r=`### Result ${t+1} (score: ${e.score.toFixed(3)})`,i=[`- **Source**: ${n.sourcePath}`,n.headingPath?`- **Section**: ${n.headingPath}`:null,`- **Type**: ${n.contentType}`,n.startLine?`- **Lines**: ${n.startLine}-${n.endLine}`:null,n.origin===`indexed`?null:`- **Origin**: ${n.origin}`,n.category?`- **Category**: ${n.category}`:null,n.tags?.length?`- **Tags**: ${n.tags.join(`, `)}`:null,ne?.get(n.id)??null].filter(Boolean).join(`
3005
+ `),{body:a,truncated:o}=W_(n,ae);return oe||=o,`${r}\n${i}\n\n${a}${o?`\n\n_Full content: use \`lookup\` on \`${n.sourcePath}\`._`:``}`}).join(`
3006
3006
 
3007
3007
  ---
3008
3008
 
3009
- `),ce=(f===`hybrid`?`hybrid (vector + keyword RRF)`:f===`keyword`?`keyword (FTS)`:`semantic (vector)`)+te,le=J_(T,e),A=le.length>0?`\n_Distinctive terms: ${le.map(e=>`\`${e}\``).join(`, `)}_`:``,j=await X_(n,T),ue=[];if(T.length===0)ue.push("`reindex` — no results found, index may be stale"),ue.push("`find` — try federated search with glob/regex");else{let e=T[0]?.record.sourcePath;e&&ue.push(`\`lookup\` — see all chunks from \`${e}\``),ue.push("`symbol` — resolve a specific symbol from the results"),ue.push("`compact` — compress a result file for focused reading")}let de=[re?`${re}\n\n`:``,j?`${j}\n\n`:``,se,`\n\n---\n_Search mode: ${ce} | ${T.length} results_${A}`,`\n_Next: ${ue.join(` | `)}_`],fe=O+de.join(``),pe=!1;if(b){let e=kn(fe,b);pe=e!==fe,fe=e}pe||=oe;let me=T.map(e=>({sourcePath:e.record.sourcePath,contentType:e.record.contentType,score:e.score,...e.record.headingPath?{headingPath:e.record.headingPath}:{},...e.record.startLine?{startLine:e.record.startLine}:{},...e.record.endLine?{endLine:e.record.endLine}:{},...e.record.origin===`indexed`?{}:{origin:e.record.origin},...e.record.category?{category:e.record.category}:{},...e.record.tags?.length?{tags:e.record.tags}:{}})),he=[re,j].filter(e=>!!e),ge=rt({text:fe,query:e,searchMode:f,limit:d,results:me,durationMs:Date.now()-C,truncated:pe,caveats:he}),_e=Rl(ge.summary),ve=new Set,M=[];for(let e of T){if(e.record.origin!==`curated`||e.record.sourcePath.startsWith(`[`))continue;let t=kd(e.record.sourcePath);if(!t)continue;let n=Dd(t,e.record.headingPath??t);n&&!ve.has(n.uri)&&(ve.add(n.uri),M.push(n))}return{content:[{type:`text`,text:zl(ge.summary,_e)},...M],isError:!ge.ok,structuredContent:{...ge.data??{results:[],totalResults:0,searchMode:f,query:e},ref:_e}}}catch(t){L_.error(`Search failed`,N(t));let n=rt({text:`Search failed: ${t instanceof Error?t.message:String(t)}`,query:e??``,searchMode:f??`hybrid`,limit:d,results:[],durationMs:Date.now()-C}),r=Rl(n.summary);return{content:[{type:`text`,text:zl(n.summary,r)}],structuredContent:{...n.data??{results:[],totalResults:0,searchMode:f??`hybrid`,query:e??``},ref:r}}}})}const Q_=M(`tools`);function $_(e,t,n){let r=W(`session_digest`);e.registerTool(`session_digest`,{title:r.title,description:`Compress the current session's tool trajectory into a focused digest. Aggregates replay log, stash state, and checkpoints. Supports deterministic and LLM-assisted (sampling) modes with configurable token budget.`,inputSchema:{scope:R.enum([`tools`,`stash`,`all`]).default(`all`).describe(`What to include: tools (replay only), stash (stash + checkpoints only), or all`),since:R.string().optional().describe(`ISO timestamp — only include activity after this time`),last:R.number().min(1).max(500).optional().describe(`Max replay entries to consider (default: 50)`),focus:R.string().optional().describe(`Focus query — prioritize entries matching this topic`),mode:R.enum([`deterministic`,`sampling`]).default(`deterministic`).describe(`Summary mode: deterministic (fast, template-based) or sampling (LLM-assisted, richer)`),token_budget:R.number().min(100).max(8e3).default(2e3).describe(`Target token budget for the digest output`),persist:R.boolean().default(!0).describe(`Auto-save digest to stash for crash recovery`)},annotations:r.annotations},J(`session_digest`,async({scope:e,since:r,last:i,focus:a,mode:o,token_budget:s,persist:c})=>{try{let l={scope:e,since:r,last:i,focus:a,mode:o,tokenBudget:s,persist:c},u=t?{stateStore:t}:void 0;return{content:[{type:`text`,text:(o===`sampling`&&n?.available?await gn(l,async(e,t,r)=>(await n.createMessage({prompt:e,systemPrompt:t,maxTokens:r})).text,u):hn(l,u)).digest}]}}catch(e){return Q_.error(`Session digest failed`,N(e)),q(`INTERNAL`,`Session digest failed: ${e instanceof Error?e.message:String(e)}`)}}))}const ev=1e4,tv={defaultTtlSeconds:300,defaultLeaseTtlMinutes:10,globalEnabled:!1};function nv(e){return e??tv}function rv(e,t){let n=e.trim();if(!n)throw Error(`${t} is required`);return n}function iv(e,t,n){let r=rv(e,t);if(r.length>n)throw Error(`${t} exceeds max length of ${n}`);return r}function av(e,t){if(!Number.isFinite(e)||e<=0)throw Error(`${t} must be greater than 0`);return Math.trunc(e)}function ov(e,t=!1,n){rv(e,`workspace`);let r=nv(n);if(!t)return e;if(!r.globalEnabled)throw Error(`Global signal scope is disabled`);return`__global__`}function sv(e,t,n){let r=nv(n),i=ov(t.workspace,t.global??!1,r),a=iv(t.key,`key`,500),o=iv(t.value,`value`,ev),s=t.agent?iv(t.agent,`agent`,500):void 0,c=av(t.ttlSeconds??r.defaultTtlSeconds,`ttlSeconds`);return e.signalPost(i,a,o,s,c)}function cv(e,t,n){let r=rv(t,`workspace`),i=iv(n,`key`,500);return e.signalGet(r,i)}function lv(e,t){let n=rv(t,`workspace`);return e.signalList(n)}function uv(e,t,n){let r=rv(t,`workspace`),i=n===void 0?void 0:iv(n,`key`,500);return e.signalClear(r,i)}function dv(e,t,n){let r=nv(n),i=iv(t.resource,`resource`,500),a=iv(t.holder,`holder`,500),o=rv(t.workspace,`workspace`),s=t.intent?iv(t.intent,`intent`,ev):void 0,c=av(t.ttlMinutes??r.defaultLeaseTtlMinutes,`ttlMinutes`);if(c>60)throw Error(`ttlMinutes exceeds max of 60`);let l=e.leaseAcquire(i,a,o,s,c),u=e.leaseGet(i,o);return u?{acquired:l,holder:u.holder,expiresAt:u.expiresAt}:{acquired:l}}function fv(e,t,n,r){let i=rv(t,`workspace`),a=iv(n,`resource`,500),o=iv(r,`holder`,500);return e.leaseRelease(a,o,i)}function pv(e,t){let n=rv(t,`workspace`);return e.leaseList(n)}const mv=M(`tools:signal`);function hv(e){return JSON.stringify(e,null,2)}function gv(e,t,n){let r=W(`signal`),i={...tv,...n};e.registerTool(`signal`,{title:r.title,description:`Inter-agent signaling and lease coordination`,inputSchema:{action:R.enum([`post`,`get`,`list`,`clear`,`lease`,`unlease`,`leases`]).describe(`Signal action to perform`),workspace:R.string().describe(`Workspace identifier (required)`),key:R.string().optional().describe(`Signal key (for post/get/clear)`),value:R.string().optional().describe(`Signal value (for post)`),agent:R.string().optional().describe(`Agent identifier`),resource:R.string().optional().describe(`Resource path (for lease/unlease)`),holder:R.string().optional().describe(`Lease holder ID (for lease/unlease)`),intent:R.string().optional().describe(`What the holder plans to do`),ttl:R.number().optional().describe(`TTL (seconds for signals, minutes for leases)`),global:R.boolean().optional().describe(`Use global scope (default: false)`)},annotations:r.annotations},J(`signal`,async({action:e,workspace:n,key:r,value:a,agent:o,resource:s,holder:c,intent:l,ttl:u,global:d})=>{try{switch(e){case`post`:{if(!r||a===void 0)throw Error(`key and value are required for post`);let e=sv(t,{workspace:n,key:r,value:a,agent:o,ttlSeconds:u,global:d},i);return{content:[{type:`text`,text:hv({id:e})}],structuredContent:{id:e}}}case`get`:{if(!r)throw Error(`key is required for get`);let e=cv(t,ov(n,d??!1,i),r);return{content:[{type:`text`,text:e.length===0?`[]`:hv(e)}],structuredContent:{signals:e}}}case`list`:{let e=lv(t,ov(n,d??!1,i));return{content:[{type:`text`,text:e.length===0?`[]`:hv(e)}],structuredContent:{signals:e}}}case`clear`:{let e=uv(t,ov(n,d??!1,i),r);return{content:[{type:`text`,text:hv({cleared:e})}],structuredContent:{cleared:e}}}case`lease`:{if(!s||!c)throw Error(`resource and holder are required for lease`);let e=dv(t,{resource:s,holder:c,workspace:n,intent:l,ttlMinutes:u},i);return{content:[{type:`text`,text:hv(e)}],structuredContent:e}}case`unlease`:{if(!s||!c)throw Error(`resource and holder are required for unlease`);let e=fv(t,n,s,c);return{content:[{type:`text`,text:hv({released:e})}],structuredContent:{released:e}}}case`leases`:{let e=pv(t,n);return{content:[{type:`text`,text:e.length===0?`[]`:hv(e)}],structuredContent:{leases:e}}}}}catch(e){return mv.error(`Signal operation failed`,N(e)),q(`INTERNAL`,`Signal operation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function _v(e,t){return e.length<=t?e:e.slice(0,t)}function vv(e){if(!e)return 0;let t=Date.parse(e);return Number.isNaN(t)?0:t}async function yv(e,t,n=d){if(!e||!t)return null;try{let[r,i,o]=await Promise.all([e.list({category:`lessons`,limit:200,orderBy:`updated`,order:`desc`}),e.list({category:`conventions`,limit:200,orderBy:`updated`,order:`desc`}),e.list({category:`session`,limit:200,orderBy:`updated`,order:`desc`})]),s=r.filter(e=>e.tags.includes(`lesson`)).map(e=>{let r=t.memoryMetaGet(e.path);return!r||r.supersededBy!=null?null:{entry:e,confidence:c(r.confidence,r.lastAccessedAt,r.createdAt,n)}}).filter(e=>e!==null).sort((e,t)=>t.confidence-e.confidence).slice(0,3);return{lessons:await Promise.all(s.map(async({entry:t,confidence:n})=>{let r=a((await e.read(t.path)).content);return{title:t.title,insight:_v(r.insight??``,150),confidence:n}})),conventions:i.map(e=>({entry:e,lastAccessedAt:t.memoryMetaGet(e.path)?.lastAccessedAt??null})).sort((e,t)=>vv(t.lastAccessedAt)-vv(e.lastAccessedAt)).slice(0,2).map(({entry:e})=>({title:e.title,preview:e.contentPreview})),checkpoint:o.map(e=>({entry:e,lastAccessedAt:t.memoryMetaGet(e.path)?.lastAccessedAt??null})).sort((e,t)=>vv(t.lastAccessedAt)-vv(e.lastAccessedAt)).map(({entry:e})=>_v(e.contentPreview,200))[0]??null}}catch{return null}}const bv=M(`tools`),xv=14400*1e3,Sv={includePrelude:R.boolean().default(!1).describe(`Include session prelude with top lessons, conventions, and last checkpoint`)};function Cv(e,t,n,r=15e3){let i,a=new Promise(e=>{i=setTimeout(()=>{bv.warn(`Status sub-operation "${n}" timed out after ${r}ms`),e({value:t,timedOut:!0})},r)});return Promise.race([e.then(e=>(clearTimeout(i),{value:e,timedOut:!1}),e=>(clearTimeout(i),bv.warn(`Status sub-operation "${n}" failed: ${e instanceof Error?e.message:String(e)}`),{value:t,timedOut:!1})),a])}function wv(e){return e.onboarded?e.indexStale?{kind:`reindex`,reason:`Index stale. Run reindex() to update.`}:e.contextPressure>70?{kind:`handoff`,reason:`Context pressure high. Consider session handoff.`}:{kind:`proceed`,reason:`Ready to work.`}:{kind:`onboard`,reason:`Index not initialized. Run onboard({ path: "." }) first.`}}function Tv(){let e=ur.get(),t=lr.get();if(e)return`- **Tree-sitter (WASM)**: ✅ Available (${t.grammarCount} grammars, dir: ${t.wasmDir})`;let n=t.pathsChecked.length?t.pathsChecked.map(e=>` ${e.exists?`✓`:`✗`} ${e.path}`).join(`
3009
+ `),ce=(f===`hybrid`?`hybrid (vector + keyword RRF)`:f===`keyword`?`keyword (FTS)`:`semantic (vector)`)+te,le=Y_(T,e),A=le.length>0?`\n_Distinctive terms: ${le.map(e=>`\`${e}\``).join(`, `)}_`:``,j=await Z_(n,T),ue=[];if(T.length===0)ue.push("`reindex` — no results found, index may be stale"),ue.push("`find` — try federated search with glob/regex");else{let e=T[0]?.record.sourcePath;e&&ue.push(`\`lookup\` — see all chunks from \`${e}\``),ue.push("`symbol` — resolve a specific symbol from the results"),ue.push("`compact` — compress a result file for focused reading")}let de=[re?`${re}\n\n`:``,j?`${j}\n\n`:``,se,`\n\n---\n_Search mode: ${ce} | ${T.length} results_${A}`,`\n_Next: ${ue.join(` | `)}_`],fe=O+de.join(``),pe=!1;if(b){let e=kn(fe,b);pe=e!==fe,fe=e}pe||=oe;let me=T.map(e=>({sourcePath:e.record.sourcePath,contentType:e.record.contentType,score:e.score,...e.record.headingPath?{headingPath:e.record.headingPath}:{},...e.record.startLine?{startLine:e.record.startLine}:{},...e.record.endLine?{endLine:e.record.endLine}:{},...e.record.origin===`indexed`?{}:{origin:e.record.origin},...e.record.category?{category:e.record.category}:{},...e.record.tags?.length?{tags:e.record.tags}:{}})),he=[re,j].filter(e=>!!e),ge=rt({text:fe,query:e,searchMode:f,limit:d,results:me,durationMs:Date.now()-C,truncated:pe,caveats:he}),_e=zl(ge.summary),ve=new Set,M=[];for(let e of T){if(e.record.origin!==`curated`||e.record.sourcePath.startsWith(`[`))continue;let t=Ad(e.record.sourcePath);if(!t)continue;let n=Od(t,e.record.headingPath??t);n&&!ve.has(n.uri)&&(ve.add(n.uri),M.push(n))}return{content:[{type:`text`,text:Bl(ge.summary,_e)},...M],isError:!ge.ok,structuredContent:{...ge.data??{results:[],totalResults:0,searchMode:f,query:e},ref:_e}}}catch(t){R_.error(`Search failed`,N(t));let n=rt({text:`Search failed: ${t instanceof Error?t.message:String(t)}`,query:e??``,searchMode:f??`hybrid`,limit:d,results:[],durationMs:Date.now()-C}),r=zl(n.summary);return{content:[{type:`text`,text:Bl(n.summary,r)}],structuredContent:{...n.data??{results:[],totalResults:0,searchMode:f??`hybrid`,query:e??``},ref:r}}}})}const $_=M(`tools`);function ev(e,t,n){let r=W(`session_digest`);e.registerTool(`session_digest`,{title:r.title,description:`Compress the current session's tool trajectory into a focused digest. Aggregates replay log, stash state, and checkpoints. Supports deterministic and LLM-assisted (sampling) modes with configurable token budget.`,inputSchema:{scope:R.enum([`tools`,`stash`,`all`]).default(`all`).describe(`What to include: tools (replay only), stash (stash + checkpoints only), or all`),since:R.string().optional().describe(`ISO timestamp — only include activity after this time`),last:R.number().min(1).max(500).optional().describe(`Max replay entries to consider (default: 50)`),focus:R.string().optional().describe(`Focus query — prioritize entries matching this topic`),mode:R.enum([`deterministic`,`sampling`]).default(`deterministic`).describe(`Summary mode: deterministic (fast, template-based) or sampling (LLM-assisted, richer)`),token_budget:R.number().min(100).max(8e3).default(2e3).describe(`Target token budget for the digest output`),persist:R.boolean().default(!0).describe(`Auto-save digest to stash for crash recovery`)},annotations:r.annotations},J(`session_digest`,async({scope:e,since:r,last:i,focus:a,mode:o,token_budget:s,persist:c})=>{try{let l={scope:e,since:r,last:i,focus:a,mode:o,tokenBudget:s,persist:c},u=t?{stateStore:t}:void 0;return{content:[{type:`text`,text:(o===`sampling`&&n?.available?await gn(l,async(e,t,r)=>(await n.createMessage({prompt:e,systemPrompt:t,maxTokens:r})).text,u):hn(l,u)).digest}]}}catch(e){return $_.error(`Session digest failed`,N(e)),q(`INTERNAL`,`Session digest failed: ${e instanceof Error?e.message:String(e)}`)}}))}const tv=1e4,nv={defaultTtlSeconds:300,defaultLeaseTtlMinutes:10,globalEnabled:!1};function rv(e){return e??nv}function iv(e,t){let n=e.trim();if(!n)throw Error(`${t} is required`);return n}function av(e,t,n){let r=iv(e,t);if(r.length>n)throw Error(`${t} exceeds max length of ${n}`);return r}function ov(e,t){if(!Number.isFinite(e)||e<=0)throw Error(`${t} must be greater than 0`);return Math.trunc(e)}function sv(e,t=!1,n){iv(e,`workspace`);let r=rv(n);if(!t)return e;if(!r.globalEnabled)throw Error(`Global signal scope is disabled`);return`__global__`}function cv(e,t,n){let r=rv(n),i=sv(t.workspace,t.global??!1,r),a=av(t.key,`key`,500),o=av(t.value,`value`,tv),s=t.agent?av(t.agent,`agent`,500):void 0,c=ov(t.ttlSeconds??r.defaultTtlSeconds,`ttlSeconds`);return e.signalPost(i,a,o,s,c)}function lv(e,t,n){let r=iv(t,`workspace`),i=av(n,`key`,500);return e.signalGet(r,i)}function uv(e,t){let n=iv(t,`workspace`);return e.signalList(n)}function dv(e,t,n){let r=iv(t,`workspace`),i=n===void 0?void 0:av(n,`key`,500);return e.signalClear(r,i)}function fv(e,t,n){let r=rv(n),i=av(t.resource,`resource`,500),a=av(t.holder,`holder`,500),o=iv(t.workspace,`workspace`),s=t.intent?av(t.intent,`intent`,tv):void 0,c=ov(t.ttlMinutes??r.defaultLeaseTtlMinutes,`ttlMinutes`);if(c>60)throw Error(`ttlMinutes exceeds max of 60`);let l=e.leaseAcquire(i,a,o,s,c),u=e.leaseGet(i,o);return u?{acquired:l,holder:u.holder,expiresAt:u.expiresAt}:{acquired:l}}function pv(e,t,n,r){let i=iv(t,`workspace`),a=av(n,`resource`,500),o=av(r,`holder`,500);return e.leaseRelease(a,o,i)}function mv(e,t){let n=iv(t,`workspace`);return e.leaseList(n)}const hv=M(`tools:signal`);function gv(e){return JSON.stringify(e,null,2)}function _v(e,t,n){let r=W(`signal`),i={...nv,...n};e.registerTool(`signal`,{title:r.title,description:`Inter-agent signaling and lease coordination`,inputSchema:{action:R.enum([`post`,`get`,`list`,`clear`,`lease`,`unlease`,`leases`]).describe(`Signal action to perform`),workspace:R.string().describe(`Workspace identifier (required)`),key:R.string().optional().describe(`Signal key (for post/get/clear)`),value:R.string().optional().describe(`Signal value (for post)`),agent:R.string().optional().describe(`Agent identifier`),resource:R.string().optional().describe(`Resource path (for lease/unlease)`),holder:R.string().optional().describe(`Lease holder ID (for lease/unlease)`),intent:R.string().optional().describe(`What the holder plans to do`),ttl:R.number().optional().describe(`TTL (seconds for signals, minutes for leases)`),global:R.boolean().optional().describe(`Use global scope (default: false)`)},annotations:r.annotations},J(`signal`,async({action:e,workspace:n,key:r,value:a,agent:o,resource:s,holder:c,intent:l,ttl:u,global:d})=>{try{switch(e){case`post`:{if(!r||a===void 0)throw Error(`key and value are required for post`);let e=cv(t,{workspace:n,key:r,value:a,agent:o,ttlSeconds:u,global:d},i);return{content:[{type:`text`,text:gv({id:e})}],structuredContent:{id:e}}}case`get`:{if(!r)throw Error(`key is required for get`);let e=lv(t,sv(n,d??!1,i),r);return{content:[{type:`text`,text:e.length===0?`[]`:gv(e)}],structuredContent:{signals:e}}}case`list`:{let e=uv(t,sv(n,d??!1,i));return{content:[{type:`text`,text:e.length===0?`[]`:gv(e)}],structuredContent:{signals:e}}}case`clear`:{let e=dv(t,sv(n,d??!1,i),r);return{content:[{type:`text`,text:gv({cleared:e})}],structuredContent:{cleared:e}}}case`lease`:{if(!s||!c)throw Error(`resource and holder are required for lease`);let e=fv(t,{resource:s,holder:c,workspace:n,intent:l,ttlMinutes:u},i);return{content:[{type:`text`,text:gv(e)}],structuredContent:e}}case`unlease`:{if(!s||!c)throw Error(`resource and holder are required for unlease`);let e=pv(t,n,s,c);return{content:[{type:`text`,text:gv({released:e})}],structuredContent:{released:e}}}case`leases`:{let e=mv(t,n);return{content:[{type:`text`,text:e.length===0?`[]`:gv(e)}],structuredContent:{leases:e}}}}}catch(e){return hv.error(`Signal operation failed`,N(e)),q(`INTERNAL`,`Signal operation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function vv(e,t){return e.length<=t?e:e.slice(0,t)}function yv(e){if(!e)return 0;let t=Date.parse(e);return Number.isNaN(t)?0:t}async function bv(e,t,n=d){if(!e||!t)return null;try{let[r,i,o]=await Promise.all([e.list({category:`lessons`,limit:200,orderBy:`updated`,order:`desc`}),e.list({category:`conventions`,limit:200,orderBy:`updated`,order:`desc`}),e.list({category:`session`,limit:200,orderBy:`updated`,order:`desc`})]),s=r.filter(e=>e.tags.includes(`lesson`)).map(e=>{let r=t.memoryMetaGet(e.path);return!r||r.supersededBy!=null?null:{entry:e,confidence:c(r.confidence,r.lastAccessedAt,r.createdAt,n)}}).filter(e=>e!==null).sort((e,t)=>t.confidence-e.confidence).slice(0,3);return{lessons:await Promise.all(s.map(async({entry:t,confidence:n})=>{let r=a((await e.read(t.path)).content);return{title:t.title,insight:vv(r.insight??``,150),confidence:n}})),conventions:i.map(e=>({entry:e,lastAccessedAt:t.memoryMetaGet(e.path)?.lastAccessedAt??null})).sort((e,t)=>yv(t.lastAccessedAt)-yv(e.lastAccessedAt)).slice(0,2).map(({entry:e})=>({title:e.title,preview:e.contentPreview})),checkpoint:o.map(e=>({entry:e,lastAccessedAt:t.memoryMetaGet(e.path)?.lastAccessedAt??null})).sort((e,t)=>yv(t.lastAccessedAt)-yv(e.lastAccessedAt)).map(({entry:e})=>vv(e.contentPreview,200))[0]??null}}catch{return null}}const xv=M(`tools`),Sv=14400*1e3,Cv={includePrelude:R.boolean().default(!1).describe(`Include session prelude with top lessons, conventions, and last checkpoint`)};function wv(e,t,n,r=15e3){let i,a=new Promise(e=>{i=setTimeout(()=>{xv.warn(`Status sub-operation "${n}" timed out after ${r}ms`),e({value:t,timedOut:!0})},r)});return Promise.race([e.then(e=>(clearTimeout(i),{value:e,timedOut:!1}),e=>(clearTimeout(i),xv.warn(`Status sub-operation "${n}" failed: ${e instanceof Error?e.message:String(e)}`),{value:t,timedOut:!1})),a])}function Tv(e){return e.onboarded?e.indexStale?{kind:`reindex`,reason:`Index stale. Run reindex() to update.`}:e.contextPressure>70?{kind:`handoff`,reason:`Context pressure high. Consider session handoff.`}:{kind:`proceed`,reason:`Ready to work.`}:{kind:`onboard`,reason:`Index not initialized. Run onboard({ path: "." }) first.`}}function Ev(){let e=ur.get(),t=lr.get();if(e)return`- **Tree-sitter (WASM)**: ✅ Available (${t.grammarCount} grammars, dir: ${t.wasmDir})`;let n=t.pathsChecked.length?t.pathsChecked.map(e=>` ${e.exists?`✓`:`✗`} ${e.path}`).join(`
3010
3010
  `):` none`,r=t.healAttempted?` Auto-heal: ${t.healSuccess?`✓ succeeded`:`✗ failed (${t.healError??`unknown`})`}`:` Auto-heal: not attempted`;return[`- **Tree-sitter (WASM)**: ⚠ Unavailable (regex fallback)`,` Reason: ${t.reason||`unknown`}`,` Paths checked:`,n,r,` OS: ${t.os} ${t.arch} | Node: ${t.nodeVersion}`,` Fix: Reinstall package or run vendor:wasm script`].join(`
3011
- `)}const Ev=5*6e4;let Dv=null,Ov=null;function kv(e,t,n,r){let i=Math.min(e/2e4,1),a=Math.min((t+n)/5e4,1),o=Math.min(r/200,1);return Math.round(i*40+a*35+o*25)}function Av(){let e=Date.now();if(Dv&&e-Dv.ts<Ev)return Dv.value;try{let t=L(Wn(),`.copilot`,`.aikit-scaffold.json`);if(!P(t))return Dv={value:null,ts:e},null;let n=JSON.parse(F(t,`utf-8`)).version??null;return Dv={value:n,ts:e},n}catch{return Dv={value:null,ts:e},null}}function jv(){let e=Date.now();if(Ov&&e-Ov.ts<Ev)return Ov.value;try{let t=L(process.cwd(),`.github`,`.aikit-scaffold.json`);if(!P(t))return Ov={value:null,ts:e},null;let n=JSON.parse(F(t,`utf-8`)).version??null;return Ov={value:n,ts:e},n}catch{return Ov={value:null,ts:e},null}}function Mv(e){let t=W(`status`);e.registerTool(`status`,{title:t.title,description:`Get the current status and statistics of the AI Kit index.`,inputSchema:Sv,annotations:t.annotations},J(`status`,async()=>{let e=ae(),t=Av(),n=jv(),r=t!=null&&t!==e,i=n!=null&&n!==e,a=[`## AI Kit Status`,``,`⏳ **AI Kit is initializing** — index stats will be available shortly.`,``,`### Runtime`,`- **Tree-sitter (WASM)**: ${ur.get()?`✅ Available (AST analysis)`:`⚠ Unavailable (regex fallback)`}`,``,`### Version`,`- **Server**: ${e}`,`- **Scaffold (user)**: ${t??`not installed`}`,`- **Scaffold (workspace)**: ${n??`not installed`}`];if(r||i){let o=oe(),s=[];r&&s.push(`user scaffold v${t}`),i&&s.push(`workspace scaffold v${n}`);let c=s.join(`, `);o.state===`success`?a.push(``,`### ✅ Upgrade Applied`,`- Server v${e} — ${c} auto-upgraded successfully.`,`- _Restart the MCP server to use the updated version._`):o.state===`pending`?a.push(``,`### ⏳ Upgrade In Progress`,`- Server v${e} ≠ ${c}`,`- Auto-upgrade is running in the background…`):o.state===`failed`?(ie(),a.push(``,`### ⬆ Upgrade Available (auto-upgrade failed, retrying)`,`- Server v${e} ≠ ${c}`,`- Error: ${o.error??`unknown`}`)):(ie(),a.push(``,`### ⬆ Upgrade Available`,`- Server v${e} ≠ ${c}`,`- Auto-upgrade triggered — check again shortly.`))}let o={totalRecords:0,totalFiles:0,lastIndexedAt:null,onboarded:!1,onboardDir:``,contentTypes:{},wasmAvailable:!!ur.get(),wasmDiagnostics:lr.get(),graphStats:null,curatedCount:0,serverVersion:e,scaffoldVersion:t??null,workspaceScaffoldVersion:n??null,upgradeAvailable:r||i,contextPressure:0,nextAction:wv({onboarded:!1,indexStale:!1,contextPressure:0})};return{content:[{type:`text`,text:a.join(`
3012
- `)}],structuredContent:o}}))}function Nv(e,t,n,r,i,a,o,s,c){let l=W(`status`);e.registerTool(`status`,{title:l.title,description:`Get the current status and statistics of the AI Kit index.`,inputSchema:Sv,annotations:l.annotations},J(`status`,async({includePrelude:e=!1})=>{let l=[];try{let[u,d]=await Promise.all([Cv(t.getStats(),{totalRecords:0,totalFiles:0,lastIndexedAt:null,contentTypeBreakdown:{}},`store.getStats`),Cv(t.listSourcePaths(),[],`store.listSourcePaths`)]),f=u.value;u.timedOut&&l.push(`⚠ Index stats timed out — values may be incomplete`);let p=d.value;d.timedOut&&l.push(`⚠ File listing timed out`);let m=null,h=0,g=[`## AI Kit Status`,``,`- **Total Records**: ${f.totalRecords}`,`- **Total Files**: ${f.totalFiles}`,`- **Last Indexed**: ${f.lastIndexedAt??`Never`}`,``,`### Content Types`,...Object.entries(f.contentTypeBreakdown).map(([e,t])=>`- ${e}: ${t}`),``,`### Indexed Files`,...p.slice(0,50).map(e=>`- ${e}`),p.length>50?`\n... and ${p.length-50} more files`:``];if(n)try{let e=await Cv(n.getStats(),{nodeCount:0,edgeCount:0,nodeTypes:{},edgeTypes:{}},`graphStore.getStats`);if(e.timedOut)l.push(`⚠ Graph stats timed out`),g.push(``,`### Knowledge Graph`,`- Graph stats timed out`);else{let t=e.value;m={nodes:t.nodeCount,edges:t.edgeCount},g.push(``,`### Knowledge Graph`,`- **Nodes**: ${t.nodeCount}`,`- **Edges**: ${t.edgeCount}`,...Object.entries(t.nodeTypes).map(([e,t])=>` - ${e}: ${t}`));try{let e=await Cv(n.validate(),{valid:!0,danglingEdges:[],orphanNodes:[],stats:{nodeCount:0,edgeCount:0,nodeTypes:{},edgeTypes:{}}},`graphStore.validate`);if(!e.timedOut){let t=e.value;t.valid||g.push(`- **⚠ Integrity Issues**: ${t.danglingEdges.length} dangling edges`),t.orphanNodes.length>0&&g.push(`- **Orphan nodes**: ${t.orphanNodes.length}`)}}catch{}}}catch{g.push(``,`### Knowledge Graph`,`- Graph store unavailable`)}let _=a?.onboardDir??``,v=P(_),y=i?.onboardComplete||v;if(g.push(``,`### Onboard Status`,y?`- ✅ Complete${i?.onboardTimestamp?` (last: ${i.onboardTimestamp})`:``}`:'- ❌ Not run — call `onboard({ path: "." })` to analyze the codebase',`- **Onboard Directory**: \`${_}\``),r)try{let e=await Cv(r.count(),0,`curated.count`);e.timedOut?(l.push(`⚠ Curated knowledge count timed out`),g.push(``,`### Curated Knowledge`,`- Listing timed out`)):(h=e.value,g.push(``,`### Curated Knowledge`,h>0?`- ${h} entries`:'- Empty — use `knowledge({ action: "remember", ... })` to persist decisions'))}catch{g.push(``,`### Curated Knowledge`,`- Unable to read curated entries`)}let b=kv(f.totalRecords,m?.nodes??0,m?.edges??0,h),x=f.lastIndexedAt?new Date(f.lastIndexedAt).getTime():0,S=x>0?Date.now()-x:1/0,C=wv({onboarded:y,indexStale:y&&S>1440*60*1e3,contextPressure:b});g.push(``),g.push(`## 📊 Context Pressure: ${b}/100`),b>=80?g.push(`⚠️ High pressure — consider pruning stale entries or compacting context.`):b>=50?g.push(`ℹ️ Moderate pressure — AI Kit memory is well-populated.`):g.push(`✅ Low pressure — plenty of headroom for more content.`);let w=0;if(f.lastIndexedAt){w=new Date(f.lastIndexedAt).getTime();let e=(Date.now()-w)/(1e3*60*60);g.push(``,`### Index Freshness`,e>24?o===`smart`?`- ⚠ Last indexed ${Math.floor(e)}h ago — smart indexing will refresh automatically`:`- ⚠ Last indexed ${Math.floor(e)}h ago — may be stale. Run \`reindex({})\``:`- ✅ Last indexed ${e<1?`less than 1h`:`${Math.floor(e)}h`} ago`)}g.push(``,`### Next Action`,`- **${C.kind}**: ${C.reason}`);let T=null,E=t;if(typeof E.getDiagnostics==`function`)try{let e=E.getDiagnostics();T={adapterType:e.adapterType,vectorSearchEnabled:e.vectorSearchEnabled,ftsEnabled:e.ftsEnabled,degradedMode:e.degradedMode,dbPath:e.dbPath,dbSizeBytes:e.dbSizeBytes,embeddingDim:e.embeddingDim,vectorDtype:e.vectorDtype},g.push(``,`### Storage`,`- **Backend**: ${a?.store?.backend??`unknown`}`,`- **Adapter**: ${T.adapterType}`,`- **Vector search**: ${T.vectorSearchEnabled?`✅ enabled`:`⚠ disabled (FTS-only fallback)`}`,T.dbPath?`- **DB**: ${T.dbPath}`:``,T.dbSizeBytes==null?``:`- **DB size**: ${(T.dbSizeBytes/1024/1024).toFixed(2)} MB`,`- **Embedding dim**: ${T.embeddingDim}`,`- **Vector dtype**: ${T.vectorDtype}`)}catch{}if(o===`smart`)if(g.push(``,`### Smart Indexing`),s){let e=s();e?g.push(`- **Mode**: Smart (trickle)`,`- **Status**: ${e.running?`✅ Running`:`⏸ Stopped`}`,`- **Queue**: ${e.queueSize} files pending`,`- **Changed files**: ${e.changedFilesSize} detected`,`- **Interval**: ${Math.round(e.intervalMs/1e3)}s per batch of ${e.batchSize}`):g.push(`- **Mode**: Smart (trickle)`,`- **Status**: scheduler state unavailable (init may have failed)`)}else g.push(`- **Mode**: Smart (trickle) — scheduler state unavailable`);let D=0;{try{let e=a?.stateDir?I(a.stateDir,`stash`):null;if(e&&P(e)){let t=De(e).mtimeMs;t>w&&(w=t)}}catch{}let e=[];if(r)try{let t=h>0?await r.list({limit:5,orderBy:`updated`,order:`desc`}):[];for(let e of t){let t=new Date(e.updated||e.created).getTime();t>w&&(w=t)}e.push(...t)}catch{}if(D=w>0?Date.now()-w:0,D>=xv){let t=Math.floor(D/36e5);if(g.push(``,`### 🌅 Session Briefing`,`_${t}+ hours since last activity — here's what to pick up:_`,``),e.length>0){g.push(`**Recent decisions/notes:**`);for(let t of e)g.push(`- **${t.title}** (${t.category??`note`}) — ${(t.contentPreview??``).slice(0,80)}…`)}g.push(``,`**Suggested next steps:**`,'- `search({ query: "SESSION CHECKPOINT", origin: "curated" })` — find your last checkpoint',"- `restore({})` — resume from a saved checkpoint",'- `knowledge({ action: "list" })` — browse all stored knowledge')}}g.push(``,`### Runtime`,Tv());let O=fe.instance().getAll(),k=O.filter(e=>e.status!==`healthy`);if(k.length>0){g.push(``,`### ⚠️ Subsystem Health`);for(let e of k){let t=Math.round((Date.now()-e.since)/1e3);g.push(`- **${e.name}**: ${e.status} (${t}s ago${e.reason?` — ${e.reason}`:``})`)}}else O.length>0&&g.push(``,`### ✅ Subsystem Health`,`- All ${O.length} subsystems healthy`);let ee=ue.getAll();if(ee.size>0){g.push(``,`### 🔌 Circuit Breakers`);for(let[e,t]of ee){let n=t.getState(),r=`- **${e}**: ${n===`closed`?`🟢`:n===`open`?`🔴`:`🟡`} ${n}`;if(n===`open`){let e=t.remainingCooldownMs();r+=` (recovery in ${Math.ceil(e/1e3)}s)`}g.push(r)}}let te=Av(),ne=jv(),re=ae(),se=te!=null&&te!==re,ce=ne!=null&&ne!==re;if(se||ce){let e=oe(),t=[];se&&t.push(`user scaffold v${te}`),ce&&t.push(`workspace scaffold v${ne}`);let n=t.join(`, `);e.state===`success`?g.push(``,`### ✅ Upgrade Applied`,`- Server v${re} — ${n} auto-upgraded successfully.`,`- _Restart the MCP server to use the updated version._`):e.state===`pending`?g.push(``,`### ⏳ Upgrade In Progress`,`- Server v${re} ≠ ${n}`,`- Auto-upgrade is running in the background…`):e.state===`failed`?(ie(),g.push(``,`### ⬆ Upgrade Available (auto-upgrade failed, retrying)`,`- Server v${re} ≠ ${n}`,`- Error: ${e.error??`unknown`}`)):(ie(),g.push(``,`### ⬆ Upgrade Available`,`- Server v${re} ≠ ${n}`,`- Auto-upgrade triggered — check again shortly.`))}l.length>0&&g.push(``,`### ⚠ Warnings`,...l.map(e=>`- ${e}`));let le=Wo();if(le.length>0){let e=le.sort((e,t)=>t.callCount-e.callCount);g.push(``,`### Tool Usage This Session`,``),g.push(`| Tool | Calls | Tokens In | Tokens Out | Errors | Avg Latency |`),g.push(`|------|-------|-----------|------------|--------|-------------|`);for(let t of e.slice(0,15)){let e=Math.round(t.totalInputChars/4),n=Math.round(t.totalOutputChars/4),r=Math.round(t.totalDurationMs/t.callCount);g.push(`| ${t.tool} | ${t.callCount} | ${e.toLocaleString()} | ${n.toLocaleString()} | ${t.errorCount} | ${r}ms |`)}}let A=Bo();A.callCount>0&&(g.push(``),g.push(`### Session Token Usage`),g.push(`- Tool calls: ${A.callCount}`),g.push(`- Input chars: ${A.totalInputChars.toLocaleString()}`),g.push(`- Output chars: ${A.totalOutputChars.toLocaleString()}`),g.push(`- Est. input tokens: ${Math.round(A.totalInputChars/4).toLocaleString()}`),g.push(`- Est. total tokens: ${Math.round((A.totalInputChars+A.totalOutputChars)/4).toLocaleString()}`));let j=No();if(j.bufferSize>=10){let e=j.state===`healthy`?`🟢`:j.state===`degraded`?`🔴`:`🟡`;g.push(``,`### Auto-GC: ${e} ${j.state}`),g.push(`- p95 latency: ${j.p95}ms | buffer: ${j.bufferSize} samples`),j.gcCount>0&&g.push(`- GC cycles triggered: ${j.gcCount}`)}let de=g.join(`
3013
- `),pe=e||D>=xv?await yv(r,c):void 0,me={totalRecords:f.totalRecords,totalFiles:f.totalFiles,lastIndexedAt:f.lastIndexedAt??null,onboarded:y,onboardDir:_,contentTypes:f.contentTypeBreakdown,wasmAvailable:!!ur.get(),wasmDiagnostics:lr.get(),graphStats:m,curatedCount:h,serverVersion:re,scaffoldVersion:te??null,workspaceScaffoldVersion:ne??null,upgradeAvailable:se||ce,storeBackend:a?.store?.backend,storeDiagnostics:T??null,contextPressure:b,nextAction:C,sessionTokens:{callCount:A.callCount,totalInputChars:A.totalInputChars,totalOutputChars:A.totalOutputChars,estInputTokens:Math.round(A.totalInputChars/4),estTotalTokens:Math.round((A.totalInputChars+A.totalOutputChars)/4),startTime:A.startTime},...pe===void 0?{}:{prelude:pe}};return{content:[{type:`text`,text:de+(o===`smart`?"\n\n---\n_Next: Use `search` to query indexed content or `graph({action:'find_nodes', name_pattern:'<top-level-module>'})` → then `graph({action:'neighbors', node_id})` for relationships. Smart indexing handles updates automatically._":"\n\n---\n_Next: Use `search` to query indexed content, `graph({action:'find_nodes', name_pattern:'<top-level-module>'})` → then `graph({action:'neighbors', node_id})` for relationships, or `reindex` to refresh the index._")}],structuredContent:me}}catch(e){return bv.error(`Status failed`,N(e)),q(`INTERNAL`,`Status check failed: ${e instanceof Error?e.message:String(e)}`)}}))}const Pv=M(`tools`);function Fv(e){return e instanceof Error?(`code`in e?e.code:void 0)===`ENOENT`||e.message.startsWith(`File not found:`)||e.message.startsWith(`Path not found:`):!1}function Iv(e){let t=W(`web_search`);e.registerTool(`web_search`,{title:t.title,description:`PREFERRED web search — fans out to multiple keyless providers (DuckDuckGo + Bing-HTML + Mojeek) by default, returning a deduplicated, consensus-ranked union within a 10s deadline. Optional providers (SearXNG, Google, Brave, Bing API) join the fan-out automatically when their env vars are set. Pass one query or multiple for parallel searching.`,inputSchema:{queries:R.array(R.string().max(2e3)).min(1).max(5).describe('Search queries (1–5). Single: `["react hooks"]`. Multiple searched in parallel.'),limit:R.number().min(1).max(20).default(5).describe(`Max results per query`),site:R.string().optional().describe(`Restrict to domain (e.g., "docs.aws.amazon.com")`),provider:R.enum([`multi`,`duckduckgo`,`bing-html`,`mojeek`,`searxng`,`google`,`brave`,`bing`]).optional().describe("Search provider. Defaults to env AIKIT_SEARCH_PROVIDER, then `multi` (fan-out). Single keyless: `duckduckgo`, `bing-html`, `mojeek`. Self-hosted: `searxng` (requires SEARXNG_URL). Keyed APIs: `google` (GOOGLE_API_KEY+GOOGLE_CSE_ID), `brave` (BRAVE_API_KEY), `bing` (BING_API_KEY). Missing keys auto-fall back to duckduckgo.")},annotations:t.annotations},J(`web_search`,async({queries:e,limit:t,site:n,provider:r})=>{let i=e,a=async e=>{let i=await Pn({query:e,limit:t,site:n,provider:r}),a=[`## Search: ${i.query} _(via ${i.provider})_`,``];if(i.results.length===0)a.push(`No results found.`);else for(let e of i.results)a.push(`### [${e.title}](${e.url})`,e.snippet,``);return a.join(`
3014
- `)};if(i.length===1)try{return{content:[{type:`text`,text:`${await a(i[0])}\n---\n_Next: Use \`web_fetch\` to read any of these pages in full._`}]}}catch(e){return Pv.error(`Web search failed`,N(e)),q(`INTERNAL`,`Web search failed: ${e instanceof Error?e.message:String(e)}`)}let o=await Promise.allSettled(i.map(e=>a(e))),s=[],c=0;for(let e=0;e<o.length;e++){let t=o[e];if(t.status===`fulfilled`)s.push(t.value);else{c++;let n=t.reason instanceof Error?t.reason.message:String(t.reason);Pv.error(`Web search failed`,{query:i[e],error:n}),s.push(`## ❌ Search failed: ${i[e]}\n\n${n}`)}}let l=`_Searched ${o.length-c}/${o.length} queries successfully._`;s.push(``,`---`,l,"_Next: Use `web_fetch` to read any of these pages in full._");let u=s.join(`
3015
-
3016
- `);return c===o.length?q(`INTERNAL`,u):{content:[{type:`text`,text:u}]}}))}function Lv(e){let t=W(`http`);e.registerTool(`http`,{title:t.title,description:`Make HTTP requests (GET/POST/PUT/PATCH/DELETE/HEAD) for API testing. Returns status, headers, and formatted body with timing info.`,inputSchema:{url:R.string().url().describe(`Request URL (http/https only)`),method:R.enum([`GET`,`POST`,`PUT`,`PATCH`,`DELETE`,`HEAD`]).default(`GET`).describe(`HTTP method`),headers:R.record(R.string(),R.string()).optional().describe(`Request headers as key-value pairs`),body:R.string().optional().describe(`Request body (for POST/PUT/PATCH)`),timeout:R.number().min(1e3).max(6e4).default(15e3).describe(`Timeout in milliseconds`)},annotations:t.annotations},J(`http`,async({url:e,method:t,headers:n,body:r,timeout:i})=>{try{let a=await Dt({url:e,method:t,headers:n,body:r,timeout:i}),o=[`## ${t} ${e}`,``,`**Status:** ${a.status} ${a.statusText}`,`**Time:** ${a.durationMs}ms`,`**Size:** ${a.sizeBytes} bytes`,`**Content-Type:** ${a.contentType}`,``,`### Headers`,"```json",JSON.stringify(a.headers),"```",``,`### Body`,a.contentType.includes(`json`)?"```json":"```",a.body,"```"];return a.truncated&&o.push(``,`_Response truncated — total size: ${a.sizeBytes} bytes_`),{content:[{type:`text`,text:o.join(`
3017
- `)}]}}catch(e){return Pv.error(`HTTP request failed`,N(e)),q(`INTERNAL`,`HTTP request failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Rv(e){let t=W(`regex_test`);e.registerTool(`regex_test`,{title:t.title,description:`Test a regex pattern against sample strings. Supports match, replace, and split modes.`,inputSchema:{pattern:R.string().max(500).describe(`Regex pattern (without delimiters)`),flags:R.string().max(10).regex(/^[gimsuy]*$/).default(``).describe(`Regex flags (g, i, m, s, etc.)`),test_strings:R.array(R.string().max(1e4)).max(50).describe(`Strings to test the pattern against`),mode:R.enum([`match`,`replace`,`split`]).default(`match`).describe(`Test mode`),replacement:R.string().optional().describe(`Replacement string (for replace mode)`)},annotations:t.annotations},J(`regex_test`,async({pattern:e,flags:t,test_strings:n,mode:r,replacement:i})=>{let a=tn({pattern:e,flags:t,testStrings:n,mode:r,replacement:i});if(!a.valid)return q(`VALIDATION`,`Invalid regex: ${a.error}`);let o=[`## Regex: \`/${a.pattern}/${a.flags}\``,``,`Mode: ${r}`,``];for(let e of a.results){if(o.push(`**Input:** \`${e.input}\``),o.push(`**Matched:** ${e.matched}`),e.matches)for(let t of e.matches){let e=t.groups.length>0?` groups: [${t.groups.join(`, `)}]`:``;o.push(` - "${t.full}" at index ${t.index}${e}`)}e.replaced!==void 0&&o.push(`**Result:** \`${e.replaced}\``),e.split&&o.push(`**Split:** ${JSON.stringify(e.split)}`),o.push(``)}return{content:[{type:`text`,text:o.join(`
3018
- `)}]}}))}function zv(e){let t=W(`encode`);e.registerTool(`encode`,{title:t.title,description:`Encode, decode, or hash text. Supports base64, URL encoding, SHA-256, MD5, JWT decode, hex.`,inputSchema:{operation:R.enum([`base64_encode`,`base64_decode`,`url_encode`,`url_decode`,`sha256`,`md5`,`jwt_decode`,`hex_encode`,`hex_decode`]).describe(`Operation to perform`),input:R.string().max(1e6).describe(`Input text`)},annotations:t.annotations},J(`encode`,async({operation:e,input:t})=>{try{let n=ut({operation:e,input:t});return{content:[{type:`text`,text:`## ${e}\n\n**Input:** \`${t.length>100?`${t.slice(0,100)}...`:t}\`\n**Output:**\n\`\`\`\n${n.output}\n\`\`\``}]}}catch(e){return Pv.error(`Encode failed`,N(e)),q(`INTERNAL`,`Encode failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Bv(e){let t=W(`measure`);e.registerTool(`measure`,{title:t.title,description:`Measure code complexity, line counts, and function counts for a file or directory. Returns per-file metrics sorted by complexity.`,outputSchema:zs,inputSchema:{path:R.string().describe(`File or directory path to measure`),extensions:R.array(R.string()).optional().describe(`File extensions to include (default: .ts,.tsx,.js,.jsx)`),include_hidden:R.boolean().optional().describe(`Include hidden trees such as .generated and .cache. Default false.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`)},annotations:t.annotations},J(`measure`,async({path:e,extensions:t,include_hidden:n,max_tokens:r})=>{try{let i=await Lt({path:e,extensions:t,includeHidden:n}),a=[`## Code Metrics`,``,`**Files:** ${i.summary.totalFiles}`,`**Total lines:** ${i.summary.totalLines} (${i.summary.totalCodeLines} code)`,`**Functions:** ${i.summary.totalFunctions}`,`**Avg complexity:** ${i.summary.avgComplexity}`,`**Max complexity:** ${i.summary.maxComplexity.value} (${i.summary.maxComplexity.file})`,``,`### Top files by complexity`,``,`| File | Lines | Code | Complexity | Cognitive | Functions | Imports |`,`|------|-------|------|------------|-----------|-----------|---------|`];for(let e of i.files.slice(0,20)){let t=e.cognitiveComplexity===void 0?`—`:String(e.cognitiveComplexity);a.push(`| ${e.path} | ${e.lines.total} | ${e.lines.code} | ${e.complexity} | ${t} | ${e.functions} | ${e.imports} |`)}i.files.length>20&&a.push(``,`_...and ${i.files.length-20} more files_`);let o={summary:{totalFiles:i.summary.totalFiles,totalLines:i.summary.totalLines,totalCodeLines:i.summary.totalCodeLines,totalFunctions:i.summary.totalFunctions,avgComplexity:i.summary.avgComplexity,maxComplexity:{value:i.summary.maxComplexity.value,file:i.summary.maxComplexity.file}},files:i.files.map(e=>({path:e.path,lines:e.lines.total,code:e.lines.code,complexity:e.complexity,functions:e.functions}))};return{content:[{type:`text`,text:r?kn(a.join(`
3011
+ `)}const Dv=5*6e4;let Ov=null,kv=null;function Av(e,t,n,r){let i=Math.min(e/2e4,1),a=Math.min((t+n)/5e4,1),o=Math.min(r/200,1);return Math.round(i*40+a*35+o*25)}function jv(){let e=Date.now();if(Ov&&e-Ov.ts<Dv)return Ov.value;try{let t=L(Wn(),`.copilot`,`.aikit-scaffold.json`);if(!P(t))return Ov={value:null,ts:e},null;let n=JSON.parse(F(t,`utf-8`)).version??null;return Ov={value:n,ts:e},n}catch{return Ov={value:null,ts:e},null}}function Mv(){let e=Date.now();if(kv&&e-kv.ts<Dv)return kv.value;try{let t=L(process.cwd(),`.github`,`.aikit-scaffold.json`);if(!P(t))return kv={value:null,ts:e},null;let n=JSON.parse(F(t,`utf-8`)).version??null;return kv={value:n,ts:e},n}catch{return kv={value:null,ts:e},null}}function Nv(e){let t=W(`status`);e.registerTool(`status`,{title:t.title,description:`Get the current status and statistics of the AI Kit index.`,inputSchema:Cv,annotations:t.annotations},J(`status`,async()=>{let e=ae(),t=jv(),n=Mv(),r=t!=null&&t!==e,i=n!=null&&n!==e,a=[`## AI Kit Status`,``,`⏳ **AI Kit is initializing** — index stats will be available shortly.`,``,`### Runtime`,`- **Tree-sitter (WASM)**: ${ur.get()?`✅ Available (AST analysis)`:`⚠ Unavailable (regex fallback)`}`,``,`### Version`,`- **Server**: ${e}`,`- **Scaffold (user)**: ${t??`not installed`}`,`- **Scaffold (workspace)**: ${n??`not installed`}`];if(r||i){let o=oe(),s=[];r&&s.push(`user scaffold v${t}`),i&&s.push(`workspace scaffold v${n}`);let c=s.join(`, `);o.state===`success`?a.push(``,`### ✅ Upgrade Applied`,`- Server v${e} — ${c} auto-upgraded successfully.`,`- _Restart the MCP server to use the updated version._`):o.state===`pending`?a.push(``,`### ⏳ Upgrade In Progress`,`- Server v${e} ≠ ${c}`,`- Auto-upgrade is running in the background…`):o.state===`failed`?(ie(),a.push(``,`### ⬆ Upgrade Available (auto-upgrade failed, retrying)`,`- Server v${e} ≠ ${c}`,`- Error: ${o.error??`unknown`}`)):(ie(),a.push(``,`### ⬆ Upgrade Available`,`- Server v${e} ≠ ${c}`,`- Auto-upgrade triggered — check again shortly.`))}let o={totalRecords:0,totalFiles:0,lastIndexedAt:null,onboarded:!1,onboardDir:``,contentTypes:{},wasmAvailable:!!ur.get(),wasmDiagnostics:lr.get(),graphStats:null,curatedCount:0,serverVersion:e,scaffoldVersion:t??null,workspaceScaffoldVersion:n??null,upgradeAvailable:r||i,contextPressure:0,nextAction:Tv({onboarded:!1,indexStale:!1,contextPressure:0})};return{content:[{type:`text`,text:a.join(`
3012
+ `)}],structuredContent:o}}))}function Pv(e,t,n,r,i,a,o,s,c){let l=W(`status`);e.registerTool(`status`,{title:l.title,description:`Get the current status and statistics of the AI Kit index.`,inputSchema:Cv,annotations:l.annotations},J(`status`,async({includePrelude:e=!1})=>{let l=[];try{let[u,d]=await Promise.all([wv(t.getStats(),{totalRecords:0,totalFiles:0,lastIndexedAt:null,contentTypeBreakdown:{}},`store.getStats`),wv(t.listSourcePaths(),[],`store.listSourcePaths`)]),f=u.value;u.timedOut&&l.push(`⚠ Index stats timed out — values may be incomplete`);let p=d.value;d.timedOut&&l.push(`⚠ File listing timed out`);let m=null,h=0,g=[`## AI Kit Status`,``,`- **Total Records**: ${f.totalRecords}`,`- **Total Files**: ${f.totalFiles}`,`- **Last Indexed**: ${f.lastIndexedAt??`Never`}`,``,`### Content Types`,...Object.entries(f.contentTypeBreakdown).map(([e,t])=>`- ${e}: ${t}`),``,`### Indexed Files`,...p.slice(0,50).map(e=>`- ${e}`),p.length>50?`\n... and ${p.length-50} more files`:``];if(n)try{let e=await wv(n.getStats(),{nodeCount:0,edgeCount:0,nodeTypes:{},edgeTypes:{}},`graphStore.getStats`);if(e.timedOut)l.push(`⚠ Graph stats timed out`),g.push(``,`### Knowledge Graph`,`- Graph stats timed out`);else{let t=e.value;m={nodes:t.nodeCount,edges:t.edgeCount},g.push(``,`### Knowledge Graph`,`- **Nodes**: ${t.nodeCount}`,`- **Edges**: ${t.edgeCount}`,...Object.entries(t.nodeTypes).map(([e,t])=>` - ${e}: ${t}`));try{let e=await wv(n.validate(),{valid:!0,danglingEdges:[],orphanNodes:[],stats:{nodeCount:0,edgeCount:0,nodeTypes:{},edgeTypes:{}}},`graphStore.validate`);if(!e.timedOut){let t=e.value;t.valid||g.push(`- **⚠ Integrity Issues**: ${t.danglingEdges.length} dangling edges`),t.orphanNodes.length>0&&g.push(`- **Orphan nodes**: ${t.orphanNodes.length}`)}}catch{}}}catch{g.push(``,`### Knowledge Graph`,`- Graph store unavailable`)}let _=a?.onboardDir??``,v=P(_),y=i?.onboardComplete||v;if(g.push(``,`### Onboard Status`,y?`- ✅ Complete${i?.onboardTimestamp?` (last: ${i.onboardTimestamp})`:``}`:'- ❌ Not run — call `onboard({ path: "." })` to analyze the codebase',`- **Onboard Directory**: \`${_}\``),r)try{let e=await wv(r.count(),0,`curated.count`);e.timedOut?(l.push(`⚠ Curated knowledge count timed out`),g.push(``,`### Curated Knowledge`,`- Listing timed out`)):(h=e.value,g.push(``,`### Curated Knowledge`,h>0?`- ${h} entries`:'- Empty — use `knowledge({ action: "remember", ... })` to persist decisions'))}catch{g.push(``,`### Curated Knowledge`,`- Unable to read curated entries`)}let b=Av(f.totalRecords,m?.nodes??0,m?.edges??0,h),x=f.lastIndexedAt?new Date(f.lastIndexedAt).getTime():0,S=x>0?Date.now()-x:1/0,C=Tv({onboarded:y,indexStale:y&&S>1440*60*1e3,contextPressure:b});g.push(``),g.push(`## 📊 Context Pressure: ${b}/100`),b>=80?g.push(`⚠️ High pressure — consider pruning stale entries or compacting context.`):b>=50?g.push(`ℹ️ Moderate pressure — AI Kit memory is well-populated.`):g.push(`✅ Low pressure — plenty of headroom for more content.`);let w=0;if(f.lastIndexedAt){w=new Date(f.lastIndexedAt).getTime();let e=(Date.now()-w)/(1e3*60*60);g.push(``,`### Index Freshness`,e>24?o===`smart`?`- ⚠ Last indexed ${Math.floor(e)}h ago — smart indexing will refresh automatically`:`- ⚠ Last indexed ${Math.floor(e)}h ago — may be stale. Run \`reindex({})\``:`- ✅ Last indexed ${e<1?`less than 1h`:`${Math.floor(e)}h`} ago`)}g.push(``,`### Next Action`,`- **${C.kind}**: ${C.reason}`);let T=null,E=t;if(typeof E.getDiagnostics==`function`)try{let e=E.getDiagnostics();T={adapterType:e.adapterType,vectorSearchEnabled:e.vectorSearchEnabled,ftsEnabled:e.ftsEnabled,degradedMode:e.degradedMode,dbPath:e.dbPath,dbSizeBytes:e.dbSizeBytes,embeddingDim:e.embeddingDim,vectorDtype:e.vectorDtype},g.push(``,`### Storage`,`- **Backend**: ${a?.store?.backend??`unknown`}`,`- **Adapter**: ${T.adapterType}`,`- **Vector search**: ${T.vectorSearchEnabled?`✅ enabled`:`⚠ disabled (FTS-only fallback)`}`,T.dbPath?`- **DB**: ${T.dbPath}`:``,T.dbSizeBytes==null?``:`- **DB size**: ${(T.dbSizeBytes/1024/1024).toFixed(2)} MB`,`- **Embedding dim**: ${T.embeddingDim}`,`- **Vector dtype**: ${T.vectorDtype}`)}catch{}if(o===`smart`)if(g.push(``,`### Smart Indexing`),s){let e=s();e?g.push(`- **Mode**: Smart (trickle)`,`- **Status**: ${e.running?`✅ Running`:`⏸ Stopped`}`,`- **Queue**: ${e.queueSize} files pending`,`- **Changed files**: ${e.changedFilesSize} detected`,`- **Interval**: ${Math.round(e.intervalMs/1e3)}s per batch of ${e.batchSize}`):g.push(`- **Mode**: Smart (trickle)`,`- **Status**: scheduler state unavailable (init may have failed)`)}else g.push(`- **Mode**: Smart (trickle) — scheduler state unavailable`);let D=0;{try{let e=a?.stateDir?I(a.stateDir,`stash`):null;if(e&&P(e)){let t=De(e).mtimeMs;t>w&&(w=t)}}catch{}let e=[];if(r)try{let t=h>0?await r.list({limit:5,orderBy:`updated`,order:`desc`}):[];for(let e of t){let t=new Date(e.updated||e.created).getTime();t>w&&(w=t)}e.push(...t)}catch{}if(D=w>0?Date.now()-w:0,D>=Sv){let t=Math.floor(D/36e5);if(g.push(``,`### 🌅 Session Briefing`,`_${t}+ hours since last activity — here's what to pick up:_`,``),e.length>0){g.push(`**Recent decisions/notes:**`);for(let t of e)g.push(`- **${t.title}** (${t.category??`note`}) — ${(t.contentPreview??``).slice(0,80)}…`)}g.push(``,`**Suggested next steps:**`,'- `search({ query: "SESSION CHECKPOINT", origin: "curated" })` — find your last checkpoint',"- `restore({})` — resume from a saved checkpoint",'- `knowledge({ action: "list" })` — browse all stored knowledge')}}g.push(``,`### Runtime`,Ev());let O=fe.instance().getAll(),k=O.filter(e=>e.status!==`healthy`);if(k.length>0){g.push(``,`### ⚠️ Subsystem Health`);for(let e of k){let t=Math.round((Date.now()-e.since)/1e3);g.push(`- **${e.name}**: ${e.status} (${t}s ago${e.reason?` — ${e.reason}`:``})`)}}else O.length>0&&g.push(``,`### ✅ Subsystem Health`,`- All ${O.length} subsystems healthy`);let ee=ue.getAll();if(ee.size>0){g.push(``,`### 🔌 Circuit Breakers`);for(let[e,t]of ee){let n=t.getState(),r=`- **${e}**: ${n===`closed`?`🟢`:n===`open`?`🔴`:`🟡`} ${n}`;if(n===`open`){let e=t.remainingCooldownMs();r+=` (recovery in ${Math.ceil(e/1e3)}s)`}g.push(r)}}let te=jv(),ne=Mv(),re=ae(),se=te!=null&&te!==re,ce=ne!=null&&ne!==re;if(se||ce){let e=oe(),t=[];se&&t.push(`user scaffold v${te}`),ce&&t.push(`workspace scaffold v${ne}`);let n=t.join(`, `);e.state===`success`?g.push(``,`### ✅ Upgrade Applied`,`- Server v${re} — ${n} auto-upgraded successfully.`,`- _Restart the MCP server to use the updated version._`):e.state===`pending`?g.push(``,`### ⏳ Upgrade In Progress`,`- Server v${re} ≠ ${n}`,`- Auto-upgrade is running in the background…`):e.state===`failed`?(ie(),g.push(``,`### ⬆ Upgrade Available (auto-upgrade failed, retrying)`,`- Server v${re} ≠ ${n}`,`- Error: ${e.error??`unknown`}`)):(ie(),g.push(``,`### ⬆ Upgrade Available`,`- Server v${re} ≠ ${n}`,`- Auto-upgrade triggered — check again shortly.`))}l.length>0&&g.push(``,`### ⚠ Warnings`,...l.map(e=>`- ${e}`));let le=Wo();if(le.length>0){let e=le.sort((e,t)=>t.callCount-e.callCount);g.push(``,`### Tool Usage This Session`,``),g.push(`| Tool | Calls | Tokens In | Tokens Out | Errors | Avg Latency |`),g.push(`|------|-------|-----------|------------|--------|-------------|`);for(let t of e.slice(0,15)){let e=Math.round(t.totalInputChars/4),n=Math.round(t.totalOutputChars/4),r=Math.round(t.totalDurationMs/t.callCount);g.push(`| ${t.tool} | ${t.callCount} | ${e.toLocaleString()} | ${n.toLocaleString()} | ${t.errorCount} | ${r}ms |`)}}let A=Bo();A.callCount>0&&(g.push(``),g.push(`### Session Token Usage`),g.push(`- Tool calls: ${A.callCount}`),g.push(`- Input chars: ${A.totalInputChars.toLocaleString()}`),g.push(`- Output chars: ${A.totalOutputChars.toLocaleString()}`),g.push(`- Est. input tokens: ${Math.round(A.totalInputChars/4).toLocaleString()}`),g.push(`- Est. total tokens: ${Math.round((A.totalInputChars+A.totalOutputChars)/4).toLocaleString()}`));let j=No();if(j.bufferSize>=10){let e=j.state===`healthy`?`🟢`:j.state===`degraded`?`🔴`:`🟡`;g.push(``,`### Auto-GC: ${e} ${j.state}`),g.push(`- p95 latency: ${j.p95}ms | buffer: ${j.bufferSize} samples`),j.gcCount>0&&g.push(`- GC cycles triggered: ${j.gcCount}`)}let de=g.join(`
3013
+ `),pe=e||D>=Sv?await bv(r,c):void 0,me={totalRecords:f.totalRecords,totalFiles:f.totalFiles,lastIndexedAt:f.lastIndexedAt??null,onboarded:y,onboardDir:_,contentTypes:f.contentTypeBreakdown,wasmAvailable:!!ur.get(),wasmDiagnostics:lr.get(),graphStats:m,curatedCount:h,serverVersion:re,scaffoldVersion:te??null,workspaceScaffoldVersion:ne??null,upgradeAvailable:se||ce,storeBackend:a?.store?.backend,storeDiagnostics:T??null,contextPressure:b,nextAction:C,sessionTokens:{callCount:A.callCount,totalInputChars:A.totalInputChars,totalOutputChars:A.totalOutputChars,estInputTokens:Math.round(A.totalInputChars/4),estTotalTokens:Math.round((A.totalInputChars+A.totalOutputChars)/4),startTime:A.startTime},...pe===void 0?{}:{prelude:pe}};return{content:[{type:`text`,text:de+(o===`smart`?"\n\n---\n_Next: Use `search` to query indexed content or `graph({action:'find_nodes', name_pattern:'<top-level-module>'})` → then `graph({action:'neighbors', node_id})` for relationships. Smart indexing handles updates automatically._":"\n\n---\n_Next: Use `search` to query indexed content, `graph({action:'find_nodes', name_pattern:'<top-level-module>'})` → then `graph({action:'neighbors', node_id})` for relationships, or `reindex` to refresh the index._")}],structuredContent:me}}catch(e){return xv.error(`Status failed`,N(e)),q(`INTERNAL`,`Status check failed: ${e instanceof Error?e.message:String(e)}`)}}))}const Fv=M(`tools`);function Iv(e){return e instanceof Error?(`code`in e?e.code:void 0)===`ENOENT`||e.message.startsWith(`File not found:`)||e.message.startsWith(`Path not found:`):!1}function Lv(e){let t=W(`web_search`);e.registerTool(`web_search`,{title:t.title,description:`PREFERRED web search — fans out to multiple keyless providers (DuckDuckGo + Bing-HTML + Mojeek) by default, returning a deduplicated, consensus-ranked union within a 10s deadline. Optional providers (SearXNG, Google, Brave, Bing API) join the fan-out automatically when their env vars are set. Pass one query or multiple for parallel searching.`,inputSchema:{queries:R.array(R.string().max(2e3)).min(1).max(5).describe('Search queries (1–5). Single: `["react hooks"]`. Multiple searched in parallel.'),limit:R.number().min(1).max(20).default(5).describe(`Max results per query`),site:R.string().optional().describe(`Restrict to domain (e.g., "docs.aws.amazon.com")`),provider:R.enum([`multi`,`duckduckgo`,`bing-html`,`mojeek`,`searxng`,`google`,`brave`,`bing`]).optional().describe("Search provider. Defaults to env AIKIT_SEARCH_PROVIDER, then `multi` (fan-out). Single keyless: `duckduckgo`, `bing-html`, `mojeek`. Self-hosted: `searxng` (requires SEARXNG_URL). Keyed APIs: `google` (GOOGLE_API_KEY+GOOGLE_CSE_ID), `brave` (BRAVE_API_KEY), `bing` (BING_API_KEY). Missing keys auto-fall back to duckduckgo.")},annotations:t.annotations},J(`web_search`,async({queries:e,limit:t,site:n,provider:r})=>{let i=e,a=async e=>{let i=await Pn({query:e,limit:t,site:n,provider:r}),a=[`## Search: ${i.query} _(via ${i.provider})_`,``];if(i.results.length===0)a.push(`No results found.`);else for(let e of i.results)a.push(`### [${e.title}](${e.url})`,e.snippet,``);return a.join(`
3014
+ `)};if(i.length===1)try{return{content:[{type:`text`,text:`${await a(i[0])}\n---\n_Next: Use \`web_fetch\` to read any of these pages in full._`}]}}catch(e){return Fv.error(`Web search failed`,N(e)),q(`INTERNAL`,`Web search failed: ${e instanceof Error?e.message:String(e)}`)}let o=await Promise.allSettled(i.map(e=>a(e))),s=[],c=0;for(let e=0;e<o.length;e++){let t=o[e];if(t.status===`fulfilled`)s.push(t.value);else{c++;let n=t.reason instanceof Error?t.reason.message:String(t.reason);Fv.error(`Web search failed`,{query:i[e],error:n}),s.push(`## ❌ Search failed: ${i[e]}\n\n${n}`)}}let l=`_Searched ${o.length-c}/${o.length} queries successfully._`;s.push(``,`---`,l,"_Next: Use `web_fetch` to read any of these pages in full._");let u=s.join(`
3015
+
3016
+ `);return c===o.length?q(`INTERNAL`,u):{content:[{type:`text`,text:u}]}}))}function Rv(e){let t=W(`http`);e.registerTool(`http`,{title:t.title,description:`Make HTTP requests (GET/POST/PUT/PATCH/DELETE/HEAD) for API testing. Returns status, headers, and formatted body with timing info.`,inputSchema:{url:R.string().url().describe(`Request URL (http/https only)`),method:R.enum([`GET`,`POST`,`PUT`,`PATCH`,`DELETE`,`HEAD`]).default(`GET`).describe(`HTTP method`),headers:R.record(R.string(),R.string()).optional().describe(`Request headers as key-value pairs`),body:R.string().optional().describe(`Request body (for POST/PUT/PATCH)`),timeout:R.number().min(1e3).max(6e4).default(15e3).describe(`Timeout in milliseconds`)},annotations:t.annotations},J(`http`,async({url:e,method:t,headers:n,body:r,timeout:i})=>{try{let a=await Dt({url:e,method:t,headers:n,body:r,timeout:i}),o=[`## ${t} ${e}`,``,`**Status:** ${a.status} ${a.statusText}`,`**Time:** ${a.durationMs}ms`,`**Size:** ${a.sizeBytes} bytes`,`**Content-Type:** ${a.contentType}`,``,`### Headers`,"```json",JSON.stringify(a.headers),"```",``,`### Body`,a.contentType.includes(`json`)?"```json":"```",a.body,"```"];return a.truncated&&o.push(``,`_Response truncated — total size: ${a.sizeBytes} bytes_`),{content:[{type:`text`,text:o.join(`
3017
+ `)}]}}catch(e){return Fv.error(`HTTP request failed`,N(e)),q(`INTERNAL`,`HTTP request failed: ${e instanceof Error?e.message:String(e)}`)}}))}function zv(e){let t=W(`regex_test`);e.registerTool(`regex_test`,{title:t.title,description:`Test a regex pattern against sample strings. Supports match, replace, and split modes.`,inputSchema:{pattern:R.string().max(500).describe(`Regex pattern (without delimiters)`),flags:R.string().max(10).regex(/^[gimsuy]*$/).default(``).describe(`Regex flags (g, i, m, s, etc.)`),test_strings:R.array(R.string().max(1e4)).max(50).describe(`Strings to test the pattern against`),mode:R.enum([`match`,`replace`,`split`]).default(`match`).describe(`Test mode`),replacement:R.string().optional().describe(`Replacement string (for replace mode)`)},annotations:t.annotations},J(`regex_test`,async({pattern:e,flags:t,test_strings:n,mode:r,replacement:i})=>{let a=tn({pattern:e,flags:t,testStrings:n,mode:r,replacement:i});if(!a.valid)return q(`VALIDATION`,`Invalid regex: ${a.error}`);let o=[`## Regex: \`/${a.pattern}/${a.flags}\``,``,`Mode: ${r}`,``];for(let e of a.results){if(o.push(`**Input:** \`${e.input}\``),o.push(`**Matched:** ${e.matched}`),e.matches)for(let t of e.matches){let e=t.groups.length>0?` groups: [${t.groups.join(`, `)}]`:``;o.push(` - "${t.full}" at index ${t.index}${e}`)}e.replaced!==void 0&&o.push(`**Result:** \`${e.replaced}\``),e.split&&o.push(`**Split:** ${JSON.stringify(e.split)}`),o.push(``)}return{content:[{type:`text`,text:o.join(`
3018
+ `)}]}}))}function Bv(e){let t=W(`encode`);e.registerTool(`encode`,{title:t.title,description:`Encode, decode, or hash text. Supports base64, URL encoding, SHA-256, MD5, JWT decode, hex.`,inputSchema:{operation:R.enum([`base64_encode`,`base64_decode`,`url_encode`,`url_decode`,`sha256`,`md5`,`jwt_decode`,`hex_encode`,`hex_decode`]).describe(`Operation to perform`),input:R.string().max(1e6).describe(`Input text`)},annotations:t.annotations},J(`encode`,async({operation:e,input:t})=>{try{let n=ut({operation:e,input:t});return{content:[{type:`text`,text:`## ${e}\n\n**Input:** \`${t.length>100?`${t.slice(0,100)}...`:t}\`\n**Output:**\n\`\`\`\n${n.output}\n\`\`\``}]}}catch(e){return Fv.error(`Encode failed`,N(e)),q(`INTERNAL`,`Encode failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Vv(e){let t=W(`measure`);e.registerTool(`measure`,{title:t.title,description:`Measure code complexity, line counts, and function counts for a file or directory. Returns per-file metrics sorted by complexity.`,outputSchema:zs,inputSchema:{path:R.string().describe(`File or directory path to measure`),extensions:R.array(R.string()).optional().describe(`File extensions to include (default: .ts,.tsx,.js,.jsx)`),include_hidden:R.boolean().optional().describe(`Include hidden trees such as .generated and .cache. Default false.`),max_tokens:R.number().min(100).max(5e4).optional().describe(`Maximum token budget for the response. When set, output is truncated to fit.`)},annotations:t.annotations},J(`measure`,async({path:e,extensions:t,include_hidden:n,max_tokens:r})=>{try{let i=await Lt({path:e,extensions:t,includeHidden:n}),a=[`## Code Metrics`,``,`**Files:** ${i.summary.totalFiles}`,`**Total lines:** ${i.summary.totalLines} (${i.summary.totalCodeLines} code)`,`**Functions:** ${i.summary.totalFunctions}`,`**Avg complexity:** ${i.summary.avgComplexity}`,`**Max complexity:** ${i.summary.maxComplexity.value} (${i.summary.maxComplexity.file})`,``,`### Top files by complexity`,``,`| File | Lines | Code | Complexity | Cognitive | Functions | Imports |`,`|------|-------|------|------------|-----------|-----------|---------|`];for(let e of i.files.slice(0,20)){let t=e.cognitiveComplexity===void 0?`—`:String(e.cognitiveComplexity);a.push(`| ${e.path} | ${e.lines.total} | ${e.lines.code} | ${e.complexity} | ${t} | ${e.functions} | ${e.imports} |`)}i.files.length>20&&a.push(``,`_...and ${i.files.length-20} more files_`);let o={summary:{totalFiles:i.summary.totalFiles,totalLines:i.summary.totalLines,totalCodeLines:i.summary.totalCodeLines,totalFunctions:i.summary.totalFunctions,avgComplexity:i.summary.avgComplexity,maxComplexity:{value:i.summary.maxComplexity.value,file:i.summary.maxComplexity.file}},files:i.files.map(e=>({path:e.path,lines:e.lines.total,code:e.lines.code,complexity:e.complexity,functions:e.functions}))};return{content:[{type:`text`,text:r?kn(a.join(`
3019
3019
  `),r):a.join(`
3020
- `)}],structuredContent:o}}catch(e){return Fv(e)?(Pv.warn(`Measure failed`,{error:`File not found`}),q(`NOT_FOUND`,`File not found`)):(Pv.error(`Measure failed`,N(e)),q(`INTERNAL`,`Measure failed: ${e instanceof Error?e.message:String(e)}`))}}))}function Vv(e){let t=W(`changelog`);e.registerTool(`changelog`,{title:t.title,description:`Generate a changelog from git history between two refs. Groups by conventional commit type.`,inputSchema:{from:R.string().max(200).describe(`Start ref (tag, SHA, HEAD~N)`),to:R.string().max(200).default(`HEAD`).describe(`End ref (default: HEAD)`),format:R.enum([`grouped`,`chronological`,`per-scope`]).default(`grouped`).describe(`Output format`),include_breaking:R.boolean().default(!0).describe(`Highlight breaking changes`),cwd:R.string().optional().describe(`Repository root or working directory`)},annotations:t.annotations},J(`changelog`,async({from:e,to:t,format:n,include_breaking:r,cwd:i})=>{try{let a=We({from:e,to:t,format:n,includeBreaking:r,cwd:i}),o=`${a.stats.total} commits (${Object.entries(a.stats.types).map(([e,t])=>`${t} ${e}`).join(`, `)})`;return{content:[{type:`text`,text:`${a.markdown}\n---\n_${o}_`}]}}catch(e){return Pv.error(`Changelog failed`,N(e)),q(`INTERNAL`,`Changelog failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Hv(e){let t=W(`schema_validate`);e.registerTool(`schema_validate`,{title:t.title,description:`Validate JSON data against a JSON Schema. Supports type, required, properties, items, enum, pattern, min/max.`,inputSchema:{data:R.string().max(5e5).describe(`JSON data to validate (as string)`),schema:R.string().max(5e5).describe(`JSON Schema to validate against (as string)`)},annotations:t.annotations},J(`schema_validate`,async({data:e,schema:t})=>{try{let n=fn({data:JSON.parse(e),schema:JSON.parse(t)});if(n.valid)return{content:[{type:`text`,text:`## Validation: PASSED
3020
+ `)}],structuredContent:o}}catch(e){return Iv(e)?(Fv.warn(`Measure failed`,{error:`File not found`}),q(`NOT_FOUND`,`File not found`)):(Fv.error(`Measure failed`,N(e)),q(`INTERNAL`,`Measure failed: ${e instanceof Error?e.message:String(e)}`))}}))}function Hv(e){let t=W(`changelog`);e.registerTool(`changelog`,{title:t.title,description:`Generate a changelog from git history between two refs. Groups by conventional commit type.`,inputSchema:{from:R.string().max(200).describe(`Start ref (tag, SHA, HEAD~N)`),to:R.string().max(200).default(`HEAD`).describe(`End ref (default: HEAD)`),format:R.enum([`grouped`,`chronological`,`per-scope`]).default(`grouped`).describe(`Output format`),include_breaking:R.boolean().default(!0).describe(`Highlight breaking changes`),cwd:R.string().optional().describe(`Repository root or working directory`)},annotations:t.annotations},J(`changelog`,async({from:e,to:t,format:n,include_breaking:r,cwd:i})=>{try{let a=We({from:e,to:t,format:n,includeBreaking:r,cwd:i}),o=`${a.stats.total} commits (${Object.entries(a.stats.types).map(([e,t])=>`${t} ${e}`).join(`, `)})`;return{content:[{type:`text`,text:`${a.markdown}\n---\n_${o}_`}]}}catch(e){return Fv.error(`Changelog failed`,N(e)),q(`INTERNAL`,`Changelog failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Uv(e){let t=W(`schema_validate`);e.registerTool(`schema_validate`,{title:t.title,description:`Validate JSON data against a JSON Schema. Supports type, required, properties, items, enum, pattern, min/max.`,inputSchema:{data:R.string().max(5e5).describe(`JSON data to validate (as string)`),schema:R.string().max(5e5).describe(`JSON Schema to validate against (as string)`)},annotations:t.annotations},J(`schema_validate`,async({data:e,schema:t})=>{try{let n=fn({data:JSON.parse(e),schema:JSON.parse(t)});if(n.valid)return{content:[{type:`text`,text:`## Validation: PASSED
3021
3021
 
3022
3022
  Data matches the schema.`}]};let r=[`## Validation: FAILED`,``,`**${n.errors.length} error(s):**`,``];for(let e of n.errors){let t=e.expected?` (expected: ${e.expected}, got: ${e.received})`:``;r.push(`- \`${e.path}\`: ${e.message}${t}`)}return{content:[{type:`text`,text:r.join(`
3023
- `)}]}}catch(e){return Pv.error(`Schema validation failed`,N(e)),q(`INTERNAL`,`Schema validation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Uv(e){let t=W(`env`);e.registerTool(`env`,{title:t.title,description:`Get system and runtime environment info. Sensitive env vars are redacted by default.`,outputSchema:Bs,inputSchema:{include_env:R.boolean().default(!1).describe(`Include environment variables`),filter_env:R.string().optional().describe(`Filter env vars by name substring`),show_sensitive:R.boolean().default(!1).describe(`Show sensitive values (keys, tokens, etc.) — redacted by default`)},annotations:t.annotations},J(`env`,async({include_env:e,filter_env:t,show_sensitive:n})=>{let r=ft({includeEnv:e,filterEnv:t,showSensitive:n}),i=[`## Environment`,``,`**Platform:** ${r.system.platform} ${r.system.arch}`,`**OS:** ${r.system.type} ${r.system.release}`,`**Host:** ${r.system.hostname}`,`**CPUs:** ${r.system.cpus}`,`**Memory:** ${r.system.memoryFreeGb}GB free / ${r.system.memoryTotalGb}GB total`,``,`**Node:** ${r.runtime.node}`,`**V8:** ${r.runtime.v8}`,`**CWD:** ${r.cwd}`];if(r.env){i.push(``,`### Environment Variables`,``);for(let[e,t]of Object.entries(r.env))i.push(`- \`${e}\`: ${t}`)}let a={platform:r.system.platform,arch:r.system.arch,nodeVersion:r.runtime.node,cwd:r.cwd,cpus:r.system.cpus,memoryFreeGb:r.system.memoryFreeGb,memoryTotalGb:r.system.memoryTotalGb};return{content:[{type:`text`,text:i.join(`
3024
- `)}],structuredContent:a}}))}function Wv(e){let t=W(`time`);e.registerTool(`time`,{title:t.title,description:`Parse dates, convert timezones, calculate durations, add time. Supports ISO 8601, unix timestamps, and human-readable formats.`,outputSchema:Vs,inputSchema:{operation:R.enum([`now`,`parse`,`convert`,`diff`,`add`]).describe(`now: current time | parse: parse a date string | convert: timezone conversion | diff: duration between two dates | add: add duration to date`),input:R.string().optional().describe(`Date input (ISO, unix timestamp, or parseable string). For diff: two comma-separated dates`),timezone:R.string().optional().describe(`Target timezone (e.g., "America/New_York", "Asia/Tokyo")`),duration:R.string().optional().describe(`Duration to add (e.g., "2h30m", "1d", "30s") — for add operation`)},annotations:t.annotations},J(`time`,async({operation:e,input:t,timezone:n,duration:r})=>{try{let i=Dn({operation:e,input:t,timezone:n,duration:r}),a=[`**${i.output}**`,``,`ISO: ${i.iso}`,`Unix: ${i.unix}`];i.details&&a.push(``,"```json",JSON.stringify(i.details),"```");let o={iso:i.iso,unix:i.unix,timezone:n??Intl.DateTimeFormat().resolvedOptions().timeZone,formatted:i.output};return{content:[{type:`text`,text:a.join(`
3025
- `)}],structuredContent:o}}catch(e){return Pv.error(`Time failed`,N(e)),q(`INTERNAL`,`Time failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Gv(e){try{let t=I(e,`.flows`);if(!P(t))return null;let n=we(t,{withFileTypes:!0});for(let e of n){if(!e.isDirectory())continue;let n=I(t,e.name,`meta.json`);if(P(n)&&JSON.parse(F(n,`utf-8`)).status===`active`)return e.name}}catch{return null}return null}function Kv(e){let{server:t,aikit:n,config:r,elicitor:i,resourceNotifier:a,samplingClient:o,indexMode:s,getSmartState:c,getSmartScheduler:l,precomputedActiveTools:u}=e,d=new Eo,f=r.sources[0]?.path??process.cwd(),p=ve(f),m={activeSlug:null};m.activeSlug=Gv(f);let h=new Ga(I(r.stateDir??``,`flow-context`),()=>m.activeSlug),g=new Oa;g.register(Ni()),g.register(Ta),g.register(Ui),g.register(ma),g.register(Bi),g.register(Pi),g.register(Fi),g.register(Sa),g.register(Li),g.register(Da),g.register(pa(()=>m.activeSlug?{active:!0,slug:m.activeSlug}:null));let _=new Na(g,n.curated,{},h),v=u??Ns(r,[...Ba,...ns],U,is(r)),y=e=>v.has(e),b=new Set([...v].filter(e=>!jp.includes(e)&&!fo.has(e))),x=new go;d.use(ja(_),{order:5,name:`auto-knowledge`}),d.use(Ko(),{order:10,name:`replay`}),d.use(yo(x,{stateStore:n.stateStore,curatedStore:n.curated},{trackedTools:b}),{order:94,name:`procedural-memory`}),d.use(so(new ao(n.stateStore,n.curated)),{order:95,name:`observation-capture`}),d.use(ss(),{order:1,name:`structured-content-guard`}),d.use(Wa(Ua(r.tokenBudget)),{order:90,name:`compression`}),vs(t,d,r.toolPrefix??``);let S=[...v].filter(e=>rs.has(e)?ts.includes(e)?!!n.bridge:e===`er_update_policy`?!!n.policyStore:e===`er_evolve_review`?!!n.evolutionCollector:!1:!0);y(`search`)&&Z_(t,n.embedder,n.store,n.graphStore,n.bridge,n.evolutionCollector,o,n.stateStore,r.memory?.retention,r.memory?.consolidation,p);let C={store:n.store,graphStore:n.graphStore,embedder:n.embedder},w=l?e=>{l()?.prioritize(e)}:void 0;y(`lookup`)&&hp(t,n.store,C);let T={onboardComplete:n.onboardComplete,onboardTimestamp:n.onboardTimestamp};y(`status`)&&Nv(t,n.store,n.graphStore,n.curated,T,r,s,c,n.stateStore),y(`config`)&&kl(t,r),y(`reindex`)&&k_(t,n.indexer,r,n.curated,n.store,a,s),y(`knowledge`)&&pp(t,n.curated,n.policyStore,n.evolutionCollector,a,h,n.stateStore,r.memory?.retention,r.memory?.supersession,r.memory?.consolidation,r.memory?.lessons,C),y(`memory_explain`)&&Ap(t,n.embedder,n.store),y(`analyze`)&&qc(t,n.store,n.embedder,C),y(`blast_radius`)&&Jc(t,n.store,n.embedder,n.graphStore,C),y(`produce_knowledge`)&&D_(t,r),y(`onboard`)&&$p(t,n.store,n.embedder,r,T,C),y(`graph`)&&bd(t,n.graphStore,C),y(`audit`)&&$c(t,n.store,n.embedder,r.tokenBudget),y(`compact`)&&ql(t,n.embedder,n.fileCache,f,r.allRoots,C,w),y(`scope_map`)&&Jl(t,n.embedder,n.store,C),y(`find`)&&Yl(t,n.embedder,n.store,f,C,p),y(`parse_output`)&&lu(t),y(`workset`)&&tm(t),y(`check`)&&ou(t,C,r.tokenBudget),y(`symbol`)&&Xl(t,n.embedder,n.store,n.graphStore,C),y(`eval`)&&su(t),y(`test_run`)&&cu(t,C),y(`stash`)&&nm(t,n.stateStore),y(`signal`)&&gv(t,n.stateStore),y(`git_context`)&&yp(t),y(`diff_parse`)&&bp(t),y(`rename`)&&xp(t,r),y(`codemod`)&&Sp(t,r),y(`restore`)&&N_(t),y(`file_summary`)&&Zl(t,n.fileCache,f,r.allRoots,C,w),y(`checkpoint`)&&rm(t,n.stateStore),y(`data_transform`)&&Cp(t),y(`trace`)&&Ql(t,n.embedder,n.store,n.graphStore,C),y(`process`)&&Sd(t),y(`watch`)&&Cd(t),y(`dead_symbols`)&&$l(t,n.embedder,n.store,f,r.allRoots,C),y(`delegate`)&&uu(t,o),y(`health`)&&wd(t),y(`lane`)&&im(t),y(`queue`)&&am(t),y(`web_fetch`)&&Td(t),y(`guide`)&&Ed(t,s),jp.some(e=>y(e))&&Mp(t,r,S),y(`evidence_map`)&&fd(t),y(`digest`)&&pd(t,n.embedder),y(`forge_classify`)&&md(t,C),y(`stratum_card`)&&hd(t,n.embedder,n.fileCache),y(`forge_ground`)&&gd(t,n.embedder,n.store),y(`present`)&&T_(t,i),y(`browser`)&&er(t,r),y(`web_search`)&&Iv(t),y(`http`)&&Lv(t),y(`regex_test`)&&Rv(t),y(`encode`)&&zv(t),y(`measure`)&&Bv(t),y(`changelog`)&&Vv(t),y(`schema_validate`)&&Hv(t),y(`env`)&&Uv(t),y(`time`)&&Wv(t),y(`flow`)&&ud(t,r,{store:n.store?{search:async(e,t)=>(await n.store.ftsSearch(e,t)).map(e=>({content:e.record.content}))}:null,graphStore:n.graphStore,embedder:n.embedder},e=>{m.activeSlug=e}),n.bridge&&ts.some(e=>y(e))&&(rl(t,n.bridge,n.evolutionCollector),il(t,n.bridge),al(t,n.bridge)),n.policyStore&&y(`er_update_policy`)&&dm(t,n.policyStore),n.evolutionCollector&&y(`er_evolve_review`)&&iu(t,n.evolutionCollector),es(t,n.store,n.curated),y(`compliance_score`)&&cl(t),y(`replay`)&&j_(t),y(`session_digest`)&&$_(t,n.stateStore,o)}function qv(e,t,n){let r=e=>!n||n.has(e);r(`check`)&&ou(e,void 0,t.tokenBudget),r(`eval`)&&su(e),r(`test_run`)&&cu(e),r(`parse_output`)&&lu(e),r(`delegate`)&&uu(e),r(`git_context`)&&yp(e),r(`diff_parse`)&&bp(e),r(`rename`)&&xp(e,t),r(`codemod`)&&Sp(e,t),r(`data_transform`)&&Cp(e),r(`workset`)&&tm(e),r(`restore`)&&N_(e),r(`lane`)&&im(e),r(`queue`)&&am(e),r(`session_digest`)&&$_(e),r(`health`)&&wd(e),r(`process`)&&Sd(e),r(`watch`)&&Cd(e),r(`web_fetch`)&&Td(e),r(`guide`)&&Ed(e),jp.some(e=>r(e))&&Mp(e,t,[...n??new Set(Ba)]),r(`evidence_map`)&&fd(e),r(`forge_classify`)&&md(e),r(`present`)&&T_(e),r(`browser`)&&er(e,t),r(`produce_knowledge`)&&D_(e),r(`compliance_score`)&&cl(e),r(`replay`)&&j_(e),r(`status`)&&Mv(e),r(`flow`)&&ud(e,t),r(`web_search`)&&Iv(e),r(`http`)&&Lv(e),r(`regex_test`)&&Rv(e),r(`encode`)&&zv(e),r(`measure`)&&Bv(e),r(`changelog`)&&Vv(e),r(`schema_validate`)&&Hv(e),r(`env`)&&Uv(e),r(`time`)&&Wv(e)}const Jv=M(`resource-notifier`);var Yv=class{mcpServer;constructor(e){this.mcpServer=e}async notifyStatusChanged(){await this.sendUpdate(`aikit://status`)}async notifyFileTreeChanged(){await this.sendUpdate(`aikit://file-tree`)}async notifyCuratedIndexChanged(){await this.sendUpdate(`aikit://curated`)}async notifyCuratedEntryChanged(e){await this.sendUpdate(`aikit://curated/${e}`)}async notifyResourceListChanged(){try{await this.mcpServer.server.sendResourceListChanged()}catch(e){Jv.debug(`sendResourceListChanged failed`,{error:String(e)})}}async notifyAfterReindex(){await Promise.allSettled([this.notifyStatusChanged(),this.notifyFileTreeChanged()])}async notifyAfterCuratedWrite(e){let t=[this.notifyStatusChanged(),this.notifyCuratedIndexChanged()];e&&t.push(this.notifyCuratedEntryChanged(e)),await Promise.allSettled(t)}async sendUpdate(e){try{await this.mcpServer.server.sendResourceUpdated({uri:e})}catch(t){Jv.debug(`sendResourceUpdated failed`,{uri:e,error:String(t)})}}};const Q=M(`server`);function Xv(e){let t=e?.trim().toLowerCase();return t===`1`||t===`true`||t===`yes`||t===`on`}async function Zv(n){Q.info(`Initializing AI Kit components`);let r=n.store.backend,i=n.embedding,a=me[i.model],o={model:i.model,nativeDim:i.nativeDim??a?.nativeDim??de.nativeDim,dimensions:i.dimensions??a?.dimensions??de.dimensions,queryPrefix:i.queryPrefix??a?.queryPrefix??de.queryPrefix,pooling:i.pooling??a?.pooling??`mean`},s=n.store.path,c=Xv(process.env.AIKIT_SPLIT_STATE),l=I(s,`aikit.db`),u={splitEnabled:c,contentDbPath:l,controlDbPath:c?I(s,`aikit-control.db`):l},d=null;if(r===`sqlite-vec`){let e=u.contentDbPath;P(s)||Ce(s,{recursive:!0}),d=await wr(e),Q.debug(`SQLite adapter ready`,{type:d.type,vectorCapable:d.vectorCapable,dbPath:e}),d.vectorCapable||Q.warn(`┌──────────────────────────────────────────────────────────────────┐
3023
+ `)}]}}catch(e){return Fv.error(`Schema validation failed`,N(e)),q(`INTERNAL`,`Schema validation failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Wv(e){let t=W(`env`);e.registerTool(`env`,{title:t.title,description:`Get system and runtime environment info. Sensitive env vars are redacted by default.`,outputSchema:Bs,inputSchema:{include_env:R.boolean().default(!1).describe(`Include environment variables`),filter_env:R.string().optional().describe(`Filter env vars by name substring`),show_sensitive:R.boolean().default(!1).describe(`Show sensitive values (keys, tokens, etc.) — redacted by default`)},annotations:t.annotations},J(`env`,async({include_env:e,filter_env:t,show_sensitive:n})=>{let r=ft({includeEnv:e,filterEnv:t,showSensitive:n}),i=[`## Environment`,``,`**Platform:** ${r.system.platform} ${r.system.arch}`,`**OS:** ${r.system.type} ${r.system.release}`,`**Host:** ${r.system.hostname}`,`**CPUs:** ${r.system.cpus}`,`**Memory:** ${r.system.memoryFreeGb}GB free / ${r.system.memoryTotalGb}GB total`,``,`**Node:** ${r.runtime.node}`,`**V8:** ${r.runtime.v8}`,`**CWD:** ${r.cwd}`];if(r.env){i.push(``,`### Environment Variables`,``);for(let[e,t]of Object.entries(r.env))i.push(`- \`${e}\`: ${t}`)}let a={platform:r.system.platform,arch:r.system.arch,nodeVersion:r.runtime.node,cwd:r.cwd,cpus:r.system.cpus,memoryFreeGb:r.system.memoryFreeGb,memoryTotalGb:r.system.memoryTotalGb};return{content:[{type:`text`,text:i.join(`
3024
+ `)}],structuredContent:a}}))}function Gv(e){let t=W(`time`);e.registerTool(`time`,{title:t.title,description:`Parse dates, convert timezones, calculate durations, add time. Supports ISO 8601, unix timestamps, and human-readable formats.`,outputSchema:Vs,inputSchema:{operation:R.enum([`now`,`parse`,`convert`,`diff`,`add`]).describe(`now: current time | parse: parse a date string | convert: timezone conversion | diff: duration between two dates | add: add duration to date`),input:R.string().optional().describe(`Date input (ISO, unix timestamp, or parseable string). For diff: two comma-separated dates`),timezone:R.string().optional().describe(`Target timezone (e.g., "America/New_York", "Asia/Tokyo")`),duration:R.string().optional().describe(`Duration to add (e.g., "2h30m", "1d", "30s") — for add operation`)},annotations:t.annotations},J(`time`,async({operation:e,input:t,timezone:n,duration:r})=>{try{let i=Dn({operation:e,input:t,timezone:n,duration:r}),a=[`**${i.output}**`,``,`ISO: ${i.iso}`,`Unix: ${i.unix}`];i.details&&a.push(``,"```json",JSON.stringify(i.details),"```");let o={iso:i.iso,unix:i.unix,timezone:n??Intl.DateTimeFormat().resolvedOptions().timeZone,formatted:i.output};return{content:[{type:`text`,text:a.join(`
3025
+ `)}],structuredContent:o}}catch(e){return Fv.error(`Time failed`,N(e)),q(`INTERNAL`,`Time failed: ${e instanceof Error?e.message:String(e)}`)}}))}function Kv(e){try{let t=I(e,`.flows`);if(!P(t))return null;let n=we(t,{withFileTypes:!0});for(let e of n){if(!e.isDirectory())continue;let n=I(t,e.name,`meta.json`);if(P(n)&&JSON.parse(F(n,`utf-8`)).status===`active`)return e.name}}catch{return null}return null}function qv(e){let{server:t,aikit:n,config:r,elicitor:i,resourceNotifier:a,samplingClient:o,indexMode:s,getSmartState:c,getSmartScheduler:l,precomputedActiveTools:u}=e,d=new Eo,f=r.sources[0]?.path??process.cwd(),p=ve(f),m={activeSlug:null};m.activeSlug=Kv(f);let h=new Ga(I(r.stateDir??``,`flow-context`),()=>m.activeSlug),g=new Oa;g.register(Ni()),g.register(Ta),g.register(Ui),g.register(ma),g.register(Bi),g.register(Pi),g.register(Fi),g.register(Sa),g.register(Li),g.register(Da),g.register(pa(()=>m.activeSlug?{active:!0,slug:m.activeSlug}:null));let _=new Na(g,n.curated,{},h),v=u??Ns(r,[...Ba,...ns],U,is(r)),y=e=>v.has(e),b=new Set([...v].filter(e=>!Mp.includes(e)&&!fo.has(e))),x=new go;d.use(ja(_),{order:5,name:`auto-knowledge`}),d.use(Ko(),{order:10,name:`replay`}),d.use(yo(x,{stateStore:n.stateStore,curatedStore:n.curated},{trackedTools:b}),{order:94,name:`procedural-memory`}),d.use(so(new ao(n.stateStore,n.curated)),{order:95,name:`observation-capture`}),d.use(ss(),{order:1,name:`structured-content-guard`}),d.use(Wa(Ua(r.tokenBudget)),{order:90,name:`compression`}),vs(t,d,r.toolPrefix??``);let S=[...v].filter(e=>rs.has(e)?ts.includes(e)?!!n.bridge:e===`er_update_policy`?!!n.policyStore:e===`er_evolve_review`?!!n.evolutionCollector:!1:!0);y(`search`)&&Q_(t,n.embedder,n.store,n.graphStore,n.bridge,n.evolutionCollector,o,n.stateStore,r.memory?.retention,r.memory?.consolidation,p);let C={store:n.store,graphStore:n.graphStore,embedder:n.embedder},w=l?e=>{l()?.prioritize(e)}:void 0;y(`lookup`)&&gp(t,n.store,C);let T={onboardComplete:n.onboardComplete,onboardTimestamp:n.onboardTimestamp};y(`status`)&&Pv(t,n.store,n.graphStore,n.curated,T,r,s,c,n.stateStore),y(`config`)&&Al(t,r),y(`reindex`)&&A_(t,n.indexer,r,n.curated,n.store,a,s),y(`knowledge`)&&mp(t,n.curated,n.policyStore,n.evolutionCollector,a,h,n.stateStore,r.memory?.retention,r.memory?.supersession,r.memory?.consolidation,r.memory?.lessons,C),y(`memory_explain`)&&jp(t,n.embedder,n.store),y(`analyze`)&&Jc(t,n.store,n.embedder,C),y(`blast_radius`)&&Yc(t,n.store,n.embedder,n.graphStore,C),y(`produce_knowledge`)&&O_(t,r),y(`onboard`)&&em(t,n.store,n.embedder,r,T,C),y(`graph`)&&xd(t,n.graphStore,C),y(`audit`)&&el(t,n.store,n.embedder,r.tokenBudget),y(`compact`)&&Jl(t,n.embedder,n.fileCache,f,r.allRoots,C,w),y(`scope_map`)&&Yl(t,n.embedder,n.store,C),y(`find`)&&Xl(t,n.embedder,n.store,f,C,p),y(`parse_output`)&&uu(t),y(`workset`)&&nm(t),y(`check`)&&su(t,C,r.tokenBudget),y(`symbol`)&&Zl(t,n.embedder,n.store,n.graphStore,C),y(`eval`)&&cu(t),y(`test_run`)&&lu(t,C),y(`stash`)&&rm(t,n.stateStore),y(`signal`)&&_v(t,n.stateStore),y(`git_context`)&&bp(t),y(`diff_parse`)&&xp(t),y(`rename`)&&Sp(t,r),y(`codemod`)&&Cp(t,r),y(`restore`)&&P_(t),y(`file_summary`)&&Ql(t,n.fileCache,f,r.allRoots,C,w),y(`checkpoint`)&&im(t,n.stateStore),y(`data_transform`)&&wp(t),y(`trace`)&&$l(t,n.embedder,n.store,n.graphStore,C),y(`process`)&&Cd(t),y(`watch`)&&wd(t),y(`dead_symbols`)&&eu(t,n.embedder,n.store,f,r.allRoots,C),y(`delegate`)&&du(t,o),y(`health`)&&Td(t),y(`lane`)&&am(t),y(`queue`)&&om(t),y(`web_fetch`)&&Ed(t),y(`guide`)&&Dd(t,s),Mp.some(e=>y(e))&&Np(t,r,S),y(`evidence_map`)&&pd(t),y(`digest`)&&md(t,n.embedder),y(`forge_classify`)&&hd(t,C),y(`stratum_card`)&&gd(t,n.embedder,n.fileCache),y(`forge_ground`)&&_d(t,n.embedder,n.store),y(`present`)&&E_(t,i),y(`browser`)&&er(t,r),y(`web_search`)&&Lv(t),y(`http`)&&Rv(t),y(`regex_test`)&&zv(t),y(`encode`)&&Bv(t),y(`measure`)&&Vv(t),y(`changelog`)&&Hv(t),y(`schema_validate`)&&Uv(t),y(`env`)&&Wv(t),y(`time`)&&Gv(t),y(`flow`)&&dd(t,r,{store:n.store?{search:async(e,t)=>(await n.store.ftsSearch(e,t)).map(e=>({content:e.record.content}))}:null,graphStore:n.graphStore,embedder:n.embedder},e=>{m.activeSlug=e}),n.bridge&&ts.some(e=>y(e))&&(il(t,n.bridge,n.evolutionCollector),al(t,n.bridge),ol(t,n.bridge)),n.policyStore&&y(`er_update_policy`)&&fm(t,n.policyStore),n.evolutionCollector&&y(`er_evolve_review`)&&au(t,n.evolutionCollector),es(t,n.store,n.curated),y(`compliance_score`)&&ll(t),y(`replay`)&&M_(t),y(`session_digest`)&&ev(t,n.stateStore,o)}function Jv(e,t,n){let r=e=>!n||n.has(e);r(`check`)&&su(e,void 0,t.tokenBudget),r(`eval`)&&cu(e),r(`test_run`)&&lu(e),r(`parse_output`)&&uu(e),r(`delegate`)&&du(e),r(`git_context`)&&bp(e),r(`diff_parse`)&&xp(e),r(`rename`)&&Sp(e,t),r(`codemod`)&&Cp(e,t),r(`data_transform`)&&wp(e),r(`workset`)&&nm(e),r(`restore`)&&P_(e),r(`lane`)&&am(e),r(`queue`)&&om(e),r(`session_digest`)&&ev(e),r(`health`)&&Td(e),r(`process`)&&Cd(e),r(`watch`)&&wd(e),r(`web_fetch`)&&Ed(e),r(`guide`)&&Dd(e),Mp.some(e=>r(e))&&Np(e,t,[...n??new Set(Ba)]),r(`evidence_map`)&&pd(e),r(`forge_classify`)&&hd(e),r(`present`)&&E_(e),r(`browser`)&&er(e,t),r(`produce_knowledge`)&&O_(e),r(`compliance_score`)&&ll(e),r(`replay`)&&M_(e),r(`status`)&&Nv(e),r(`flow`)&&dd(e,t),r(`web_search`)&&Lv(e),r(`http`)&&Rv(e),r(`regex_test`)&&zv(e),r(`encode`)&&Bv(e),r(`measure`)&&Vv(e),r(`changelog`)&&Hv(e),r(`schema_validate`)&&Uv(e),r(`env`)&&Wv(e),r(`time`)&&Gv(e)}const Yv=M(`resource-notifier`);var Xv=class{mcpServer;constructor(e){this.mcpServer=e}async notifyStatusChanged(){await this.sendUpdate(`aikit://status`)}async notifyFileTreeChanged(){await this.sendUpdate(`aikit://file-tree`)}async notifyCuratedIndexChanged(){await this.sendUpdate(`aikit://curated`)}async notifyCuratedEntryChanged(e){await this.sendUpdate(`aikit://curated/${e}`)}async notifyResourceListChanged(){try{await this.mcpServer.server.sendResourceListChanged()}catch(e){Yv.debug(`sendResourceListChanged failed`,{error:String(e)})}}async notifyAfterReindex(){await Promise.allSettled([this.notifyStatusChanged(),this.notifyFileTreeChanged()])}async notifyAfterCuratedWrite(e){let t=[this.notifyStatusChanged(),this.notifyCuratedIndexChanged()];e&&t.push(this.notifyCuratedEntryChanged(e)),await Promise.allSettled(t)}async sendUpdate(e){try{await this.mcpServer.server.sendResourceUpdated({uri:e})}catch(t){Yv.debug(`sendResourceUpdated failed`,{uri:e,error:String(t)})}}};const Q=M(`server`);function Zv(e){let t=e?.trim().toLowerCase();return t===`1`||t===`true`||t===`yes`||t===`on`}async function Qv(n){Q.info(`Initializing AI Kit components`);let r=n.store.backend,i=n.embedding,a=me[i.model],o={model:i.model,nativeDim:i.nativeDim??a?.nativeDim??de.nativeDim,dimensions:i.dimensions??a?.dimensions??de.dimensions,queryPrefix:i.queryPrefix??a?.queryPrefix??de.queryPrefix,pooling:i.pooling??a?.pooling??`mean`},s=n.store.path,c=Zv(process.env.AIKIT_SPLIT_STATE),l=I(s,`aikit.db`),u={splitEnabled:c,contentDbPath:l,controlDbPath:c?I(s,`aikit-control.db`):l},d=null;if(r===`sqlite-vec`){let e=u.contentDbPath;P(s)||Ce(s,{recursive:!0}),d=await wr(e),Q.debug(`SQLite adapter ready`,{type:d.type,vectorCapable:d.vectorCapable,dbPath:e}),d.vectorCapable||Q.warn(`┌──────────────────────────────────────────────────────────────────┐
3026
3026
  │ ⚠ SQLite vector extension unavailable — DEGRADED MODE │
3027
3027
  │ Vector search is disabled. Hybrid search returns FTS only. │
3028
3028
  │ To enable: install/rebuild better-sqlite3 (native module). │
3029
- └──────────────────────────────────────────────────────────────────┘`);let t=I(s,`lance`);P(t)&&Q.info(`Old LanceDB data found at ${t} — ignored. Safe to delete after verifying sqlite-vec works.`)}let f;if(d)if(u.splitEnabled&&u.controlDbPath!==u.contentDbPath){let{migrateToSplitState:e}=await import(`../../store/dist/index.js`);await e(u),f=await wr(u.controlDbPath),Dr(f,Cr),Q.info(`State store adapter ready`,{type:f.type,dbPath:u.controlDbPath,splitEnabled:!0})}else f=d;else{let e=I(s,`aikit-state.db`);P(s)||Ce(s,{recursive:!0}),f=await wr(e),Dr(f,Cr),Q.info(`State store adapter ready`,{type:f.type,dbPath:e})}let[p,m,h,g]=await Promise.all([(async()=>{if(n.embedding.childProcess!==!1){let e=new zr({model:o.model,dimensions:o.dimensions,nativeDim:o.nativeDim,queryPrefix:o.queryPrefix,pooling:o.pooling,interOpNumThreads:i.interOpNumThreads,intraOpNumThreads:i.intraOpNumThreads,idleTimeoutMs:i.idleTimeoutMs});return await e.initialize(),Q.debug(`Embedder loaded (child process)`,{modelId:e.modelId,dimensions:e.dimensions}),e}let{OnnxEmbedder:e}=await import(`../../embeddings/dist/index.js`),t=new e({model:o.model,dimensions:o.dimensions,nativeDim:o.nativeDim,queryPrefix:o.queryPrefix,pooling:o.pooling,interOpNumThreads:i.interOpNumThreads,intraOpNumThreads:i.intraOpNumThreads});return await t.initialize(),Q.debug(`Embedder loaded (in-process)`,{modelId:t.modelId,dimensions:t.dimensions}),t})(),(async()=>{let e=r===`sqlite-vec`?await Er({backend:r,path:s,adapter:d??void 0,embeddingDim:o.dimensions,embeddingProfile:o,partition:u}):await Er({backend:r,path:s,adapter:d??void 0,embeddingDim:o.dimensions,partition:void 0});return await e.initialize(),Q.debug(`Store initialized`,{backend:r}),e})(),(async()=>{let e=d?new Sr({adapter:d}):new Sr({path:s});return await e.initialize(),Q.debug(`Graph store initialized`,{shared:!!d}),e})(),(async()=>{let e=await dr();if(e){let e=lr.get();Q.debug(`WASM tree-sitter enabled`,{grammars:e.grammarCount,dir:e.wasmDir})}else{let e=lr.get();Q.warn(`WASM tree-sitter not available; analyzers will use regex fallback`,{reason:e.reason,os:e.os,arch:e.arch,healAttempted:e.healAttempted,healSuccess:e.healSuccess,healError:e.healError,pathsChecked:e.pathsChecked.map(e=>`${e.path} (${e.exists?`found`:`missing`})`)})}return e})()]),_=new Vr(p,m),v=Tr(f),y=new Br(n.store.path);y.load(),_.setHashCache(y);let b=n.curated.path,x=new e(b);await x.initialize();let S=new t(b,m,p,x);_.setGraphStore(h);let C=nl(n.er),w=C?new hr(n.curated.path):void 0;w&&Q.debug(`Policy store initialized`,{ruleCount:w.getRules().length});let T=C?new mr:void 0,E=L(n.sources[0]?.path??process.cwd(),A.aiContext),D=P(E),O=n.onboardDir?P(n.onboardDir):!1,k=D||O,ee,te=D?E:n.onboardDir;if(k&&te)try{ee=De(te).mtime.toISOString()}catch{}return Q.debug(`Onboard state detected`,{onboardComplete:k,onboardTimestamp:ee,aiKbExists:D,onboardDirExists:O}),{embedder:p,store:m,stateStore:v,closeStateStore:f===d?void 0:async()=>f.close(),indexer:_,curated:S,graphStore:h,fileCache:new ze,bridge:C,policyStore:w,evolutionCollector:T,onboardComplete:k,onboardTimestamp:ee}}function Qv(e,t,n){if(e.serverInstructions)return e.serverInstructions;let r=new Set;for(let e of t){let t=n[e];if(t?.category)for(let e of t.category)r.add(e)}let i=[`This server provides ${t.size} tools across ${r.size} categories: ${[...r].sort().join(`, `)}.`,`TOOL ROUTING:`,`- Understand a file -> file_summary (structure) or compact (extract section)`,`- Find code/symbols -> search (hybrid) or symbol (definition + refs)`,`- Validate changes -> check (typecheck+lint) or test_run (tests)`,`- Read file for editing -> read_file (only for exact lines before edits)`,`FORBIDDEN: DO NOT USE native equivalents when AI Kit provides same:`,`- grep/find -> search or find tool`,`- cat/read_file (for understanding) -> file_summary or compact`,`- terminal tsc/lint -> check tool`,`- terminal test -> test_run tool`];return e.readOnly&&i.push(`Server is in read-only mode. Mutating operations are disabled.`),e.features?.length&&i.push(`Active feature groups: ${e.features.join(`, `)}.`),i.join(`
3030
- `)}const $v=M(`background-task`);var ey=class{queue=[];running=null;get isRunning(){return this.running!==null}get currentTask(){return this.running}get pendingCount(){return this.queue.length}schedule(e){return new Promise((t,n)=>{this.queue.push({...e,resolve:t,reject:n}),this.running||this.processQueue()})}async processQueue(){for(;this.queue.length>0;){let e=this.queue.shift();if(!e)break;this.running=e.name,$v.info(`Background task started`,{task:e.name,pending:this.queue.length});let t=Date.now();try{await e.fn();let n=Date.now()-t;$v.info(`Background task completed`,{task:e.name,durationMs:n}),e.resolve()}catch(n){let r=Date.now()-t;$v.error(`Background task failed`,{task:e.name,durationMs:r,err:n}),e.reject(n instanceof Error?n:Error(String(n)))}}this.running=null}};const ty=M(`idle-timer`);var ny=class{timer=null;cleanupFns=[];idleMs;disposed=!1;sessionActive=!1;_busy=!1;constructor(e){this.idleMs=e?.idleMs??3e5}setBusy(e){this._busy=e,e?this.cancel():this.touch()}onIdle(e){this.cleanupFns.push(e)}markSessionActive(){this.sessionActive=!0}touch(){this.disposed||this._busy||(this.cancel(),this.timer=setTimeout(()=>{this.runCleanup()},this.idleMs),this.timer.unref&&this.timer.unref())}cancel(){this.timer&&=(clearTimeout(this.timer),null)}dispose(){this.cancel(),this.cleanupFns.length=0,this.disposed=!0}async runCleanup(){if(!this.sessionActive){ty.info(`Idle timeout reached with no active session — skipping cleanup (waiting for first tool call)`);return}if(this._busy){ty.info(`Skipping idle cleanup — background work in progress`);return}ty.info(`Idle for ${this.idleMs/1e3}s — running cleanup`);let e=await Promise.allSettled(this.cleanupFns.map(e=>e()));for(let t of e)t.status===`rejected`&&ty.warn(`Idle cleanup callback failed`,{error:String(t.reason)})}};const ry=M(`memory-monitor`);var iy=class{timer=null;warningBytes;criticalBytes;intervalMs;pressureFns=[];memoryPressureFns=[];lastLevel=`normal`;constructor(e){this.warningBytes=e?.warningBytes??3221225472,this.criticalBytes=e?.criticalBytes??6442450944,this.intervalMs=e?.intervalMs??3e4}onPressure(e){this.pressureFns.push(e)}registerMemoryPressureCallback(e){this.memoryPressureFns.push(e)}start(){this.timer||(this.timer=setInterval(()=>this.check(),this.intervalMs),this.timer.unref&&this.timer.unref(),ry.debug(`Memory monitor started`,{warningMB:Math.round(this.warningBytes/1024/1024),criticalMB:Math.round(this.criticalBytes/1024/1024),intervalSec:Math.round(this.intervalMs/1e3)}))}stop(){this.timer&&=(clearInterval(this.timer),null)}getRssBytes(){return process.memoryUsage.rss()}check(){let e=this.getRssBytes(),t=`normal`;if(e>=this.criticalBytes?t=`critical`:e>=this.warningBytes&&(t=`warning`),t!==this.lastLevel||t===`critical`){let n=Math.round(e/1024/1024);t===`critical`?ry.warn(`Memory CRITICAL: ${n}MB RSS — consider restarting the server`):t===`warning`?ry.warn(`Memory WARNING: ${n}MB RSS`):this.lastLevel!==`normal`&&ry.info(`Memory returned to normal: ${n}MB RSS`),this.lastLevel=t}if(t!==`normal`)for(let n of this.pressureFns)try{n(t,e)}catch{}if(t===`critical`)for(let e of this.memoryPressureFns)try{let t=e();t&&typeof t.catch==`function`&&t.catch(()=>{})}catch{}return t===`critical`&&typeof globalThis.gc==`function`&&globalThis.gc(),t}};const ay=new Hr;function oy(e,t){return ay.run(e,async()=>{try{return await t()}finally{}})}M(`tool-timeout`);const sy=new Set([`onboard`,`reindex`,`produce_knowledge`,`analyze`,`codemod`,`audit`]);var cy=class extends Error{toolName;timeoutMs;constructor(e,t){super(`Tool "${e}" timed out after ${t}ms`),this.toolName=e,this.timeoutMs=t,this.name=`ToolTimeoutError`}};function ly(e){return sy.has(e)?6e5:12e4}function uy(e,t,n){let r=new AbortController,i=r.signal;return new Promise((a,o)=>{let s=setTimeout(()=>{let e=new cy(n,t);i.aborted||r.abort(e),o(e)},t);s.unref();try{e(i).then(a,o).finally(()=>clearTimeout(s))}catch(e){clearTimeout(s),o(e instanceof Error?e:Error(String(e)))}})}const $=M(`server`),dy=new Set([`status`,`list_tools`,`describe_tool`,`config`,`env`,`present`]);function fy(e,t=28){let n=e.replace(/\s+/g,` `).trim();return n.length<=t?n:`${n.slice(0,t-3)}...`}function py(e){let t=[`query`,`path`,`task`,`name`,`start`,`symbol`,`file`,`pattern`],n=[];for(let r of t){let t=e[r];typeof t==`string`&&t.length>0&&t.length<200&&n.push(t)}return n.join(` `).slice(0,200)}async function my(e,t,n){let r=[];try{t.statePath&&dt(e.stateStore,{stateDir:t.statePath});let i=e.stateStore.stashList().map(e=>e.key);if(i.length>0){let e=n.toLowerCase().split(/\s+/).filter(e=>e.length>2);if(e.length===0)r.push(`stash: ${i.length} entries available`);else{let t=i.filter(t=>e.some(e=>t.toLowerCase().includes(e))).slice(0,3);t.length>0?r.push(`stash: ${t.map(e=>`"${fy(e)}"`).join(`, `)}${i.length>t.length?` (${i.length} total)`:``}`):r.push(`stash: ${i.length} entries available`)}}}catch{}try{if(n){let t=await Promise.race([e.store.ftsSearch(n,{limit:3}),new Promise(e=>{let t=setTimeout(()=>e(null),1e3);t.unref&&t.unref()})]);if(Array.isArray(t)&&t.length>0){let e=t.filter(e=>e&&typeof e==`object`&&`record`in e&&(e.record.origin===`produced`||e.record.origin===`curated`));if(e.length>0){let t=e.slice(0,2).map(e=>{let t=e.record;return`"${fy(t.headingPath||t.sourcePath||`knowledge`)}"`});r.push(`knowledge: ${t.join(`, `)}`)}}}}catch{}return r.length===0?null:`\n---\nContext available: ${r.join(` | `)}\nPull with: stash({action:'get', key:'...'}) or search({query:'...', origin:'produced'})\n---`}function hy(e,t,n){let r=3;for(let[i,a]of Object.entries(e)){let e=a.handler;a.handler=async(...a)=>{let o=await e(...a);if(!o||typeof o!=`object`||r<=0||o.isError||dy.has(i))return o;try{r--;let e=a[0],i=await my(t,n,py(e&&typeof e==`object`?e:{}));i&&(o.content=Array.isArray(o.content)?o.content:[],o.content.push({type:`text`,text:i}))}catch{}return o}}}function gy(e){let t=e.toLowerCase();return[`protobuf`,`invalid model`,`invalid onnx`,`unexpected end`,`unexpected token`,`failed to load`,`failed to initialize embedding`,`checksum`,`corrupt`,`malformed`,`could not load`,`onnx`,`database disk image is malformed`,`file is not a database`,`lance`,`cannot find module`,`cannot find package`,`module not found`].some(e=>t.includes(e))}function _y(e){return Up(e)?[`Auto-heal tried to repair missing runtime dependency files in the npx install.`,`If this persists, clear the broken npx cache and restart:`,` npm cache clean --force`,` npx -y @vpxa/aikit@latest serve`].join(`
3029
+ └──────────────────────────────────────────────────────────────────┘`);let t=I(s,`lance`);P(t)&&Q.info(`Old LanceDB data found at ${t} — ignored. Safe to delete after verifying sqlite-vec works.`)}let f;if(d)if(u.splitEnabled&&u.controlDbPath!==u.contentDbPath){let{migrateToSplitState:e}=await import(`../../store/dist/index.js`);await e(u),f=await wr(u.controlDbPath),Dr(f,Cr),Q.info(`State store adapter ready`,{type:f.type,dbPath:u.controlDbPath,splitEnabled:!0})}else f=d;else{let e=I(s,`aikit-state.db`);P(s)||Ce(s,{recursive:!0}),f=await wr(e),Dr(f,Cr),Q.info(`State store adapter ready`,{type:f.type,dbPath:e})}let[p,m,h,g]=await Promise.all([(async()=>{if(n.embedding.childProcess!==!1){let e=new zr({model:o.model,dimensions:o.dimensions,nativeDim:o.nativeDim,queryPrefix:o.queryPrefix,pooling:o.pooling,interOpNumThreads:i.interOpNumThreads,intraOpNumThreads:i.intraOpNumThreads,idleTimeoutMs:i.idleTimeoutMs});return await e.initialize(),Q.debug(`Embedder loaded (child process)`,{modelId:e.modelId,dimensions:e.dimensions}),e}let{OnnxEmbedder:e}=await import(`../../embeddings/dist/index.js`),t=new e({model:o.model,dimensions:o.dimensions,nativeDim:o.nativeDim,queryPrefix:o.queryPrefix,pooling:o.pooling,interOpNumThreads:i.interOpNumThreads,intraOpNumThreads:i.intraOpNumThreads});return await t.initialize(),Q.debug(`Embedder loaded (in-process)`,{modelId:t.modelId,dimensions:t.dimensions}),t})(),(async()=>{let e=r===`sqlite-vec`?await Er({backend:r,path:s,adapter:d??void 0,embeddingDim:o.dimensions,embeddingProfile:o,partition:u}):await Er({backend:r,path:s,adapter:d??void 0,embeddingDim:o.dimensions,partition:void 0});return await e.initialize(),Q.debug(`Store initialized`,{backend:r}),e})(),(async()=>{let e=d?new Sr({adapter:d}):new Sr({path:s});return await e.initialize(),Q.debug(`Graph store initialized`,{shared:!!d}),e})(),(async()=>{let e=await dr();if(e){let e=lr.get();Q.debug(`WASM tree-sitter enabled`,{grammars:e.grammarCount,dir:e.wasmDir})}else{let e=lr.get();Q.warn(`WASM tree-sitter not available; analyzers will use regex fallback`,{reason:e.reason,os:e.os,arch:e.arch,healAttempted:e.healAttempted,healSuccess:e.healSuccess,healError:e.healError,pathsChecked:e.pathsChecked.map(e=>`${e.path} (${e.exists?`found`:`missing`})`)})}return e})()]),_=new Vr(p,m),v=Tr(f),y=new Br(n.store.path);y.load(),_.setHashCache(y);let b=n.curated.path,x=new e(b);await x.initialize();let S=new t(b,m,p,x);_.setGraphStore(h);let C=rl(n.er),w=C?new hr(n.curated.path):void 0;w&&Q.debug(`Policy store initialized`,{ruleCount:w.getRules().length});let T=C?new mr:void 0,E=L(n.sources[0]?.path??process.cwd(),A.aiContext),D=P(E),O=n.onboardDir?P(n.onboardDir):!1,k=D||O,ee,te=D?E:n.onboardDir;if(k&&te)try{ee=De(te).mtime.toISOString()}catch{}return Q.debug(`Onboard state detected`,{onboardComplete:k,onboardTimestamp:ee,aiKbExists:D,onboardDirExists:O}),{embedder:p,store:m,stateStore:v,closeStateStore:f===d?void 0:async()=>f.close(),indexer:_,curated:S,graphStore:h,fileCache:new ze,bridge:C,policyStore:w,evolutionCollector:T,onboardComplete:k,onboardTimestamp:ee}}function $v(e,t,n){if(e.serverInstructions)return e.serverInstructions;let r=new Set;for(let e of t){let t=n[e];if(t?.category)for(let e of t.category)r.add(e)}let i=[`This server provides ${t.size} tools across ${r.size} categories: ${[...r].sort().join(`, `)}.`,`TOOL ROUTING:`,`- Understand a file -> file_summary (structure) or compact (extract section)`,`- Find code/symbols -> search (hybrid) or symbol (definition + refs)`,`- Validate changes -> check (typecheck+lint) or test_run (tests)`,`- Read file for editing -> read_file (only for exact lines before edits)`,`FORBIDDEN: DO NOT USE native equivalents when AI Kit provides same:`,`- grep/find -> search or find tool`,`- cat/read_file (for understanding) -> file_summary or compact`,`- terminal tsc/lint -> check tool`,`- terminal test -> test_run tool`];return e.readOnly&&i.push(`Server is in read-only mode. Mutating operations are disabled.`),e.features?.length&&i.push(`Active feature groups: ${e.features.join(`, `)}.`),i.join(`
3030
+ `)}const ey=M(`background-task`);var ty=class{queue=[];running=null;get isRunning(){return this.running!==null}get currentTask(){return this.running}get pendingCount(){return this.queue.length}schedule(e){return new Promise((t,n)=>{this.queue.push({...e,resolve:t,reject:n}),this.running||this.processQueue()})}async processQueue(){for(;this.queue.length>0;){let e=this.queue.shift();if(!e)break;this.running=e.name,ey.info(`Background task started`,{task:e.name,pending:this.queue.length});let t=Date.now();try{await e.fn();let n=Date.now()-t;ey.info(`Background task completed`,{task:e.name,durationMs:n}),e.resolve()}catch(n){let r=Date.now()-t;ey.error(`Background task failed`,{task:e.name,durationMs:r,err:n}),e.reject(n instanceof Error?n:Error(String(n)))}}this.running=null}};const ny=M(`idle-timer`);var ry=class{timer=null;cleanupFns=[];idleMs;disposed=!1;sessionActive=!1;_busy=!1;constructor(e){this.idleMs=e?.idleMs??3e5}setBusy(e){this._busy=e,e?this.cancel():this.touch()}onIdle(e){this.cleanupFns.push(e)}markSessionActive(){this.sessionActive=!0}touch(){this.disposed||this._busy||(this.cancel(),this.timer=setTimeout(()=>{this.runCleanup()},this.idleMs),this.timer.unref&&this.timer.unref())}cancel(){this.timer&&=(clearTimeout(this.timer),null)}dispose(){this.cancel(),this.cleanupFns.length=0,this.disposed=!0}async runCleanup(){if(!this.sessionActive){ny.info(`Idle timeout reached with no active session — skipping cleanup (waiting for first tool call)`);return}if(this._busy){ny.info(`Skipping idle cleanup — background work in progress`);return}ny.info(`Idle for ${this.idleMs/1e3}s — running cleanup`);let e=await Promise.allSettled(this.cleanupFns.map(e=>e()));for(let t of e)t.status===`rejected`&&ny.warn(`Idle cleanup callback failed`,{error:String(t.reason)})}};const iy=M(`memory-monitor`);var ay=class{timer=null;warningBytes;criticalBytes;intervalMs;pressureFns=[];memoryPressureFns=[];lastLevel=`normal`;constructor(e){this.warningBytes=e?.warningBytes??3221225472,this.criticalBytes=e?.criticalBytes??6442450944,this.intervalMs=e?.intervalMs??3e4}onPressure(e){this.pressureFns.push(e)}registerMemoryPressureCallback(e){this.memoryPressureFns.push(e)}start(){this.timer||(this.timer=setInterval(()=>this.check(),this.intervalMs),this.timer.unref&&this.timer.unref(),iy.debug(`Memory monitor started`,{warningMB:Math.round(this.warningBytes/1024/1024),criticalMB:Math.round(this.criticalBytes/1024/1024),intervalSec:Math.round(this.intervalMs/1e3)}))}stop(){this.timer&&=(clearInterval(this.timer),null)}getRssBytes(){return process.memoryUsage.rss()}check(){let e=this.getRssBytes(),t=`normal`;if(e>=this.criticalBytes?t=`critical`:e>=this.warningBytes&&(t=`warning`),t!==this.lastLevel||t===`critical`){let n=Math.round(e/1024/1024);t===`critical`?iy.warn(`Memory CRITICAL: ${n}MB RSS — consider restarting the server`):t===`warning`?iy.warn(`Memory WARNING: ${n}MB RSS`):this.lastLevel!==`normal`&&iy.info(`Memory returned to normal: ${n}MB RSS`),this.lastLevel=t}if(t!==`normal`)for(let n of this.pressureFns)try{n(t,e)}catch{}if(t===`critical`)for(let e of this.memoryPressureFns)try{let t=e();t&&typeof t.catch==`function`&&t.catch(()=>{})}catch{}return t===`critical`&&typeof globalThis.gc==`function`&&globalThis.gc(),t}};const oy=new Hr;function sy(e,t){return oy.run(e,async()=>{try{return await t()}finally{}})}M(`tool-timeout`);const cy=new Set([`onboard`,`reindex`,`produce_knowledge`,`analyze`,`codemod`,`audit`]);var ly=class extends Error{toolName;timeoutMs;constructor(e,t){super(`Tool "${e}" timed out after ${t}ms`),this.toolName=e,this.timeoutMs=t,this.name=`ToolTimeoutError`}};function uy(e){return cy.has(e)?6e5:12e4}function dy(e,t,n){let r=new AbortController,i=r.signal;return new Promise((a,o)=>{let s=setTimeout(()=>{let e=new ly(n,t);i.aborted||r.abort(e),o(e)},t);s.unref();try{e(i).then(a,o).finally(()=>clearTimeout(s))}catch(e){clearTimeout(s),o(e instanceof Error?e:Error(String(e)))}})}const $=M(`server`),fy=new Set([`status`,`list_tools`,`describe_tool`,`config`,`env`,`present`]);function py(e,t=28){let n=e.replace(/\s+/g,` `).trim();return n.length<=t?n:`${n.slice(0,t-3)}...`}function my(e){let t=[`query`,`path`,`task`,`name`,`start`,`symbol`,`file`,`pattern`],n=[];for(let r of t){let t=e[r];typeof t==`string`&&t.length>0&&t.length<200&&n.push(t)}return n.join(` `).slice(0,200)}async function hy(e,t,n){let r=[];try{t.statePath&&dt(e.stateStore,{stateDir:t.statePath});let i=e.stateStore.stashList().map(e=>e.key);if(i.length>0){let e=n.toLowerCase().split(/\s+/).filter(e=>e.length>2);if(e.length===0)r.push(`stash: ${i.length} entries available`);else{let t=i.filter(t=>e.some(e=>t.toLowerCase().includes(e))).slice(0,3);t.length>0?r.push(`stash: ${t.map(e=>`"${py(e)}"`).join(`, `)}${i.length>t.length?` (${i.length} total)`:``}`):r.push(`stash: ${i.length} entries available`)}}}catch{}try{if(n){let t=await Promise.race([e.store.ftsSearch(n,{limit:3}),new Promise(e=>{let t=setTimeout(()=>e(null),1e3);t.unref&&t.unref()})]);if(Array.isArray(t)&&t.length>0){let e=t.filter(e=>e&&typeof e==`object`&&`record`in e&&(e.record.origin===`produced`||e.record.origin===`curated`));if(e.length>0){let t=e.slice(0,2).map(e=>{let t=e.record;return`"${py(t.headingPath||t.sourcePath||`knowledge`)}"`});r.push(`knowledge: ${t.join(`, `)}`)}}}}catch{}return r.length===0?null:`\n---\nContext available: ${r.join(` | `)}\nPull with: stash({action:'get', key:'...'}) or search({query:'...', origin:'produced'})\n---`}function gy(e,t,n){let r=3;for(let[i,a]of Object.entries(e)){let e=a.handler;a.handler=async(...a)=>{let o=await e(...a);if(!o||typeof o!=`object`||r<=0||o.isError||fy.has(i))return o;try{r--;let e=a[0],i=await hy(t,n,my(e&&typeof e==`object`?e:{}));i&&(o.content=Array.isArray(o.content)?o.content:[],o.content.push({type:`text`,text:i}))}catch{}return o}}}function _y(e){let t=e.toLowerCase();return[`protobuf`,`invalid model`,`invalid onnx`,`unexpected end`,`unexpected token`,`failed to load`,`failed to initialize embedding`,`checksum`,`corrupt`,`malformed`,`could not load`,`onnx`,`database disk image is malformed`,`file is not a database`,`lance`,`cannot find module`,`cannot find package`,`module not found`].some(e=>t.includes(e))}function vy(e){return Wp(e)?[`Auto-heal tried to repair missing runtime dependency files in the npx install.`,`If this persists, clear the broken npx cache and restart:`,` npm cache clean --force`,` npx -y @vpxa/aikit@latest serve`].join(`
3031
3031
  `):[`To fix embedding errors, try deleting the cached model:`,` rm -rf ~/.cache/huggingface/transformers-js/mixedbread-ai/`,`Then restart the server to re-download a fresh copy.`].join(`
3032
- `)}async function vy(e,t){let n=t.toLowerCase(),r;try{({rm:r}=await import(`node:fs/promises`))}catch{return}if(n.includes(`transformers.node.mjs`)&&n.includes(`cannot find module`)){let e=t.match(/Cannot find module '([^']+transformers\.node\.mjs)'/);if(e){let t=e[1],n=t.replace(/\.mjs$/,`.cjs`);try{let{existsSync:e,writeFileSync:r}=await import(`node:fs`);e(n)&&!e(t)&&(r(t,[`// Auto-generated ESM shim — published package missing this file`,`import { createRequire } from 'node:module';`,`const require = createRequire(import.meta.url);`,`const mod = require('./transformers.node.cjs');`,`export default mod;`,``].join(`
3033
- `),`utf8`),$.info(`Auto-heal: created ESM shim for @huggingface/transformers (.mjs wrapper → .cjs)`,{path:t}))}catch(e){$.warn(`Auto-heal: failed to create ESM shim`,{error:e instanceof Error?e.message:String(e),path:t})}}}if(n.includes(`embedding`)||n.includes(`onnx`)||n.includes(`protobuf`)||n.includes(`model`)){let t=e.embedding?.model;if(t){let e=I(Wn(),`.cache`,`huggingface`,`transformers-js`,t);try{await r(e,{recursive:!0,force:!0}),$.info(`Auto-heal: cleared embedding model cache`,{path:e})}catch{}}}if(n.includes(`lance`)||n.includes(`database`)||n.includes(`store`)){let t=I(e.store.path,`lance`);try{await r(t,{recursive:!0,force:!0}),$.info(`Auto-heal: cleared LanceDB store`,{path:t})}catch{}}if(n.includes(`sqlite`)||n.includes(`database disk image`)||n.includes(`graph`)){let t=I(e.store.path,`graph.db`);try{await r(t,{force:!0}),$.info(`Auto-heal: cleared graph database`,{path:t})}catch{}let n=I(e.store.path,`aikit.db`);try{await r(n,{force:!0}),await r(`${n}-wal`,{force:!0}).catch(()=>{}),await r(`${n}-shm`,{force:!0}).catch(()=>{}),$.info(`Auto-heal: cleared corrupted aikit database`,{path:n})}catch{}}if(Up(t)){let e=await Kp(t);e.repaired||$.warn(`Auto-heal: missing runtime dependency repair did not complete`,{packages:e.packages,reason:e.reason,error:e.error,hint:`Run: npm cache clean --force && npx -y @vpxa/aikit@latest serve`})}else n.includes(`cannot find module`)&&!n.includes(`.cache`)&&$.warn(`Auto-heal: missing module detected during initialization cleanup`,{hint:`Run: npm cache clean --force && npx -y @vpxa/aikit@latest serve`})}function yy(e,t){let n=Ns(e,Ba,U,is(e)),r=Qv(e,n,U),i=new Kn({name:e.serverName??`aikit`,version:ae()},{capabilities:{logging:{},completions:{},prompts:{}},instructions:r}),a=`initializing`,o=``,s=!1,c=null,l=null,u=null;function d(e){if(!e||typeof e!=`object`)return[];let t=e,n=[];for(let e of[`path`,`file`,`source_path`,`sourcePath`,`filePath`]){let r=t[e];typeof r==`string`&&r&&n.push(r)}for(let e of[`changed_files`,`paths`,`files`]){let r=t[e];if(Array.isArray(r))for(let e of r){if(typeof e==`string`){n.push(e);continue}e&&typeof e==`object`&&typeof e.path==`string`&&n.push(e.path)}}if(Array.isArray(t.sources))for(let e of t.sources)e&&typeof e==`object`&&typeof e.path==`string`&&n.push(e.path);return n}let f=()=>a===`failed`?[`❌ AI Kit initialization failed — this tool is unavailable.`,``,o?`Error: ${o}`:``,``,`**${Va.size} tools are still available** and fully functional:`,`check, eval, test_run, git_context, health, measure, web_fetch, web_search,`,`flow, regex_test, encode,`,`stash, checkpoint, lane, process, time, env, and more.`,``,_y(o),``,`Try restarting the MCP server to retry initialization.`].filter(Boolean).join(`
3032
+ `)}async function yy(e,t){let n=t.toLowerCase(),r;try{({rm:r}=await import(`node:fs/promises`))}catch{return}if(n.includes(`transformers.node.mjs`)&&n.includes(`cannot find module`)){let e=t.match(/Cannot find module '([^']+transformers\.node\.mjs)'/);if(e){let t=e[1],n=t.replace(/\.mjs$/,`.cjs`);try{let{existsSync:e,writeFileSync:r}=await import(`node:fs`);e(n)&&!e(t)&&(r(t,[`// Auto-generated ESM shim — published package missing this file`,`import { createRequire } from 'node:module';`,`const require = createRequire(import.meta.url);`,`const mod = require('./transformers.node.cjs');`,`export default mod;`,``].join(`
3033
+ `),`utf8`),$.info(`Auto-heal: created ESM shim for @huggingface/transformers (.mjs wrapper → .cjs)`,{path:t}))}catch(e){$.warn(`Auto-heal: failed to create ESM shim`,{error:e instanceof Error?e.message:String(e),path:t})}}}if(n.includes(`embedding`)||n.includes(`onnx`)||n.includes(`protobuf`)||n.includes(`model`)){let t=e.embedding?.model;if(t){let e=I(Wn(),`.cache`,`huggingface`,`transformers-js`,t);try{await r(e,{recursive:!0,force:!0}),$.info(`Auto-heal: cleared embedding model cache`,{path:e})}catch{}}}if(n.includes(`lance`)||n.includes(`database`)||n.includes(`store`)){let t=I(e.store.path,`lance`);try{await r(t,{recursive:!0,force:!0}),$.info(`Auto-heal: cleared LanceDB store`,{path:t})}catch{}}if(n.includes(`sqlite`)||n.includes(`database disk image`)||n.includes(`graph`)){let t=I(e.store.path,`graph.db`);try{await r(t,{force:!0}),$.info(`Auto-heal: cleared graph database`,{path:t})}catch{}let n=I(e.store.path,`aikit.db`);try{await r(n,{force:!0}),await r(`${n}-wal`,{force:!0}).catch(()=>{}),await r(`${n}-shm`,{force:!0}).catch(()=>{}),$.info(`Auto-heal: cleared corrupted aikit database`,{path:n})}catch{}}if(Wp(t)){let e=await qp(t);e.repaired||$.warn(`Auto-heal: missing runtime dependency repair did not complete`,{packages:e.packages,reason:e.reason,error:e.error,hint:`Run: npm cache clean --force && npx -y @vpxa/aikit@latest serve`})}else n.includes(`cannot find module`)&&!n.includes(`.cache`)&&$.warn(`Auto-heal: missing module detected during initialization cleanup`,{hint:`Run: npm cache clean --force && npx -y @vpxa/aikit@latest serve`})}function by(e,t){let n=Ns(e,Ba,U,is(e)),r=$v(e,n,U),i=new Kn({name:e.serverName??`aikit`,version:ae()},{capabilities:{logging:{},completions:{},prompts:{}},instructions:r}),a=`initializing`,o=``,s=!1,c=null,l=null,u=null;function d(e){if(!e||typeof e!=`object`)return[];let t=e,n=[];for(let e of[`path`,`file`,`source_path`,`sourcePath`,`filePath`]){let r=t[e];typeof r==`string`&&r&&n.push(r)}for(let e of[`changed_files`,`paths`,`files`]){let r=t[e];if(Array.isArray(r))for(let e of r){if(typeof e==`string`){n.push(e);continue}e&&typeof e==`object`&&typeof e.path==`string`&&n.push(e.path)}}if(Array.isArray(t.sources))for(let e of t.sources)e&&typeof e==`object`&&typeof e.path==`string`&&n.push(e.path);return n}let f=()=>a===`failed`?[`❌ AI Kit initialization failed — this tool is unavailable.`,``,o?`Error: ${o}`:``,``,`**${Va.size} tools are still available** and fully functional:`,`check, eval, test_run, git_context, health, measure, web_fetch, web_search,`,`flow, regex_test, encode,`,`stash, checkpoint, lane, process, time, env, and more.`,``,vy(o),``,`Try restarting the MCP server to retry initialization.`].filter(Boolean).join(`
3034
3034
  `):[`AI Kit is still initializing (loading embeddings model & store).`,``,`**${Va.size} tools are already available** while initialization completes — including:`,`check, eval, test_run, git_context, health, measure, web_fetch, web_search,`,`flow, regex_test, encode,`,`stash, checkpoint, lane, process, time, env, and more.`,``,`This tool requires the AI Kit index. Please retry in a few seconds,`,`or use one of the available tools above in the meantime.`].join(`
3035
- `);Gr(i);let p=new Eo;p.use(ss(),{order:1,name:`structured-content-guard`}),vs(i,p,e.toolPrefix??``);let m=i.sendToolListChanged.bind(i);i.sendToolListChanged=()=>{};let h=[];for(let e of Ba){if(!n.has(e))continue;let t=W(e),r=i.registerTool(e,{title:t.title,description:`${t.title} — initializing, available shortly`,inputSchema:{},annotations:t.annotations},async()=>({content:[{type:`text`,text:f()}]}));Va.has(e)?r.remove():h.push(r)}qv(i,e,n),i.sendToolListChanged=m;let g=i.registerResource(`aikit-status`,`aikit://status`,{description:`AI Kit status (initializing...)`,mimeType:`text/plain`},async()=>({contents:[{uri:`aikit://status`,text:`AI Kit is initializing...`,mimeType:`text/plain`}]})),_=i.registerPrompt(`_init`,{description:`Initializing AI Kit…`,argsSchema:{_dummy:Qn(R.string(),()=>[])}},async()=>({messages:[]})),v,y,b=new Promise((e,t)=>{v=e,y=t}),x,S=new Promise(e=>{x=e}),C=()=>x?.(),w=(async()=>{await S;try{let{createRequire:e}=await import(`node:module`),{readFileSync:t,existsSync:n}=await import(`node:fs`),{fileURLToPath:r}=await import(`node:url`),{resolve:i,dirname:a}=await import(`node:path`),o=e(import.meta.url),s=a(r(import.meta.url)),c=i(s,`..`,`package.json`),l=i(s,`..`,`..`),u=JSON.parse(t(c,`utf8`)),d=Object.keys(u.dependencies??{}),f=[`@mixmark-io/domino`],p=[...d,...f.filter(e=>!d.includes(e))],m=p.filter(e=>!e.startsWith(`@aikit/`)),h=p.filter(e=>e.startsWith(`@aikit/`)),g=[];for(let e of m)try{o.resolve(e)}catch{try{o.resolve(`${e}/package.json`)}catch{g.push(e)}}g.length>0&&$.warn(`Dependencies not resolvable — server may operate in degraded mode`,{missing:g,hint:`Run: npm cache clean --force && npx -y @vpxa/aikit@latest serve`});let _=[];if(h.length>0){for(let e of h)n(i(l,e.slice(7),`dist`))||_.push(e);_.length>0&&$.warn(`Workspace sibling packages missing dist — server may have degraded features`,{missing:_,hint:`Reinstall: npm cache clean --force && npx -y @vpxa/aikit@latest serve`})}}catch{}let n;try{n=await Zv(e)}catch(t){let r=t instanceof Error?t.message:String(t);if(gy(r)){$.warn(`AI Kit initialization failed with recoverable error — attempting auto-heal retry`,{error:r}),await vy(e,r);try{n=await Zv(e),$.info(`AI Kit auto-heal successful — initialization recovered after retry`)}catch(e){a=`failed`,o=e instanceof Error?e.message:String(e),$.error(`AI Kit initialization failed after auto-heal attempt — server continuing with zero-dep tools only`,{error:o,originalError:r}),y?.(e instanceof Error?e:Error(o));return}}else{a=`failed`,o=r,$.error(`AI Kit initialization failed — server continuing with zero-dep tools only`,{error:o}),y?.(t instanceof Error?t:Error(o));return}}let r=i.sendToolListChanged.bind(i);i.sendToolListChanged=()=>{};let f=i.sendPromptListChanged.bind(i);i.sendPromptListChanged=()=>{};let p=i.sendResourceListChanged.bind(i);i.sendResourceListChanged=()=>{};for(let e of h)e.remove();g.remove(),_.remove();let m=i._registeredTools??{};for(let e of Va)m[e]?.remove();let b=new Yv(i),x=hu(i);Kv({server:i,aikit:n,config:e,elicitor:Ur(i),resourceNotifier:b,samplingClient:x,indexMode:t,getSmartState:t===`smart`?(()=>{let e=u;return e?.getState?e.getState():null}):null,getSmartScheduler:t===`smart`?()=>{let e=u;return e?{prioritize:e.prioritize.bind(e)}:null}:null}),ni(i,{curated:n.curated,store:n.store,graphStore:n.graphStore,stateStore:n.stateStore},t),i.sendToolListChanged=r,i.sendPromptListChanged=f,i.sendResourceListChanged=p,Promise.resolve(i.sendToolListChanged()).catch(()=>{}),Promise.resolve(i.sendPromptListChanged()).catch(()=>{}),Promise.resolve(i.sendResourceListChanged()).catch(()=>{});let C=i._registeredTools??{};for(let[e,t]of Object.entries(C)){if(Ha.has(e))continue;let r=t.handler;t.handler=async(...i)=>{if(!n.indexer.isIndexing)return r(...i);let a=s?`re-indexing`:`running initial index`,o=new Promise(n=>setTimeout(()=>n({content:[{type:`text`,text:`⏳ AI Kit is ${a}. The tool "${e}" timed out waiting for index data (${as/1e3}s).\n\nThe existing index may be temporarily locked. Please retry shortly — indexing will complete automatically.`}],...t.config?.outputSchema?{structuredContent:ps(t.config.outputSchema)}:{}}),as));return Promise.race([r(...i),o])}}for(let[e,t]of Object.entries(C)){let n=t.handler,r=ly(e);t.handler=async(...i)=>{try{return await uy(e=>oy(e,()=>n(...i)),r,e)}catch(n){if(n instanceof cy)return{content:[{type:`text`,text:`⏳ Tool "${e}" timed out after ${r/1e3}s. This may indicate a long-running operation. Please retry or break the task into smaller steps.`}],...t.config?.outputSchema?{structuredContent:ps(t.config.outputSchema)}:{}};throw n}}}let w=Object.keys(C).length;w<Ba.length&&$.warn(`ALL_TOOL_NAMES count mismatch`,{expectedToolCount:Ba.length,registeredToolCount:w}),$.debug(`MCP server configured`,{toolCount:Ba.length,resourceCount:4});let T=new iy;T.onPressure((e,t)=>{e===`warning`&&Yr(),e===`critical`&&($.warn(`Memory pressure critical — consider restarting`,{rssMB:Math.round(t/1024/1024)}),Yr())}),T.registerMemoryPressureCallback(()=>n.embedder.shutdown?.()),T.start();let D=new ny;l=D,D.onIdle(async()=>{if(E.isRunning||n.indexer.isIndexing){$.info(`Idle cleanup deferred — background tasks still running`),D.touch();return}$.info(`Idle cleanup: releasing cached memory (connections stay open)`);try{n.store.releaseMemory?.(),n.graphStore.releaseMemory?.()}catch{}}),D.touch();let O=!1;for(let e of Object.values(C)){let t=e.handler;e.handler=async(...e)=>{if(O||(O=!0,D.markSessionActive()),D.touch(),u){let t=d(e[0]);t.length>0&&u.prioritize(...t)}return t(...e)}}hy(C,n,{statePath:e.stateDir??``});for(let[,e]of Object.entries(C)){let t=e.config?.outputSchema;if(!t)continue;let n=e.handler;e.handler=async(...e)=>{let r=await n(...e);if(!r||typeof r!=`object`)return r;let i=r;return!(`content`in i)||i.isError||i.structuredContent!=null&&typeof i.structuredContent==`object`?r:(i.structuredContent=ps(t),i.structuredContent??={},r)}}process.stdin.on(`end`,()=>($.info(`stdin closed — MCP client disconnected. Shutting down.`),process.exit(0))),process.stdin.on(`error`,()=>($.info(`stdin error — MCP client disconnected. Shutting down.`),process.exit(0))),c=n,v?.(n)})(),T=async()=>{let t;try{t=await b}catch{$.warn(`Skipping initial index — AI Kit initialization failed`);return}l?.setBusy(!0);try{let n=e.sources.map(e=>e.path).join(`, `);$.info(`Running initial index`,{sourcePaths:n});let r=await t.indexer.index(e,e=>{e.phase===`crawling`||e.phase===`done`||(e.phase===`chunking`&&e.currentFile&&$.debug(`Indexing file`,{current:e.filesProcessed+1,total:e.filesTotal,file:e.currentFile}),e.phase===`cleanup`&&$.debug(`Index cleanup`,{staleEntries:e.filesTotal-e.filesProcessed}))});s=!0,$.info(`Initial index complete`,{filesProcessed:r.filesProcessed,filesSkipped:r.filesSkipped,chunksCreated:r.chunksCreated,durationMs:r.durationMs});try{await t.store.createFtsIndex()}catch(e){$.warn(`FTS index creation failed`,N(e))}try{let e=await t.curated.reindexAll();$.info(`Curated re-index complete`,{indexed:e.indexed})}catch(e){$.error(`Curated re-index failed`,N(e))}}catch(e){$.error(`Initial index failed; will retry on aikit_reindex`,N(e))}finally{l?.setBusy(!1)}},E=new ey,D=()=>E.schedule({name:`initial-index`,fn:T}),O=process.ppid,k=setInterval(()=>{try{process.kill(O,0)}catch{$.info(`Parent process died; shutting down`,{parentPid:O}),clearInterval(k),u?.stop&&u.stop(),import(`../../tools/dist/index.js`).then(({processStopAll:e})=>e()).catch(()=>{}),b.then(async e=>{await Promise.all([e.embedder.shutdown?.().catch(()=>{})??Promise.resolve(),e.graphStore.close().catch(()=>{}),e.closeStateStore?.().catch(()=>{})??Promise.resolve(),e.store.close().catch(()=>{})])}).catch(()=>{}).finally(()=>process.exit(0))}},5e3);return k.unref(),{server:i,startInit:C,ready:w,runInitialIndex:D,get aikit(){return c},scheduler:E,setSmartScheduler(e){u=e}}}const by=M(`server`);function xy(e,t){let n=Ns(t,[...Ba,...ns],U,is(t)),r=Qv(t,n,U),i=new Kn({name:t.serverName??`aikit`,version:ae()},{capabilities:{logging:{},completions:{},prompts:{},extensions:{roots:{}}},instructions:r}),a=i;return a.setNotificationHandler(Jn,async()=>{try{let{roots:e}=await a.listRoots();if(e&&e.length>0){let n=ce(e[0].uri);process.env.AIKIT_TRANSPORT===`http`?(t.sources[0]={path:n,excludePatterns:t.sources[0]?.excludePatterns??[]},t.allRoots=e.map(e=>ce(e.uri)),by.info(`Workspace root updated (HTTP mode)`,{rootPath:n,sourceCount:t.sources.length})):(x(t,n),by.info(`Workspace root updated (stdio mode)`,{rootPath:n}))}}catch(e){by.debug(`MCP roots/list not available`,{error:N(e)})}}),Gr(i),Kv({server:i,aikit:e,config:t,elicitor:Ur(i),resourceNotifier:new Yv(i),samplingClient:hu(i),precomputedActiveTools:n}),ni(i,{curated:e.curated,store:e.store,graphStore:e.graphStore,stateStore:e.stateStore},t.indexMode),i}async function Sy(e){let t=await Zv(e),n=xy(t,e);by.debug(`MCP server configured`,{toolCount:Ba.length,resourceCount:2});let r=async()=>{try{let n=e.sources.map(e=>e.path).join(`, `);by.info(`Running initial index`,{sourcePaths:n});let r=await t.indexer.index(e,e=>{e.phase===`crawling`||e.phase===`done`||(e.phase===`chunking`&&e.currentFile&&by.debug(`Indexing file`,{current:e.filesProcessed+1,total:e.filesTotal,file:e.currentFile}),e.phase===`cleanup`&&by.debug(`Index cleanup`,{staleEntries:e.filesTotal-e.filesProcessed}))});by.info(`Initial index complete`,{filesProcessed:r.filesProcessed,filesSkipped:r.filesSkipped,chunksCreated:r.chunksCreated,durationMs:r.durationMs});try{await t.store.createFtsIndex()}catch(e){by.warn(`FTS index creation failed`,N(e))}try{let e=await t.curated.reindexAll();by.info(`Curated re-index complete`,{indexed:e.indexed})}catch(e){by.error(`Curated re-index failed`,N(e))}}catch(e){by.error(`Initial index failed; will retry on aikit_reindex`,N(e))}},i=async()=>{by.info(`Shutting down`),await import(`../../tools/dist/index.js`).then(({processStopAll:e})=>e()).catch(()=>{}),await Promise.all([t.embedder.shutdown?.().catch(()=>{})??Promise.resolve(),t.graphStore.close().catch(()=>{}),t.closeStateStore?.().catch(()=>{})??Promise.resolve(),t.store.close().catch(()=>{})]),process.exit(0)};process.on(`SIGINT`,i),process.on(`SIGTERM`,i);let a=process.ppid,o=setInterval(()=>{try{process.kill(a,0)}catch{by.info(`Parent process died; shutting down`,{parentPid:a}),clearInterval(o),i()}},5e3);return o.unref(),{server:n,runInitialIndex:r,shutdown:i}}export{Ba as ALL_TOOL_NAMES,yy as createLazyServer,xy as createMcpServer,Sy as createServer,Zv as initializeAikit,Kv as registerMcpTools};
3035
+ `);Gr(i);let p=new Eo;p.use(ss(),{order:1,name:`structured-content-guard`}),vs(i,p,e.toolPrefix??``);let m=i.sendToolListChanged.bind(i);i.sendToolListChanged=()=>{};let h=[];for(let e of Ba){if(!n.has(e))continue;let t=W(e),r=i.registerTool(e,{title:t.title,description:`${t.title} — initializing, available shortly`,inputSchema:{},annotations:t.annotations},async()=>({content:[{type:`text`,text:f()}]}));Va.has(e)?r.remove():h.push(r)}Jv(i,e,n),i.sendToolListChanged=m;let g=i.registerResource(`aikit-status`,`aikit://status`,{description:`AI Kit status (initializing...)`,mimeType:`text/plain`},async()=>({contents:[{uri:`aikit://status`,text:`AI Kit is initializing...`,mimeType:`text/plain`}]})),_=i.registerPrompt(`_init`,{description:`Initializing AI Kit…`,argsSchema:{_dummy:Qn(R.string(),()=>[])}},async()=>({messages:[]})),v,y,b=new Promise((e,t)=>{v=e,y=t}),x,S=new Promise(e=>{x=e}),C=()=>x?.(),w=(async()=>{await S;try{let{createRequire:e}=await import(`node:module`),{readFileSync:t,existsSync:n}=await import(`node:fs`),{fileURLToPath:r}=await import(`node:url`),{resolve:i,dirname:a}=await import(`node:path`),o=e(import.meta.url),s=a(r(import.meta.url)),c=i(s,`..`,`package.json`),l=i(s,`..`,`..`),u=JSON.parse(t(c,`utf8`)),d=Object.keys(u.dependencies??{}),f=[`@mixmark-io/domino`],p=[...d,...f.filter(e=>!d.includes(e))],m=p.filter(e=>!e.startsWith(`@aikit/`)),h=p.filter(e=>e.startsWith(`@aikit/`)),g=[];for(let e of m)try{o.resolve(e)}catch{try{o.resolve(`${e}/package.json`)}catch{g.push(e)}}g.length>0&&$.warn(`Dependencies not resolvable — server may operate in degraded mode`,{missing:g,hint:`Run: npm cache clean --force && npx -y @vpxa/aikit@latest serve`});let _=[];if(h.length>0){for(let e of h)n(i(l,e.slice(7),`dist`))||_.push(e);_.length>0&&$.warn(`Workspace sibling packages missing dist — server may have degraded features`,{missing:_,hint:`Reinstall: npm cache clean --force && npx -y @vpxa/aikit@latest serve`})}}catch{}let n;try{n=await Qv(e)}catch(t){let r=t instanceof Error?t.message:String(t);if(_y(r)){$.warn(`AI Kit initialization failed with recoverable error — attempting auto-heal retry`,{error:r}),await yy(e,r);try{n=await Qv(e),$.info(`AI Kit auto-heal successful — initialization recovered after retry`)}catch(e){a=`failed`,o=e instanceof Error?e.message:String(e),$.error(`AI Kit initialization failed after auto-heal attempt — server continuing with zero-dep tools only`,{error:o,originalError:r}),y?.(e instanceof Error?e:Error(o));return}}else{a=`failed`,o=r,$.error(`AI Kit initialization failed — server continuing with zero-dep tools only`,{error:o}),y?.(t instanceof Error?t:Error(o));return}}let r=i.sendToolListChanged.bind(i);i.sendToolListChanged=()=>{};let f=i.sendPromptListChanged.bind(i);i.sendPromptListChanged=()=>{};let p=i.sendResourceListChanged.bind(i);i.sendResourceListChanged=()=>{};for(let e of h)e.remove();g.remove(),_.remove();let m=i._registeredTools??{};for(let e of Va)m[e]?.remove();let b=new Xv(i),x=gu(i);qv({server:i,aikit:n,config:e,elicitor:Ur(i),resourceNotifier:b,samplingClient:x,indexMode:t,getSmartState:t===`smart`?(()=>{let e=u;return e?.getState?e.getState():null}):null,getSmartScheduler:t===`smart`?()=>{let e=u;return e?{prioritize:e.prioritize.bind(e)}:null}:null}),ni(i,{curated:n.curated,store:n.store,graphStore:n.graphStore,stateStore:n.stateStore},t),i.sendToolListChanged=r,i.sendPromptListChanged=f,i.sendResourceListChanged=p,Promise.resolve(i.sendToolListChanged()).catch(()=>{}),Promise.resolve(i.sendPromptListChanged()).catch(()=>{}),Promise.resolve(i.sendResourceListChanged()).catch(()=>{});let C=i._registeredTools??{};for(let[e,t]of Object.entries(C)){if(Ha.has(e))continue;let r=t.handler;t.handler=async(...i)=>{if(!n.indexer.isIndexing)return r(...i);let a=s?`re-indexing`:`running initial index`,o=new Promise(n=>setTimeout(()=>n({content:[{type:`text`,text:`⏳ AI Kit is ${a}. The tool "${e}" timed out waiting for index data (${as/1e3}s).\n\nThe existing index may be temporarily locked. Please retry shortly — indexing will complete automatically.`}],...t.config?.outputSchema?{structuredContent:ps(t.config.outputSchema)}:{}}),as));return Promise.race([r(...i),o])}}for(let[e,t]of Object.entries(C)){let n=t.handler,r=uy(e);t.handler=async(...i)=>{try{return await dy(e=>sy(e,()=>n(...i)),r,e)}catch(n){if(n instanceof ly)return{content:[{type:`text`,text:`⏳ Tool "${e}" timed out after ${r/1e3}s. This may indicate a long-running operation. Please retry or break the task into smaller steps.`}],...t.config?.outputSchema?{structuredContent:ps(t.config.outputSchema)}:{}};throw n}}}let w=Object.keys(C).length;w<Ba.length&&$.warn(`ALL_TOOL_NAMES count mismatch`,{expectedToolCount:Ba.length,registeredToolCount:w}),$.debug(`MCP server configured`,{toolCount:Ba.length,resourceCount:4});let T=new ay;T.onPressure((e,t)=>{e===`warning`&&Yr(),e===`critical`&&($.warn(`Memory pressure critical — consider restarting`,{rssMB:Math.round(t/1024/1024)}),Yr())}),T.registerMemoryPressureCallback(()=>n.embedder.shutdown?.()),T.start();let D=new ry;l=D,D.onIdle(async()=>{if(E.isRunning||n.indexer.isIndexing){$.info(`Idle cleanup deferred — background tasks still running`),D.touch();return}$.info(`Idle cleanup: releasing cached memory (connections stay open)`);try{n.store.releaseMemory?.(),n.graphStore.releaseMemory?.()}catch{}}),D.touch();let O=!1;for(let e of Object.values(C)){let t=e.handler;e.handler=async(...e)=>{if(O||(O=!0,D.markSessionActive()),D.touch(),u){let t=d(e[0]);t.length>0&&u.prioritize(...t)}return t(...e)}}gy(C,n,{statePath:e.stateDir??``});for(let[,e]of Object.entries(C)){let t=e.config?.outputSchema;if(!t)continue;let n=e.handler;e.handler=async(...e)=>{let r=await n(...e);if(!r||typeof r!=`object`)return r;let i=r;return!(`content`in i)||i.isError||i.structuredContent!=null&&typeof i.structuredContent==`object`?r:(i.structuredContent=ps(t),i.structuredContent??={},r)}}process.stdin.on(`end`,()=>($.info(`stdin closed — MCP client disconnected. Shutting down.`),process.exit(0))),process.stdin.on(`error`,()=>($.info(`stdin error — MCP client disconnected. Shutting down.`),process.exit(0))),c=n,v?.(n)})(),T=async()=>{let t;try{t=await b}catch{$.warn(`Skipping initial index — AI Kit initialization failed`);return}l?.setBusy(!0);try{let n=e.sources.map(e=>e.path).join(`, `);$.info(`Running initial index`,{sourcePaths:n});let r=await t.indexer.index(e,e=>{e.phase===`crawling`||e.phase===`done`||(e.phase===`chunking`&&e.currentFile&&$.debug(`Indexing file`,{current:e.filesProcessed+1,total:e.filesTotal,file:e.currentFile}),e.phase===`cleanup`&&$.debug(`Index cleanup`,{staleEntries:e.filesTotal-e.filesProcessed}))});s=!0,$.info(`Initial index complete`,{filesProcessed:r.filesProcessed,filesSkipped:r.filesSkipped,chunksCreated:r.chunksCreated,durationMs:r.durationMs});try{await t.store.createFtsIndex()}catch(e){$.warn(`FTS index creation failed`,N(e))}try{let e=await t.curated.reindexAll();$.info(`Curated re-index complete`,{indexed:e.indexed})}catch(e){$.error(`Curated re-index failed`,N(e))}}catch(e){$.error(`Initial index failed; will retry on aikit_reindex`,N(e))}finally{l?.setBusy(!1)}},E=new ty,D=()=>E.schedule({name:`initial-index`,fn:T}),O=process.ppid,k=setInterval(()=>{try{process.kill(O,0)}catch{$.info(`Parent process died; shutting down`,{parentPid:O}),clearInterval(k),u?.stop&&u.stop(),import(`../../tools/dist/index.js`).then(({processStopAll:e})=>e()).catch(()=>{}),b.then(async e=>{await Promise.all([e.embedder.shutdown?.().catch(()=>{})??Promise.resolve(),e.graphStore.close().catch(()=>{}),e.closeStateStore?.().catch(()=>{})??Promise.resolve(),e.store.close().catch(()=>{})])}).catch(()=>{}).finally(()=>process.exit(0))}},5e3);return k.unref(),{server:i,startInit:C,ready:w,runInitialIndex:D,get aikit(){return c},scheduler:E,setSmartScheduler(e){u=e}}}const xy=M(`server`);function Sy(e,t){let n=Ns(t,[...Ba,...ns],U,is(t)),r=$v(t,n,U),i=new Kn({name:t.serverName??`aikit`,version:ae()},{capabilities:{logging:{},completions:{},prompts:{},extensions:{roots:{}}},instructions:r}),a=i;return a.setNotificationHandler(Jn,async()=>{try{let{roots:e}=await a.listRoots();if(e&&e.length>0){let n=ce(e[0].uri);process.env.AIKIT_TRANSPORT===`http`?(t.sources[0]={path:n,excludePatterns:t.sources[0]?.excludePatterns??[]},t.allRoots=e.map(e=>ce(e.uri)),xy.info(`Workspace root updated (HTTP mode)`,{rootPath:n,sourceCount:t.sources.length})):(x(t,n),xy.info(`Workspace root updated (stdio mode)`,{rootPath:n}))}}catch(e){xy.debug(`MCP roots/list not available`,{error:N(e)})}}),Gr(i),qv({server:i,aikit:e,config:t,elicitor:Ur(i),resourceNotifier:new Xv(i),samplingClient:gu(i),precomputedActiveTools:n}),ni(i,{curated:e.curated,store:e.store,graphStore:e.graphStore,stateStore:e.stateStore},t.indexMode),i}async function Cy(e){let t=await Qv(e),n=Sy(t,e);xy.debug(`MCP server configured`,{toolCount:Ba.length,resourceCount:2});let r=async()=>{try{let n=e.sources.map(e=>e.path).join(`, `);xy.info(`Running initial index`,{sourcePaths:n});let r=await t.indexer.index(e,e=>{e.phase===`crawling`||e.phase===`done`||(e.phase===`chunking`&&e.currentFile&&xy.debug(`Indexing file`,{current:e.filesProcessed+1,total:e.filesTotal,file:e.currentFile}),e.phase===`cleanup`&&xy.debug(`Index cleanup`,{staleEntries:e.filesTotal-e.filesProcessed}))});xy.info(`Initial index complete`,{filesProcessed:r.filesProcessed,filesSkipped:r.filesSkipped,chunksCreated:r.chunksCreated,durationMs:r.durationMs});try{await t.store.createFtsIndex()}catch(e){xy.warn(`FTS index creation failed`,N(e))}try{let e=await t.curated.reindexAll();xy.info(`Curated re-index complete`,{indexed:e.indexed})}catch(e){xy.error(`Curated re-index failed`,N(e))}}catch(e){xy.error(`Initial index failed; will retry on aikit_reindex`,N(e))}},i=async()=>{xy.info(`Shutting down`),await import(`../../tools/dist/index.js`).then(({processStopAll:e})=>e()).catch(()=>{}),await Promise.all([t.embedder.shutdown?.().catch(()=>{})??Promise.resolve(),t.graphStore.close().catch(()=>{}),t.closeStateStore?.().catch(()=>{})??Promise.resolve(),t.store.close().catch(()=>{})]),process.exit(0)};process.on(`SIGINT`,i),process.on(`SIGTERM`,i);let a=process.ppid,o=setInterval(()=>{try{process.kill(a,0)}catch{xy.info(`Parent process died; shutting down`,{parentPid:a}),clearInterval(o),i()}},5e3);return o.unref(),{server:n,runInitialIndex:r,shutdown:i}}export{Ba as ALL_TOOL_NAMES,by as createLazyServer,Sy as createMcpServer,Cy as createServer,Qv as initializeAikit,qv as registerMcpTools};