feat: show installed skills in UI (#7910)

Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
Signed-off-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Vincenzo Palazzo
2026-03-26 21:57:12 +01:00
committed by GitHub
parent f6fdbbdd7e
commit 9feb3f3bca
8 changed files with 547 additions and 18 deletions
+7 -2
View File
@@ -80,7 +80,7 @@ export type CheckProviderRequest = {
provider: string;
};
export type CommandType = 'Builtin' | 'Recipe';
export type CommandType = 'Builtin' | 'Recipe' | 'Skill';
/**
* Configuration key metadata for provider setup
@@ -2837,7 +2837,12 @@ export type SetConfigProviderData = {
export type GetSlashCommandsData = {
body?: never;
path?: never;
query?: never;
query?: {
/**
* Optional working directory to discover local skills from
*/
working_dir?: string | null;
};
url: '/config/slash_commands';
};