Revert "feat: make skills invokable as slash commands in the TUI"

This reverts commit 85126556b8.
This commit is contained in:
Dax Raad
2026-01-30 20:37:41 -05:00
parent 85126556b8
commit 3542f3e406
4 changed files with 1 additions and 27 deletions

View File

@@ -153,11 +153,4 @@ export namespace Skill {
export async function all() {
return state().then((x) => Object.values(x))
}
export async function content(name: string) {
const info = await get(name)
if (!info) return undefined
const md = await ConfigMarkdown.parse(info.location)
return md.content
}
}