feat: rename Content field to Instruction across skill-related models and requests for consistency

This commit is contained in:
mlogclub
2026-04-12 10:00:47 +08:00
parent 294ad772de
commit 06abbbeeb6
8 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -273,7 +273,7 @@ export type SkillDefinition = {
code: string
name: string
description: string
content: string
instruction: string
examples: string[]
allowedToolCodes: string[]
priority: number
@@ -290,7 +290,7 @@ export type CreateSkillDefinitionPayload = {
code: string
name: string
description: string
content: string
instruction: string
examples: string[]
allowedToolCodes: string[]
priority?: number