@pathmode/mcp-server 1.20.1 → 1.20.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/index.js +953 -171
- package/dist/packages/intentspec-format/serializeIntentMd.d.ts +24 -0
- package/dist/packages/intentspec-format/serializeIntentMd.d.ts.map +1 -1
- package/dist/packages/mcp-server/src/api-client.d.ts +24 -0
- package/dist/packages/mcp-server/src/api-client.d.ts.map +1 -1
- package/dist/packages/mcp-server/src/intent-compiler.d.ts +2 -0
- package/dist/packages/mcp-server/src/intent-compiler.d.ts.map +1 -1
- package/dist/packages/mcp-server/src/local-reader.d.ts +5 -1
- package/dist/packages/mcp-server/src/local-reader.d.ts.map +1 -1
- package/dist/packages/mcp-server/src/measurement-schema.d.ts +267 -28
- package/dist/packages/mcp-server/src/measurement-schema.d.ts.map +1 -1
- package/manifest.json +1 -1
- package/package.json +9 -1
package/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": "0.3",
|
|
3
3
|
"name": "pathmode",
|
|
4
4
|
"display_name": "Pathmode",
|
|
5
|
-
"version": "1.20.
|
|
5
|
+
"version": "1.20.2",
|
|
6
6
|
"description": "Deterministic preflight for the intent you hand to a coding agent: six calibrated gates, the exact blockers named, no model call, no key needed.",
|
|
7
7
|
"long_description": "Pathmode MCP Server runs a deterministic preflight before your coding agent builds: check_intent_readiness scores an intent spec against six calibrated gates (title, objective, outcomes, constraints, edge cases, verification) and names the exact blockers, with no model call and no account. Keyless local mode works out of the box; specs live in intent.md in your repo, plain markdown you own, and skills for drafting, pressure-testing, and handing off intent ride along. Connect a Pathmode workspace with an API key to sync intent and evidence across a team, analyze dependency graphs, and verify pull requests against the outcomes you agreed to.",
|
|
8
8
|
"author": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pathmode/mcp-server",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -50,6 +50,14 @@
|
|
|
50
50
|
"gray-matter": "^4.0.3",
|
|
51
51
|
"zod": "^3.24.0"
|
|
52
52
|
},
|
|
53
|
+
"overrides": {
|
|
54
|
+
"@hono/node-server": "^1.19.17",
|
|
55
|
+
"body-parser": "^2.3.0",
|
|
56
|
+
"fast-uri": "^3.1.6",
|
|
57
|
+
"hono": "^4.13.5",
|
|
58
|
+
"ip-address": "^10.7.0",
|
|
59
|
+
"js-yaml": "^3.15.2"
|
|
60
|
+
},
|
|
53
61
|
"devDependencies": {
|
|
54
62
|
"@types/node": "^25.1.0",
|
|
55
63
|
"@vercel/ncc": "^0.38.4",
|