@savvy-web/mcp 2.6.9 → 2.6.10
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/package.json +2 -2
- package/server.js +1 -1
- package/tools/repos-inspect.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/mcp",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The savvy MCP server — Silk Suite tooling and library knowledge for coding agents",
|
|
6
6
|
"homepage": "https://github.com/savvy-web/systems/tree/main/packages/mcp",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@effected/git": "^0.10.0",
|
|
37
37
|
"@effected/workspaces": "^0.18.3",
|
|
38
38
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
39
|
-
"@savvy-web/silk-effects": "7.3.
|
|
39
|
+
"@savvy-web/silk-effects": "7.3.2",
|
|
40
40
|
"effect": "4.0.0-rc.109",
|
|
41
41
|
"zod": "^4.5.4"
|
|
42
42
|
}
|
package/server.js
CHANGED
|
@@ -32,7 +32,7 @@ const ReposInspectModeSchema = z.enum([
|
|
|
32
32
|
"config",
|
|
33
33
|
"drift",
|
|
34
34
|
"gitmodules"
|
|
35
|
-
]).describe("status = drift report; config = the full agent brief; drift =
|
|
35
|
+
]).describe("status = drift report; config = the full agent brief; drift = five-authority submodule reconciliation; gitmodules = decoded .gitmodules sections.");
|
|
36
36
|
/** Wrap a markdown string + structured object in the dual-channel tool result. */
|
|
37
37
|
const structuredResult = (text, structured) => ({
|
|
38
38
|
content: [{
|
package/tools/repos-inspect.js
CHANGED
|
@@ -59,7 +59,7 @@ const ReposInspectResult = Schema.Union([
|
|
|
59
59
|
]).annotate({
|
|
60
60
|
identifier: "ReposInspectResult",
|
|
61
61
|
title: "repos_inspect result",
|
|
62
|
-
description: "Drift report (status), the parsed manifest (config), the
|
|
62
|
+
description: "Drift report (status), the parsed manifest (config), the five-authority reconciliation report (drift), or the decoded .gitmodules sections (gitmodules)."
|
|
63
63
|
});
|
|
64
64
|
/** Render the structured result as a markdown transcript. */
|
|
65
65
|
const renderMarkdown = (data) => {
|