From 123d02f452395ad6f04ecf4e8087e858a3b2f9a4 Mon Sep 17 00:00:00 2001 From: xiongxiao Date: Thu, 15 Jan 2026 23:44:40 +0800 Subject: [PATCH] udpate --- src/route.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/route.ts b/src/route.ts index 9d271b0..292b346 100644 --- a/src/route.ts +++ b/src/route.ts @@ -98,7 +98,9 @@ export type Skill = { skill: string; title: string; summary?: string; - args?: z.ZodTypeAny; + args?: { + [key: string]: any + }; } & T /** */ export const createSkill = (skill: Skill): Skill => {