diff options
| author | Dax <[email protected]> | 2026-01-31 00:41:55 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-31 00:41:55 -0500 |
| commit | 81ac41e0891cf9318af641805e7b1c5af1194be4 (patch) | |
| tree | eb27bad841764a9b5ed7f2cb6ea1ede3ff8320b2 /packages/sdk | |
| parent | c0e71c4261d0d23a9f24064c7b2094c207c25d2f (diff) | |
| download | opencode-81ac41e0891cf9318af641805e7b1c5af1194be4.tar.gz opencode-81ac41e0891cf9318af641805e7b1c5af1194be4.zip | |
feat: make skills invokable as slash commands in the TUI (#11390)
Diffstat (limited to 'packages/sdk')
| -rw-r--r-- | packages/sdk/js/src/v2/gen/types.gen.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index a8c61c4da..cb2f58677 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -2116,7 +2116,7 @@ export type Command = { description?: string agent?: string model?: string - mcp?: boolean + source?: "command" | "mcp" | "skill" template: string subtask?: boolean hints: Array<string> @@ -4913,6 +4913,7 @@ export type AppSkillsResponses = { name: string description: string location: string + content: string }> } |
