@pathmode/mcp-server 1.20.1 → 1.21.0
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/README.md +15 -1
- package/dist/index.js +1192 -185
- 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 +68 -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 +257 -18
- package/dist/packages/mcp-server/src/measurement-schema.d.ts.map +1 -1
- package/dist/packages/mcp-server/src/push-spec.d.ts +11 -0
- package/dist/packages/mcp-server/src/push-spec.d.ts.map +1 -1
- package/manifest.json +1 -1
- package/package.json +9 -1
- package/skills/preflight/SKILL.md +3 -1
- package/skills/review-against-intent/SKILL.md +3 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Deterministic intent preflight before your agent builds: six calibrated gates, k
|
|
|
4
4
|
|
|
5
5
|
No signup and no API key. Specs live in `intent.md` in your repo, as plain markdown you own.
|
|
6
6
|
|
|
7
|
+
This repository dogfoods the same workflow: [read its intent.md](intent.md).
|
|
8
|
+
|
|
7
9
|
`check_intent_readiness` is the first move: it scores a spec against the six gates of the
|
|
8
10
|
[intent.md profile](https://intentspec.org/intent-md) and names the exact blockers, with no model
|
|
9
11
|
call, so the same spec always gets the same verdict. The Intent Compiler below drafts and sharpens
|
|
@@ -242,6 +244,18 @@ Pass `--local` only to force local mode when an API key *is* configured:
|
|
|
242
244
|
| `update_intent_status` | Update intent status (draft > validated > approved > shipped > verified) |
|
|
243
245
|
| `log_implementation_note` | Record a technical decision or implementation note |
|
|
244
246
|
|
|
247
|
+
#### PM-to-Repository Change Requests
|
|
248
|
+
|
|
249
|
+
| Tool | Description |
|
|
250
|
+
|------|-------------|
|
|
251
|
+
| `list_intent_change_requests` | Discover structured PM requests workspace-wide, or narrow to one repository-authority intent; reading records agent consumption |
|
|
252
|
+
| `get_intent_change_request` | Read one request with its exact base revision, operation, proposed value, and reason |
|
|
253
|
+
| `reject_intent_change_request` | Report an unworkable request with an API-key-attributed reason |
|
|
254
|
+
|
|
255
|
+
Apply a request by editing `intent.md`, then call `intent_save` with both `changeRequestId` and
|
|
256
|
+
`baseRepoBodyRevision`. Pathmode compares immutable snapshots and closes the request itself; an
|
|
257
|
+
agent cannot submit a success flag or diff.
|
|
258
|
+
|
|
245
259
|
#### Strategic Analysis
|
|
246
260
|
|
|
247
261
|
| Tool | Description |
|
|
@@ -332,7 +346,7 @@ Full privacy policy: [pathmode.io/privacy](https://pathmode.io/privacy)
|
|
|
332
346
|
|
|
333
347
|
- [IntentSpec](https://intentspec.org/spec) — the open specification for the `intent.md` files this server writes
|
|
334
348
|
- [The intent.md profile](https://intentspec.org/intent-md) — the six checks `check_intent_readiness` scores against
|
|
335
|
-
- [
|
|
349
|
+
- [Preflight](https://pathmode.io/preflight) — interactive readiness check and local workflow setup
|
|
336
350
|
- [Pathmode](https://pathmode.io) — full platform for teams
|
|
337
351
|
- [Issues](https://github.com/pathmodeio/mcp-server/issues)
|
|
338
352
|
|