@zibby/agent-workflow 0.6.1 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -165,6 +165,7 @@ If you want to compose Claude Code + Codex + Gemini into one pipeline with struc
165
165
  | Primitive | What it does |
166
166
  |---|---|
167
167
  | `Graph` | The DAG. `addNode`, `addEdge`, `addConditionalEdges`, `setEntryPoint`. |
168
+ | Fan-out | Call `addEdge` more than once from the same node and **every** branch runs, each carrying on through its own children. Branches run sequentially in declaration order (depth-first: a branch finishes before the next starts). Where branches converge, the shared node waits for all of them and runs **once** — see [Fan-out](#fan-out) below. |
168
169
  | `Node` | One agent invocation. Config: `prompt`, `outputSchema` (Zod), optional `agent`, `retries`, `skills`. |
169
170
  | Sub-graph node | `addNode(name, { workflow: 'other-name', ... })` — dispatches another deployed workflow as a child. Sync (poll + merge) or async (`async: true`, fire-and-forget). See [Sub-graphs](#sub-graphs) below. |
170
171
  | `AgentStrategy` | Abstract base. Implement `canHandle(ctx)` and `invoke(prompt, opts)`. |
@@ -179,6 +180,35 @@ State flows automatically: when node `plan` completes with output `{ tasks: [...
179
180
 
180
181
  ---
181
182
 
183
+ ## Fan-out
184
+
185
+ One node, several branches, each with its own children:
186
+
187
+ ```js
188
+ const graph = new Graph()
189
+ .addNode('gather', { prompt: 'Collect the diff', outputSchema: Diff })
190
+ .addNode('security', { prompt: 'Security review', outputSchema: Findings })
191
+ .addNode('perf', { prompt: 'Performance review', outputSchema: Findings })
192
+ .addNode('triage', { prompt: 'Rank the findings', outputSchema: Findings })
193
+ .addNode('report', { prompt: 'Write it up', outputSchema: Report })
194
+ .addEdge('gather', 'security') // branch 1
195
+ .addEdge('gather', 'perf') // branch 2
196
+ .addEdge('perf', 'triage') // …with its own child
197
+ .addEdge('security', 'report') // both branches converge
198
+ .addEdge('triage', 'report')
199
+ .setEntryPoint('gather');
200
+ ```
201
+
202
+ The contract:
203
+
204
+ - **Every branch runs.** Declaring a second edge from a node used to *replace* the first; now it adds one.
205
+ - **Sequentially, depth-first, in declaration order** — branch 1 runs all the way through its children, then branch 2. Deliberately not concurrent: the engine binds "the node running right now" to shared state (`_currentNodeTools`), to the timeline's single current node, and to its stdout interception, so two nodes at once would read each other's tools and interleave each other's logs. Sequential branches need none of that. For genuine parallelism, dispatch each branch as a [sub-graph](#sub-graphs) — separate processes, no shared state.
206
+ - **A join runs once.** A node several branches converge on waits for all of them, then runs a single time with every branch's output already in state (`state.security`, `state.triage`). It re-arms if a loop drives the fan-out again.
207
+ - **Conditional edges are unchanged** — `addConditionalEdges` still picks exactly one path. A join is defined over the unconditional edges a fan-out creates; a conditional arrival schedules its target immediately, as it always has.
208
+ - **A node routes either unconditionally or conditionally, not both.** Mixing them on one node warns and keeps the last declaration.
209
+
210
+ ---
211
+
182
212
  ## Sub-graphs
183
213
 
184
214
  A **sub-graph node** dispatches another deployed workflow as a child of the current one. Useful when a step is large enough to deserve its own state schema, its own version, and its own activity-tab history — but you want a parent to call it as part of a larger flow.
@@ -1,34 +1,34 @@
1
- var V=Object.defineProperty;var T=(e,o,t)=>()=>{if(t)throw t[0];try{return e&&(o=e(e=0)),o}catch(r){throw t=[r],r}};var Y=(e,o)=>{for(var t in o)V(e,t,{get:o[t],enumerable:!0})};function $(e){return U.get(e)||null}var b,N,U,ce,v=T(()=>{b=Symbol.for("@zibby/agent-workflow.skills"),N=Symbol.for("@zibby/agent-workflow.skills.sources");globalThis[b]||(globalThis[b]=new Map);globalThis[N]||(globalThis[N]=new Map);U=globalThis[b],ce=globalThis[N]});var I,K,S,k,E=T(()=>{I=()=>{},K={debug:I,info:I,warn:(...e)=>console.warn("[workflow]",...e),error:(...e)=>console.error("[workflow]",...e)},S={impl:K},k={debug:(...e)=>S.impl.debug?.(...e),info:(...e)=>S.impl.info?.(...e),warn:(...e)=>S.impl.warn?.(...e),error:(...e)=>S.impl.error?.(...e)}});var O=T(()=>{});var M={};Y(M,{getAgentStrategy:()=>P,invokeAgent:()=>J,listStrategies:()=>W,registerStrategy:()=>H,resolveInvocationModel:()=>R});function H(e){if(!e||typeof e.getName!="function"||typeof e.invoke!="function")throw new Error("strategy must implement getName() and invoke() (AgentStrategy shape)");let o=w.findIndex(t=>t.getName()===e.getName());o>=0?w[o]=e:w.push(e)}function W(){return w.map(e=>e.getName())}function R({config:e={},options:o={},strategyName:t,envModel:r}={}){let i=e.models||{},s=o.nodeName&&i[o.nodeName]||null,n=i.default||null,c=e.agent?.[t]?.model||null,a=(typeof r=="string"?r.trim():"")||null;return s||n||c||o.model||a||null}function P(e={}){let{state:o={},preferredAgent:t=null}=e,r=t||o.agentType||process.env.AGENT_TYPE;if(!r){let s=w.map(n=>n.getName()).join(", ")||"none registered";throw new Error(`No agent specified. Set agentType in state or AGENT_TYPE env var. Available: ${s}`)}k.debug(`[workflow] agent selection: requested=${r}`);let i=w.find(s=>s.getName()===r);if(!i){let s=w.map(n=>n.getName()).join(", ")||"none registered";throw new Error(`Unknown agent '${r}'. Available: ${s}`)}if(!i.canHandle(e))throw new Error(`Agent '${r}' is not available in this environment. Check credentials/environment.`);return k.debug(`[workflow] using agent: ${i.getName()}`),i}async function J(e,o={},t={}){let r=o.state&&typeof o.state.getAll=="function"?o.state.getAll():o.state||{},i={...o,state:r},s=P(i),n=r.config||t.config||{},c=R({config:n,options:t,strategyName:s.name,envModel:process.env.MODEL}),a={...t,model:c,workspace:r.workspace||t.workspace,schema:t.schema||o.schema,images:t.images||o.images||[],skills:t.skills||o.skills||[],extraMcpServers:t.extraMcpServers||r.extraMcpServers||o.extraMcpServers||[],plugins:t.plugins||o.plugins||[],config:n},l=e,g=a.skills||[];if(g.length>0&&!t.skipPromptFragments){let h=g.map(p=>{let f=$(p)?.promptFragment;return typeof f=="function"?f():f}).filter(Boolean);h.length>0&&(l+=`
1
+ var V=Object.defineProperty;var S=(e,o,t)=>()=>{if(t)throw t[0];try{return e&&(o=e(e=0)),o}catch(r){throw t=[r],r}};var Y=(e,o)=>{for(var t in o)V(e,t,{get:o[t],enumerable:!0})};function E(e){return U.get(e)||null}var v,$,U,ce,x=S(()=>{v=Symbol.for("@zibby/agent-workflow.skills"),$=Symbol.for("@zibby/agent-workflow.skills.sources");globalThis[v]||(globalThis[v]=new Map);globalThis[$]||(globalThis[$]=new Map);U=globalThis[v],ce=globalThis[$]});var C,K,N,T,_=S(()=>{C=()=>{},K={debug:C,info:C,warn:(...e)=>console.warn("[workflow]",...e),error:(...e)=>console.error("[workflow]",...e)},N={impl:K},T={debug:(...e)=>N.impl.debug?.(...e),info:(...e)=>N.impl.info?.(...e),warn:(...e)=>N.impl.warn?.(...e),error:(...e)=>N.impl.error?.(...e)}});var P=S(()=>{});var D={};Y(D,{getAgentStrategy:()=>L,invokeAgent:()=>J,listStrategies:()=>H,registerStrategy:()=>W,resolveInvocationModel:()=>M});function W(e){if(!e||typeof e.getName!="function"||typeof e.invoke!="function")throw new Error("strategy must implement getName() and invoke() (AgentStrategy shape)");let o=k.findIndex(t=>t.getName()===e.getName());o>=0?k[o]=e:k.push(e)}function H(){return k.map(e=>e.getName())}function M({config:e={},options:o={},strategyName:t,envModel:r}={}){let i=e.models||{},s=o.nodeName&&i[o.nodeName]||null,n=i.default||null,c=e.agent?.[t]?.model||null,a=(typeof r=="string"?r.trim():"")||null;return s||n||c||o.model||a||null}function L(e={}){let{state:o={},preferredAgent:t=null}=e,r=t||o.agentType||process.env.AGENT_TYPE;if(!r){let s=k.map(n=>n.getName()).join(", ")||"none registered";throw new Error(`No agent specified. Set agentType in state or AGENT_TYPE env var. Available: ${s}`)}T.debug(`[workflow] agent selection: requested=${r}`);let i=k.find(s=>s.getName()===r);if(!i){let s=k.map(n=>n.getName()).join(", ")||"none registered";throw new Error(`Unknown agent '${r}'. Available: ${s}`)}if(!i.canHandle(e))throw new Error(`Agent '${r}' is not available in this environment. Check credentials/environment.`);return T.debug(`[workflow] using agent: ${i.getName()}`),i}async function J(e,o={},t={}){let r=o.state&&typeof o.state.getAll=="function"?o.state.getAll():o.state||{},i={...o,state:r},s=L(i),n=r.config||t.config||{},c=M({config:n,options:t,strategyName:s.name,envModel:process.env.MODEL}),a={...t,model:c,workspace:r.workspace||t.workspace,schema:t.schema||o.schema,images:t.images||o.images||[],skills:t.skills||o.skills||[],extraMcpServers:t.extraMcpServers||r.extraMcpServers||o.extraMcpServers||[],plugins:t.plugins||o.plugins||[],config:n},l=e,h=a.skills||[];if(h.length>0&&!t.skipPromptFragments){let g=t.connectedIntegrations;if(!g){let f=process.env.WORKFLOW_CONNECTED_INTEGRATIONS;if(typeof f=="string"&&f.trim()!==""){g={};for(let u of f.split(",").map(w=>w.trim()).filter(Boolean))g[u]=!0}}let m=f=>{let u=f&&f.requiresIntegration;return!u||!g?!0:(Array.isArray(u)?u:[u]).some(b=>g[b]===!0)},d=h.map(f=>{let u=E(f);if(!m(u))return null;let w=u?.promptFragment;return typeof w=="function"?w():w}).filter(Boolean);d.length>0&&(l+=`
2
2
 
3
- ${h.join(`
3
+ ${d.join(`
4
4
 
5
- `)}`)}let u=r._currentNodeConfig?.stores;if(Array.isArray(u)&&u.length>0&&typeof u[0]=="object"){let h=u.length<=8,p=u.map(f=>{let d=f?.id??f?.storeId??"",y=(f?.name??"").toString().trim()||d,B=f?.type?` \xB7 ${f.type}`:"",F=(f?.description||"").toString().replace(/\s+/g," ").trim(),A=`- ${y} \xB7 ${F||"(no description)"}${B} (id: ${d})`;if(h&&f?.schema&&typeof f.schema=="object"){let j=f.schema.properties&&typeof f.schema.properties=="object"?Object.keys(f.schema.properties):Object.keys(f.schema);j.length&&(A+=`
6
- fields: ${j.join(", ")}`)}return A});l+=`
5
+ `)}`)}let p=r._currentNodeConfig?.stores;if(Array.isArray(p)&&p.length>0&&typeof p[0]=="object"){let g=p.length<=8,m=p.map(d=>{let f=d?.id??d?.storeId??"",u=(d?.name??"").toString().trim()||f,w=d?.type?` \xB7 ${d.type}`:"",b=(d?.description||"").toString().replace(/\s+/g," ").trim(),O=`- ${u} \xB7 ${b||"(no description)"}${w} (id: ${f})`;if(g&&d?.schema&&typeof d.schema=="object"){let j=d.schema.properties&&typeof d.schema.properties=="object"?Object.keys(d.schema.properties):Object.keys(d.schema);j.length&&(O+=`
6
+ fields: ${j.join(", ")}`)}return O});l+=`
7
7
 
8
8
  AVAILABLE STORES (pick a store by its description and pass its NAME to the store tool):
9
- ${p.join(`
10
- `)}`}let m=r._currentNodeConfig?.extraPromptInstructions?.trim();return m&&(l+=`
9
+ ${m.join(`
10
+ `)}`}let y=r._currentNodeConfig?.extraPromptInstructions?.trim();return y&&(l+=`
11
11
 
12
12
  \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
13
13
  PRIORITY OVERRIDE \u2014 THE FOLLOWING INSTRUCTIONS TAKE PRECEDENCE OVER ALL PREVIOUS CONTENT
14
14
  \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
15
15
 
16
- ${m}
17
- `),k.debug(`[workflow] prompt length: ${l.length} chars`),s.invoke(l,a)}var x,w,L=T(()=>{O();E();v();x=Symbol.for("@zibby/agent-workflow.strategies");globalThis[x]||(globalThis[x]=[]);w=globalThis[x]});v();E();var C={};var _=Symbol.for("@zibby/agent-workflow.nodes");globalThis[_]||(globalThis[_]=new Map);var D=globalThis[_];function q(e,o){D.set(e,o)}function z(e){let o=D.get(e);return o?o.factory&&typeof o.create=="function"?o.create.toString():typeof o.execute=="function"?o.execute.toString():typeof o=="function"?o.toString():null:null}q("ai_agent",{name:"ai_agent",factory:!0,create:(e,o={})=>({name:e,_isCustomCode:!0,execute:async t=>{let r=t?._coreInvokeAgent;r||(r=(await Promise.resolve().then(()=>(L(),M))).invokeAgent);let i=o.extraPromptInstructions||"Execute the task based on the current state.",s=Z(i,t),n=await r(s,{cwd:t.workspace||process.cwd(),model:t.model,tools:o.resolvedTools||null});return{success:!0,output:{raw:n,nodeId:e},raw:typeof n=="string"?n:n.raw}}})});function Z(e,o){let t=/@([\w.]+)/g,r=new Set,i;for(;(i=t.exec(e))!==null;)r.add(i[1]);if(r.size===0)return e;let s=[],n=new Set;for(let c of r){let a=c.split(".")[0];if(n.has(a))continue;let l=c.split(".").reduce((m,h)=>m?.[h],o);if(l===void 0)continue;let g=typeof l=="string"?l:l?.raw??JSON.stringify(l,null,2),u=c.replace(/_/g," ").replace(/\b\w/g,m=>m.toUpperCase());s.push(`## ${u}
18
- ${g}`),c.includes(".")||n.add(a)}return s.length===0?e:`${e}
16
+ ${y}
17
+ `),T.debug(`[workflow] prompt length: ${l.length} chars`),s.invoke(l,a)}var A,k,G=S(()=>{P();_();x();A=Symbol.for("@zibby/agent-workflow.strategies");globalThis[A]||(globalThis[A]=[]);k=globalThis[A]});x();_();var R={};var I=Symbol.for("@zibby/agent-workflow.nodes");globalThis[I]||(globalThis[I]=new Map);var z=globalThis[I];function q(e,o){z.set(e,o)}function B(e){let o=z.get(e);return o?o.factory&&typeof o.create=="function"?o.create.toString():typeof o.execute=="function"?o.execute.toString():typeof o=="function"?o.toString():null:null}q("ai_agent",{name:"ai_agent",factory:!0,create:(e,o={})=>({name:e,_isCustomCode:!0,execute:async t=>{let r=t?._coreInvokeAgent;r||(r=(await Promise.resolve().then(()=>(G(),D))).invokeAgent);let i=o.extraPromptInstructions||"Execute the task based on the current state.",s=Z(i,t),n=await r(s,{cwd:t.workspace||process.cwd(),model:t.model,tools:o.resolvedTools||null});return{success:!0,output:{raw:n,nodeId:e},raw:typeof n=="string"?n:n.raw}}})});function Z(e,o){let t=/@([\w.]+)/g,r=new Set,i;for(;(i=t.exec(e))!==null;)r.add(i[1]);if(r.size===0)return e;let s=[],n=new Set;for(let c of r){let a=c.split(".")[0];if(n.has(a))continue;let l=c.split(".").reduce((y,g)=>y?.[g],o);if(l===void 0)continue;let h=typeof l=="string"?l:l?.raw??JSON.stringify(l,null,2),p=c.replace(/_/g," ").replace(/\b\w/g,y=>y.toUpperCase());s.push(`## ${p}
18
+ ${h}`),c.includes(".")||n.add(a)}return s.length===0?e:`${e}
19
19
 
20
20
  ---
21
21
  # Referenced Context
22
22
 
23
23
  ${s.join(`
24
24
 
25
- `)}`}function be(e,o={}){let{nodes:t,edges:r,nodeConfigs:i={}}=e,s=new Set,n=[],c=new Map;for(let d of t){let y=d.data?.nodeType||d.type;c.set(d.id,y),y==="decision"?s.add(d.id):n.push({id:d.id,nodeType:y,label:d.data?.label||d.id})}let a=n.some(d=>{let y=i[d.id]||{};return!y.customCode&&!y.executeCode}),{toolsPerNode:l,toolIdsByVar:g}=re(n,i),{simpleEdges:u,conditionalEdges:m}=se(r,s),h=ie(n,r,s),p=[],f=o.workflowType||"workflow";return p.push(Q(o)),p.push(X(f,{usesRegisteredNodes:a})),p.push(ee(g)),p.push(oe(f)),p.push(te(n,i)),p.push(ne(n,h,u,m,l,f)),p.filter(Boolean).join(`
26
- `)}function Ne(e){let o={};for(let[t,r]of Object.entries(e)){let{tools:i,...s}=r;Object.keys(s).length>0&&(o[t]=s)}return o}function Q(e){let o=e.workflowType||"workflow";return["// Generated workflow",`// ${e.projectId?`Project: ${e.projectId} | `:""}Type: ${o} | Version: ${e.version??0}`,`// Downloaded: ${new Date().toISOString()}`,""].join(`
25
+ `)}`}function Ne(e,o={}){let{nodes:t,edges:r,nodeConfigs:i={}}=e,s=new Set,n=[],c=new Map;for(let f of t){let u=f.data?.nodeType||f.type;c.set(f.id,u),u==="decision"?s.add(f.id):n.push({id:f.id,nodeType:u,label:f.data?.label||f.id})}let a=n.some(f=>{let u=i[f.id]||{};return!u.customCode&&!u.executeCode}),{toolsPerNode:l,toolIdsByVar:h}=re(n,i),{simpleEdges:p,conditionalEdges:y}=se(r,s),g=ie(n,r,s),m=[],d=o.workflowType||"workflow";return m.push(Q(o)),m.push(X(d,{usesRegisteredNodes:a})),m.push(ee(h)),m.push(oe(d)),m.push(te(n,i)),m.push(ne(n,g,p,y,l,d)),m.filter(Boolean).join(`
26
+ `)}function be(e){let o={};for(let[t,r]of Object.entries(e)){let{tools:i,...s}=r;Object.keys(s).length>0&&(o[t]=s)}return o}function Q(e){let o=e.workflowType||"workflow";return["// Generated workflow",`// ${e.projectId?`Project: ${e.projectId} | `:""}Type: ${o} | Version: ${e.version??0}`,`// Downloaded: ${new Date().toISOString()}`,""].join(`
27
27
  `)}function X(e,{usesRegisteredNodes:o=!0}={}){let t=["import { WorkflowGraph, invokeAgent, getResolvedToolDefinitions } from '@zibby/agent-workflow';"];return o&&t.push("// import './register-nodes.js'; // register custom node types here"),t.push("import { readFileSync, writeFileSync, existsSync, mkdirSync } from 'node:fs';","import { join, dirname } from 'node:path';","import { fileURLToPath } from 'node:url';",""),t.join(`
28
28
  `)}function ee(e){if(e.size===0)return"";let o=["// \u2500\u2500 Tool Bindings \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"];for(let[t,r]of e)o.push(`const ${t} = getResolvedToolDefinitions(${JSON.stringify(r)}); // ${r.join(", ")}`);return o.push(""),o.join(`
29
29
  `)}function oe(e){return["// \u2500\u2500 Node Configs \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500","const __filename = fileURLToPath(import.meta.url);","const __dirname = dirname(__filename);",`const configPath = join(__dirname, 'workflow-${e}.config.json');`,"const nodeConfigs = existsSync(configPath) ? JSON.parse(readFileSync(configPath, 'utf-8')) : {};",""].join(`
30
- `)}function te(e,o){let t=["// \u2500\u2500 Node Implementations \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500",""];for(let r of e){let i=G(r.id),s=o[r.id]?.customCode;if(s)t.push(`// @custom \u2014 modified from default "${r.nodeType}" template`),t.push(`const ${i}_execute = ${s};`);else{let n=z(r.nodeType);n?(t.push(`// Default "${r.nodeType}" implementation`),t.push(`const ${i}_execute = ${n};`)):(t.push(`// No template for "${r.nodeType}" \u2014 passthrough`),t.push(`const ${i}_execute = async (state) => ({ success: true, output: {}, raw: null });`))}t.push("")}return t.join(`
31
- `)}function ne(e,o,t,r,i,s){let n=["// \u2500\u2500 Graph Builder \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"];n.push("export function buildGraph(options = {}) {"),n.push(" const graph = new WorkflowGraph(options);",""),n.push(" // Nodes");for(let a of e){let l=G(a.id);n.push(` graph.addNode('${a.id}', { name: '${a.id}', execute: ${l}_execute });`),n.push(` graph.setNodeType('${a.id}', '${a.nodeType}');`)}n.push("",` graph.setEntryPoint('${o}');`,""),(t.length>0||r.length>0)&&n.push(" // Edges");for(let a of t)n.push(` graph.addEdge('${a.source}', '${a.target}');`);for(let a of r){let l=a.code.split(`
32
- `).map((g,u)=>u===0?g:` ${g}`).join(`
30
+ `)}function te(e,o){let t=["// \u2500\u2500 Node Implementations \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500",""];for(let r of e){let i=F(r.id),s=o[r.id]?.customCode;if(s)t.push(`// @custom \u2014 modified from default "${r.nodeType}" template`),t.push(`const ${i}_execute = ${s};`);else{let n=B(r.nodeType);n?(t.push(`// Default "${r.nodeType}" implementation`),t.push(`const ${i}_execute = ${n};`)):(t.push(`// No template for "${r.nodeType}" \u2014 passthrough`),t.push(`const ${i}_execute = async (state) => ({ success: true, output: {}, raw: null });`))}t.push("")}return t.join(`
31
+ `)}function ne(e,o,t,r,i,s){let n=["// \u2500\u2500 Graph Builder \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"];n.push("export function buildGraph(options = {}) {"),n.push(" const graph = new WorkflowGraph(options);",""),n.push(" // Nodes");for(let a of e){let l=F(a.id);n.push(` graph.addNode('${a.id}', { name: '${a.id}', execute: ${l}_execute });`),n.push(` graph.setNodeType('${a.id}', '${a.nodeType}');`)}n.push("",` graph.setEntryPoint('${o}');`,""),(t.length>0||r.length>0)&&n.push(" // Edges");for(let a of t)n.push(` graph.addEdge('${a.source}', '${a.target}');`);for(let a of r){let l=a.code.split(`
32
+ `).map((h,p)=>p===0?h:` ${h}`).join(`
33
33
  `);n.push(` graph.addConditionalEdges('${a.source}', ${l});`)}let c=[];for(let a of e){let l=i.get(a.id);l&&c.push(` '${a.id}': ${l},`)}return c.length>0&&n.push(""," graph.resolvedToolsMap = {",...c," };"),n.push(""," return graph;","}",""),n.push("export { nodeConfigs };",""),n.join(`
34
- `)}function re(e,o){let t=new Map,r=new Map;for(let i of e){let s=o[i.id]?.tools,n;if(Array.isArray(s)&&s.length>0)n=[...s].sort();else{let c=C[i.nodeType];c?.length>0&&(n=[...c].sort())}if(n){let c=`${n.map(a=>a.replace(/[^a-zA-Z0-9]/g,"")).join("And")}Tools`;t.set(i.id,c),r.has(c)||r.set(c,n)}}return{toolsPerNode:t,toolIdsByVar:r}}function se(e,o){let t=[],r=[],i=new Map,s=new Set;for(let n of e)i.has(n.source)||i.set(n.source,[]),i.get(n.source).push(n);for(let n of e)if(!o.has(n.source))if(o.has(n.target)){if(s.has(n.target))continue;s.add(n.target);let a=(i.get(n.target)||[]).find(l=>l.data?.conditionalCode||l.conditionalCode);a&&r.push({source:n.source,code:a.data?.conditionalCode||a.conditionalCode})}else t.push({source:n.source,target:n.target});return{simpleEdges:t,conditionalEdges:r}}function ie(e,o,t){let r=new Set;for(let s of o)t.has(s.target)||r.add(s.target);let i=e.find(s=>!r.has(s.id));return i?i.id:e[0]?.id}function G(e){return e.replace(/[^a-zA-Z0-9]/g,"_")}export{Ne as generateNodeConfigsJson,be as generateWorkflowCode};
34
+ `)}function re(e,o){let t=new Map,r=new Map;for(let i of e){let s=o[i.id]?.tools,n;if(Array.isArray(s)&&s.length>0)n=[...s].sort();else{let c=R[i.nodeType];c?.length>0&&(n=[...c].sort())}if(n){let c=`${n.map(a=>a.replace(/[^a-zA-Z0-9]/g,"")).join("And")}Tools`;t.set(i.id,c),r.has(c)||r.set(c,n)}}return{toolsPerNode:t,toolIdsByVar:r}}function se(e,o){let t=[],r=[],i=new Map,s=new Set;for(let n of e)i.has(n.source)||i.set(n.source,[]),i.get(n.source).push(n);for(let n of e)if(!o.has(n.source))if(o.has(n.target)){if(s.has(n.target))continue;s.add(n.target);let a=(i.get(n.target)||[]).find(l=>l.data?.conditionalCode||l.conditionalCode);a&&r.push({source:n.source,code:a.data?.conditionalCode||a.conditionalCode})}else t.push({source:n.source,target:n.target});return{simpleEdges:t,conditionalEdges:r}}function ie(e,o,t){let r=new Set;for(let s of o)t.has(s.target)||r.add(s.target);let i=e.find(s=>!r.has(s.id));return i?i.id:e[0]?.id}function F(e){return e.replace(/[^a-zA-Z0-9]/g,"_")}export{be as generateNodeConfigsJson,Ne as generateWorkflowCode};
@@ -1,12 +1,12 @@
1
- var Ft=Object.defineProperty;var _e=(n=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(n,{get:(e,t)=>(typeof require<"u"?require:e)[t]}):n)(function(n){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+n+'" is not supported')});var ce=(n,e,t)=>()=>{if(t)throw t[0];try{return n&&(e=n(n=0)),e}catch(o){throw t=[o],o}};var Je=(n,e)=>{for(var t in e)Ft(n,t,{get:e[t],enumerable:!0})};var Ye,Ht,de,b,U=ce(()=>{Ye=()=>{},Ht={debug:Ye,info:Ye,warn:(...n)=>console.warn("[workflow]",...n),error:(...n)=>console.error("[workflow]",...n)},de={impl:Ht},b={debug:(...n)=>de.impl.debug?.(...n),info:(...n)=>de.impl.info?.(...n),warn:(...n)=>de.impl.warn?.(...n),error:(...n)=>de.impl.error?.(...n)}});var ot=ce(()=>{});var rt={};Je(rt,{clearSkills:()=>Xt,getAllSkills:()=>Kt,getSkill:()=>te,getSkillSource:()=>qt,hasSkill:()=>Zt,listSkillIds:()=>Vt,registerSkill:()=>zt});function zt(n,e={}){if(!n||typeof n.id!="string")throw new Error("Skill definition must include a string id");let{source:t,override:o=!1}=e,r=n.id;if(F.has(r)&&!o){let i=ee.get(r);if(!(i===t)){let a=i||"first-party",u=t||"first-party";throw new Error(`Skill id collision: "${r}" is already registered by ${a}; ${u} may not overwrite it. Ids are append-only and first-party ids cannot be shadowed. Pick a unique id (or pass { override: true } for a deliberate first-party replacement).`)}}F.set(r,Object.freeze({...n})),t===void 0?ee.delete(r):ee.set(r,t)}function te(n){return F.get(n)||null}function Zt(n){return F.has(n)}function qt(n){return ee.get(n)||null}function Kt(){return new Map(F)}function Vt(){return Array.from(F.keys())}function Xt(){F.clear(),ee.clear()}var ve,Te,F,ee,fe=ce(()=>{ve=Symbol.for("@zibby/agent-workflow.skills"),Te=Symbol.for("@zibby/agent-workflow.skills.sources");globalThis[ve]||(globalThis[ve]=new Map);globalThis[Te]||(globalThis[Te]=new Map);F=globalThis[ve],ee=globalThis[Te]});var ne={};Je(ne,{getAgentStrategy:()=>it,invokeAgent:()=>tn,listStrategies:()=>en,registerStrategy:()=>Qt,resolveInvocationModel:()=>st});function Qt(n){if(!n||typeof n.getName!="function"||typeof n.invoke!="function")throw new Error("strategy must implement getName() and invoke() (AgentStrategy shape)");let e=G.findIndex(t=>t.getName()===n.getName());e>=0?G[e]=n:G.push(n)}function en(){return G.map(n=>n.getName())}function st({config:n={},options:e={},strategyName:t,envModel:o}={}){let r=n.models||{},i=e.nodeName&&r[e.nodeName]||null,s=r.default||null,a=n.agent?.[t]?.model||null,u=(typeof o=="string"?o.trim():"")||null;return i||s||a||e.model||u||null}function it(n={}){let{state:e={},preferredAgent:t=null}=n,o=t||e.agentType||process.env.AGENT_TYPE;if(!o){let i=G.map(s=>s.getName()).join(", ")||"none registered";throw new Error(`No agent specified. Set agentType in state or AGENT_TYPE env var. Available: ${i}`)}b.debug(`[workflow] agent selection: requested=${o}`);let r=G.find(i=>i.getName()===o);if(!r){let i=G.map(s=>s.getName()).join(", ")||"none registered";throw new Error(`Unknown agent '${o}'. Available: ${i}`)}if(!r.canHandle(n))throw new Error(`Agent '${o}' is not available in this environment. Check credentials/environment.`);return b.debug(`[workflow] using agent: ${r.getName()}`),r}async function tn(n,e={},t={}){let o=e.state&&typeof e.state.getAll=="function"?e.state.getAll():e.state||{},r={...e,state:o},i=it(r),s=o.config||t.config||{},a=st({config:s,options:t,strategyName:i.name,envModel:process.env.MODEL}),u={...t,model:a,workspace:o.workspace||t.workspace,schema:t.schema||e.schema,images:t.images||e.images||[],skills:t.skills||e.skills||[],extraMcpServers:t.extraMcpServers||o.extraMcpServers||e.extraMcpServers||[],plugins:t.plugins||e.plugins||[],config:s},d=n,f=u.skills||[];if(f.length>0&&!t.skipPromptFragments){let y=f.map(g=>{let m=te(g)?.promptFragment;return typeof m=="function"?m():m}).filter(Boolean);y.length>0&&(d+=`
1
+ var Yt=Object.defineProperty;var ve=(n=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(n,{get:(e,t)=>(typeof require<"u"?require:e)[t]}):n)(function(n){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+n+'" is not supported')});var de=(n,e,t)=>()=>{if(t)throw t[0];try{return n&&(e=n(n=0)),e}catch(o){throw t=[o],o}};var qe=(n,e)=>{for(var t in e)Yt(n,t,{get:e[t],enumerable:!0})};var Ke,qt,he,E,F=de(()=>{Ke=()=>{},qt={debug:Ke,info:Ke,warn:(...n)=>console.warn("[workflow]",...n),error:(...n)=>console.error("[workflow]",...n)},he={impl:qt},E={debug:(...n)=>he.impl.debug?.(...n),info:(...n)=>he.impl.info?.(...n),warn:(...n)=>he.impl.warn?.(...n),error:(...n)=>he.impl.error?.(...n)}});var at=de(()=>{});var ct={};qe(ct,{clearSkills:()=>on,getAllSkills:()=>tn,getSkill:()=>re,getSkillSource:()=>en,hasSkill:()=>Qt,listSkillIds:()=>nn,registerSkill:()=>Xt});function Xt(n,e={}){if(!n||typeof n.id!="string")throw new Error("Skill definition must include a string id");let{source:t,override:o=!1}=e,r=n.id;if(G.has(r)&&!o){let i=oe.get(r);if(!(i===t)){let a=i||"first-party",u=t||"first-party";throw new Error(`Skill id collision: "${r}" is already registered by ${a}; ${u} may not overwrite it. Ids are append-only and first-party ids cannot be shadowed. Pick a unique id (or pass { override: true } for a deliberate first-party replacement).`)}}G.set(r,Object.freeze({...n})),t===void 0?oe.delete(r):oe.set(r,t)}function re(n){return G.get(n)||null}function Qt(n){return G.has(n)}function en(n){return oe.get(n)||null}function tn(){return new Map(G)}function nn(){return Array.from(G.keys())}function on(){G.clear(),oe.clear()}var Oe,Ne,G,oe,me=de(()=>{Oe=Symbol.for("@zibby/agent-workflow.skills"),Ne=Symbol.for("@zibby/agent-workflow.skills.sources");globalThis[Oe]||(globalThis[Oe]=new Map);globalThis[Ne]||(globalThis[Ne]=new Map);G=globalThis[Oe],oe=globalThis[Ne]});var se={};qe(se,{getAgentStrategy:()=>ut,invokeAgent:()=>an,listStrategies:()=>sn,registerStrategy:()=>rn,resolveInvocationModel:()=>lt});function rn(n){if(!n||typeof n.getName!="function"||typeof n.invoke!="function")throw new Error("strategy must implement getName() and invoke() (AgentStrategy shape)");let e=H.findIndex(t=>t.getName()===n.getName());e>=0?H[e]=n:H.push(n)}function sn(){return H.map(n=>n.getName())}function lt({config:n={},options:e={},strategyName:t,envModel:o}={}){let r=n.models||{},i=e.nodeName&&r[e.nodeName]||null,s=r.default||null,a=n.agent?.[t]?.model||null,u=(typeof o=="string"?o.trim():"")||null;return i||s||a||e.model||u||null}function ut(n={}){let{state:e={},preferredAgent:t=null}=n,o=t||e.agentType||process.env.AGENT_TYPE;if(!o){let i=H.map(s=>s.getName()).join(", ")||"none registered";throw new Error(`No agent specified. Set agentType in state or AGENT_TYPE env var. Available: ${i}`)}E.debug(`[workflow] agent selection: requested=${o}`);let r=H.find(i=>i.getName()===o);if(!r){let i=H.map(s=>s.getName()).join(", ")||"none registered";throw new Error(`Unknown agent '${o}'. Available: ${i}`)}if(!r.canHandle(n))throw new Error(`Agent '${o}' is not available in this environment. Check credentials/environment.`);return E.debug(`[workflow] using agent: ${r.getName()}`),r}async function an(n,e={},t={}){let o=e.state&&typeof e.state.getAll=="function"?e.state.getAll():e.state||{},r={...e,state:o},i=ut(r),s=o.config||t.config||{},a=lt({config:s,options:t,strategyName:i.name,envModel:process.env.MODEL}),u={...t,model:a,workspace:o.workspace||t.workspace,schema:t.schema||e.schema,images:t.images||e.images||[],skills:t.skills||e.skills||[],extraMcpServers:t.extraMcpServers||o.extraMcpServers||e.extraMcpServers||[],plugins:t.plugins||e.plugins||[],config:s},d=n,h=u.skills||[];if(h.length>0&&!t.skipPromptFragments){let g=t.connectedIntegrations;if(!g){let $=process.env.WORKFLOW_CONNECTED_INTEGRATIONS;if(typeof $=="string"&&$.trim()!==""){g={};for(let I of $.split(",").map(f=>f.trim()).filter(Boolean))g[I]=!0}}let m=$=>{let I=$&&$.requiresIntegration;return!I||!g?!0:(Array.isArray(I)?I:[I]).some(S=>g[S]===!0)},w=h.map($=>{let I=re($);if(!m(I))return null;let f=I?.promptFragment;return typeof f=="function"?f():f}).filter(Boolean);w.length>0&&(d+=`
2
2
 
3
- ${y.join(`
3
+ ${w.join(`
4
4
 
5
- `)}`)}let l=o._currentNodeConfig?.stores;if(Array.isArray(l)&&l.length>0&&typeof l[0]=="object"){let y=l.length<=8,g=l.map(m=>{let v=m?.id??m?.storeId??"",I=(m?.name??"").toString().trim()||v,h=m?.type?` \xB7 ${m.type}`:"",S=(m?.description||"").toString().replace(/\s+/g," ").trim(),w=`- ${I} \xB7 ${S||"(no description)"}${h} (id: ${v})`;if(y&&m?.schema&&typeof m.schema=="object"){let p=m.schema.properties&&typeof m.schema.properties=="object"?Object.keys(m.schema.properties):Object.keys(m.schema);p.length&&(w+=`
6
- fields: ${p.join(", ")}`)}return w});d+=`
5
+ `)}`)}let l=o._currentNodeConfig?.stores;if(Array.isArray(l)&&l.length>0&&typeof l[0]=="object"){let g=l.length<=8,m=l.map(w=>{let $=w?.id??w?.storeId??"",I=(w?.name??"").toString().trim()||$,f=w?.type?` \xB7 ${w.type}`:"",S=(w?.description||"").toString().replace(/\s+/g," ").trim(),_=`- ${I} \xB7 ${S||"(no description)"}${f} (id: ${$})`;if(g&&w?.schema&&typeof w.schema=="object"){let p=w.schema.properties&&typeof w.schema.properties=="object"?Object.keys(w.schema.properties):Object.keys(w.schema);p.length&&(_+=`
6
+ fields: ${p.join(", ")}`)}return _});d+=`
7
7
 
8
8
  AVAILABLE STORES (pick a store by its description and pass its NAME to the store tool):
9
- ${g.join(`
9
+ ${m.join(`
10
10
  `)}`}let c=o._currentNodeConfig?.extraPromptInstructions?.trim();return c&&(d+=`
11
11
 
12
12
  \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
@@ -14,37 +14,37 @@ PRIORITY OVERRIDE \u2014 THE FOLLOWING INSTRUCTIONS TAKE PRECEDENCE OVER ALL PRE
14
14
  \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
15
15
 
16
16
  ${c}
17
- `),b.debug(`[workflow] prompt length: ${d.length} chars`),i.invoke(d,u)}var ke,G,oe=ce(()=>{ot();U();fe();ke=Symbol.for("@zibby/agent-workflow.strategies");globalThis[ke]||(globalThis[ke]=[]);G=globalThis[ke]});var Gt=new Set(["__proto__","constructor","prototype"]);function be(n){if(Gt.has(n))throw new Error(`Invalid state key: "${n}"`)}var le=class{constructor(e={}){this._state=Object.create(null),Object.assign(this._state,{messages:[],errors:[],artifacts:{},metadata:{},...e}),this._history=[]}get(e){return this._state[e]}set(e,t){be(e),this._history.push({...this._state}),this._state[e]=t}update(e){let t=Object.getOwnPropertyNames(e);for(let o of t)be(o);this._history.push({...this._state});for(let o of t)this._state[o]=e[o]}append(e,t){be(e),this._history.push({...this._state}),Array.isArray(this._state[e])||(this._state[e]=[]),this._state[e].push(t)}getAll(){return{...this._state}}rollback(){this._history.length>0&&(this._state=this._history.pop())}};import H from"handlebars";var ue=class{constructor(e){this.schema=e}parse(e){let t=e.match(/```json\s*([\s\S]*?)\s*```/);if(t)return this.validate(JSON.parse(t[1]));let o=[e.match(/\{[\s\S]*?\}/),e.match(/\{[\s\S]*\}/)].filter(Boolean).map(r=>r[0]);for(let r of o)try{return this.validate(JSON.parse(r))}catch(i){if(!(i instanceof SyntaxError))throw i}return this.validate({result:e.trim()})}validate(e){let t=[];for(let[o,r]of Object.entries(this.schema)){if(r.required&&!(o in e)&&t.push(`Missing required field: ${o}`),o in e&&r.type){let i=typeof e[o];i!==r.type&&t.push(`Field '${o}' expected ${r.type}, got ${i}`)}if(r.validate&&o in e){let i=r.validate(e[o]);i&&t.push(`Field '${o}': ${i}`)}}if(t.length>0)throw new Error(`Output validation failed:
17
+ `),E.debug(`[workflow] prompt length: ${d.length} chars`),i.invoke(d,u)}var Pe,H,ie=de(()=>{at();F();me();Pe=Symbol.for("@zibby/agent-workflow.strategies");globalThis[Pe]||(globalThis[Pe]=[]);H=globalThis[Pe]});var Zt=new Set(["__proto__","constructor","prototype"]);function Ae(n){if(Zt.has(n))throw new Error(`Invalid state key: "${n}"`)}var pe=class{constructor(e={}){this._state=Object.create(null),Object.assign(this._state,{messages:[],errors:[],artifacts:{},metadata:{},...e}),this._history=[]}get(e){return this._state[e]}set(e,t){Ae(e),this._history.push({...this._state}),this._state[e]=t}update(e){let t=Object.getOwnPropertyNames(e);for(let o of t)Ae(o);this._history.push({...this._state});for(let o of t)this._state[o]=e[o]}append(e,t){Ae(e),this._history.push({...this._state}),Array.isArray(this._state[e])||(this._state[e]=[]),this._state[e].push(t)}getAll(){return{...this._state}}rollback(){this._history.length>0&&(this._state=this._history.pop())}};import J from"handlebars";var fe=class{constructor(e){this.schema=e}parse(e){let t=e.match(/```json\s*([\s\S]*?)\s*```/);if(t)return this.validate(JSON.parse(t[1]));let o=[e.match(/\{[\s\S]*?\}/),e.match(/\{[\s\S]*\}/)].filter(Boolean).map(r=>r[0]);for(let r of o)try{return this.validate(JSON.parse(r))}catch(i){if(!(i instanceof SyntaxError))throw i}return this.validate({result:e.trim()})}validate(e){let t=[];for(let[o,r]of Object.entries(this.schema)){if(r.required&&!(o in e)&&t.push(`Missing required field: ${o}`),o in e&&r.type){let i=typeof e[o];i!==r.type&&t.push(`Field '${o}' expected ${r.type}, got ${i}`)}if(r.validate&&o in e){let i=r.validate(e[o]);i&&t.push(`Field '${o}': ${i}`)}}if(t.length>0)throw new Error(`Output validation failed:
18
18
  ${t.join(`
19
- `)}`);return e}};U();import{writeFileSync as Ae,readFileSync as at,existsSync as ct,mkdirSync as nn}from"node:fs";import{join as xe,dirname as on}from"node:path";import x from"chalk";var Jt="__WORKFLOW_GRAPH_LOG__",Q=x.gray("\u2502"),Yt=x.gray("\u250C"),ze=x.gray("\u2514"),Ie=x.green("\u25C6"),Ze=x.hex("#c084fc")("\u25C6"),qe=x.hex("#2dd4bf")("\u25C6"),Ee=x.red("\u25C6"),Ke=`${Q} `,Ve=2;function Xe(n){return n<1e3?`${n}ms`:`${(n/1e3).toFixed(1)}s`}function Qe(n,e){return(t,o,r)=>{if(typeof t!="string")return n(t,o,r);let i=process.stdout.columns||120,s="";for(let a=0;a<t.length;a++){let u=t[a];e.lineStart&&(s+=Ke,e.col=Ve,e.lineStart=!1),u===`
19
+ `)}`);return e}};F();import{writeFileSync as Ce,readFileSync as dt,existsSync as pt,mkdirSync as cn}from"node:fs";import{join as Re,dirname as ln}from"node:path";import x from"chalk";var Kt="__WORKFLOW_GRAPH_LOG__",ne=x.gray("\u2502"),Vt=x.gray("\u250C"),Ve=x.gray("\u2514"),Te=x.green("\u25C6"),Xe=x.hex("#c084fc")("\u25C6"),Qe=x.hex("#2dd4bf")("\u25C6"),ke=x.red("\u25C6"),et=`${ne} `,tt=2;function nt(n){return n<1e3?`${n}ms`:`${(n/1e3).toFixed(1)}s`}function ot(n,e){return(t,o,r)=>{if(typeof t!="string")return n(t,o,r);let i=process.stdout.columns||120,s="";for(let a=0;a<t.length;a++){let u=t[a];e.lineStart&&(s+=et,e.col=tt,e.lineStart=!1),u===`
20
20
  `?(s+=u,e.lineStart=!0,e.col=0,e.inEsc=!1):u==="\x1B"?(e.inEsc=!0,s+=u):e.inEsc?(s+=u,(u>="A"&&u<="Z"||u>="a"&&u<="z")&&(e.inEsc=!1)):(e.col++,s+=u,e.col>=i&&(s+=`
21
- ${Ke}`,e.col=Ve))}return n(s,o,r)}}var $e=class{constructor(){this._currentNode=null,this._origStdoutWrite=null,this._origStderrWrite=null,this._emitWorkflowGraphMarkers=String(process.env.ZIBBY_EMIT_GRAPH_MARKERS||"").trim()==="1"||String(process.env.ZIBBY_WORKFLOW_GRAPH_LOG_MARKERS||"").trim()==="1"}get isInsideNode(){return this._currentNode!==null}_startIntercepting(){this._origStdoutWrite=process.stdout.write.bind(process.stdout),this._origStderrWrite=process.stderr.write.bind(process.stderr);let e={lineStart:!0,col:0,inEsc:!1},t={lineStart:!0,col:0,inEsc:!1};this._outState=e,this._errState=t,process.stdout.write=Qe(this._origStdoutWrite,e),process.stderr.write=Qe(this._origStderrWrite,t)}_stopIntercepting(){this._origStdoutWrite&&(this._outState&&!this._outState.lineStart&&this._origStdoutWrite(`
21
+ ${et}`,e.col=tt))}return n(s,o,r)}}var xe=class{constructor(){this._currentNode=null,this._origStdoutWrite=null,this._origStderrWrite=null,this._emitWorkflowGraphMarkers=String(process.env.ZIBBY_EMIT_GRAPH_MARKERS||"").trim()==="1"||String(process.env.ZIBBY_WORKFLOW_GRAPH_LOG_MARKERS||"").trim()==="1"}get isInsideNode(){return this._currentNode!==null}_startIntercepting(){this._origStdoutWrite=process.stdout.write.bind(process.stdout),this._origStderrWrite=process.stderr.write.bind(process.stderr);let e={lineStart:!0,col:0,inEsc:!1},t={lineStart:!0,col:0,inEsc:!1};this._outState=e,this._errState=t,process.stdout.write=ot(this._origStdoutWrite,e),process.stderr.write=ot(this._origStderrWrite,t)}_stopIntercepting(){this._origStdoutWrite&&(this._outState&&!this._outState.lineStart&&this._origStdoutWrite(`
22
22
  `),process.stdout.write=this._origStdoutWrite),this._origStderrWrite&&(this._errState&&!this._errState.lineStart&&this._origStderrWrite(`
23
23
  `),process.stderr.write=this._origStderrWrite),this._origStdoutWrite=null,this._origStderrWrite=null}_rawWrite(e){(this._origStdoutWrite||process.stdout.write.bind(process.stdout))(`${e}
24
- `)}_emitGraphLogMarker(e){if(!this._emitWorkflowGraphMarkers)return;let t=`${Jt}${JSON.stringify(e)}
24
+ `)}_emitGraphLogMarker(e){if(!this._emitWorkflowGraphMarkers)return;let t=`${Kt}${JSON.stringify(e)}
25
25
  `;this._origStdoutWrite?this._origStdoutWrite(t):process.stdout.write(t)}_writeDot(e,t){this._origStdoutWrite?(this._outState&&!this._outState.lineStart&&(this._origStdoutWrite(`
26
26
  `),this._outState.lineStart=!0,this._outState.col=0),this._origStdoutWrite(`${e} ${t}
27
27
  `)):process.stdout.write.bind(process.stdout)(`${e} ${t}
28
- `)}step(e){this._origStdoutWrite?this._writeDot(Ie,e):process.stdout.write.bind(process.stdout)(`${Q} ${Ie} ${e}
29
- `)}stepInfo(e){this.step(e)}stepTool(e){this._origStdoutWrite?this._writeDot(Ze,e):process.stdout.write.bind(process.stdout)(`${Q} ${Ze} ${e}
30
- `)}stepMemory(e){let t=x.hex("#2dd4bf")(e);this._origStdoutWrite?this._writeDot(qe,t):process.stdout.write.bind(process.stdout)(`${Q} ${qe} ${t}
31
- `)}stepFail(e){this._origStdoutWrite?this._writeDot(Ee,x.red(e)):process.stdout.write.bind(process.stdout)(`${Q} ${Ee} ${x.red(e)}
32
- `)}nodeStart(e){this._currentNode=e,this._emitGraphLogMarker({phase:"node_begin",node:e}),this._rawWrite(`${Yt} ${e}`),this._startIntercepting()}nodeComplete(e,t={}){this._stopIntercepting();let{duration:o,details:r}=t;if(r)for(let s of r)this._rawWrite(`${Ie} ${s}`);let i=o?x.dim(` ${Xe(o)}`):"";this._rawWrite(`${ze} ${x.green("done")}${i}`),this._emitGraphLogMarker({phase:"node_end",node:e}),this._rawWrite("")}nodeFailed(e,t,o={}){this._stopIntercepting();let{duration:r}=o,i=r?x.dim(` ${Xe(r)}`):"";this._rawWrite(`${Ee} ${x.red(t)}`),this._rawWrite(`${ze} ${x.red("failed")}${i}`),this._emitGraphLogMarker({phase:"node_end",node:e}),this._rawWrite("")}route(e,t){this._rawWrite(x.dim(` ${e} \u2192 ${t}`)),this._rawWrite("")}graphComplete(){}},O=new $e;var pe=".zibby/output",et="sessions",K=".session-info.json",tt=".zibby-stop";var Zn=Object.freeze(["codebase-memory","code-scan","artifact"]),nt=["CI_JOB_ID","GITHUB_RUN_ID","CIRCLE_WORKFLOW_ID","BUILD_ID"];H.helpers.inc||H.registerHelper("inc",n=>Number(n)+1);H.helpers.json||H.registerHelper("json",n=>JSON.stringify(n,null,2));H.helpers.eq||H.registerHelper("eq",(n,e)=>n===e);var L=class{constructor(e){if(this.config=e,this.name=e.name,this.prompt=e.prompt,this.outputSchema=e.outputSchema,!this.outputSchema&&!e._isCustomCode&&!e._isRouter)throw new Error(`Node '${this.name}' must define outputSchema (Zod schema). This defines the contract for what the node returns to state.`);this.isZodSchema=this.outputSchema&&typeof this.outputSchema._def<"u",this.parser=e.outputSchema&&!this.isZodSchema?new ue(e.outputSchema):null,this.retries=e.retries||0,this.onComplete=e.onComplete,this.customExecute=e.execute}async execute(e,t){if(this.config._isRouter)return b.debug(`[workflow] node '${this.name}': router passthrough (routing happens on its conditional edges)`),{success:!0,output:{},raw:null};let o=()=>t&&typeof t.getAll=="function"?t.getAll():e,r=l=>t&&typeof t.get=="function"?t.get(l):e?.[l];if(typeof this.customExecute=="function"){b.debug(`[workflow] node '${this.name}': custom execute (skipping LLM)`);try{let l=await this.customExecute(e);return typeof l=="object"&&l!==null&&l.success===!1?{success:!1,error:l.error||"Node execution failed",raw:l.raw||null}:this.isZodSchema?(b.debug(`[workflow] node '${this.name}': validating output schema`),{success:!0,output:this.outputSchema.parse(l),raw:null}):{success:!0,output:l,raw:null}}catch(l){return b.error(`[workflow] node '${this.name}' failed: ${l.message}`),l.name==="ZodError"&&b.error(`Schema errors: ${JSON.stringify(l.issues||l.errors,null,2)}`),{success:!1,error:l.message,raw:null}}}let i;typeof this.prompt=="function"?i=this.prompt(o()):typeof this.prompt=="string"&&this.prompt.includes("{{")?(this._compiledPrompt||(this._compiledPrompt=H.compile(this.prompt,{noEscape:!0})),i=this._compiledPrompt(o())):i=this.prompt;let s=r("_skillHints");s&&(i=`${s}
28
+ `)}step(e){this._origStdoutWrite?this._writeDot(Te,e):process.stdout.write.bind(process.stdout)(`${ne} ${Te} ${e}
29
+ `)}stepInfo(e){this.step(e)}stepTool(e){this._origStdoutWrite?this._writeDot(Xe,e):process.stdout.write.bind(process.stdout)(`${ne} ${Xe} ${e}
30
+ `)}stepMemory(e){let t=x.hex("#2dd4bf")(e);this._origStdoutWrite?this._writeDot(Qe,t):process.stdout.write.bind(process.stdout)(`${ne} ${Qe} ${t}
31
+ `)}stepFail(e){this._origStdoutWrite?this._writeDot(ke,x.red(e)):process.stdout.write.bind(process.stdout)(`${ne} ${ke} ${x.red(e)}
32
+ `)}nodeStart(e){this._currentNode=e,this._emitGraphLogMarker({phase:"node_begin",node:e}),this._rawWrite(`${Vt} ${e}`),this._startIntercepting()}nodeComplete(e,t={}){this._stopIntercepting();let{duration:o,details:r}=t;if(r)for(let s of r)this._rawWrite(`${Te} ${s}`);let i=o?x.dim(` ${nt(o)}`):"";this._rawWrite(`${Ve} ${x.green("done")}${i}`),this._emitGraphLogMarker({phase:"node_end",node:e}),this._rawWrite("")}nodeFailed(e,t,o={}){this._stopIntercepting();let{duration:r}=o,i=r?x.dim(` ${nt(r)}`):"";this._rawWrite(`${ke} ${x.red(t)}`),this._rawWrite(`${Ve} ${x.red("failed")}${i}`),this._emitGraphLogMarker({phase:"node_end",node:e}),this._rawWrite("")}route(e,t){this._rawWrite(x.dim(` ${e} \u2192 ${t}`)),this._rawWrite("")}graphComplete(){}},O=new xe;var ge=".zibby/output",rt="sessions",K=".session-info.json",st=".zibby-stop";var Qn=Object.freeze(["codebase-memory","code-scan","artifact"]),it=["CI_JOB_ID","GITHUB_RUN_ID","CIRCLE_WORKFLOW_ID","BUILD_ID"];J.helpers.inc||J.registerHelper("inc",n=>Number(n)+1);J.helpers.json||J.registerHelper("json",n=>JSON.stringify(n,null,2));J.helpers.eq||J.registerHelper("eq",(n,e)=>n===e);var W=class{constructor(e){if(this.config=e,this.name=e.name,this.prompt=e.prompt,this.outputSchema=e.outputSchema,!this.outputSchema&&!e._isCustomCode&&!e._isRouter)throw new Error(`Node '${this.name}' must define outputSchema (Zod schema). This defines the contract for what the node returns to state.`);this.isZodSchema=this.outputSchema&&typeof this.outputSchema._def<"u",this.parser=e.outputSchema&&!this.isZodSchema?new fe(e.outputSchema):null,this.retries=e.retries||0,this.onComplete=e.onComplete,this.customExecute=e.execute}async execute(e,t){if(this.config._isRouter)return E.debug(`[workflow] node '${this.name}': router passthrough (routing happens on its conditional edges)`),{success:!0,output:{},raw:null};let o=()=>t&&typeof t.getAll=="function"?t.getAll():e,r=l=>t&&typeof t.get=="function"?t.get(l):e?.[l];if(typeof this.customExecute=="function"){E.debug(`[workflow] node '${this.name}': custom execute (skipping LLM)`);try{let l=await this.customExecute(e);return typeof l=="object"&&l!==null&&l.success===!1?{success:!1,error:l.error||"Node execution failed",raw:l.raw||null}:this.isZodSchema?(E.debug(`[workflow] node '${this.name}': validating output schema`),{success:!0,output:this.outputSchema.parse(l),raw:null}):{success:!0,output:l,raw:null}}catch(l){return E.error(`[workflow] node '${this.name}' failed: ${l.message}`),l.name==="ZodError"&&E.error(`Schema errors: ${JSON.stringify(l.issues||l.errors,null,2)}`),{success:!1,error:l.message,raw:null}}}let i;typeof this.prompt=="function"?i=this.prompt(o()):typeof this.prompt=="string"&&this.prompt.includes("{{")?(this._compiledPrompt||(this._compiledPrompt=J.compile(this.prompt,{noEscape:!0})),i=this._compiledPrompt(o())):i=this.prompt;let s=r("_skillHints");s&&(i=`${s}
33
33
 
34
- ${i}`);let a=o(),u=a.cwd||process.cwd(),d=a.sessionPath;try{if(d){let l=xe(d,K);if(ct(l)){let y=JSON.parse(at(l,"utf-8"));y.currentNode=this.name,Ae(l,JSON.stringify(y,null,2),"utf-8")}let c=xe(d,"..",K);if(ct(c))try{let y=JSON.parse(at(c,"utf-8"));y.currentNode=this.name,Ae(c,JSON.stringify(y,null,2),"utf-8")}catch{}}}catch(l){b.debug(`[workflow] could not update session info: ${l.message}`)}let f=null;for(let l=0;l<=this.retries;l++)try{b.debug(`[workflow] node '${this.name}' attempt ${l}`);let c=o().config||{},y=c.agents||{},g=this.config.agent??y[this.name]??null,m={state:o()};g&&(m.preferredAgent=g);let v={workspace:u,schema:this.isZodSchema?this.outputSchema:null,skills:this.config.skills||[],plugins:this.config.plugins||[],sessionPath:d,config:c,nodeName:this.name,timeout:this.config?.timeout||3e5},I=e?._coreInvokeAgent;I||(I=(await Promise.resolve().then(()=>(oe(),ne))).invokeAgent);let h=await I(i,m,v),S,w;if(typeof h=="string"?(S=h,w=null):h.structured?(S=h.raw||JSON.stringify(h.structured,null,2),w=h.structured):(S=h.raw||JSON.stringify(h,null,2),w=h.extracted||null),d)try{let p=xe(d,this.name,"raw_stream_output.txt");nn(on(p),{recursive:!0}),Ae(p,typeof S=="string"?S:JSON.stringify(S),"utf-8")}catch(p){b.debug(`[workflow] could not save raw output: ${p.message}`)}if(this.isZodSchema&&w){b.info(`[workflow] node '${this.name}': output validated: ${JSON.stringify(w,null,2)}`);let p=w;if(typeof this.onComplete=="function")try{p=await this.onComplete(o(),w)}catch($){b.warn(`[workflow] onComplete hook failed: ${$.message}`)}return{success:!0,output:p,raw:S}}if(typeof this.onComplete=="function")try{return{success:!0,output:await this.onComplete(o(),{raw:S}),raw:S}}catch(p){throw new Error(`onComplete failed: ${p.message}`,{cause:p})}if(this.parser){let p=this.parser.parse(S);return b.info(`[workflow] node '${this.name}': parsed output: ${JSON.stringify(p,null,2)}`),O.step("Output parsed"),{success:!0,output:p,raw:S}}return{success:!0,output:S,raw:S}}catch(c){f=c,l<this.retries&&b.info(`[workflow] node '${this.name}' failed, retrying (${l+1}/${this.retries})\u2026`)}return{success:!1,error:f.message,raw:null}}};U();U();import{mkdirSync as an,existsSync as Y,statSync as St,readdirSync as wt,rmSync as cn}from"node:fs";import{spawn as gt}from"node:child_process";import{join as W}from"node:path";import{pathToFileURL as ln}from"node:url";import{AsyncLocalStorage as un}from"node:async_hooks";import{AsyncLocalStorage as rn}from"node:async_hooks";var re=new rn;function V(){let n=re.getStore();return n||Object.freeze({executionId:process.env.EXECUTION_ID||null,parentExecutionId:process.env.PARENT_EXECUTION_ID||null,depth:0,conversationId:process.env.ZIBBY_CONVERSATION_ID||null,dispatchMode:process.env.DISPATCH_MODE||null,agent:null,signal:null})}function lt(n,e){let t=re.getStore()||V(),o=Object.freeze({executionId:n.executionId,parentExecutionId:n.parentExecutionId??t.executionId??null,depth:(t.depth||0)+(n.executionId!==t.executionId?1:0),conversationId:n.conversationId!==void 0?n.conversationId:t.conversationId??null,dispatchMode:n.dispatchMode??null,agent:n.agent!==void 0?n.agent:t.agent??null,signal:n.signal!==void 0?n.signal:t.signal??null});return re.run(o,e)}function ut(n,e,t){let o=re.getStore()||V(),r=Object.freeze({...o,agent:n??o.agent??null,signal:e??o.signal??null});return re.run(r,t)}var Oe=new Map,Pe=new Map,dt=new Map;function pt(n,e,t={}){if(!n||typeof n!="string")throw new Error("subgraph-registry.register: name required");if(typeof e!="function")throw new Error("subgraph-registry.register: factory must be a function");Oe.set(n,e),Pe.set(n,"ready"),dt.set(n,{...t,cachedAt:Date.now()})}function ft(n,e){Pe.set(n,"failed"),dt.set(n,{error:e?.message||String(e),failedAt:Date.now()}),Oe.delete(n)}function ht(n){return Pe.get(n)==="ready"?Oe.get(n):null}var he=process.env.ZIBBY_SUBGRAPH_CACHE_DIR||"/tmp/zibby/subgraphs";function dn(){return`node${(process.versions?.node||"").split(".")[0]||"unknown"}-${process.platform}-${process.arch}`}var P=class extends Error{constructor(e,t){super(`in-process sub-graph fallback: ${e}${t?` (${t})`:""}`),this.fallback=!0,this.reason=e,this.detail=t||null,this.name="SubgraphFallback"}},mt=new un,yt=Promise.resolve();async function pn(n,e){let t=n&&typeof n=="object"&&!Array.isArray(n)?Object.entries(n).filter(([s,a])=>typeof s=="string"&&s&&typeof a=="string"):[];if(t.length===0)return e();let o=mt.getStore()===!0,r=null;if(!o){let s=yt;yt=new Promise(a=>{r=a}),await s}let i=new Map;try{for(let[s,a]of t)i.set(s,Object.prototype.hasOwnProperty.call(process.env,s)?process.env[s]:void 0),process.env[s]=a;return b.debug(`[in-process subgraph] scoped ${t.length} child env var(s)${o?" (nested)":""}`),await mt.run(!0,e)}finally{for(let[s,a]of i)a===void 0?delete process.env[s]:process.env[s]=a;r&&r()}}function fn(){let n=(process.env.SUBGRAPH_INTERNAL_URL||"").replace(/\/$/,""),e=(process.env.PROGRESS_API_URL||"").replace(/\/executions\/?$/,""),t=n||e,o=process.env.PROJECT_ID,r=process.env.PROJECT_API_TOKEN;if(!t||!o||!r)throw new P("env","SUBGRAPH_INTERNAL_URL/PROGRESS_API_URL/PROJECT_ID/PROJECT_API_TOKEN missing");return{apiBase:t,projectId:o,authToken:r}}async function hn({apiBase:n,authToken:e,body:t}){let o;try{o=await fetch(`${n}/internal/subgraph/begin`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${e}`},body:JSON.stringify(t)})}catch(i){throw new P("network",`begin fetch failed: ${i.message}`)}let r=null;try{r=await o.json()}catch{}if(!o.ok){if(o.status===404){let i=new Error(`Sub-graph child '${t.childWorkflowType}' not found in project`);throw i.code="SUBGRAPH_NOT_FOUND",i.status=404,i}if(o.status===429){let i=r?.quotaInfo||{},s=new Error(`Sub-graph blocked by quota (${i.used??"?"}/${i.limit??"?"} on ${i.planId||"plan"})`);throw s.code="SUBGRAPH_QUOTA_EXCEEDED",s.status=429,s.quotaInfo=i,s}if(o.status===400&&r?.validationErrors){let i=new Error(`Sub-graph rejected input: ${r?.error||r?.message||"validation failed"}`);throw i.code="SUBGRAPH_INVALID_INPUT",i.status=400,i.validationErrors=r.validationErrors,i.missing=r.missing,i}throw new P("begin-status",`begin returned ${o.status}`)}return r?.data||r}async function J({apiBase:n,authToken:e,payload:t}){try{let o=await fetch(`${n}/internal/subgraph/finalize`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${e}`},body:JSON.stringify(t)});o.ok||b.warn(`[in-process subgraph] finalize returned ${o.status} for ${t.childExecutionId}`)}catch(o){b.warn(`[in-process subgraph] finalize failed: ${o.message}`)}}async function gn(n,e){let t=W(e,".ready"),o=W(e,"graph.mjs");if(Y(t)&&Y(o))return;an(e,{recursive:!0});let r=W(e,".lock"),i=!1;try{let{openSync:s,closeSync:a}=await import("node:fs"),u=s(r,"wx");a(u),i=!0}catch(s){if(s.code!=="EEXIST")throw s}if(!i){let s=Date.now()+3e4;for(;Date.now()<s;){if(Y(t)&&Y(o))return;await new Promise(a=>setTimeout(a,100))}throw new P("bundle-extract-timeout","sibling extract did not complete within 30s")}try{await new Promise((u,d)=>{let f=gt("curl",["-fsSL",n],{stdio:["ignore","pipe","inherit"]}),l=gt("tar",["-xzf","-","-C",e],{stdio:["pipe","inherit","inherit"]});f.stdout.pipe(l.stdin);let c,y,g=()=>{if(c!==void 0&&y!==void 0){if(c!==0)return d(new Error(`curl exited ${c}`));if(y!==0)return d(new Error(`tar exited ${y}`));u()}};f.on("close",m=>{c=m,g()}),l.on("close",m=>{y=m,g()}),f.on("error",d),l.on("error",d)});let{writeFileSync:s,unlinkSync:a}=await import("node:fs");s(t,"");try{a(r)}catch{}}catch(s){try{let{unlinkSync:a}=await import("node:fs");a(r)}catch{}throw new P("bundle-extract-failed",s.message)}}async function mn(n){let e=W(n,"graph.mjs");if(!Y(e))throw new P("entry-missing",`graph.mjs missing under ${n}`);let t;try{t=await import(ln(e).href)}catch(r){throw new P("import-failed",`${r?.code||r?.name||"unknown"}: ${r.message}`)}let o=t.default||Object.values(t).find(r=>typeof r=="function"&&r.prototype?.buildGraph);if(!o)throw new P("entry-class-missing","no buildGraph() class export found");return o}async function _t(n,e={}){if(!n||typeof n!="string")throw new Error("runInProcessSubgraph: workflowName (string) is required");let t=V(),o;try{o=fn()}catch(p){throw p}b.debug(`[in-process subgraph] begin '${n}' parent=${t.executionId||"<root>"}`);let r=await hn({apiBase:o.apiBase,authToken:o.authToken,body:{parentExecutionId:t.executionId,childWorkflowType:n,input:e.input||{},...e.conversationId?{conversationId:e.conversationId}:{}}}),{childExecutionId:i,runtimeTag:s,bundlePresignedUrl:a,sourcesPresignedUrl:u,workflowVersion:d,workflowUuid:f,bundleReady:l,nodeConfigs:c}=r,y=dn();if(s&&s!==y)throw await J({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,discard:!0}}),new P("runtime-mismatch",`${y} vs ${s}`);if(!l||!a)throw await J({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,discard:!0}}),new P("no-bundle","workflow bundle not built yet");let g=ht(n);if(!g){let p=W(he,`${f}@${d||"0"}`);try{await gn(a,p);try{Sn()}catch{}}catch($){throw $.fallback&&await J({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"failed",error:{message:$.message,code:$.reason}}}),$}try{g=await mn(p),pt(n,g,{workflowUuid:f,version:d,runtimeTag:s,cacheDir:p})}catch($){throw ft(n,$),await J({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"failed",error:{message:$.message,code:$.reason||"IMPORT_FAILED"}}}),$.fallback?$:new P("import-failed",$.message)}}let m=Date.now(),v=r.env&&typeof r.env=="object"&&!Array.isArray(r.env)?r.env:null,I=c&&typeof c=="object"&&!Array.isArray(c)&&Object.keys(c).length>0,h={...e.input||{},...I?{nodeConfigs:c}:{}},S,w;try{S=await pn(v,async()=>{let $=await(typeof g=="function"&&g.prototype?.buildGraph?new g:g).buildGraph();return lt({executionId:i,parentExecutionId:t.executionId,conversationId:e.conversationId!==void 0?e.conversationId:t.conversationId,dispatchMode:"inprocess"},()=>$.run(e.parentAgent,h,{signal:e.signal}))}),w=S&&typeof S=="object"&&"state"in S?S.state:S}catch(p){throw await J({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"failed",error:{message:p.message,code:p.code||"CHILD_THREW",stack:p.stack},durationMs:Date.now()-m}}),p}if(S&&typeof S=="object"&&S.stoppedExternally){await J({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"canceled",finalState:w,durationMs:Date.now()-m}});let p=new Error(`Sub-graph '${n}' canceled by parent abort`);throw p.code="SUBGRAPH_CANCELED",p.subgraphJobId=i,p}return await J({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"completed",finalState:w,durationMs:Date.now()-m}}),{finalState:w,executionId:i}}function yn(n){let e=0,t=[n];for(;t.length;){let o=t.pop(),r;try{r=St(o)}catch{continue}if(r.isDirectory()){let i;try{i=wt(o)}catch{continue}for(let s of i)t.push(W(o,s))}else e+=r.size}return e}function Sn({cap:n=Number(process.env.ZIBBY_SUBGRAPH_CACHE_CAP_BYTES||2*1024*1024*1024)}={}){try{if(!Y(he))return{evicted:0,freedBytes:0};let e=wt(he),t=[],o=0;for(let a of e){let u=W(he,a),d;try{d=St(u)}catch{continue}let f=d.isDirectory()?yn(u):d.size;o+=f,t.push({name:a,full:u,size:f,mtimeMs:d.mtimeMs})}if(o<=n)return{evicted:0,freedBytes:0,totalBytes:o};t.sort((a,u)=>a.mtimeMs-u.mtimeMs);let r=Math.floor(n*.7),i=0,s=0;for(let a of t){if(o-i<=r)break;if(!Y(W(a.full,".lock")))try{cn(a.full,{recursive:!0,force:!0}),i+=a.size,s+=1}catch(u){b.debug(`[sub-graph cache] evict skip ${a.name}: ${u.message}`)}}return s>0&&b.info(`[sub-graph cache] evicted ${s} entr(y/ies), freed ${(i/1024/1024).toFixed(1)}MB`),{evicted:s,freedBytes:i,totalBytes:o-i}}catch(e){return b.debug(`[sub-graph cache] evict failed: ${e.message}`),{evicted:0,freedBytes:0}}}var wn=2e3,_n=600*1e3,bn=new Set(["completed","failed","canceled","timeout"]);function In(){let n=process.env.PROGRESS_API_URL;if(!n)throw new Error("Sub-graph dispatch requires PROGRESS_API_URL env var (set automatically on cloud runs). Sub-graphs are not supported in local in-process runs yet \u2014 deploy the parent and child to cloud.");return n.replace(/\/executions\/?$/,"")}function En(){let n=process.env.PROJECT_ID;if(!n)throw new Error("Sub-graph dispatch requires PROJECT_ID env var.");return n}function $n(){let n=process.env.PROJECT_API_TOKEN;if(!n)throw new Error("Sub-graph dispatch requires PROJECT_API_TOKEN env var.");return n}function vn(){return process.env.EXECUTION_ID||null}function bt(n,e){return e==null?n:typeof e=="function"?e(n):typeof e=="string"?e.split(".").reduce((t,o)=>t==null?t:t[o],n):n}async function It(n,e={}){if(!n||typeof n!="string")throw new Error("dispatchSubgraph: workflowName (string) is required");let t=V();e.parentAgent==null&&t.agent&&(e.parentAgent=t.agent),e.signal==null&&t.signal&&(e.signal=t.signal);let o=Number(process.env.ZIBBY_SUBGRAPH_MAX_DEPTH||10);if((t.depth||0)>=o)throw new Error(`dispatchSubgraph('${n}'): sub-graph depth ${t.depth} reached cap of ${o}. Restructure the graph or raise ZIBBY_SUBGRAPH_MAX_DEPTH.`);if(process.env.ZIBBY_INPROCESS_SUBGRAPH!=="0"&&!e.async)try{b.debug(`[sub-graph] trying in-process for '${n}'`);let{finalState:w}=await _t(n,{input:e.input,conversationId:e.conversationId,signal:e.signal,parentAgent:e.parentAgent}),p=bt(w,e.output);return b.info(`[sub-graph] '${n}' completed in-process`),p}catch(w){if(w instanceof P||w?.fallback)b.info(`[sub-graph] in-process fallback for '${n}': ${w.reason||"unknown"} \u2014 using HTTP`);else throw w}let r=In(),i=En(),s=$n(),a=vn(),u=`${r}/projects/${encodeURIComponent(i)}/workflows/${encodeURIComponent(n)}/trigger`,d={input:e.input||{},...a?{parentExecutionId:a}:{},...e.conversationId?{conversationId:e.conversationId}:{}};b.info(`[sub-graph] dispatching '${n}' (${e.async?"async":"sync"}) from parent ${a||"<none>"}`);let f=await fetch(u,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${s}`},body:JSON.stringify(d)});if(!f.ok){let w=null,p="";try{w=await f.json(),p=w?.error||w?.message||JSON.stringify(w)}catch{p=await f.text().catch(()=>"")}if(f.status===429){let k=w?.quotaInfo||{},M=new Error(`Sub-graph '${n}' blocked by execution quota (${k.used??"?"}/${k.limit??"?"} on plan ${k.planId||"unknown"}). Sub-workflow runs count toward the same monthly cap as user-triggered runs.`);throw M.code="SUBGRAPH_QUOTA_EXCEEDED",M.status=429,M.subgraph=n,M.quotaInfo=k,M}if(f.status===400){let k=new Error(`Sub-graph '${n}' rejected input: ${p}`);throw k.code="SUBGRAPH_INVALID_INPUT",k.status=400,k.subgraph=n,k.validationErrors=w?.validationErrors||null,k.missing=w?.missing||null,k}let $=new Error(`Sub-graph '${n}' trigger rejected (${f.status}): ${p}`);throw $.code="SUBGRAPH_TRIGGER_FAILED",$.status=f.status,$.subgraph=n,$}let l=await f.json(),c=l?.data?.jobId||l?.jobId;if(!c)throw new Error(`Sub-graph '${n}' trigger returned no jobId: ${JSON.stringify(l).slice(0,200)}`);if(e.async)return b.info(`[sub-graph] async dispatch of '${n}' \u2192 jobId=${c} (not waiting)`),{jobId:c,status:"accepted",workflow:n};let y=Number.isFinite(e.timeoutMs)?e.timeoutMs:_n,g=Number.isFinite(e.pollIntervalMs)?e.pollIntervalMs:wn,m=`${r}/executions/${encodeURIComponent(c)}`,v=Date.now()+y,I="accepted",h=0;for(;Date.now()<v;){await new Promise(k=>setTimeout(k,g)),h+=1;let w=await fetch(m,{headers:{Authorization:`Bearer ${s}`}});if(!w.ok){if(w.status>=500){b.warn(`[sub-graph] status poll for ${c} returned ${w.status}, will retry`);continue}throw new Error(`Sub-graph status poll failed for ${c}: ${w.status}`)}let p=await w.json(),$=p?.data||p?.execution||p;if(I=$?.status||I,bn.has(I)){if(I!=="completed"){let _=new Error(`Sub-graph '${n}' (${c}) ended in status '${I}'`);throw _.subgraphJobId=c,_.subgraphStatus=I,_}let k=$?.finalState||$?.state||{},M=bt(k,e.output);return b.info(`[sub-graph] '${n}' (${c}) completed after ${h} polls`),M}}let S=new Error(`Sub-graph '${n}' (${c}) timed out after ${Math.round(y/1e3)}s (last status: ${I})`);throw S.subgraphJobId=c,S.subgraphStatus=I,S}import{existsSync as Et,readFileSync as Tn}from"node:fs";import{join as Ne,dirname as $t}from"node:path";var ge=class{static async loadContext(e,t,o={}){let r={},i=o.filenames||["CONTEXT.md","AGENTS.md"];if(e){let a=$t(Ne(t,e));for(let u of i){let d=await this.findAndMergeContextFiles(u,a,t);if(d){let f=u.replace(/\.[^.]+$/,"").toLowerCase();r[f]=d}}}let s=o.discovery||{};for(let[a,u]of Object.entries(s))try{let d=Ne(t,u);Et(d)&&(r[a]=await this.loadFile(d))}catch(d){console.warn(`[workflow] could not load context '${a}' from '${u}': ${d.message}`)}return r}static async findAndMergeContextFiles(e,t,o){let r=[],i=t;for(;i.startsWith(o);){let s=Ne(i,e);if(Et(s))try{r.unshift(await this.loadFile(s))}catch(u){console.warn(`[workflow] could not load ${e} from ${s}: ${u.message}`)}let a=$t(i);if(a===i)break;i=a}return r.length===0?null:r.every(s=>typeof s=="string")?r.join(`
34
+ ${i}`);let a=o(),u=a.cwd||process.cwd(),d=a.sessionPath;try{if(d){let l=Re(d,K);if(pt(l)){let g=JSON.parse(dt(l,"utf-8"));g.currentNode=this.name,Ce(l,JSON.stringify(g,null,2),"utf-8")}let c=Re(d,"..",K);if(pt(c))try{let g=JSON.parse(dt(c,"utf-8"));g.currentNode=this.name,Ce(c,JSON.stringify(g,null,2),"utf-8")}catch{}}}catch(l){E.debug(`[workflow] could not update session info: ${l.message}`)}let h=null;for(let l=0;l<=this.retries;l++)try{E.debug(`[workflow] node '${this.name}' attempt ${l}`);let c=o().config||{},g=c.agents||{},m=this.config.agent??g[this.name]??null,w={state:o()};m&&(w.preferredAgent=m);let $={workspace:u,schema:this.isZodSchema?this.outputSchema:null,skills:this.config.skills||[],plugins:this.config.plugins||[],sessionPath:d,config:c,nodeName:this.name,timeout:this.config?.timeout||3e5},I=e?._coreInvokeAgent;I||(I=(await Promise.resolve().then(()=>(ie(),se))).invokeAgent);let f=await I(i,w,$),S,_;if(typeof f=="string"?(S=f,_=null):f.structured?(S=f.raw||JSON.stringify(f.structured,null,2),_=f.structured):(S=f.raw||JSON.stringify(f,null,2),_=f.extracted||null),d)try{let p=Re(d,this.name,"raw_stream_output.txt");cn(ln(p),{recursive:!0}),Ce(p,typeof S=="string"?S:JSON.stringify(S),"utf-8")}catch(p){E.debug(`[workflow] could not save raw output: ${p.message}`)}if(this.isZodSchema&&_){E.info(`[workflow] node '${this.name}': output validated: ${JSON.stringify(_,null,2)}`);let p=_;if(typeof this.onComplete=="function")try{p=await this.onComplete(o(),_)}catch(v){E.warn(`[workflow] onComplete hook failed: ${v.message}`)}return{success:!0,output:p,raw:S}}if(typeof this.onComplete=="function")try{return{success:!0,output:await this.onComplete(o(),{raw:S}),raw:S}}catch(p){throw new Error(`onComplete failed: ${p.message}`,{cause:p})}if(this.parser){let p=this.parser.parse(S);return E.info(`[workflow] node '${this.name}': parsed output: ${JSON.stringify(p,null,2)}`),O.step("Output parsed"),{success:!0,output:p,raw:S}}return{success:!0,output:S,raw:S}}catch(c){h=c,l<this.retries&&E.info(`[workflow] node '${this.name}' failed, retrying (${l+1}/${this.retries})\u2026`)}return{success:!1,error:h.message,raw:null}}};F();F();import{mkdirSync as pn,existsSync as Y,statSync as It,readdirSync as Et,rmSync as fn}from"node:fs";import{spawn as wt}from"node:child_process";import{join as U}from"node:path";import{pathToFileURL as hn}from"node:url";import{AsyncLocalStorage as gn}from"node:async_hooks";import{AsyncLocalStorage as un}from"node:async_hooks";var ae=new un;function V(){let n=ae.getStore();return n||Object.freeze({executionId:process.env.EXECUTION_ID||null,parentExecutionId:process.env.PARENT_EXECUTION_ID||null,depth:0,conversationId:process.env.ZIBBY_CONVERSATION_ID||null,dispatchMode:process.env.DISPATCH_MODE||null,agent:null,signal:null})}function ft(n,e){let t=ae.getStore()||V(),o=Object.freeze({executionId:n.executionId,parentExecutionId:n.parentExecutionId??t.executionId??null,depth:(t.depth||0)+(n.executionId!==t.executionId?1:0),conversationId:n.conversationId!==void 0?n.conversationId:t.conversationId??null,dispatchMode:n.dispatchMode??null,agent:n.agent!==void 0?n.agent:t.agent??null,signal:n.signal!==void 0?n.signal:t.signal??null});return ae.run(o,e)}function ht(n,e,t){let o=ae.getStore()||V(),r=Object.freeze({...o,agent:n??o.agent??null,signal:e??o.signal??null});return ae.run(r,t)}var Be=new Map,Me=new Map,gt=new Map;function mt(n,e,t={}){if(!n||typeof n!="string")throw new Error("subgraph-registry.register: name required");if(typeof e!="function")throw new Error("subgraph-registry.register: factory must be a function");Be.set(n,e),Me.set(n,"ready"),gt.set(n,{...t,cachedAt:Date.now()})}function yt(n,e){Me.set(n,"failed"),gt.set(n,{error:e?.message||String(e),failedAt:Date.now()}),Be.delete(n)}function St(n){return Me.get(n)==="ready"?Be.get(n):null}var ye=process.env.ZIBBY_SUBGRAPH_CACHE_DIR||"/tmp/zibby/subgraphs";function mn(){return`node${(process.versions?.node||"").split(".")[0]||"unknown"}-${process.platform}-${process.arch}`}var N=class extends Error{constructor(e,t){super(`in-process sub-graph fallback: ${e}${t?` (${t})`:""}`),this.fallback=!0,this.reason=e,this.detail=t||null,this.name="SubgraphFallback"}},_t=new gn,bt=Promise.resolve();async function yn(n,e){let t=n&&typeof n=="object"&&!Array.isArray(n)?Object.entries(n).filter(([s,a])=>typeof s=="string"&&s&&typeof a=="string"):[];if(t.length===0)return e();let o=_t.getStore()===!0,r=null;if(!o){let s=bt;bt=new Promise(a=>{r=a}),await s}let i=new Map;try{for(let[s,a]of t)i.set(s,Object.prototype.hasOwnProperty.call(process.env,s)?process.env[s]:void 0),process.env[s]=a;return E.debug(`[in-process subgraph] scoped ${t.length} child env var(s)${o?" (nested)":""}`),await _t.run(!0,e)}finally{for(let[s,a]of i)a===void 0?delete process.env[s]:process.env[s]=a;r&&r()}}function Sn(){let n=(process.env.SUBGRAPH_INTERNAL_URL||"").replace(/\/$/,""),e=(process.env.PROGRESS_API_URL||"").replace(/\/executions\/?$/,""),t=n||e,o=process.env.PROJECT_ID,r=process.env.PROJECT_API_TOKEN;if(!t||!o||!r)throw new N("env","SUBGRAPH_INTERNAL_URL/PROGRESS_API_URL/PROJECT_ID/PROJECT_API_TOKEN missing");return{apiBase:t,projectId:o,authToken:r}}async function wn({apiBase:n,authToken:e,body:t}){let o;try{o=await fetch(`${n}/internal/subgraph/begin`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${e}`},body:JSON.stringify(t)})}catch(i){throw new N("network",`begin fetch failed: ${i.message}`)}let r=null;try{r=await o.json()}catch{}if(!o.ok){if(o.status===404){let i=new Error(`Sub-graph child '${t.childWorkflowType}' not found in project`);throw i.code="SUBGRAPH_NOT_FOUND",i.status=404,i}if(o.status===429){let i=r?.quotaInfo||{},s=new Error(`Sub-graph blocked by quota (${i.used??"?"}/${i.limit??"?"} on ${i.planId||"plan"})`);throw s.code="SUBGRAPH_QUOTA_EXCEEDED",s.status=429,s.quotaInfo=i,s}if(o.status===400&&r?.validationErrors){let i=new Error(`Sub-graph rejected input: ${r?.error||r?.message||"validation failed"}`);throw i.code="SUBGRAPH_INVALID_INPUT",i.status=400,i.validationErrors=r.validationErrors,i.missing=r.missing,i}throw new N("begin-status",`begin returned ${o.status}`)}return r?.data||r}async function z({apiBase:n,authToken:e,payload:t}){try{let o=await fetch(`${n}/internal/subgraph/finalize`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${e}`},body:JSON.stringify(t)});o.ok||E.warn(`[in-process subgraph] finalize returned ${o.status} for ${t.childExecutionId}`)}catch(o){E.warn(`[in-process subgraph] finalize failed: ${o.message}`)}}async function _n(n,e){let t=U(e,".ready"),o=U(e,"graph.mjs");if(Y(t)&&Y(o))return;pn(e,{recursive:!0});let r=U(e,".lock"),i=!1;try{let{openSync:s,closeSync:a}=await import("node:fs"),u=s(r,"wx");a(u),i=!0}catch(s){if(s.code!=="EEXIST")throw s}if(!i){let s=Date.now()+3e4;for(;Date.now()<s;){if(Y(t)&&Y(o))return;await new Promise(a=>setTimeout(a,100))}throw new N("bundle-extract-timeout","sibling extract did not complete within 30s")}try{await new Promise((u,d)=>{let h=wt("curl",["-fsSL",n],{stdio:["ignore","pipe","inherit"]}),l=wt("tar",["-xzf","-","-C",e],{stdio:["pipe","inherit","inherit"]});h.stdout.pipe(l.stdin);let c,g,m=()=>{if(c!==void 0&&g!==void 0){if(c!==0)return d(new Error(`curl exited ${c}`));if(g!==0)return d(new Error(`tar exited ${g}`));u()}};h.on("close",w=>{c=w,m()}),l.on("close",w=>{g=w,m()}),h.on("error",d),l.on("error",d)});let{writeFileSync:s,unlinkSync:a}=await import("node:fs");s(t,"");try{a(r)}catch{}}catch(s){try{let{unlinkSync:a}=await import("node:fs");a(r)}catch{}throw new N("bundle-extract-failed",s.message)}}async function bn(n){let e=U(n,"graph.mjs");if(!Y(e))throw new N("entry-missing",`graph.mjs missing under ${n}`);let t;try{t=await import(hn(e).href)}catch(r){throw new N("import-failed",`${r?.code||r?.name||"unknown"}: ${r.message}`)}let o=t.default||Object.values(t).find(r=>typeof r=="function"&&r.prototype?.buildGraph);if(!o)throw new N("entry-class-missing","no buildGraph() class export found");return o}async function $t(n,e={}){if(!n||typeof n!="string")throw new Error("runInProcessSubgraph: workflowName (string) is required");let t=V(),o;try{o=Sn()}catch(p){throw p}E.debug(`[in-process subgraph] begin '${n}' parent=${t.executionId||"<root>"}`);let r=await wn({apiBase:o.apiBase,authToken:o.authToken,body:{parentExecutionId:t.executionId,childWorkflowType:n,input:e.input||{},...e.conversationId?{conversationId:e.conversationId}:{}}}),{childExecutionId:i,runtimeTag:s,bundlePresignedUrl:a,sourcesPresignedUrl:u,workflowVersion:d,workflowUuid:h,bundleReady:l,nodeConfigs:c}=r,g=mn();if(s&&s!==g)throw await z({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,discard:!0}}),new N("runtime-mismatch",`${g} vs ${s}`);if(!l||!a)throw await z({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,discard:!0}}),new N("no-bundle","workflow bundle not built yet");let m=St(n);if(!m){let p=U(ye,`${h}@${d||"0"}`);try{await _n(a,p);try{En()}catch{}}catch(v){throw v.fallback&&await z({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"failed",error:{message:v.message,code:v.reason}}}),v}try{m=await bn(p),mt(n,m,{workflowUuid:h,version:d,runtimeTag:s,cacheDir:p})}catch(v){throw yt(n,v),await z({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"failed",error:{message:v.message,code:v.reason||"IMPORT_FAILED"}}}),v.fallback?v:new N("import-failed",v.message)}}let w=Date.now(),$=r.env&&typeof r.env=="object"&&!Array.isArray(r.env)?r.env:null,I=c&&typeof c=="object"&&!Array.isArray(c)&&Object.keys(c).length>0,f={...e.input||{},...I?{nodeConfigs:c}:{}},S,_;try{S=await yn($,async()=>{let v=await(typeof m=="function"&&m.prototype?.buildGraph?new m:m).buildGraph();return ft({executionId:i,parentExecutionId:t.executionId,conversationId:e.conversationId!==void 0?e.conversationId:t.conversationId,dispatchMode:"inprocess"},()=>v.run(e.parentAgent,f,{signal:e.signal}))}),_=S&&typeof S=="object"&&"state"in S?S.state:S}catch(p){throw await z({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"failed",error:{message:p.message,code:p.code||"CHILD_THREW",stack:p.stack},durationMs:Date.now()-w}}),p}if(S&&typeof S=="object"&&S.stoppedExternally){await z({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"canceled",finalState:_,durationMs:Date.now()-w}});let p=new Error(`Sub-graph '${n}' canceled by parent abort`);throw p.code="SUBGRAPH_CANCELED",p.subgraphJobId=i,p}return await z({apiBase:o.apiBase,authToken:o.authToken,payload:{childExecutionId:i,status:"completed",finalState:_,durationMs:Date.now()-w}}),{finalState:_,executionId:i}}function In(n){let e=0,t=[n];for(;t.length;){let o=t.pop(),r;try{r=It(o)}catch{continue}if(r.isDirectory()){let i;try{i=Et(o)}catch{continue}for(let s of i)t.push(U(o,s))}else e+=r.size}return e}function En({cap:n=Number(process.env.ZIBBY_SUBGRAPH_CACHE_CAP_BYTES||2*1024*1024*1024)}={}){try{if(!Y(ye))return{evicted:0,freedBytes:0};let e=Et(ye),t=[],o=0;for(let a of e){let u=U(ye,a),d;try{d=It(u)}catch{continue}let h=d.isDirectory()?In(u):d.size;o+=h,t.push({name:a,full:u,size:h,mtimeMs:d.mtimeMs})}if(o<=n)return{evicted:0,freedBytes:0,totalBytes:o};t.sort((a,u)=>a.mtimeMs-u.mtimeMs);let r=Math.floor(n*.7),i=0,s=0;for(let a of t){if(o-i<=r)break;if(!Y(U(a.full,".lock")))try{fn(a.full,{recursive:!0,force:!0}),i+=a.size,s+=1}catch(u){E.debug(`[sub-graph cache] evict skip ${a.name}: ${u.message}`)}}return s>0&&E.info(`[sub-graph cache] evicted ${s} entr(y/ies), freed ${(i/1024/1024).toFixed(1)}MB`),{evicted:s,freedBytes:i,totalBytes:o-i}}catch(e){return E.debug(`[sub-graph cache] evict failed: ${e.message}`),{evicted:0,freedBytes:0}}}var $n=2e3,vn=600*1e3,An=new Set(["completed","failed","canceled","timeout"]);function Tn(){let n=process.env.PROGRESS_API_URL;if(!n)throw new Error("Sub-graph dispatch requires PROGRESS_API_URL env var (set automatically on cloud runs). Sub-graphs are not supported in local in-process runs yet \u2014 deploy the parent and child to cloud.");return n.replace(/\/executions\/?$/,"")}function kn(){let n=process.env.PROJECT_ID;if(!n)throw new Error("Sub-graph dispatch requires PROJECT_ID env var.");return n}function xn(){let n=process.env.PROJECT_API_TOKEN;if(!n)throw new Error("Sub-graph dispatch requires PROJECT_API_TOKEN env var.");return n}function On(){return process.env.EXECUTION_ID||null}function vt(n,e){return e==null?n:typeof e=="function"?e(n):typeof e=="string"?e.split(".").reduce((t,o)=>t==null?t:t[o],n):n}async function At(n,e={}){if(!n||typeof n!="string")throw new Error("dispatchSubgraph: workflowName (string) is required");let t=V();e.parentAgent==null&&t.agent&&(e.parentAgent=t.agent),e.signal==null&&t.signal&&(e.signal=t.signal);let o=Number(process.env.ZIBBY_SUBGRAPH_MAX_DEPTH||10);if((t.depth||0)>=o)throw new Error(`dispatchSubgraph('${n}'): sub-graph depth ${t.depth} reached cap of ${o}. Restructure the graph or raise ZIBBY_SUBGRAPH_MAX_DEPTH.`);if(process.env.ZIBBY_INPROCESS_SUBGRAPH!=="0"&&!e.async)try{E.debug(`[sub-graph] trying in-process for '${n}'`);let{finalState:_}=await $t(n,{input:e.input,conversationId:e.conversationId,signal:e.signal,parentAgent:e.parentAgent}),p=vt(_,e.output);return E.info(`[sub-graph] '${n}' completed in-process`),p}catch(_){if(_ instanceof N||_?.fallback)E.info(`[sub-graph] in-process fallback for '${n}': ${_.reason||"unknown"} \u2014 using HTTP`);else throw _}let r=Tn(),i=kn(),s=xn(),a=On(),u=`${r}/projects/${encodeURIComponent(i)}/workflows/${encodeURIComponent(n)}/trigger`,d={input:e.input||{},...a?{parentExecutionId:a}:{},...e.conversationId?{conversationId:e.conversationId}:{}};E.info(`[sub-graph] dispatching '${n}' (${e.async?"async":"sync"}) from parent ${a||"<none>"}`);let h=await fetch(u,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${s}`},body:JSON.stringify(d)});if(!h.ok){let _=null,p="";try{_=await h.json(),p=_?.error||_?.message||JSON.stringify(_)}catch{p=await h.text().catch(()=>"")}if(h.status===429){let T=_?.quotaInfo||{},M=new Error(`Sub-graph '${n}' blocked by execution quota (${T.used??"?"}/${T.limit??"?"} on plan ${T.planId||"unknown"}). Sub-workflow runs count toward the same monthly cap as user-triggered runs.`);throw M.code="SUBGRAPH_QUOTA_EXCEEDED",M.status=429,M.subgraph=n,M.quotaInfo=T,M}if(h.status===400){let T=new Error(`Sub-graph '${n}' rejected input: ${p}`);throw T.code="SUBGRAPH_INVALID_INPUT",T.status=400,T.subgraph=n,T.validationErrors=_?.validationErrors||null,T.missing=_?.missing||null,T}let v=new Error(`Sub-graph '${n}' trigger rejected (${h.status}): ${p}`);throw v.code="SUBGRAPH_TRIGGER_FAILED",v.status=h.status,v.subgraph=n,v}let l=await h.json(),c=l?.data?.jobId||l?.jobId;if(!c)throw new Error(`Sub-graph '${n}' trigger returned no jobId: ${JSON.stringify(l).slice(0,200)}`);if(e.async)return E.info(`[sub-graph] async dispatch of '${n}' \u2192 jobId=${c} (not waiting)`),{jobId:c,status:"accepted",workflow:n};let g=Number.isFinite(e.timeoutMs)?e.timeoutMs:vn,m=Number.isFinite(e.pollIntervalMs)?e.pollIntervalMs:$n,w=`${r}/executions/${encodeURIComponent(c)}`,$=Date.now()+g,I="accepted",f=0;for(;Date.now()<$;){await new Promise(T=>setTimeout(T,m)),f+=1;let _=await fetch(w,{headers:{Authorization:`Bearer ${s}`}});if(!_.ok){if(_.status>=500){E.warn(`[sub-graph] status poll for ${c} returned ${_.status}, will retry`);continue}throw new Error(`Sub-graph status poll failed for ${c}: ${_.status}`)}let p=await _.json(),v=p?.data||p?.execution||p;if(I=v?.status||I,An.has(I)){if(I!=="completed"){let X=new Error(`Sub-graph '${n}' (${c}) ended in status '${I}'`);throw X.subgraphJobId=c,X.subgraphStatus=I,X}let T=v?.finalState||v?.state||{},M=vt(T,e.output);return E.info(`[sub-graph] '${n}' (${c}) completed after ${f} polls`),M}}let S=new Error(`Sub-graph '${n}' (${c}) timed out after ${Math.round(g/1e3)}s (last status: ${I})`);throw S.subgraphJobId=c,S.subgraphStatus=I,S}import{existsSync as Tt,readFileSync as Nn}from"node:fs";import{join as je,dirname as kt}from"node:path";var Se=class{static async loadContext(e,t,o={}){let r={},i=o.filenames||["CONTEXT.md","AGENTS.md"];if(e){let a=kt(je(t,e));for(let u of i){let d=await this.findAndMergeContextFiles(u,a,t);if(d){let h=u.replace(/\.[^.]+$/,"").toLowerCase();r[h]=d}}}let s=o.discovery||{};for(let[a,u]of Object.entries(s))try{let d=je(t,u);Tt(d)&&(r[a]=await this.loadFile(d))}catch(d){console.warn(`[workflow] could not load context '${a}' from '${u}': ${d.message}`)}return r}static async findAndMergeContextFiles(e,t,o){let r=[],i=t;for(;i.startsWith(o);){let s=je(i,e);if(Tt(s))try{r.unshift(await this.loadFile(s))}catch(u){console.warn(`[workflow] could not load ${e} from ${s}: ${u.message}`)}let a=kt(i);if(a===i)break;i=a}return r.length===0?null:r.every(s=>typeof s=="string")?r.join(`
35
35
 
36
36
  ---
37
37
 
38
- `):r.every(s=>typeof s=="object")?Object.assign({},...r):r[r.length-1]}static async loadFile(e){let t=Tn(e,"utf-8");if(e.endsWith(".json"))return JSON.parse(t);if(e.endsWith(".js")||e.endsWith(".mjs")){let{pathToFileURL:o}=await import("url"),r=await import(o(e).href);return r.default||r}return t}};import{mkdirSync as kt,existsSync as Ce,writeFileSync as vt,unlinkSync as kn}from"node:fs";import{join as z,resolve as At}from"node:path";import{config as An}from"dotenv";import{zodToJsonSchema as Tt}from"zod-to-json-schema";import{z as me}from"zod";import xn from"handlebars";function On({traceFrom:n,sessionId:e,sessionPath:t,idSource:o,mkdirFresh:r}){if(!(process.env.ZIBBY_SESSION_LOG==="1"||process.env.ZIBBY_SESSION_LOG==="true"))return;let s=typeof process.ppid=="number"?process.ppid:"n/a",a=`[zibby:session] from=${n} pid=${process.pid} ppid=${s} sessionId=${e} source=${o} mkdir=${r?"yes":"no"} path=${t}`;if(console.log(a),process.env.ZIBBY_TRACE_SESSION==="1"||process.env.ZIBBY_TRACE_SESSION==="true"){let f=(new Error("session trace").stack||"").split(`
38
+ `):r.every(s=>typeof s=="object")?Object.assign({},...r):r[r.length-1]}static async loadFile(e){let t=Nn(e,"utf-8");if(e.endsWith(".json"))return JSON.parse(t);if(e.endsWith(".js")||e.endsWith(".mjs")){let{pathToFileURL:o}=await import("url"),r=await import(o(e).href);return r.default||r}return t}};import{mkdirSync as Nt,existsSync as De,writeFileSync as xt,unlinkSync as Pn}from"node:fs";import{join as Z,resolve as Pt}from"node:path";import{config as Cn}from"dotenv";import{zodToJsonSchema as Ot}from"zod-to-json-schema";import{z as we}from"zod";import Rn from"handlebars";function Bn({traceFrom:n,sessionId:e,sessionPath:t,idSource:o,mkdirFresh:r}){if(!(process.env.ZIBBY_SESSION_LOG==="1"||process.env.ZIBBY_SESSION_LOG==="true"))return;let s=typeof process.ppid=="number"?process.ppid:"n/a",a=`[zibby:session] from=${n} pid=${process.pid} ppid=${s} sessionId=${e} source=${o} mkdir=${r?"yes":"no"} path=${t}`;if(console.log(a),process.env.ZIBBY_TRACE_SESSION==="1"||process.env.ZIBBY_TRACE_SESSION==="true"){let h=(new Error("session trace").stack||"").split(`
39
39
  `).slice(2,14).join(`
40
40
  `);console.log(`[zibby:session] stack (${n}):
41
- ${f}`)}}function Pn(){return process.env.ZIBBY_TRUST_SESSION_ENV==="1"||process.env.ZIBBY_TRUST_SESSION_ENV==="true"||process.env.ZIBBY_KEEP_SESSION_ENV==="1"||process.env.ZIBBY_KEEP_SESSION_ENV==="true"}function Nn(){if(!(process.env.ZIBBY_PIN_SESSION_PATH==="1"||process.env.ZIBBY_PIN_SESSION_PATH==="true"))return;let e=process.env.ZIBBY_SESSION_PATH;if(!(e==null||String(e).trim()===""))try{return At(String(e).trim())}catch{return String(e).trim()}}function Cn(){Pn()||(delete process.env.ZIBBY_SESSION_PATH,delete process.env.ZIBBY_SESSION_ID)}function Rn({sessionPath:n,sessionId:e}){n&&typeof n=="string"&&(process.env.ZIBBY_SESSION_PATH=n),e!=null&&String(e).trim()!==""&&(process.env.ZIBBY_SESSION_ID=String(e).trim())}function Bn(n={}){let e=nt.map(i=>process.env[i]).find(Boolean),t=Math.random().toString(36).slice(2,6),o=e||`${Date.now()}_${t}`,r=n.paths?.sessionPrefix;return r?`${r}_${o}`:o}function Mn({cwd:n=process.cwd(),config:e={},initialState:t={},traceFrom:o="resolveWorkflowSession"}={}){let r=t.sessionPath,i=t.sessionTimestamp,s="initialState.sessionPath";if(!r&&process.env.ZIBBY_SESSION_PATH)try{let d=At(String(process.env.ZIBBY_SESSION_PATH));d&&(r=d,s="ZIBBY_SESSION_PATH")}catch{}let a;if(r)a=String(r).split(/[/\\]/).filter(Boolean).pop(),i==null&&(i=Date.now());else{let d=process.env.ZIBBY_SESSION_ID&&String(process.env.ZIBBY_SESSION_ID).trim();if(d)a=d,s="ZIBBY_SESSION_ID";else{let l=e.sessionId!=null?String(e.sessionId).trim():"";l&&l!=="last"?(a=l,s="config.sessionId"):(a=Bn(e),s="generated")}i=i??Date.now();let f=e.paths?.output||pe;r=z(n,f,et,a)}let u=!Ce(r);return u&&kt(r,{recursive:!0}),(u||s!=="initialState.sessionPath")&&On({traceFrom:o,sessionId:a,sessionPath:r,idSource:s,mkdirFresh:u}),Rn({sessionPath:r,sessionId:a}),{sessionPath:r,sessionId:a,sessionTimestamp:i}}var ye=class{constructor(e={}){this.nodes=new Map,this.edges=new Map,this.entryPoint=null,this.middleware=Array.isArray(e.middleware)?[...e.middleware]:[],e.nodeMiddleware&&this.middleware.push(e.nodeMiddleware),this.nodeTypeMap=new Map,this.conditionalCodeMap=new Map,this.stateSchema=e.stateSchema||null,this.inputSchema=e.inputSchema||null,this.contextSchema=e.contextSchema||null,this.nodePrompts=new Map,this.nodeOptions=new Map,this._invokeAgent=e.invokeAgent||null,this._compiledPrompts=new Map}setInputSchema(e){return this.inputSchema=e,this}setContextSchema(e){return this.contextSchema=e,this}setStateSchema(e){return this.stateSchema=e,this}getInputSchema(){return this.inputSchema}getContextSchema(){return this.contextSchema}getStateSchema(){return this.stateSchema}_runtimeSchema(){if(this.inputSchema&&this.contextSchema)try{if(typeof this.inputSchema.merge=="function")return this.inputSchema.merge(this.contextSchema);if(typeof this.inputSchema.and=="function")return this.inputSchema.and(this.contextSchema)}catch{}return this.inputSchema&&!this.contextSchema?this.inputSchema:this.stateSchema}addNode(e,t,o={}){if(!(t instanceof L)&&t&&typeof t=="object"&&typeof t.workflow=="string"){let s=t,a={name:e,_isCustomCode:!0,dispatchesWorkflow:s.workflow,retries:s.retries,onComplete:s.onComplete,execute:async d=>{let f=d?.state&&typeof d.state.getAll=="function"?d.state.getAll():d,l;return typeof s.input=="function"?l=s.input(f):s.input&&typeof s.input=="object"?l=s.input:l={},It(s.workflow,{input:l,async:s.async===!0,conversationId:typeof s.conversationId=="function"?s.conversationId(f):s.conversationId,output:s.output,timeoutMs:s.timeoutMs,pollIntervalMs:s.pollIntervalMs,signal:f?._signal,parentAgent:d?.agent})}},u=new L(a);return u.name=e,this.nodes.set(e,u),o.prompt&&this.nodePrompts.set(e,o.prompt),Object.keys(o).length>0&&this.nodeOptions.set(e,o),this}let r=!(t instanceof L)&&t&&typeof t=="object"&&typeof t.execute!="function"&&t.prompt==null&&t.outputSchema==null&&t._isCustomCode!==!0,i=t instanceof L?t:new L(r?{...t,_isRouter:!0}:t);return i.name=e,this.nodes.set(e,i),o.prompt?this.nodePrompts.set(e,o.prompt):typeof t?.prompt=="string"&&t.prompt.trim()&&this.nodePrompts.set(e,t.prompt),Object.keys(o).length>0&&this.nodeOptions.set(e,o),this}addEdge(e,t){return this.edges.set(e,t),this}setNodeType(e,t){return this.nodeTypeMap.set(e,t),this}addConditionalEdges(e,t,{labels:o}={}){return this.edges.set(e,{conditional:!0,routes:t,labels:o}),typeof t=="function"&&this.conditionalCodeMap.set(e,t.toString()),this}setEntryPoint(e){return this.entryPoint=e,this}use(e){return typeof e=="function"&&this.middleware.push(e),this}_composeMiddleware(e,t,o,r,i){let s=o;for(let a=e.length-1;a>=0;a--){let u=e[a],d=s;s=()=>u(t,d,r,i)}return s()}serialize(){let e=[],t={};for(let[l,c]of this.nodes){let y=this.nodeTypeMap.get(l)||(c?.config?._isRouter===!0?"decision":l);e.push({id:l,type:y,data:{nodeType:y,label:l}});let g={};c._isCustomCode&&typeof c.execute=="function"&&(g.customCode=c.execute.toString());let m=typeof c?.config?.description=="string"&&c.config.description.trim()?c.config.description:typeof c?.description=="string"&&c.description.trim()?c.description:null;m&&(g.description=m);let v=this.nodePrompts.get(l);if(v)g.prompt=v;else if(typeof c.prompt=="function")try{let p=c.prompt({});typeof p=="string"&&p.trim()&&(g.prompt=p,g.promptIsCode=!0)}catch{}if(typeof c.customExecute=="function"&&(g.executeCode=c.customExecute.toString()),typeof c?.config?.dispatchesWorkflow=="string"&&c.config.dispatchesWorkflow.trim()&&(g.dispatchesWorkflow=c.config.dispatchesWorkflow.trim()),c.outputSchema)if(typeof c.outputSchema._def<"u"){let p=null;if(typeof me?.toJSONSchema=="function")try{p=me.toJSONSchema(c.outputSchema)}catch{}if(!p)try{p=Tt(c.outputSchema,{target:"openApi3"})}catch{}g.outputSchema=p?{jsonSchema:p,variables:this._flattenJsonSchemaToVariables(p)}:{schema:c.outputSchema}}else g.outputSchema={schema:c.outputSchema};let I=(this.resolvedToolsMap||{})[l];I?.toolIds&&(g.tools=I.toolIds);let h=Array.isArray(c?.config?.skills)?c.config.skills:Array.isArray(c?.skills)?c.skills:null;h&&h.length>0&&(g.skills=[...h]);let S=Array.isArray(c?.config?.plugins)?c.config.plugins:Array.isArray(c?.plugins)?c.plugins:null;S&&S.length>0&&(g.plugins=S.map(p=>p&&typeof p=="object"?{...p}:p));let w=Array.isArray(c?.config?.stores)?c.config.stores:Array.isArray(c?.stores)?c.stores:null;w&&w.length>0&&(g.stores=w.map(p=>p&&typeof p=="object"?{...p}:p)),Object.keys(g).length>0&&(t[l]=g)}let o=[];for(let[l,c]of this.edges)if(typeof c=="string")o.push({source:l,target:c});else if(c.conditional){let y=this.conditionalCodeMap.get(l)||c.routes.toString(),g=this._inferConditionalTargets(c.routes,c.labels),m=c.labels||{},v=this.nodes.get(l),I=v?.config?._isRouter===!0||this.nodeTypeMap.get(l)==="decision"||!v,h=l;if(!I){let S=`${l}__branch`;e.push({id:S,type:"decision",data:{nodeType:"decision",label:S}}),o.push({source:l,target:S}),h=S}for(let S of g){let w={source:h,target:S,data:{conditionalCode:y}};m[S]&&(w.label=m[S]),o.push(w)}}let r=l=>{if(!l)return null;if(typeof me?.toJSONSchema=="function")try{return me.toJSONSchema(l)}catch{}try{return Tt(l,{target:"openApi3"})}catch{return null}};this.entryPoint&&this.nodes.has(this.entryPoint)&&(e.unshift({id:"START",type:"start",data:{nodeType:"start",label:"Start"}}),o.unshift({source:"START",target:this.entryPoint}));let i=0;for(let l of o)if(l.target==="END"){i+=1;let c=`END__${i}`;l.target=c,e.push({id:c,type:"end",data:{nodeType:"end",label:"End"}})}for(let l of this.nodes.keys())if(!this.edges.has(l)){i+=1;let c=`END__${i}`;e.push({id:c,type:"end",data:{nodeType:"end",label:"End"}}),o.push({source:l,target:c})}let s=this._topoOrderNodes(e,o),a=this._runtimeSchema(),u=r(a||this.stateSchema),d=r(this.inputSchema),f=r(this.contextSchema);return{nodes:s,edges:o,nodeConfigs:t,stateSchema:u,inputSchema:d,contextSchema:f}}_topoOrderNodes(e,t){let o=new Map(e.map((l,c)=>[l.id,c])),r=new Map(e.map(l=>[l.id,l])),i=new Map(e.map(l=>[l.id,0])),s=new Map(e.map(l=>[l.id,[]]));for(let l of t)s.has(l.source)&&i.has(l.target)&&(s.get(l.source).push(l.target),i.set(l.target,i.get(l.target)+1));let a=new Set,u=new Set(o.keys()),d=[...u].filter(l=>i.get(l)===0),f=[];for(;f.length<e.length;){let l;if(d.length>0){if(d.sort((c,y)=>o.get(c)-o.get(y)),l=d.shift(),a.has(l))continue}else l=[...u].sort((c,y)=>o.get(c)-o.get(y))[0];a.add(l),u.delete(l),f.push(r.get(l));for(let c of s.get(l)||[])i.set(c,i.get(c)-1),i.get(c)<=0&&!a.has(c)&&d.push(c)}return f}_inferConditionalTargets(e,t){let o=e.toString(),r=new Set,i=/(['"])((?:\\.|(?!\1).)*?)\1|`((?:\\.|[^`$]|\$(?!\{))*?)`/g,s;for(;(s=i.exec(o))!==null;){let d=s[2]!==void 0?s[2]:s[3];d!==void 0&&d!==""&&r.add(d)}let a=new Set(["END","START","__end__","__start__"]);for(let d of this.nodes.keys())a.add(d);if(t&&typeof t=="object")for(let d of Object.keys(t))a.add(d);let u=new Set;for(let d of r)a.has(d)&&u.add(d);if(u.size===0){let d=/return\s+['"]([^'"]+)['"]/g,f;for(;(f=d.exec(o))!==null;)u.add(f[1])}return[...u]}_flattenJsonSchemaToVariables(e,t=""){let o=e;if(e.$ref&&e.definitions){let r=e.$ref.replace("#/definitions/","");o=e.definitions[r]||e}return this._flattenSchema(o,t)}_flattenSchema(e,t=""){if(!e||typeof e!="object")return[];let o=[],r=e.properties||{},i=e.required||[];for(let[s,a]of Object.entries(r)){let u=t?`${t}.${s}`:s;o.push({path:u,type:a.type||"unknown",label:a.description||this._formatLabel(s),optional:!i.includes(s)}),a.type==="object"&&a.properties&&o.push(...this._flattenSchema(a,u)),a.type==="array"&&a.items?.type==="object"&&a.items.properties&&o.push(...this._flattenSchema(a.items,`${u}[]`))}return o}_formatLabel(e){return e.replace(/([A-Z])/g," $1").replace(/^./,t=>t.toUpperCase()).trim()}_summarizeNodeOutput(e,t){if(!t||typeof t!="object")return[];let o=[];t.success!==void 0&&o.push(`Result: ${t.success?"passed":"failed"}`);for(let[r,i]of Object.entries(t))if(!(r==="success"||r==="raw"||r==="nextNode")){if(typeof i=="string"&&i.length<=80)o.push(`${r}: ${i}`);else if(Array.isArray(i)){let s=i.length,a=i.filter(d=>d?.passed===!0).length,u=i.some(d=>d?.passed!==void 0);o.push(u?`${r}: ${a}/${s} passed${s-a?`, ${s-a} failed`:""}`:`${r}: ${s} items`)}if(o.length>=4)break}return o}async run(e,t={},o={}){if(!this.entryPoint)throw new Error("No entry point set for graph");let r=new AbortController;o.signal&&(o.signal.aborted?r.abort():o.signal.addEventListener("abort",()=>r.abort(),{once:!0}));let i=o.strategyAbortTimeoutMs??t.config?.strategyAbortTimeoutMs??5e3,s=t.cwd||process.cwd();An({path:z(s,".env")});let a=t.config||{};if(!a||Object.keys(a).length===0)try{let E=z(s,".zibby.config.js");Ce(E)&&(a=(await import(E)).default||{})}catch{}process.env.EXECUTION_ID&&!a.agent?.strictMode&&(a.agent={...a.agent,strictMode:!0});let u=t.agentType;if(!u){let E=a?.agent;E?.provider?u=E.provider:E?.gemini?u="gemini":E?.claude?u="claude":E?.cursor?u="cursor":E?.codex?u="codex":u=process.env.AGENT_TYPE||"claude"}let d=t.contextConfig||e?.config?.contextConfig||e?.config?.context||a?.context||{},f=this._runtimeSchema();if(f){let E=f.safeParse(t);if(!E.success){let N=E.error.issues.map(C=>`${C.path.join(".")}: ${C.message}`);throw console.error("\u274C Initial state validation failed:"),N.forEach(C=>console.error(` - ${C}`)),new Error(`State validation failed: ${N.join(", ")}`)}O.step("State validated against schema")}let l=Nn(),c=t.sessionPath||l;c||Cn();let{sessionPath:y,sessionTimestamp:g,sessionId:m}=Mn({cwd:s,config:a,traceFrom:"WorkflowGraph.run",initialState:{sessionPath:c,sessionTimestamp:t.sessionTimestamp}});O.step(`Session ${m}`);let v=await ge.loadContext(t.specPath||"",s,d);Object.keys(v).length>0&&O.step(`Context loaded: ${Object.keys(v).join(", ")}`);let I=t.outputPath;!I&&t.specPath&&(e?.calculateOutputPath?I=e.calculateOutputPath(t.specPath):console.warn(`\u26A0\uFE0F outputPath not resolved (specPath=${t.specPath})`));let h=new le({...t,config:a,agentType:u,outputPath:I,sessionPath:y,sessionTimestamp:g,context:v,resolvedTools:this.resolvedToolsMap||{},_signal:r.signal}),S=new Map;try{await import("@zibby/skills")}catch{}let{getSkill:w}=await Promise.resolve().then(()=>(fe(),rt)),p=a.skills&&typeof a.skills=="object"?a.skills:{},$=Object.values(p).filter(E=>E&&typeof E=="object"&&typeof E.id=="string"),k=E=>{for(let N of $)if(N.id===E)return N;return w(E)},M=new Set;for(let[,E]of this.nodes)for(let N of E.config?.skills||[])M.add(N);for(let E of M){let N=k(E);if(typeof N?.middleware=="function")try{let C=await N.middleware();typeof C=="function"&&S.set(E,C)}catch{}}let _=this.entryPoint,se=[],je=a?.recursionLimit??100,Ct=0;try{for(;_&&_!=="END";){if(++Ct>je)throw new Error(`Workflow exceeded recursion limit (${je}) \u2014 likely a cyclic conditional route. Set config.recursionLimit if you need a higher cap.`);let N=z(y,tt);if(Ce(N)){try{kn(N)}catch{}r.abort()}if(r.signal.aborted)return console.warn(`
42
- \u{1F6D1} External stop requested \u2014 ending workflow.`),O.step("Workflow stopped externally"),{success:!0,state:h.getAll(),executionLog:se,stoppedExternally:!0};let C=this.nodes.get(_);if(!C)throw new Error(`Node '${_}' not found in graph`);let De=JSON.stringify({sessionPath:y,sessionTimestamp:g,currentNode:_,createdAt:new Date().toISOString(),config:h.get("config")}),Rt=z(y,K);vt(Rt,De,"utf-8");let Le=h.get("config")?.paths?.output||pe,Bt=z(s,Le,K);kt(z(s,Le),{recursive:!0});try{vt(Bt,De,"utf-8")}catch{}let We=t.onPipelineProgress;if(typeof We=="function")try{We({cwd:s,sessionPath:y,sessionId:m,outputBase:h.get("config")?.paths?.output||pe,currentNode:_})}catch{}let Mt=(this.resolvedToolsMap||{})[_]||null;h.set("_currentNodeTools",Mt);let jt=h.get("nodeConfigs")||{};h.set("_currentNodeConfig",jt[_]||{}),O.nodeStart(_);let Ue=Date.now(),ie=this.nodePrompts.get(_);if(!this._invokeAgent){let A=await Promise.resolve().then(()=>(oe(),ne));this._invokeAgent=A.invokeAgent}let Dt=this._invokeAgent,we={},Lt=C.config?.skills||[];for(let A of Lt){let R=k(A);if(typeof R?.invokeAgentOptions=="function")try{let T=R.invokeAgentOptions(h.getAll(),{agentType:h.get("agentType"),nodeName:_});T&&typeof T=="object"&&(we={...we,...T})}catch(T){console.warn(`[graph] skill '${A}' invokeAgentOptions threw: ${T.message}`)}}let Fe=async(A,R,T={})=>{let B=Dt(A,R,{...we,...T,signal:r.signal});return B.catch(()=>{}),r.signal.aborted?B:Promise.race([B,new Promise((Z,q)=>{let D=()=>{setTimeout(()=>{let X=new Error(`Strategy ignored AbortSignal \u2014 engine deadman fired after ${i}ms`);X.name="AbortError",q(X)},i)};r.signal.addEventListener("abort",D,{once:!0})})])},Wt=async(A={},R={})=>{let T=R.prompt||"";if(ie){let B=this._compiledPrompts.get(_);B||(B=xn.compile(ie,{noEscape:!0}),this._compiledPrompts.set(_,B));try{T=B(A)}catch(Z){throw console.error(`\u274C Template rendering failed for node '${_}':`,Z.message),new Error(`Template rendering failed: ${Z.message}`,{cause:Z})}}else if(!T)throw new Error(`No prompt template configured for node '${_}' and no prompt provided in options`);return Fe(T,{state:h.getAll(),images:R.images||[]},{model:R.model||h.get("model"),workspace:h.get("workspace"),schema:R.schema,...R,signal:r.signal})},Ge=h.getAll(),Ut=["state","invokeAgent","_coreInvokeAgent","agent","nodeId","promptTemplate","getPromptTemplate"];for(let A of Ut)Object.prototype.hasOwnProperty.call(Ge,A)&&console.warn(`[workflow] node "${_}": state key "${A}" is shadowed by the engine context prop; read it via context.state.get('${A}')`);let He={...Ge,state:h,invokeAgent:Wt,_coreInvokeAgent:Fe,agent:e,nodeId:_,promptTemplate:ie,getPromptTemplate:()=>ie};try{let A=(C.config?.skills||[]).map(D=>S.get(D)).filter(Boolean),R=[...this.middleware,...A],T;T=await ut(e,r.signal,async()=>R.length>0?this._composeMiddleware(R,_,async()=>C.execute(He,h),h.getAll(),h):C.execute(He,h));let B=Date.now()-Ue;if(se.push({node:_,success:T.success,duration:B,timestamp:new Date().toISOString()}),!T.success){if(r.signal.aborted)return O.step("Workflow stopped externally"),{success:!0,state:h.getAll(),executionLog:se,stoppedExternally:!0};h.append("errors",{node:_,error:T.error});let D=C.config?.retries||0,X=`${_}_retries`,ae=h.getAll()[X]||0;if(ae<D){O.stepInfo(`Retrying (attempt ${ae+1}/${D})`),h.update({[X]:ae+1,[`${_}_raw`]:T.raw});continue}throw O.nodeFailed(_,T.error,{duration:B}),new Error(`Node '${_}' failed after ${ae} attempts: ${T.error}`)}h.update({[_]:T.output});let Z=this._summarizeNodeOutput(_,T.output);O.nodeComplete(_,{duration:B,details:Z});let q=this.edges.get(_);if(!q)_="END";else if(q.conditional){let D=q.routes(h.getAll());O.route(_,D),_=D}else _=q}catch(A){throw O.isInsideNode&&O.nodeFailed(_,A.message,{duration:Date.now()-Ue}),h.set("failed",!0),h.set("failedAt",_),A}}O.graphComplete();let E={success:!0,state:h.getAll(),executionLog:se};return e&&typeof e.onComplete=="function"&&await e.onComplete(E),E}finally{if(e&&typeof e.cleanup=="function")try{await e.cleanup()}catch(E){console.warn(`[workflow] agent.cleanup() failed: ${E.message}`)}}}};var Re=Symbol.for("@zibby/agent-workflow.nodes");globalThis[Re]||(globalThis[Re]=new Map);var Be=globalThis[Re];function jn(n,e){Be.set(n,e)}function xt(n){return Be.get(n)}function Me(n){return Be.has(n)}jn("ai_agent",{name:"ai_agent",factory:!0,create:(n,e={})=>({name:n,_isCustomCode:!0,execute:async t=>{let o=t?._coreInvokeAgent;o||(o=(await Promise.resolve().then(()=>(oe(),ne))).invokeAgent);let r=e.extraPromptInstructions||"Execute the task based on the current state.",i=Dn(r,t),s=await o(i,{cwd:t.workspace||process.cwd(),model:t.model,tools:e.resolvedTools||null});return{success:!0,output:{raw:s,nodeId:n},raw:typeof s=="string"?s:s.raw}}})});function Dn(n,e){let t=/@([\w.]+)/g,o=new Set,r;for(;(r=t.exec(n))!==null;)o.add(r[1]);if(o.size===0)return n;let i=[],s=new Set;for(let a of o){let u=a.split(".")[0];if(s.has(u))continue;let d=a.split(".").reduce((c,y)=>c?.[y],e);if(d===void 0)continue;let f=typeof d=="string"?d:d?.raw??JSON.stringify(d,null,2),l=a.replace(/_/g," ").replace(/\b\w/g,c=>c.toUpperCase());i.push(`## ${l}
43
- ${f}`),a.includes(".")||s.add(u)}return i.length===0?n:`${n}
41
+ ${h}`)}}function Mn(){return process.env.ZIBBY_TRUST_SESSION_ENV==="1"||process.env.ZIBBY_TRUST_SESSION_ENV==="true"||process.env.ZIBBY_KEEP_SESSION_ENV==="1"||process.env.ZIBBY_KEEP_SESSION_ENV==="true"}function jn(){if(!(process.env.ZIBBY_PIN_SESSION_PATH==="1"||process.env.ZIBBY_PIN_SESSION_PATH==="true"))return;let e=process.env.ZIBBY_SESSION_PATH;if(!(e==null||String(e).trim()===""))try{return Pt(String(e).trim())}catch{return String(e).trim()}}function Dn(){Mn()||(delete process.env.ZIBBY_SESSION_PATH,delete process.env.ZIBBY_SESSION_ID)}function Ln({sessionPath:n,sessionId:e}){n&&typeof n=="string"&&(process.env.ZIBBY_SESSION_PATH=n),e!=null&&String(e).trim()!==""&&(process.env.ZIBBY_SESSION_ID=String(e).trim())}function Wn(n={}){let e=it.map(i=>process.env[i]).find(Boolean),t=Math.random().toString(36).slice(2,6),o=e||`${Date.now()}_${t}`,r=n.paths?.sessionPrefix;return r?`${r}_${o}`:o}function Un({cwd:n=process.cwd(),config:e={},initialState:t={},traceFrom:o="resolveWorkflowSession"}={}){let r=t.sessionPath,i=t.sessionTimestamp,s="initialState.sessionPath";if(!r&&process.env.ZIBBY_SESSION_PATH)try{let d=Pt(String(process.env.ZIBBY_SESSION_PATH));d&&(r=d,s="ZIBBY_SESSION_PATH")}catch{}let a;if(r)a=String(r).split(/[/\\]/).filter(Boolean).pop(),i==null&&(i=Date.now());else{let d=process.env.ZIBBY_SESSION_ID&&String(process.env.ZIBBY_SESSION_ID).trim();if(d)a=d,s="ZIBBY_SESSION_ID";else{let l=e.sessionId!=null?String(e.sessionId).trim():"";l&&l!=="last"?(a=l,s="config.sessionId"):(a=Wn(e),s="generated")}i=i??Date.now();let h=e.paths?.output||ge;r=Z(n,h,rt,a)}let u=!De(r);return u&&Nt(r,{recursive:!0}),(u||s!=="initialState.sessionPath")&&Bn({traceFrom:o,sessionId:a,sessionPath:r,idSource:s,mkdirFresh:u}),Ln({sessionPath:r,sessionId:a}),{sessionPath:r,sessionId:a,sessionTimestamp:i}}var _e=class{constructor(e={}){this.nodes=new Map,this.edges=new Map,this.entryPoint=null,this.middleware=Array.isArray(e.middleware)?[...e.middleware]:[],e.nodeMiddleware&&this.middleware.push(e.nodeMiddleware),this.nodeTypeMap=new Map,this.conditionalCodeMap=new Map,this.stateSchema=e.stateSchema||null,this.inputSchema=e.inputSchema||null,this.contextSchema=e.contextSchema||null,this.nodePrompts=new Map,this.nodeOptions=new Map,this._invokeAgent=e.invokeAgent||null,this._compiledPrompts=new Map}setInputSchema(e){return this.inputSchema=e,this}setContextSchema(e){return this.contextSchema=e,this}setStateSchema(e){return this.stateSchema=e,this}getInputSchema(){return this.inputSchema}getContextSchema(){return this.contextSchema}getStateSchema(){return this.stateSchema}_runtimeSchema(){if(this.inputSchema&&this.contextSchema)try{if(typeof this.inputSchema.merge=="function")return this.inputSchema.merge(this.contextSchema);if(typeof this.inputSchema.and=="function")return this.inputSchema.and(this.contextSchema)}catch{}return this.inputSchema&&!this.contextSchema?this.inputSchema:this.stateSchema}addNode(e,t,o={}){if(!(t instanceof W)&&t&&typeof t=="object"&&typeof t.workflow=="string"){let s=t,a={name:e,_isCustomCode:!0,dispatchesWorkflow:s.workflow,retries:s.retries,onComplete:s.onComplete,execute:async d=>{let h=d?.state&&typeof d.state.getAll=="function"?d.state.getAll():d,l;return typeof s.input=="function"?l=s.input(h):s.input&&typeof s.input=="object"?l=s.input:l={},At(s.workflow,{input:l,async:s.async===!0,conversationId:typeof s.conversationId=="function"?s.conversationId(h):s.conversationId,output:s.output,timeoutMs:s.timeoutMs,pollIntervalMs:s.pollIntervalMs,signal:h?._signal,parentAgent:d?.agent})}},u=new W(a);return u.name=e,this.nodes.set(e,u),o.prompt&&this.nodePrompts.set(e,o.prompt),Object.keys(o).length>0&&this.nodeOptions.set(e,o),this}let r=!(t instanceof W)&&t&&typeof t=="object"&&typeof t.execute!="function"&&t.prompt==null&&t.outputSchema==null&&t._isCustomCode!==!0,i=t instanceof W?t:new W(r?{...t,_isRouter:!0}:t);return i.name=e,this.nodes.set(e,i),o.prompt?this.nodePrompts.set(e,o.prompt):typeof t?.prompt=="string"&&t.prompt.trim()&&this.nodePrompts.set(e,t.prompt),Object.keys(o).length>0&&this.nodeOptions.set(e,o),this}addEdge(e,t){let o=this.edges.get(e);return o===void 0?this.edges.set(e,t):typeof o=="string"?o!==t&&this.edges.set(e,[o,t]):Array.isArray(o)?o.includes(t)||o.push(t):(console.warn(`[workflow] addEdge('${e}', '${t}') overrides the conditional edges already declared on '${e}'. A node routes EITHER unconditionally (addEdge) OR conditionally (addConditionalEdges) \u2014 not both.`),this.edges.set(e,t)),this}setNodeType(e,t){return this.nodeTypeMap.set(e,t),this}addConditionalEdges(e,t,{labels:o}={}){let r=this.edges.get(e);return r!==void 0&&!r.conditional&&console.warn(`[workflow] addConditionalEdges('${e}', \u2026) overrides the unconditional edge(s) already declared on '${e}' (${Array.isArray(r)?r.join(", "):r}). A node routes EITHER unconditionally OR conditionally \u2014 not both.`),this.edges.set(e,{conditional:!0,routes:t,labels:o}),typeof t=="function"&&this.conditionalCodeMap.set(e,t.toString()),this}setEntryPoint(e){return this.entryPoint=e,this}_simpleTargets(e){let t=this.edges.get(e);return t===void 0?[]:typeof t=="string"?[t]:Array.isArray(t)?t:[]}_analyzeFlow(){let e=new Set,t=new Map,o=i=>{t.set(i,1);for(let s of this._simpleTargets(i)){if(!s||s==="END")continue;let a=t.get(s)||0;a===1?e.add(`${i}->${s}`):a===0&&o(s)}t.set(i,2)};this.entryPoint&&o(this.entryPoint);let r=new Map;for(let[i]of this.edges)for(let s of this._simpleTargets(i))!s||s==="END"||e.has(`${i}->${s}`)||r.set(s,(r.get(s)||0)+1);return{backEdges:e,joinDegree:r}}use(e){return typeof e=="function"&&this.middleware.push(e),this}_composeMiddleware(e,t,o,r,i){let s=o;for(let a=e.length-1;a>=0;a--){let u=e[a],d=s;s=()=>u(t,d,r,i)}return s()}serialize(){let e=[],t={};for(let[l,c]of this.nodes){let g=this.nodeTypeMap.get(l)||(c?.config?._isRouter===!0?"decision":l);e.push({id:l,type:g,data:{nodeType:g,label:l}});let m={};c._isCustomCode&&typeof c.execute=="function"&&(m.customCode=c.execute.toString());let w=typeof c?.config?.description=="string"&&c.config.description.trim()?c.config.description:typeof c?.description=="string"&&c.description.trim()?c.description:null;w&&(m.description=w);let $=this.nodePrompts.get(l);if($)m.prompt=$;else if(typeof c.prompt=="function")try{let p=c.prompt({});typeof p=="string"&&p.trim()&&(m.prompt=p,m.promptIsCode=!0)}catch{}if(typeof c.customExecute=="function"&&(m.executeCode=c.customExecute.toString()),typeof c?.config?.dispatchesWorkflow=="string"&&c.config.dispatchesWorkflow.trim()&&(m.dispatchesWorkflow=c.config.dispatchesWorkflow.trim()),c.outputSchema)if(typeof c.outputSchema._def<"u"){let p=null;if(typeof we?.toJSONSchema=="function")try{p=we.toJSONSchema(c.outputSchema)}catch{}if(!p)try{p=Ot(c.outputSchema,{target:"openApi3"})}catch{}m.outputSchema=p?{jsonSchema:p,variables:this._flattenJsonSchemaToVariables(p)}:{schema:c.outputSchema}}else m.outputSchema={schema:c.outputSchema};let I=(this.resolvedToolsMap||{})[l];I?.toolIds&&(m.tools=I.toolIds);let f=Array.isArray(c?.config?.skills)?c.config.skills:Array.isArray(c?.skills)?c.skills:null;f&&f.length>0&&(m.skills=[...f]);let S=Array.isArray(c?.config?.plugins)?c.config.plugins:Array.isArray(c?.plugins)?c.plugins:null;S&&S.length>0&&(m.plugins=S.map(p=>p&&typeof p=="object"?{...p}:p));let _=Array.isArray(c?.config?.stores)?c.config.stores:Array.isArray(c?.stores)?c.stores:null;_&&_.length>0&&(m.stores=_.map(p=>p&&typeof p=="object"?{...p}:p)),Object.keys(m).length>0&&(t[l]=m)}let o=[];for(let[l,c]of this.edges)if(typeof c=="string")o.push({source:l,target:c});else if(Array.isArray(c))for(let g of c)o.push({source:l,target:g});else if(c.conditional){let g=this.conditionalCodeMap.get(l)||c.routes.toString(),m=this._inferConditionalTargets(c.routes,c.labels),w=c.labels||{},$=this.nodes.get(l),I=$?.config?._isRouter===!0||this.nodeTypeMap.get(l)==="decision"||!$,f=l;if(!I){let S=`${l}__branch`;e.push({id:S,type:"decision",data:{nodeType:"decision",label:S}}),o.push({source:l,target:S}),f=S}for(let S of m){let _={source:f,target:S,data:{conditionalCode:g}};w[S]&&(_.label=w[S]),o.push(_)}}let r=l=>{if(!l)return null;if(typeof we?.toJSONSchema=="function")try{return we.toJSONSchema(l)}catch{}try{return Ot(l,{target:"openApi3"})}catch{return null}};this.entryPoint&&this.nodes.has(this.entryPoint)&&(e.unshift({id:"START",type:"start",data:{nodeType:"start",label:"Start"}}),o.unshift({source:"START",target:this.entryPoint}));let i=0;for(let l of o)if(l.target==="END"){i+=1;let c=`END__${i}`;l.target=c,e.push({id:c,type:"end",data:{nodeType:"end",label:"End"}})}for(let l of this.nodes.keys())if(!this.edges.has(l)){i+=1;let c=`END__${i}`;e.push({id:c,type:"end",data:{nodeType:"end",label:"End"}}),o.push({source:l,target:c})}let s=this._topoOrderNodes(e,o),a=this._runtimeSchema(),u=r(a||this.stateSchema),d=r(this.inputSchema),h=r(this.contextSchema);return{nodes:s,edges:o,nodeConfigs:t,stateSchema:u,inputSchema:d,contextSchema:h}}_topoOrderNodes(e,t){let o=new Map(e.map((l,c)=>[l.id,c])),r=new Map(e.map(l=>[l.id,l])),i=new Map(e.map(l=>[l.id,0])),s=new Map(e.map(l=>[l.id,[]]));for(let l of t)s.has(l.source)&&i.has(l.target)&&(s.get(l.source).push(l.target),i.set(l.target,i.get(l.target)+1));let a=new Set,u=new Set(o.keys()),d=[...u].filter(l=>i.get(l)===0),h=[];for(;h.length<e.length;){let l;if(d.length>0){if(d.sort((c,g)=>o.get(c)-o.get(g)),l=d.shift(),a.has(l))continue}else l=[...u].sort((c,g)=>o.get(c)-o.get(g))[0];a.add(l),u.delete(l),h.push(r.get(l));for(let c of s.get(l)||[])i.set(c,i.get(c)-1),i.get(c)<=0&&!a.has(c)&&d.push(c)}return h}_inferConditionalTargets(e,t){let o=e.toString(),r=new Set,i=/(['"])((?:\\.|(?!\1).)*?)\1|`((?:\\.|[^`$]|\$(?!\{))*?)`/g,s;for(;(s=i.exec(o))!==null;){let d=s[2]!==void 0?s[2]:s[3];d!==void 0&&d!==""&&r.add(d)}let a=new Set(["END","START","__end__","__start__"]);for(let d of this.nodes.keys())a.add(d);if(t&&typeof t=="object")for(let d of Object.keys(t))a.add(d);let u=new Set;for(let d of r)a.has(d)&&u.add(d);if(u.size===0){let d=/return\s+['"]([^'"]+)['"]/g,h;for(;(h=d.exec(o))!==null;)u.add(h[1])}return[...u]}_flattenJsonSchemaToVariables(e,t=""){let o=e;if(e.$ref&&e.definitions){let r=e.$ref.replace("#/definitions/","");o=e.definitions[r]||e}return this._flattenSchema(o,t)}_flattenSchema(e,t=""){if(!e||typeof e!="object")return[];let o=[],r=e.properties||{},i=e.required||[];for(let[s,a]of Object.entries(r)){let u=t?`${t}.${s}`:s;o.push({path:u,type:a.type||"unknown",label:a.description||this._formatLabel(s),optional:!i.includes(s)}),a.type==="object"&&a.properties&&o.push(...this._flattenSchema(a,u)),a.type==="array"&&a.items?.type==="object"&&a.items.properties&&o.push(...this._flattenSchema(a.items,`${u}[]`))}return o}_formatLabel(e){return e.replace(/([A-Z])/g," $1").replace(/^./,t=>t.toUpperCase()).trim()}_summarizeNodeOutput(e,t){if(!t||typeof t!="object")return[];let o=[];t.success!==void 0&&o.push(`Result: ${t.success?"passed":"failed"}`);for(let[r,i]of Object.entries(t))if(!(r==="success"||r==="raw"||r==="nextNode")){if(typeof i=="string"&&i.length<=80)o.push(`${r}: ${i}`);else if(Array.isArray(i)){let s=i.length,a=i.filter(d=>d?.passed===!0).length,u=i.some(d=>d?.passed!==void 0);o.push(u?`${r}: ${a}/${s} passed${s-a?`, ${s-a} failed`:""}`:`${r}: ${s} items`)}if(o.length>=4)break}return o}async run(e,t={},o={}){if(!this.entryPoint)throw new Error("No entry point set for graph");if(e&&typeof e.normalizeInput=="function"&&t&&typeof t=="object"&&!Array.isArray(t))try{t=e.normalizeInput(t)??t}catch(b){let y=new Error(`agent.normalizeInput() rejected the trigger input: ${b?.message||b}`);throw y.cause=b,y.code=b?.code||"NORMALIZE_INPUT_FAILED",y}let r=new AbortController;o.signal&&(o.signal.aborted?r.abort():o.signal.addEventListener("abort",()=>r.abort(),{once:!0}));let i=o.strategyAbortTimeoutMs??t.config?.strategyAbortTimeoutMs??5e3,s=t.cwd||process.cwd();Cn({path:Z(s,".env")});let a=t.config||{};if(!a||Object.keys(a).length===0)try{let b=Z(s,".zibby.config.js");De(b)&&(a=(await import(b)).default||{})}catch{}process.env.EXECUTION_ID&&!a.agent?.strictMode&&(a.agent={...a.agent,strictMode:!0});let u=t.agentType;if(!u){let b=a?.agent;b?.provider?u=b.provider:b?.gemini?u="gemini":b?.claude?u="claude":b?.cursor?u="cursor":b?.codex?u="codex":u=process.env.AGENT_TYPE||"claude"}let d=t.contextConfig||e?.config?.contextConfig||e?.config?.context||a?.context||{},h=this._runtimeSchema();if(h){let b=h.safeParse(t);if(!b.success){let y=b.error.issues.map(R=>`${R.path.join(".")}: ${R.message}`);throw console.error("\u274C Initial state validation failed:"),y.forEach(R=>console.error(` - ${R}`)),new Error(`State validation failed: ${y.join(", ")}`)}O.step("State validated against schema")}let l=jn(),c=t.sessionPath||l;c||Dn();let{sessionPath:g,sessionTimestamp:m,sessionId:w}=Un({cwd:s,config:a,traceFrom:"WorkflowGraph.run",initialState:{sessionPath:c,sessionTimestamp:t.sessionTimestamp}});O.step(`Session ${w}`);let $=await Se.loadContext(t.specPath||"",s,d);Object.keys($).length>0&&O.step(`Context loaded: ${Object.keys($).join(", ")}`);let I=t.outputPath;!I&&t.specPath&&(e?.calculateOutputPath?I=e.calculateOutputPath(t.specPath):console.warn(`\u26A0\uFE0F outputPath not resolved (specPath=${t.specPath})`));let f=new pe({...t,config:a,agentType:u,outputPath:I,sessionPath:g,sessionTimestamp:m,context:$,resolvedTools:this.resolvedToolsMap||{},_signal:r.signal}),S=new Map;try{await import("@zibby/skills")}catch{}let{getSkill:_}=await Promise.resolve().then(()=>(me(),ct)),p=a.skills&&typeof a.skills=="object"?a.skills:{},v=Object.values(p).filter(b=>b&&typeof b=="object"&&typeof b.id=="string"),T=b=>{for(let y of v)if(y.id===b)return y;return _(b)},M=new Set;for(let[,b]of this.nodes)for(let y of b.config?.skills||[])M.add(y);for(let b of M){let y=T(b);if(typeof y?.middleware=="function")try{let R=await y.middleware();typeof R=="function"&&S.set(b,R)}catch{}}let{backEdges:X,joinDegree:jt}=this._analyzeFlow(),Ie=new Map,Q=[],Ee=(b,y,R)=>{if(!b||b==="END")return;let D=jt.get(b)||0;if(R&&D>1&&!X.has(`${y}->${b}`)){let ee=(Ie.get(b)||0)+1;if(ee<D){Ie.set(b,ee);return}Ie.set(b,0)}Q.includes(b)||Q.push(b)};this.entryPoint&&Q.push(this.entryPoint);let ce=[],Fe=a?.recursionLimit??100,Dt=0;try{for(;Q.length>0;){let y=Q.pop();if(!y||y==="END")continue;if(++Dt>Fe)throw new Error(`Workflow exceeded recursion limit (${Fe}) \u2014 the cap counts NODE EXECUTIONS, so this is either a cyclic conditional route or a graph whose branches total more nodes than the cap. Set config.recursionLimit if you need a higher cap.`);let R=Z(g,st);if(De(R)){try{Pn(R)}catch{}r.abort()}if(r.signal.aborted)return console.warn(`
42
+ \u{1F6D1} External stop requested \u2014 ending workflow.`),O.step("Workflow stopped externally"),{success:!0,state:f.getAll(),executionLog:ce,stoppedExternally:!0};let D=this.nodes.get(y);if(!D)throw new Error(`Node '${y}' not found in graph`);let ee=JSON.stringify({sessionPath:g,sessionTimestamp:m,currentNode:y,createdAt:new Date().toISOString(),config:f.get("config")}),Lt=Z(g,K);xt(Lt,ee,"utf-8");let Ge=f.get("config")?.paths?.output||ge,Wt=Z(s,Ge,K);Nt(Z(s,Ge),{recursive:!0});try{xt(Wt,ee,"utf-8")}catch{}let He=t.onPipelineProgress;if(typeof He=="function")try{He({cwd:s,sessionPath:g,sessionId:w,outputBase:f.get("config")?.paths?.output||ge,currentNode:y})}catch{}let Ut=(this.resolvedToolsMap||{})[y]||null;f.set("_currentNodeTools",Ut);let Ft=f.get("nodeConfigs")||{};f.set("_currentNodeConfig",Ft[y]||{}),O.nodeStart(y);let Je=Date.now(),le=this.nodePrompts.get(y);if(!this._invokeAgent){let k=await Promise.resolve().then(()=>(ie(),se));this._invokeAgent=k.invokeAgent}let Gt=this._invokeAgent,$e={},Ht=D.config?.skills||[];for(let k of Ht){let P=T(k);if(typeof P?.invokeAgentOptions=="function")try{let A=P.invokeAgentOptions(f.getAll(),{agentType:f.get("agentType"),nodeName:y});A&&typeof A=="object"&&($e={...$e,...A})}catch(A){console.warn(`[graph] skill '${k}' invokeAgentOptions threw: ${A.message}`)}}let ze=async(k,P,A={})=>{let B=Gt(k,P,{...$e,...A,signal:r.signal});return B.catch(()=>{}),r.signal.aborted?B:Promise.race([B,new Promise((q,L)=>{let C=()=>{setTimeout(()=>{let te=new Error(`Strategy ignored AbortSignal \u2014 engine deadman fired after ${i}ms`);te.name="AbortError",L(te)},i)};r.signal.addEventListener("abort",C,{once:!0})})])},Jt=async(k={},P={})=>{let A=P.prompt||"";if(le){let B=this._compiledPrompts.get(y);B||(B=Rn.compile(le,{noEscape:!0}),this._compiledPrompts.set(y,B));try{A=B(k)}catch(q){throw console.error(`\u274C Template rendering failed for node '${y}':`,q.message),new Error(`Template rendering failed: ${q.message}`,{cause:q})}}else if(!A)throw new Error(`No prompt template configured for node '${y}' and no prompt provided in options`);return ze(A,{state:f.getAll(),images:P.images||[]},{model:P.model||f.get("model"),workspace:f.get("workspace"),schema:P.schema,...P,signal:r.signal})},Ye=f.getAll(),zt=["state","invokeAgent","_coreInvokeAgent","agent","nodeId","promptTemplate","getPromptTemplate"];for(let k of zt)Object.prototype.hasOwnProperty.call(Ye,k)&&console.warn(`[workflow] node "${y}": state key "${k}" is shadowed by the engine context prop; read it via context.state.get('${k}')`);let Ze={...Ye,state:f,invokeAgent:Jt,_coreInvokeAgent:ze,agent:e,nodeId:y,promptTemplate:le,getPromptTemplate:()=>le};try{let k=(D.config?.skills||[]).map(C=>S.get(C)).filter(Boolean),P=[...this.middleware,...k],A;A=await ht(e,r.signal,async()=>P.length>0?this._composeMiddleware(P,y,async()=>D.execute(Ze,f),f.getAll(),f):D.execute(Ze,f));let B=Date.now()-Je;if(ce.push({node:y,success:A.success,duration:B,timestamp:new Date().toISOString()}),!A.success){if(r.signal.aborted)return O.step("Workflow stopped externally"),{success:!0,state:f.getAll(),executionLog:ce,stoppedExternally:!0};f.append("errors",{node:y,error:A.error});let C=D.config?.retries||0,te=`${y}_retries`,ue=f.getAll()[te]||0;if(ue<C){O.stepInfo(`Retrying (attempt ${ue+1}/${C})`),f.update({[te]:ue+1,[`${y}_raw`]:A.raw});continue}throw O.nodeFailed(y,A.error,{duration:B}),new Error(`Node '${y}' failed after ${ue} attempts: ${A.error}`)}f.update({[y]:A.output});let q=this._summarizeNodeOutput(y,A.output);O.nodeComplete(y,{duration:B,details:q});let L=this.edges.get(y);if(L)if(L.conditional){let C=L.routes(f.getAll());O.route(y,C),Ee(C,y,!1)}else if(Array.isArray(L))for(let C=L.length-1;C>=0;C--)Ee(L[C],y,!0);else Ee(L,y,!0)}catch(k){throw O.isInsideNode&&O.nodeFailed(y,k.message,{duration:Date.now()-Je}),f.set("failed",!0),f.set("failedAt",y),k}}O.graphComplete();let b={success:!0,state:f.getAll(),executionLog:ce};return e&&typeof e.onComplete=="function"&&await e.onComplete(b),b}finally{if(e&&typeof e.cleanup=="function")try{await e.cleanup()}catch(b){console.warn(`[workflow] agent.cleanup() failed: ${b.message}`)}}}};var Le=Symbol.for("@zibby/agent-workflow.nodes");globalThis[Le]||(globalThis[Le]=new Map);var We=globalThis[Le];function Fn(n,e){We.set(n,e)}function Ct(n){return We.get(n)}function Ue(n){return We.has(n)}Fn("ai_agent",{name:"ai_agent",factory:!0,create:(n,e={})=>({name:n,_isCustomCode:!0,execute:async t=>{let o=t?._coreInvokeAgent;o||(o=(await Promise.resolve().then(()=>(ie(),se))).invokeAgent);let r=e.extraPromptInstructions||"Execute the task based on the current state.",i=Gn(r,t),s=await o(i,{cwd:t.workspace||process.cwd(),model:t.model,tools:e.resolvedTools||null});return{success:!0,output:{raw:s,nodeId:n},raw:typeof s=="string"?s:s.raw}}})});function Gn(n,e){let t=/@([\w.]+)/g,o=new Set,r;for(;(r=t.exec(n))!==null;)o.add(r[1]);if(o.size===0)return n;let i=[],s=new Set;for(let a of o){let u=a.split(".")[0];if(s.has(u))continue;let d=a.split(".").reduce((c,g)=>c?.[g],e);if(d===void 0)continue;let h=typeof d=="string"?d:d?.raw??JSON.stringify(d,null,2),l=a.replace(/_/g," ").replace(/\b\w/g,c=>c.toUpperCase());i.push(`## ${l}
43
+ ${h}`),a.includes(".")||s.add(u)}return i.length===0?n:`${n}
44
44
 
45
45
  ---
46
46
  # Referenced Context
47
47
 
48
48
  ${i.join(`
49
49
 
50
- `)}`}fe();U();var Ln={};function Pt(n,e){if(Array.isArray(e))return Ot(e);let t=Ln[n];return!t||t.length===0?null:Ot(t)}function Ot(n){if(!Array.isArray(n)||n.length===0)return null;let e=[],t={},o=[];for(let r of n){let i=te(r);if(!i){b.warn(`[workflow] unknown skill "${r}" \u2014 skipping`);continue}o.push(r);for(let s of i.tools||[])e.push({name:s.name,description:s.description,input_schema:s.input_schema||{type:"object",properties:{}}});if(!t[i.serverName])if(typeof i.resolve=="function"){let s=i.resolve();s&&(t[i.serverName]={...s,toolPrefix:r})}else{let s={};for(let a of i.envKeys||[]){let u=process.env[a];u&&(s[a]=u)}t[i.serverName]={command:i.command,args:[...i.args||[]],env:s,toolPrefix:r}}}return o.length===0?null:{toolIds:o,claudeTools:e,mcpServers:t}}U();function qo(n,e={}){let{nodes:t,edges:o,nodeConfigs:r={}}=n;if(!Array.isArray(t)||t.length===0)throw new j("Graph must have at least one node");if(!Array.isArray(o))throw new j("Graph edges must be an array");let i=new ye(e);e.stateSchema&&i.setStateSchema(e.stateSchema);let s=new Set,a=new Map,u={};for(let c of t){let y=Se(c);a.set(c.id,{...c,resolvedType:y}),y==="decision"&&s.add(c.id)}for(let[c,y]of a){if(s.has(c))continue;let g=y.resolvedType,m=r[c]||{},v=Pt(g,m.tools);v&&(u[c]=v);let I={};m.prompt&&(I.prompt=m.prompt);let h=Me(g);if(b.debug(`[workflow] compiler: node "${c}" type="${g}" registered=${h}`),m.customCode&&!h)i.addNode(c,Nt(c,m.customCode,m),I),i.setNodeType(c,g);else if(h){let S=xt(g);S.factory?i.addNode(c,S.create(c,{...m,resolvedTools:v}),I):i.addNode(c,S,I),i.setNodeType(c,g)}else if(m.executeCode)i.addNode(c,Nt(c,m.executeCode,m),I),i.setNodeType(c,g);else throw new j(`Unknown node type "${g}" for node "${c}". Did you forget to register it?`)}i.resolvedToolsMap=u;let d=new Set;for(let c of o)s.has(c.target)||d.add(c.target);let f=t.find(c=>!s.has(c.id)&&!d.has(c.id));if(!f)throw new j("Could not determine entry point: no node without incoming edges found");i.setEntryPoint(f.id);let l=Wn(o,"source");for(let c of o)if(!s.has(c.source))if(s.has(c.target)){let y=c.target,g=l.get(y)||[];if(g.length===0)throw new j(`Decision node "${y}" has no outgoing edges`);let m=Un(y,g,s);i.addConditionalEdges(c.source,m)}else i.addEdge(c.source,c.target);return i}function Ko(n){let e=[];if(!n||typeof n!="object")return{valid:!1,errors:["Config must be a non-null object"]};if((!Array.isArray(n.nodes)||n.nodes.length===0)&&e.push("Graph must have at least one node"),Array.isArray(n.edges)||e.push("Graph edges must be an array"),e.length>0)return{valid:!1,errors:e};let t=n.nodeConfigs||{};for(let a of n.nodes){let u=Se(a);if(u==="decision"||Me(u))continue;let d=t[a.id]||{};d.customCode||d.executeCode||e.push(`Unknown node type "${u}" for node "${a.id}". Register it or provide customCode/executeCode.`)}let o=new Set(n.nodes.map(a=>a.id));for(let a of n.edges)o.has(a.source)||e.push(`Edge references unknown source node "${a.source}"`),o.has(a.target)||e.push(`Edge references unknown target node "${a.target}"`);let r=new Set(n.nodes.filter(a=>Se(a)==="decision").map(a=>a.id)),i=new Set;for(let a of n.edges)r.has(a.target)||i.add(a.target);let s=n.nodes.filter(a=>!r.has(a.id)&&!i.has(a.id));s.length===0?e.push("No entry point found (every node has incoming edges)"):s.length>1&&e.push(`Multiple entry points found: ${s.map(a=>a.id).join(", ")}`);for(let a of r){let u=n.edges.filter(f=>f.source===a);u.length===0&&e.push(`Decision node "${a}" has no outgoing edges`),u.some(f=>f.data?.conditionalCode||f.conditionalCode)||e.push(`Decision node "${a}" outgoing edges have no conditionalCode`)}return{valid:e.length===0,errors:e}}function Vo(n){return!n||!Array.isArray(n.nodes)?[]:n.nodes.filter(e=>Se(e)!=="decision").map(e=>e.id)}function Se(n){let e=n.data?.nodeType||n.data?.type||n.type;return e==="workflowNode"||e==="custom"||e==="default"?n.id:e}function Wn(n,e){let t=new Map;for(let o of n){let r=o[e];t.has(r)||t.set(r,[]),t.get(r).push(o)}return t}function Un(n,e,t){let o=e.find(a=>a.data?.conditionalCode||a.conditionalCode);if(!o)throw new j(`Decision node "${n}" has no conditionalCode on its outgoing edges`);let r=o.data?.conditionalCode||o.conditionalCode,i=new Set(e.map(a=>a.target).filter(a=>!t.has(a))),s;try{let u=new Function(`return (${r})`)();s=d=>{let f=u(d);return i.has(f)||b.warn(`[workflow] conditional route from "${n}" returned "${f}" which is not in valid targets: ${[...i].join(", ")}`),f}}catch(a){throw new j(`Failed to compile conditionalCode for "${n}": ${a.message}`)}return s}function Nt(n,e,t={}){let o;try{o=new Function("invokeAgent","require","console",`return (${e})`)}catch(s){throw new j(`Failed to compile customCode for node "${n}": ${s.message}`)}let r=o(async(...s)=>{let{invokeAgent:a}=await Promise.resolve().then(()=>(oe(),ne));return a(...s)},typeof _e<"u"?_e:void 0,console),i=null;return t.outputSchema&&(i=t.outputSchema.jsonSchema||t.outputSchema),{name:n,_isCustomCode:!0,outputSchema:i,execute:async s=>{try{let a=await r(s);return typeof a=="object"&&"success"in a?a:{success:!0,output:a,raw:null}}catch(a){return{success:!1,error:a.message,raw:null}}}}}var j=class extends Error{constructor(e){super(e),this.name="CompilationError"}};export{j as CompilationError,qo as compileGraph,Vo as extractSteps,Ko as validateGraphConfig};
50
+ `)}`}me();F();var Hn={};function Bt(n,e){if(Array.isArray(e))return Rt(e);let t=Hn[n];return!t||t.length===0?null:Rt(t)}function Rt(n){if(!Array.isArray(n)||n.length===0)return null;let e=[],t={},o=[];for(let r of n){let i=re(r);if(!i){E.warn(`[workflow] unknown skill "${r}" \u2014 skipping`);continue}o.push(r);for(let s of i.tools||[])e.push({name:s.name,description:s.description,input_schema:s.input_schema||{type:"object",properties:{}}});if(!t[i.serverName])if(typeof i.resolve=="function"){let s=i.resolve();s&&(t[i.serverName]={...s,toolPrefix:r})}else{let s={};for(let a of i.envKeys||[]){let u=process.env[a];u&&(s[a]=u)}t[i.serverName]={command:i.command,args:[...i.args||[]],env:s,toolPrefix:r}}}return o.length===0?null:{toolIds:o,claudeTools:e,mcpServers:t}}F();function er(n,e={}){let{nodes:t,edges:o,nodeConfigs:r={}}=n;if(!Array.isArray(t)||t.length===0)throw new j("Graph must have at least one node");if(!Array.isArray(o))throw new j("Graph edges must be an array");let i=new _e(e);e.stateSchema&&i.setStateSchema(e.stateSchema);let s=new Set,a=new Map,u={};for(let c of t){let g=be(c);a.set(c.id,{...c,resolvedType:g}),g==="decision"&&s.add(c.id)}for(let[c,g]of a){if(s.has(c))continue;let m=g.resolvedType,w=r[c]||{},$=Bt(m,w.tools);$&&(u[c]=$);let I={};w.prompt&&(I.prompt=w.prompt);let f=Ue(m);if(E.debug(`[workflow] compiler: node "${c}" type="${m}" registered=${f}`),w.customCode&&!f)i.addNode(c,Mt(c,w.customCode,w),I),i.setNodeType(c,m);else if(f){let S=Ct(m);S.factory?i.addNode(c,S.create(c,{...w,resolvedTools:$}),I):i.addNode(c,S,I),i.setNodeType(c,m)}else if(w.executeCode)i.addNode(c,Mt(c,w.executeCode,w),I),i.setNodeType(c,m);else throw new j(`Unknown node type "${m}" for node "${c}". Did you forget to register it?`)}i.resolvedToolsMap=u;let d=new Set;for(let c of o)s.has(c.target)||d.add(c.target);let h=t.find(c=>!s.has(c.id)&&!d.has(c.id));if(!h)throw new j("Could not determine entry point: no node without incoming edges found");i.setEntryPoint(h.id);let l=Jn(o,"source");for(let c of o)if(!s.has(c.source))if(s.has(c.target)){let g=c.target,m=l.get(g)||[];if(m.length===0)throw new j(`Decision node "${g}" has no outgoing edges`);let w=zn(g,m,s);i.addConditionalEdges(c.source,w)}else i.addEdge(c.source,c.target);return i}function tr(n){let e=[];if(!n||typeof n!="object")return{valid:!1,errors:["Config must be a non-null object"]};if((!Array.isArray(n.nodes)||n.nodes.length===0)&&e.push("Graph must have at least one node"),Array.isArray(n.edges)||e.push("Graph edges must be an array"),e.length>0)return{valid:!1,errors:e};let t=n.nodeConfigs||{};for(let a of n.nodes){let u=be(a);if(u==="decision"||Ue(u))continue;let d=t[a.id]||{};d.customCode||d.executeCode||e.push(`Unknown node type "${u}" for node "${a.id}". Register it or provide customCode/executeCode.`)}let o=new Set(n.nodes.map(a=>a.id));for(let a of n.edges)o.has(a.source)||e.push(`Edge references unknown source node "${a.source}"`),o.has(a.target)||e.push(`Edge references unknown target node "${a.target}"`);let r=new Set(n.nodes.filter(a=>be(a)==="decision").map(a=>a.id)),i=new Set;for(let a of n.edges)r.has(a.target)||i.add(a.target);let s=n.nodes.filter(a=>!r.has(a.id)&&!i.has(a.id));s.length===0?e.push("No entry point found (every node has incoming edges)"):s.length>1&&e.push(`Multiple entry points found: ${s.map(a=>a.id).join(", ")}`);for(let a of r){let u=n.edges.filter(h=>h.source===a);u.length===0&&e.push(`Decision node "${a}" has no outgoing edges`),u.some(h=>h.data?.conditionalCode||h.conditionalCode)||e.push(`Decision node "${a}" outgoing edges have no conditionalCode`)}return{valid:e.length===0,errors:e}}function nr(n){return!n||!Array.isArray(n.nodes)?[]:n.nodes.filter(e=>be(e)!=="decision").map(e=>e.id)}function be(n){let e=n.data?.nodeType||n.data?.type||n.type;return e==="workflowNode"||e==="custom"||e==="default"?n.id:e}function Jn(n,e){let t=new Map;for(let o of n){let r=o[e];t.has(r)||t.set(r,[]),t.get(r).push(o)}return t}function zn(n,e,t){let o=e.find(a=>a.data?.conditionalCode||a.conditionalCode);if(!o)throw new j(`Decision node "${n}" has no conditionalCode on its outgoing edges`);let r=o.data?.conditionalCode||o.conditionalCode,i=new Set(e.map(a=>a.target).filter(a=>!t.has(a))),s;try{let u=new Function(`return (${r})`)();s=d=>{let h=u(d);return i.has(h)||E.warn(`[workflow] conditional route from "${n}" returned "${h}" which is not in valid targets: ${[...i].join(", ")}`),h}}catch(a){throw new j(`Failed to compile conditionalCode for "${n}": ${a.message}`)}return s}function Mt(n,e,t={}){let o;try{o=new Function("invokeAgent","require","console",`return (${e})`)}catch(s){throw new j(`Failed to compile customCode for node "${n}": ${s.message}`)}let r=o(async(...s)=>{let{invokeAgent:a}=await Promise.resolve().then(()=>(ie(),se));return a(...s)},typeof ve<"u"?ve:void 0,console),i=null;return t.outputSchema&&(i=t.outputSchema.jsonSchema||t.outputSchema),{name:n,_isCustomCode:!0,outputSchema:i,execute:async s=>{try{let a=await r(s);return typeof a=="object"&&"success"in a?a:{success:!0,output:a,raw:null}}catch(a){return{success:!1,error:a.message,raw:null}}}}}var j=class extends Error{constructor(e){super(e),this.name="CompilationError"}};export{j as CompilationError,er as compileGraph,nr as extractSteps,tr as validateGraphConfig};
package/dist/graph.d.ts CHANGED
@@ -98,10 +98,50 @@ export declare class WorkflowGraph {
98
98
  */
99
99
  _runtimeSchema(): any;
100
100
  addNode(name: any, nodeOrConfig: any, options?: any): this;
101
+ /**
102
+ * Connect `from` → `to`. Calling it AGAIN for the same `from` declares a
103
+ * FAN-OUT: the node's successors all run, each carrying on through its own
104
+ * children, instead of the second call silently replacing the first.
105
+ *
106
+ * That replacement is what this used to do (`Map.set`), and it lost work with
107
+ * no error anywhere: a fan-out drawn in the visual editor round-tripped
108
+ * through the code generator as two `addEdge` lines, compiled down to ONE
109
+ * edge, and ran one branch while the graph, the generated source and the UI
110
+ * all showed two. Appending makes the declaration and the execution agree.
111
+ *
112
+ * The single-successor case keeps the STRING shape (not a 1-element array),
113
+ * so every existing graph serializes and runs byte-identically.
114
+ */
101
115
  addEdge(from: any, to: any): this;
102
116
  setNodeType(name: any, nodeType: any): this;
103
117
  addConditionalEdges(from: any, routes: any, { labels }?: any): this;
104
118
  setEntryPoint(nodeName: any): this;
119
+ /** Unconditional successors of `id` — [] for a leaf or a conditional node. */
120
+ _simpleTargets(id: any): any[];
121
+ /**
122
+ * Static analysis the fan-out scheduler runs on: which edges CLOSE A CYCLE,
123
+ * and how many branches converge on each node.
124
+ *
125
+ * Both are computed over UNCONDITIONAL edges only, deliberately. A
126
+ * conditional edge's targets can only be guessed by parsing the route
127
+ * function's source (`_inferConditionalTargets`) — fine for drawing a
128
+ * diagram, far too fragile to decide whether a node is allowed to run. So a
129
+ * conditional arrival always schedules its target immediately, exactly as it
130
+ * does today, and a JOIN is defined over the unconditional edges that a
131
+ * fan-out actually creates.
132
+ *
133
+ * Back-edges are excluded from the join count for the same reason a loop
134
+ * works today: a node that a later node routes BACK to must not sit waiting
135
+ * for that later node to arrive — it would deadlock the retry loops that
136
+ * already ship (`route back to fetch` after a failure).
137
+ *
138
+ * @returns {{ backEdges: Set<string>, joinDegree: Map<string, number> }}
139
+ * backEdges keyed `"<from>-><to>"`; joinDegree = inbound branches.
140
+ */
141
+ _analyzeFlow(): {
142
+ backEdges: Set<string>;
143
+ joinDegree: Map<string, number>;
144
+ };
105
145
  use(middlewareFn: any): this;
106
146
  _composeMiddleware(middlewareList: any, nodeName: any, coreFn: any, stateValues: any, state: any): any;
107
147
  serialize(): {