@savvy-web/mcp 1.7.3 → 1.7.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/mcp",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
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",
@@ -38,7 +38,7 @@
38
38
  "@effect/sql": "^0.51.1",
39
39
  "@effect/workflow": "^0.18.2",
40
40
  "@modelcontextprotocol/sdk": "^1.29.0",
41
- "@savvy-web/silk-effects": "3.2.2",
41
+ "@savvy-web/silk-effects": "3.2.4",
42
42
  "effect": "^3.21.4",
43
43
  "workspaces-effect": "^2.0.3",
44
44
  "zod": "^4.4.3"
@@ -106,6 +106,8 @@ const ChangesetInspectAsMarkdown = Schema.transformOrFail(ChangesetInspectResult
106
106
  */
107
107
  const changesetInspect = (args, fallbackCwd) => Effect.gen(function* () {
108
108
  const root = yield* (yield* WorkspaceRoot).find(args.cwd ?? fallbackCwd);
109
+ const inspector = yield* Changesets.ConfigInspector;
110
+ yield* inspector.refresh();
109
111
  switch (args.mode) {
110
112
  case "branch": return {
111
113
  mode: "branch",
@@ -113,11 +115,11 @@ const changesetInspect = (args, fallbackCwd) => Effect.gen(function* () {
113
115
  };
114
116
  case "config": return {
115
117
  mode: "config",
116
- result: yield* (yield* Changesets.ConfigInspector).inspect(root)
118
+ result: yield* inspector.inspect(root)
117
119
  };
118
120
  case "classify": return {
119
121
  mode: "classify",
120
- result: yield* (yield* Changesets.ConfigInspector).classify(root, args.paths ?? [])
122
+ result: yield* inspector.classify(root, args.paths ?? [])
121
123
  };
122
124
  }
123
125
  });