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

@@ -345,9 +345,8 @@ export function Autocomplete(props: {
const results: AutocompleteOption[] = [...command.slashes()]
for (const serverCommand of sync.data.command) {
const label = serverCommand.mcp ? " (MCP)" : serverCommand.skill ? " (Skill)" : ""
results.push({
display: "/" + serverCommand.name + label,
display: "/" + serverCommand.name + (serverCommand.mcp ? " (MCP)" : ""),
description: serverCommand.description,
onSelect: () => {
const newText = "/" + serverCommand.name + " "