@skillsmith/mcp-server 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,8 +83,8 @@ export declare const installInputSchema: z.ZodObject<{
83
83
  /** SMI-1864: Action to take when a conflict is detected during update */
84
84
  conflictAction: z.ZodOptional<z.ZodEnum<["overwrite", "merge", "cancel"]>>;
85
85
  }, "strip", z.ZodTypeAny, {
86
- force: boolean;
87
86
  skillId: string;
87
+ force: boolean;
88
88
  skipScan: boolean;
89
89
  skipOptimize: boolean;
90
90
  conflictAction?: "overwrite" | "merge" | "cancel" | undefined;
@@ -30,14 +30,14 @@ export declare const recommendInputSchema: z.ZodObject<{
30
30
  detect_overlap: boolean;
31
31
  min_similarity: number;
32
32
  project_context?: string | undefined;
33
- role?: "testing" | "documentation" | "security" | "code-quality" | "workflow" | "development-partner" | undefined;
33
+ role?: "testing" | "documentation" | "security" | "workflow" | "code-quality" | "development-partner" | undefined;
34
34
  }, {
35
35
  installed_skills?: string[] | undefined;
36
- limit?: number | undefined;
37
36
  project_context?: string | undefined;
37
+ limit?: number | undefined;
38
38
  detect_overlap?: boolean | undefined;
39
39
  min_similarity?: number | undefined;
40
- role?: "testing" | "documentation" | "security" | "code-quality" | "workflow" | "development-partner" | undefined;
40
+ role?: "testing" | "documentation" | "security" | "workflow" | "code-quality" | "development-partner" | undefined;
41
41
  }>;
42
42
  /**
43
43
  * Input type (before parsing, allows optional fields)
@@ -45,20 +45,20 @@ export declare const suggestInputSchema: z.ZodObject<{
45
45
  /** Session identifier (optional, for informational purposes) */
46
46
  session_id: z.ZodDefault<z.ZodString>;
47
47
  }, "strip", z.ZodTypeAny, {
48
- project_path: string;
49
- recent_commands: string[];
50
48
  installed_skills: string[];
51
49
  limit: number;
50
+ project_path: string;
51
+ recent_commands: string[];
52
52
  session_id: string;
53
53
  current_file?: string | undefined;
54
54
  error_message?: string | undefined;
55
55
  }, {
56
56
  project_path: string;
57
+ installed_skills?: string[] | undefined;
58
+ limit?: number | undefined;
57
59
  current_file?: string | undefined;
58
60
  recent_commands?: string[] | undefined;
59
61
  error_message?: string | undefined;
60
- installed_skills?: string[] | undefined;
61
- limit?: number | undefined;
62
62
  session_id?: string | undefined;
63
63
  }>;
64
64
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillsmith/mcp-server",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "mcpName": "io.github.smith-horn/skillsmith",
5
5
  "description": "MCP server for Skillsmith skill discovery",
6
6
  "type": "module",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@modelcontextprotocol/sdk": "1.26.0",
24
- "@skillsmith/core": "0.4.10",
24
+ "@skillsmith/core": "0.4.12",
25
25
  "esbuild": "0.27.2"
26
26
  },
27
27
  "devDependencies": {
@@ -57,7 +57,15 @@
57
57
  "skills",
58
58
  "mcp",
59
59
  "llm",
60
- "model-context-protocol"
60
+ "model-context-protocol",
61
+ "claude-code",
62
+ "agent-skills",
63
+ "skill-discovery",
64
+ "skill-management",
65
+ "autonomous-agents",
66
+ "openclaw",
67
+ "multi-agent",
68
+ "tool-management"
61
69
  ],
62
70
  "engines": {
63
71
  "node": ">=22.0.0"
package/server.json CHANGED
@@ -2,18 +2,28 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.smith-horn/skillsmith",
4
4
  "title": "Skillsmith",
5
- "description": "MCP server for agent skill discovery, installation, and management.",
5
+ "description": "Discover, install, and manage Claude Code skills via MCP. Search 14,000+ curated agent skills by category and trust tier, get contextual recommendations, validate skill quality, and compare options — works with Claude Code, OpenClaw, Cursor, Codex, Antigravity, GitHub Copilot, and any MCP-compatible AI agent platform.",
6
6
  "websiteUrl": "https://skillsmith.app",
7
7
  "repository": {
8
8
  "url": "https://github.com/smith-horn/skillsmith",
9
9
  "source": "github"
10
10
  },
11
- "version": "0.4.0",
11
+ "version": "0.4.1",
12
+ "_meta": {
13
+ "io.skillsmith/categories": ["developer-tools", "ai-agents", "skill-management"],
14
+ "io.skillsmith/keywords": [
15
+ "claude-code",
16
+ "agent-skills",
17
+ "skill-discovery",
18
+ "autonomous-agents",
19
+ "openclaw"
20
+ ]
21
+ },
12
22
  "packages": [
13
23
  {
14
24
  "registryType": "npm",
15
25
  "identifier": "@skillsmith/mcp-server",
16
- "version": "0.4.0",
26
+ "version": "0.4.1",
17
27
  "transport": {
18
28
  "type": "stdio"
19
29
  },