@@ -120,6 +120,7 @@ def create_prompt(
120120 command : str | Omit = omit ,
121121 description : str | Omit = omit ,
122122 is_command : bool | Omit = omit ,
123+ is_skill : bool | Omit = omit ,
123124 is_template : bool | Omit = omit ,
124125 name : str | Omit = omit ,
125126 prompt : str | Omit = omit ,
@@ -154,6 +155,7 @@ def create_prompt(
154155 "command" : command ,
155156 "description" : description ,
156157 "is_command" : is_command ,
158+ "is_skill" : is_skill ,
157159 "is_template" : is_template ,
158160 "name" : name ,
159161 "prompt" : prompt ,
@@ -768,6 +770,7 @@ async def create_prompt(
768770 command : str | Omit = omit ,
769771 description : str | Omit = omit ,
770772 is_command : bool | Omit = omit ,
773+ is_skill : bool | Omit = omit ,
771774 is_template : bool | Omit = omit ,
772775 name : str | Omit = omit ,
773776 prompt : str | Omit = omit ,
@@ -802,6 +805,7 @@ async def create_prompt(
802805 "command" : command ,
803806 "description" : description ,
804807 "is_command" : is_command ,
808+ "is_skill" : is_skill ,
805809 "is_template" : is_template ,
806810 "name" : name ,
807811 "prompt" : prompt ,
0 commit comments