@skillsmith/mcp-server 0.3.14 → 0.3.15
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" | "
|
|
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" | "
|
|
40
|
+
role?: "testing" | "documentation" | "security" | "workflow" | "code-quality" | "development-partner" | undefined;
|
|
41
41
|
}>;
|
|
42
42
|
/**
|
|
43
43
|
* Input type (before parsing, allows optional fields)
|
|
@@ -46,20 +46,20 @@ export declare const suggestInputSchema: z.ZodObject<{
|
|
|
46
46
|
/** Session ID for rate limiting */
|
|
47
47
|
session_id: z.ZodDefault<z.ZodString>;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
|
-
project_path: string;
|
|
50
|
-
recent_commands: string[];
|
|
51
49
|
installed_skills: string[];
|
|
52
50
|
limit: number;
|
|
51
|
+
project_path: string;
|
|
52
|
+
recent_commands: string[];
|
|
53
53
|
session_id: string;
|
|
54
54
|
current_file?: string | undefined;
|
|
55
55
|
error_message?: string | undefined;
|
|
56
56
|
}, {
|
|
57
57
|
project_path: string;
|
|
58
|
+
installed_skills?: string[] | undefined;
|
|
59
|
+
limit?: number | undefined;
|
|
58
60
|
current_file?: string | undefined;
|
|
59
61
|
recent_commands?: string[] | undefined;
|
|
60
62
|
error_message?: string | undefined;
|
|
61
|
-
installed_skills?: string[] | undefined;
|
|
62
|
-
limit?: number | undefined;
|
|
63
63
|
session_id?: string | undefined;
|
|
64
64
|
}>;
|
|
65
65
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skillsmith/mcp-server",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.15",
|
|
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.25.3",
|
|
24
|
-
"@skillsmith/core": "0.4.
|
|
24
|
+
"@skillsmith/core": "0.4.7",
|
|
25
25
|
"esbuild": "0.27.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
package/server.json
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"url": "https://github.com/smith-horn/skillsmith",
|
|
9
9
|
"source": "github"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.3.
|
|
11
|
+
"version": "0.3.15",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "@skillsmith/mcp-server",
|
|
16
|
-
"version": "0.3.
|
|
16
|
+
"version": "0.3.15",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|