Skip to content

Commit d83a9c5

Browse files
committed
fix(cli): add skill tool to CLI tool rendering utilities
1 parent 57f977f commit d83a9c5

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

apps/cli/src/ui/components/tools/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export function getToolCategory(toolName: string): ToolCategory {
2121
"read_file",
2222
"fetchInstructions",
2323
"fetch_instructions",
24+
"skill",
2425
"listFilesTopLevel",
2526
"listFilesRecursive",
2627
"list_files",

apps/cli/src/ui/components/tools/utils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export function getToolDisplayName(toolName: string): string {
5252
read_file: "Read",
5353
fetchInstructions: "Fetch Instructions",
5454
fetch_instructions: "Fetch Instructions",
55+
skill: "Load Skill",
5556
listFilesTopLevel: "List Files",
5657
listFilesRecursive: "List Files (Recursive)",
5758
list_files: "List Files",
@@ -109,6 +110,7 @@ export function getToolIconName(toolName: string): IconName {
109110
read_file: "file",
110111
fetchInstructions: "file",
111112
fetch_instructions: "file",
113+
skill: "file",
112114
listFilesTopLevel: "folder",
113115
listFilesRecursive: "folder",
114116
list_files: "folder",

0 commit comments

Comments
 (0)