Function
command
(input: { name: string; description: string; source?: "command" | "mcp" | "skill" })
Source from the content-addressed store, hash-verified
| 38 | const tuiConfig = createTuiResolvedConfig() |
| 39 | |
| 40 | function command(input: { name: string; description: string; source?: "command" | "mcp" | "skill" }) { |
| 41 | return { |
| 42 | name: input.name, |
| 43 | description: input.description, |
| 44 | source: input.source, |
| 45 | template: "", |
| 46 | hints: [], |
| 47 | } satisfies RunCommand |
| 48 | } |
| 49 | |
| 50 | function model(input: { |
| 51 | id: string |
Tested by
no test coverage detected