@nahisaho/musubix-yata-client 1.0.0 → 1.0.2
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/knowledge/ontology.d.ts +1 -1
- package/dist/knowledge/ontology.js +1 -1
- package/dist/knowledge/query.d.ts +1 -1
- package/dist/knowledge/query.js +1 -1
- package/dist/reasoning/confidence.d.ts +2 -2
- package/dist/reasoning/confidence.js +2 -2
- package/dist/reasoning/contradiction.d.ts +2 -2
- package/dist/reasoning/contradiction.js +2 -2
- package/dist/reasoning/integrator.d.ts +1 -1
- package/dist/reasoning/integrator.js +1 -1
- package/package.json +4 -3
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @module knowledge/query
|
|
8
8
|
*
|
|
9
9
|
* @see REQ-INT-101 - YATA Integration
|
|
10
|
-
* @see REQ-
|
|
10
|
+
* @see REQ-INT-001 - Symbolic Reasoning
|
|
11
11
|
*/
|
|
12
12
|
import type { YataMCPClient } from '../mcp/client.js';
|
|
13
13
|
import type { KnowledgeNode, KnowledgeEdge, KnowledgeQueryResult } from '../types.js';
|
package/dist/knowledge/query.js
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
* @module reasoning/confidence
|
|
8
8
|
*
|
|
9
|
-
* @see REQ-
|
|
10
|
-
* @see REQ-
|
|
9
|
+
* @see REQ-INT-001 - Symbolic Reasoning
|
|
10
|
+
* @see REQ-INT-003 - Confidence Scoring
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Confidence source types
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
* @module reasoning/confidence
|
|
8
8
|
*
|
|
9
|
-
* @see REQ-
|
|
10
|
-
* @see REQ-
|
|
9
|
+
* @see REQ-INT-001 - Symbolic Reasoning
|
|
10
|
+
* @see REQ-INT-003 - Confidence Scoring
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Default evaluator configuration
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
* @module reasoning/contradiction
|
|
8
8
|
*
|
|
9
|
-
* @see REQ-
|
|
10
|
-
* @see REQ-
|
|
9
|
+
* @see REQ-INT-001 - Symbolic Reasoning
|
|
10
|
+
* @see REQ-INT-004 - Contradiction Detection
|
|
11
11
|
*/
|
|
12
12
|
import type { KnowledgeNode, KnowledgeEdge } from '../types.js';
|
|
13
13
|
/**
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
* @module reasoning/contradiction
|
|
8
8
|
*
|
|
9
|
-
* @see REQ-
|
|
10
|
-
* @see REQ-
|
|
9
|
+
* @see REQ-INT-001 - Symbolic Reasoning
|
|
10
|
+
* @see REQ-INT-004 - Contradiction Detection
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Default configuration
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @module reasoning/integrator
|
|
8
8
|
*
|
|
9
9
|
* @see REQ-INT-001 - Neuro-Symbolic Integration
|
|
10
|
-
* @see REQ-
|
|
10
|
+
* @see REQ-INT-001 - Symbolic Reasoning
|
|
11
11
|
*/
|
|
12
12
|
import type { YataMCPClient } from '../mcp/client.js';
|
|
13
13
|
import type { KnowledgeNode, PatternMatchResult } from '../types.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nahisaho/musubix-yata-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MUSUBIX YATA Client - Knowledge Graph Client Library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,13 +40,14 @@
|
|
|
40
40
|
"typecheck": "tsc --noEmit"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@modelcontextprotocol/sdk": "^
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
44
|
+
"musubix": "^1.0.1",
|
|
44
45
|
"zod": "^3.22.0"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@types/node": "^20.10.0",
|
|
48
49
|
"typescript": "^5.3.0",
|
|
49
|
-
"vitest": "^
|
|
50
|
+
"vitest": "^4.0.16"
|
|
50
51
|
},
|
|
51
52
|
"keywords": [
|
|
52
53
|
"musubix",
|