feat(ui): add Skills view component to desktop app (#8190)

Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
Signed-off-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Vincenzo Palazzo
2026-04-09 16:17:56 +02:00
committed by GitHub
parent e8cbfc55da
commit ed5b2448af
7 changed files with 323 additions and 2 deletions
+4
View File
@@ -17,6 +17,7 @@ export type View =
| 'sharedSession'
| 'loading'
| 'recipes'
| 'skills'
| 'permission';
export type ViewOptions = {
@@ -66,6 +67,9 @@ export const createNavigationHandler = (navigate: NavigateFunction) => {
case 'recipes':
navigate('/recipes', { state: options });
break;
case 'skills':
navigate('/skills', { state: options });
break;
case 'permission':
navigate('/permission', { state: options });
break;