@zibby/core 0.1.40 → 0.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/base.js +82 -81
- package/dist/framework/agents/assistant-strategy.js +5 -5
- package/dist/framework/agents/claude-strategy.js +7 -7
- package/dist/framework/agents/codex-strategy.js +6 -6
- package/dist/framework/agents/cursor-strategy.js +47 -39
- package/dist/framework/agents/gemini-strategy.js +24 -15
- package/dist/framework/agents/index.js +80 -73
- package/dist/framework/agents/utils/prompt-builder.js +31 -0
- package/dist/framework/code-generator.js +1 -138
- package/dist/framework/context-loader.js +1 -5
- package/dist/framework/graph-compiler.js +1 -143
- package/dist/framework/graph.js +85 -84
- package/dist/framework/index.js +85 -101
- package/dist/framework/node-registry.js +1 -129
- package/dist/framework/node.js +77 -72
- package/dist/framework/output-parser.js +1 -3
- package/dist/framework/skill-registry.js +1 -1
- package/dist/framework/state.js +1 -1
- package/dist/framework/tool-resolver.js +1 -1
- package/dist/index.js +123 -122
- package/dist/package.json +2 -1
- package/dist/utils/mcp-config-writer.js +4 -4
- package/package.json +2 -1
|
@@ -1,3 +1 @@
|
|
|
1
|
-
|
|
2
|
-
${i.join(`
|
|
3
|
-
`)}`);return e}},a={string:(t=!0)=>({type:"string",required:t}),number:(t=!0)=>({type:"number",required:t}),boolean:(t=!0)=>({type:"boolean",required:t}),array:(t=!0)=>({type:"object",required:t,validate:e=>Array.isArray(e)?null:"must be an array"}),enum:(t,e=!0)=>({type:"string",required:e,validate:i=>t.includes(i)?null:`must be one of: ${t.join(", ")}`})};export{o as OutputParser,a as SchemaTypes};
|
|
1
|
+
import{OutputParser as p,SchemaTypes as t}from"@zibby/workflow";export{p as OutputParser,t as SchemaTypes};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import{registerSkill as e,getSkill as k,hasSkill as s,getAllSkills as t,listSkillIds as S}from"@zibby/workflow";export{t as getAllSkills,k as getSkill,s as hasSkill,S as listSkillIds,e as registerSkill};
|
package/dist/framework/state.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import{WorkflowState as t}from"@zibby/workflow";export{t as WorkflowState};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import{resolveNodeTools as l,getResolvedToolDefinitions as s,NODE_DEFAULT_TOOLS as T}from"@zibby/workflow";export{T as NODE_DEFAULT_TOOLS,s as getResolvedToolDefinitions,l as resolveNodeTools};
|