@@ -392,66 +378,6 @@ export const InstalledSkillCard: Story = {
// MCP Stories
// ---------------------------------------------------------------------------
-export const McpTabWithItems: Story = {
- name: "MCP tab — with items",
- render: () => (
-
-
-
-
-
- ),
-}
-
-export const McpTabWithInstalled: Story = {
- name: "MCP tab — some installed",
- render: () => (
-
-
-
-
-
- ),
-}
-
-export const McpTabEmpty: Story = {
- name: "MCP tab — empty state",
- render: () => (
-
-
-
-
-
- ),
-}
-
export const SingleMcpCard: Story = {
name: "ItemCard — single MCP not installed",
render: () => (
@@ -490,66 +416,6 @@ export const InstalledMcpCard: Story = {
// Mode Stories
// ---------------------------------------------------------------------------
-export const AgentsTabWithItems: Story = {
- name: "Agents tab — with items",
- render: () => (
-
-
-
-
-
- ),
-}
-
-export const AgentsTabWithInstalled: Story = {
- name: "Agents tab — some installed",
- render: () => (
-
-
-
-
-
- ),
-}
-
-export const AgentsTabEmpty: Story = {
- name: "Agents tab — empty state",
- render: () => (
-
-
-
-
-
- ),
-}
-
export const SingleAgentCard: Story = {
name: "ItemCard — single agent not installed",
render: () => (
diff --git a/packages/kilo-vscode/webview-ui/src/types/marketplace.ts b/packages/kilo-vscode/webview-ui/src/types/marketplace.ts
index 27f83a2b782..954c4b6c159 100644
--- a/packages/kilo-vscode/webview-ui/src/types/marketplace.ts
+++ b/packages/kilo-vscode/webview-ui/src/types/marketplace.ts
@@ -16,9 +16,9 @@ export interface MarketplaceItemBase {
id: string
name: string
description: string
+ category: string
author?: string
authorUrl?: string
- tags?: string[]
prerequisites?: string[]
}
@@ -44,7 +44,6 @@ export interface AgentMarketplaceItem extends MarketplaceItemBase {
export interface SkillMarketplaceItem extends MarketplaceItemBase {
type: "skill"
- category: string
githubUrl: string
content: string
displayName: string
@@ -66,5 +65,5 @@ export interface MarketplaceInstalledMetadata {
export interface MarketplaceFilters {
type?: string
search?: string
- tags?: string[]
+ categories?: string[]
}