We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4732476 commit 359b40aCopy full SHA for 359b40a
.changeset/full-rice-shine.md
@@ -0,0 +1,5 @@
1
+---
2
+"@knocklabs/agent-toolkit": patch
3
4
+
5
+fix: workflow create method
src/lib/tools/workflows.ts
@@ -149,6 +149,11 @@ const createWorkflow = KnockTool({
149
.describe(
150
"(string): The environment to create the workflow in. Defaults to `development`."
151
),
152
+ workflowKey: z
153
+ .string()
154
+ .describe(
155
+ "(string): The key of the workflow to create. Only use a kebab-case string with no spaces or special characters."
156
+ ),
157
name: z.string().describe("(string): The name of the workflow."),
158
description: z
159
.string()
0 commit comments