diff --git a/.changeset/full-rice-shine.md b/.changeset/full-rice-shine.md new file mode 100644 index 0000000..48289a9 --- /dev/null +++ b/.changeset/full-rice-shine.md @@ -0,0 +1,5 @@ +--- +"@knocklabs/agent-toolkit": patch +--- + +fix: workflow create method diff --git a/src/lib/tools/workflows.ts b/src/lib/tools/workflows.ts index c46fb9d..9251747 100644 --- a/src/lib/tools/workflows.ts +++ b/src/lib/tools/workflows.ts @@ -149,6 +149,11 @@ const createWorkflow = KnockTool({ .describe( "(string): The environment to create the workflow in. Defaults to `development`." ), + workflowKey: z + .string() + .describe( + "(string): The key of the workflow to create. Only use a kebab-case string with no spaces or special characters." + ), name: z.string().describe("(string): The name of the workflow."), description: z .string()