kibi-mcp 0.14.1 → 0.14.3
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.
- package/dist/server/docs.js +4 -29
- package/dist/server/tools.js +9 -8
- package/dist/tools/autopilot-candidates.js +10 -5
- package/dist/tools/autopilot-discovery.js +20 -6
- package/dist/tools/autopilot-generate.js +28 -14
- package/dist/tools/delete.js +10 -50
- package/dist/tools/model-requirement.js +10 -3
- package/dist/tools/skills.js +75 -0
- package/dist/tools/symbols.js +1 -1
- package/dist/tools/upsert.js +0 -11
- package/dist/tools-config.js +40 -23
- package/package.json +3 -6
- package/dist/tools/briefing-generate.js +0 -651
- package/dist/utils/brief-marker.js +0 -107
package/dist/tools-config.js
CHANGED
|
@@ -110,6 +110,46 @@ const BASE_TOOLS = [
|
|
|
110
110
|
properties: {},
|
|
111
111
|
},
|
|
112
112
|
},
|
|
113
|
+
{
|
|
114
|
+
name: "kb_skills_list",
|
|
115
|
+
description: "List bundled Kibi agent skills available for progressive disclosure. Read-only; does not mutate the KB or require Prolog.",
|
|
116
|
+
inputSchema: {
|
|
117
|
+
type: "object",
|
|
118
|
+
properties: {},
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
name: "kb_skills_load",
|
|
123
|
+
description: "Load a bundled Kibi agent skill by ID, returning its manifest metadata, Markdown body, declared resources, content hash, and source type. Read-only; does not execute scripts or require Prolog.",
|
|
124
|
+
inputSchema: {
|
|
125
|
+
type: "object",
|
|
126
|
+
required: ["id"],
|
|
127
|
+
properties: {
|
|
128
|
+
id: {
|
|
129
|
+
type: "string",
|
|
130
|
+
description: "Bundled skill ID to load. Example: 'kibi-usage'.",
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
name: "kb_skills_read",
|
|
137
|
+
description: "Read a declared resource from a bundled Kibi agent skill. Resource paths are restricted to the skill manifest; arbitrary file paths are not exposed. Read-only; does not require Prolog.",
|
|
138
|
+
inputSchema: {
|
|
139
|
+
type: "object",
|
|
140
|
+
required: ["id", "resource"],
|
|
141
|
+
properties: {
|
|
142
|
+
id: {
|
|
143
|
+
type: "string",
|
|
144
|
+
description: "Bundled skill ID. Example: 'kibi-usage'.",
|
|
145
|
+
},
|
|
146
|
+
resource: {
|
|
147
|
+
type: "string",
|
|
148
|
+
description: "Manifest-declared resource path to read. Example: 'resources/workflows.md'.",
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
},
|
|
152
|
+
},
|
|
113
153
|
{
|
|
114
154
|
name: "kb_find_gaps",
|
|
115
155
|
description: "Run bulk missing/present relationship analysis over KB entities. Use for questions like which requirements lack scenarios or tests. No mutation side effects.",
|
|
@@ -501,29 +541,6 @@ const BASE_TOOLS = [
|
|
|
501
541
|
},
|
|
502
542
|
},
|
|
503
543
|
},
|
|
504
|
-
{
|
|
505
|
-
name: "kb_briefing_generate",
|
|
506
|
-
description: "Generate a deterministic, read-only, start-task briefing from task text, source files, and seed IDs. No mutation side effects.",
|
|
507
|
-
inputSchema: {
|
|
508
|
-
type: "object",
|
|
509
|
-
properties: {
|
|
510
|
-
taskText: {
|
|
511
|
-
type: "string",
|
|
512
|
-
description: "Optional task description used to rank relevant cited entities for the briefing.",
|
|
513
|
-
},
|
|
514
|
-
sourceFiles: {
|
|
515
|
-
type: "array",
|
|
516
|
-
items: { type: "string" },
|
|
517
|
-
description: "Optional source-file paths used to gather cited entities for the briefing.",
|
|
518
|
-
},
|
|
519
|
-
seedIds: {
|
|
520
|
-
type: "array",
|
|
521
|
-
items: { type: "string" },
|
|
522
|
-
description: "Optional seed entity IDs used to anchor the briefing graph expansion.",
|
|
523
|
-
},
|
|
524
|
-
},
|
|
525
|
-
},
|
|
526
|
-
}
|
|
527
544
|
];
|
|
528
545
|
/**
|
|
529
546
|
* Inject _diagnostic_telemetry schema into tool inputs when diagnostic mode is enabled.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kibi-mcp",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
6
6
|
"ajv": "^8.18.0",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"fast-glob": "^3.2.12",
|
|
10
10
|
"gray-matter": "^4.0.3",
|
|
11
11
|
"js-yaml": "^4.1.0",
|
|
12
|
-
"kibi-cli": "^0.11.
|
|
12
|
+
"kibi-cli": "^0.11.3",
|
|
13
13
|
"kibi-core": "^0.5.3",
|
|
14
14
|
"mcpcat": "^0.1.12",
|
|
15
15
|
"ts-morph": "^23.0.0",
|
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
"build": "tsc -p tsconfig.json",
|
|
28
28
|
"prepack": "npm run build"
|
|
29
29
|
},
|
|
30
|
-
"files": [
|
|
31
|
-
"dist",
|
|
32
|
-
"bin"
|
|
33
|
-
],
|
|
30
|
+
"files": ["dist", "bin"],
|
|
34
31
|
"engines": {
|
|
35
32
|
"node": ">=18",
|
|
36
33
|
"bun": ">=1.0"
|