youmd 0.12.0 → 0.13.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.
Files changed (80) hide show
  1. package/dist/commands/brain.d.ts.map +1 -1
  2. package/dist/commands/brain.js +12 -4
  3. package/dist/commands/brain.js.map +1 -1
  4. package/dist/commands/connect.d.ts +113 -0
  5. package/dist/commands/connect.d.ts.map +1 -0
  6. package/dist/commands/connect.js +849 -0
  7. package/dist/commands/connect.js.map +1 -0
  8. package/dist/commands/founder.d.ts +3 -0
  9. package/dist/commands/founder.d.ts.map +1 -1
  10. package/dist/commands/founder.js +258 -1
  11. package/dist/commands/founder.js.map +1 -1
  12. package/dist/generated/capability-registry.d.ts +291 -83
  13. package/dist/generated/capability-registry.d.ts.map +1 -1
  14. package/dist/generated/capability-registry.js +320 -83
  15. package/dist/generated/capability-registry.js.map +1 -1
  16. package/dist/index.js +31 -4
  17. package/dist/index.js.map +1 -1
  18. package/dist/lib/api.d.ts +76 -0
  19. package/dist/lib/api.d.ts.map +1 -1
  20. package/dist/lib/api.js +40 -0
  21. package/dist/lib/api.js.map +1 -1
  22. package/dist/lib/brain/adapters.d.ts +2 -0
  23. package/dist/lib/brain/adapters.d.ts.map +1 -1
  24. package/dist/lib/brain/adapters.js +71 -0
  25. package/dist/lib/brain/adapters.js.map +1 -1
  26. package/dist/lib/brain/content.d.ts +3 -1
  27. package/dist/lib/brain/content.d.ts.map +1 -1
  28. package/dist/lib/brain/content.js +92 -24
  29. package/dist/lib/brain/content.js.map +1 -1
  30. package/dist/lib/brain/discovery.d.ts.map +1 -1
  31. package/dist/lib/brain/discovery.js +2 -1
  32. package/dist/lib/brain/discovery.js.map +1 -1
  33. package/dist/lib/brain/index.d.ts +1 -0
  34. package/dist/lib/brain/index.d.ts.map +1 -1
  35. package/dist/lib/brain/index.js +7 -2
  36. package/dist/lib/brain/index.js.map +1 -1
  37. package/dist/lib/brain/vision.d.ts +35 -0
  38. package/dist/lib/brain/vision.d.ts.map +1 -0
  39. package/dist/lib/brain/vision.js +65 -0
  40. package/dist/lib/brain/vision.js.map +1 -0
  41. package/dist/lib/businessScaffold.d.ts +42 -0
  42. package/dist/lib/businessScaffold.d.ts.map +1 -0
  43. package/dist/lib/businessScaffold.js +150 -0
  44. package/dist/lib/businessScaffold.js.map +1 -0
  45. package/dist/lib/codex-device-auth.d.ts +94 -0
  46. package/dist/lib/codex-device-auth.d.ts.map +1 -0
  47. package/dist/lib/codex-device-auth.js +295 -0
  48. package/dist/lib/codex-device-auth.js.map +1 -0
  49. package/dist/lib/codex-job-control-plane.d.ts +67 -0
  50. package/dist/lib/codex-job-control-plane.d.ts.map +1 -0
  51. package/dist/lib/codex-job-control-plane.js +105 -0
  52. package/dist/lib/codex-job-control-plane.js.map +1 -0
  53. package/dist/lib/codex-readonly-job.d.ts +76 -0
  54. package/dist/lib/codex-readonly-job.d.ts.map +1 -0
  55. package/dist/lib/codex-readonly-job.js +196 -0
  56. package/dist/lib/codex-readonly-job.js.map +1 -0
  57. package/dist/lib/connected-access-native.d.ts +111 -0
  58. package/dist/lib/connected-access-native.d.ts.map +1 -0
  59. package/dist/lib/connected-access-native.js +403 -0
  60. package/dist/lib/connected-access-native.js.map +1 -0
  61. package/dist/lib/connected-context.d.ts +82 -0
  62. package/dist/lib/connected-context.d.ts.map +1 -0
  63. package/dist/lib/connected-context.js +610 -0
  64. package/dist/lib/connected-context.js.map +1 -0
  65. package/dist/lib/redact.d.ts.map +1 -1
  66. package/dist/lib/redact.js +9 -1
  67. package/dist/lib/redact.js.map +1 -1
  68. package/dist/mcp/registry.d.ts +4 -1
  69. package/dist/mcp/registry.d.ts.map +1 -1
  70. package/dist/mcp/registry.js +120 -1
  71. package/dist/mcp/registry.js.map +1 -1
  72. package/dist/mcp/server.d.ts +1 -1
  73. package/dist/mcp/server.d.ts.map +1 -1
  74. package/dist/mcp/server.js +18 -9
  75. package/dist/mcp/server.js.map +1 -1
  76. package/native/prebuilds/darwin-universal/youmd_safe_open.node +0 -0
  77. package/package.json +1 -1
  78. package/scripts/env-vault/README.md +16 -20
  79. package/scripts/env-vault/backup.sh +22 -57
  80. package/scripts/env-vault/restore.sh +18 -96
@@ -19,7 +19,7 @@ export interface AgentCapabilityMetadata {
19
19
  handlerRef: string | null;
20
20
  contractRevision: string;
21
21
  }
22
- export declare const AGENT_CAPABILITY_CONTRACT_REVISION: "you-md/capability-registry/2026-07-15.1";
22
+ export declare const AGENT_CAPABILITY_CONTRACT_REVISION: "you-md/capability-registry/2026-08-12.1";
23
23
  export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
24
24
  readonly id: "brain.apply.cli.local";
25
25
  readonly name: "brain apply";
@@ -35,7 +35,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
35
35
  readonly advertised: false;
36
36
  readonly documented: true;
37
37
  readonly handlerRef: "cli/src/lib/brain/safe-file.ts#applyProjectBrainSafeFile";
38
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
38
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
39
39
  }, {
40
40
  readonly id: "brain.apply.http.claim";
41
41
  readonly name: "POST /api/v1/me/brain/apply/claim";
@@ -51,7 +51,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
51
51
  readonly advertised: false;
52
52
  readonly documented: true;
53
53
  readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/apply/claim";
54
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
54
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
55
55
  }, {
56
56
  readonly id: "brain.apply.http.events";
57
57
  readonly name: "POST /api/v1/me/brain/apply/events";
@@ -67,7 +67,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
67
67
  readonly advertised: false;
68
68
  readonly documented: true;
69
69
  readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/apply/events";
70
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
70
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
71
71
  }, {
72
72
  readonly id: "brain.approval.http.keys";
73
73
  readonly name: "GET /api/v1/brain/approval-keys";
@@ -83,7 +83,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
83
83
  readonly advertised: true;
84
84
  readonly documented: true;
85
85
  readonly handlerRef: "convex/http.ts#GET./api/v1/brain/approval-keys";
86
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
86
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
87
87
  }, {
88
88
  readonly id: "brain.cli.adopt";
89
89
  readonly name: "brain adopt";
@@ -99,7 +99,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
99
99
  readonly advertised: true;
100
100
  readonly documented: true;
101
101
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.adopt";
102
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
102
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
103
103
  }, {
104
104
  readonly id: "brain.cli.map";
105
105
  readonly name: "brain map";
@@ -115,7 +115,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
115
115
  readonly advertised: true;
116
116
  readonly documented: true;
117
117
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.map";
118
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
118
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
119
119
  }, {
120
120
  readonly id: "brain.cli.propose";
121
121
  readonly name: "brain propose";
@@ -131,7 +131,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
131
131
  readonly advertised: true;
132
132
  readonly documented: true;
133
133
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.propose";
134
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
134
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
135
135
  }, {
136
136
  readonly id: "brain.cli.scan";
137
137
  readonly name: "brain scan";
@@ -147,7 +147,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
147
147
  readonly advertised: true;
148
148
  readonly documented: true;
149
149
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.scan";
150
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
150
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
151
151
  }, {
152
152
  readonly id: "brain.cli.show";
153
153
  readonly name: "brain show";
@@ -163,7 +163,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
163
163
  readonly advertised: true;
164
164
  readonly documented: true;
165
165
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.show";
166
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
166
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
167
167
  }, {
168
168
  readonly id: "brain.cli.stage";
169
169
  readonly name: "brain stage";
@@ -179,7 +179,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
179
179
  readonly advertised: false;
180
180
  readonly documented: true;
181
181
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.stage";
182
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
182
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
183
183
  }, {
184
184
  readonly id: "brain.cli.sync";
185
185
  readonly name: "brain sync";
@@ -195,7 +195,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
195
195
  readonly advertised: true;
196
196
  readonly documented: true;
197
197
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.sync";
198
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
198
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
199
199
  }, {
200
200
  readonly id: "brain.cli.validate";
201
201
  readonly name: "brain validate";
@@ -211,7 +211,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
211
211
  readonly advertised: true;
212
212
  readonly documented: true;
213
213
  readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.validate";
214
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
214
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
215
+ }, {
216
+ readonly id: "brain.cli.vision";
217
+ readonly name: "brain vision";
218
+ readonly summary: "Read the path-derived, provenance-preserving Vision Artifact index for one local Project Brain revision.";
219
+ readonly owner: "youmd-cli";
220
+ readonly transport: "cli";
221
+ readonly auth: {
222
+ readonly kind: "local-user";
223
+ readonly scopes: readonly [];
224
+ };
225
+ readonly maturity: "beta";
226
+ readonly implemented: true;
227
+ readonly advertised: true;
228
+ readonly documented: true;
229
+ readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.vision";
230
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
215
231
  }, {
216
232
  readonly id: "brain.convex.github-artifacts.read";
217
233
  readonly name: "githubProjectArtifacts.readProjectContext";
@@ -227,7 +243,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
227
243
  readonly advertised: false;
228
244
  readonly documented: true;
229
245
  readonly handlerRef: "convex/githubProjectArtifacts.ts#readProjectContext";
230
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
246
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
231
247
  }, {
232
248
  readonly id: "brain.convex.project.get";
233
249
  readonly name: "projectBrain.getProject";
@@ -243,7 +259,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
243
259
  readonly advertised: false;
244
260
  readonly documented: true;
245
261
  readonly handlerRef: "convex/projectBrain.ts#getProject";
246
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
262
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
247
263
  }, {
248
264
  readonly id: "brain.convex.projections.backfill";
249
265
  readonly name: "projectBrain.backfillProjectionHeads";
@@ -259,7 +275,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
259
275
  readonly advertised: false;
260
276
  readonly documented: true;
261
277
  readonly handlerRef: "convex/projectBrain.ts#backfillProjectionHeads";
262
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
278
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
263
279
  }, {
264
280
  readonly id: "brain.convex.projections.compare";
265
281
  readonly name: "projectBrain.comparePortfolioProjection";
@@ -275,7 +291,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
275
291
  readonly advertised: false;
276
292
  readonly documented: true;
277
293
  readonly handlerRef: "convex/projectBrain.ts#comparePortfolioProjection";
278
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
294
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
279
295
  }, {
280
296
  readonly id: "brain.convex.projects.list";
281
297
  readonly name: "projectBrain.listProjects";
@@ -291,7 +307,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
291
307
  readonly advertised: false;
292
308
  readonly documented: true;
293
309
  readonly handlerRef: "convex/projectBrain.ts#listProjects";
294
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
310
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
295
311
  }, {
296
312
  readonly id: "brain.convex.snapshot.project";
297
313
  readonly name: "projectBrain.projectSnapshot";
@@ -307,7 +323,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
307
323
  readonly advertised: false;
308
324
  readonly documented: true;
309
325
  readonly handlerRef: "convex/projectBrain.ts#projectSnapshot";
310
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
326
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
311
327
  }, {
312
328
  readonly id: "brain.convex.snapshots.ingest";
313
329
  readonly name: "projectBrain.ingestSnapshots";
@@ -323,7 +339,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
323
339
  readonly advertised: false;
324
340
  readonly documented: true;
325
341
  readonly handlerRef: "convex/projectBrain.ts#ingestSnapshots";
326
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
342
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
327
343
  }, {
328
344
  readonly id: "brain.http.artifact-content.get";
329
345
  readonly name: "GET /api/v1/me/brain/artifact-content";
@@ -339,7 +355,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
339
355
  readonly advertised: true;
340
356
  readonly documented: true;
341
357
  readonly handlerRef: "convex/http.ts#GET./api/v1/me/brain/artifact-content";
342
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
358
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
343
359
  }, {
344
360
  readonly id: "brain.http.artifact-contents.ingest";
345
361
  readonly name: "POST /api/v1/me/brain/artifact-contents";
@@ -355,7 +371,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
355
371
  readonly advertised: true;
356
372
  readonly documented: true;
357
373
  readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/artifact-contents";
358
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
374
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
359
375
  }, {
360
376
  readonly id: "brain.http.projects.get";
361
377
  readonly name: "GET /api/v1/me/brain/projects/:slug";
@@ -371,7 +387,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
371
387
  readonly advertised: true;
372
388
  readonly documented: true;
373
389
  readonly handlerRef: "convex/http.ts#GET./api/v1/me/brain/projects/:slug";
374
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
390
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
375
391
  }, {
376
392
  readonly id: "brain.http.projects.list";
377
393
  readonly name: "GET /api/v1/me/brain/projects";
@@ -387,7 +403,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
387
403
  readonly advertised: true;
388
404
  readonly documented: true;
389
405
  readonly handlerRef: "convex/http.ts#GET./api/v1/me/brain/projects";
390
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
406
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
407
+ }, {
408
+ readonly id: "brain.http.projects.vision";
409
+ readonly name: "GET /api/v1/me/brain/projects/:slug/vision";
410
+ readonly summary: "Read one path-derived, revision-bound Vision Artifact index for a synchronized Project Brain project.";
411
+ readonly owner: "youmd-convex";
412
+ readonly transport: "http";
413
+ readonly auth: {
414
+ readonly kind: "bearer";
415
+ readonly scopes: readonly ["read:private"];
416
+ };
417
+ readonly maturity: "beta";
418
+ readonly implemented: true;
419
+ readonly advertised: true;
420
+ readonly documented: true;
421
+ readonly handlerRef: "convex/http.ts#GET./api/v1/me/brain/projects/:slug/vision";
422
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
391
423
  }, {
392
424
  readonly id: "brain.http.snapshots.ingest";
393
425
  readonly name: "POST /api/v1/me/brain/snapshots";
@@ -403,7 +435,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
403
435
  readonly advertised: true;
404
436
  readonly documented: true;
405
437
  readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/snapshots";
406
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
438
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
407
439
  }, {
408
440
  readonly id: "brain.proposal.http.create";
409
441
  readonly name: "POST /api/v1/me/brain/proposals";
@@ -419,7 +451,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
419
451
  readonly advertised: true;
420
452
  readonly documented: true;
421
453
  readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/proposals";
422
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
454
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
423
455
  }, {
424
456
  readonly id: "brain.proposal.http.resolve";
425
457
  readonly name: "POST /api/v1/me/brain/proposals/:id/decision";
@@ -435,7 +467,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
435
467
  readonly advertised: true;
436
468
  readonly documented: true;
437
469
  readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/proposals/:id/decision";
438
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
470
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
439
471
  }, {
440
472
  readonly id: "brain.proposal.mcp.create";
441
473
  readonly name: "propose_project_brain_update";
@@ -451,7 +483,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
451
483
  readonly advertised: true;
452
484
  readonly documented: true;
453
485
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.propose_project_brain_update";
454
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
486
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
455
487
  }, {
456
488
  readonly id: "brain.proposal.mcp.resolve";
457
489
  readonly name: "resolve_project_brain_proposal";
@@ -467,7 +499,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
467
499
  readonly advertised: true;
468
500
  readonly documented: true;
469
501
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.resolve_project_brain_proposal";
470
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
502
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
471
503
  }, {
472
504
  readonly id: "brain.recover.cli.local";
473
505
  readonly name: "brain recover";
@@ -483,7 +515,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
483
515
  readonly advertised: false;
484
516
  readonly documented: true;
485
517
  readonly handlerRef: "cli/src/lib/brain/safe-file.ts#recoverProjectBrainSafeFile";
486
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
518
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
487
519
  }, {
488
520
  readonly id: "chat.cli.conversations.proof";
489
521
  readonly name: "conversations proof";
@@ -499,7 +531,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
499
531
  readonly advertised: false;
500
532
  readonly documented: true;
501
533
  readonly handlerRef: "cli/src/commands/conversations.ts#conversationsCommand";
502
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
534
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
503
535
  }, {
504
536
  readonly id: "chat.http.conversation-proof.get";
505
537
  readonly name: "GET /api/v1/me/chat/conversations/{sessionId}/proof";
@@ -515,7 +547,39 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
515
547
  readonly advertised: false;
516
548
  readonly documented: true;
517
549
  readonly handlerRef: "convex/http.ts#GET./api/v1/me/chat/conversations/{sessionId}/proof";
518
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
550
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
551
+ }, {
552
+ readonly id: "connected-access.codex.cli";
553
+ readonly name: "connect codex status/login/audit";
554
+ readonly summary: "Report bounded local Codex status, run provider-owned ChatGPT sign-in, or prepare a separately owner-approved read-only audit of explicit relative files; receipts and JSON preparation never grant provider or job authority.";
555
+ readonly owner: "youmd-cli";
556
+ readonly transport: "cli";
557
+ readonly auth: {
558
+ readonly kind: "local-user";
559
+ readonly scopes: readonly [];
560
+ };
561
+ readonly maturity: "beta";
562
+ readonly implemented: true;
563
+ readonly advertised: true;
564
+ readonly documented: true;
565
+ readonly handlerRef: "cli/src/commands/connect.ts#connectCommand";
566
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
567
+ }, {
568
+ readonly id: "connected-access.context-bootstrap.cli";
569
+ readonly name: "connect bootstrap";
570
+ readonly summary: "Bootstrap, inspect, verify, or revoke a short-lived signed owner context for the local CLI and read-only youmd://connected-context/current MCP resource. Uses a Keychain DPoP key and a 0600 snapshot; every resource discovery/read rechecks owner state and fails closed.";
571
+ readonly owner: "youmd-cli";
572
+ readonly transport: "cli";
573
+ readonly auth: {
574
+ readonly kind: "local-user";
575
+ readonly scopes: readonly ["read:private"];
576
+ };
577
+ readonly maturity: "beta";
578
+ readonly implemented: true;
579
+ readonly advertised: true;
580
+ readonly documented: true;
581
+ readonly handlerRef: "cli/src/commands/connect.ts#connectCommand";
582
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
519
583
  }, {
520
584
  readonly id: "mcp.hosted.ask_public_profile";
521
585
  readonly name: "ask_public_profile";
@@ -531,7 +595,55 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
531
595
  readonly advertised: true;
532
596
  readonly documented: true;
533
597
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.ask_public_profile";
534
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
598
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
599
+ }, {
600
+ readonly id: "mcp.hosted.get_agent_access_applications";
601
+ readonly name: "get_agent_access_applications";
602
+ readonly summary: "List the authenticated owner's registered Connected Agent Access applications without exposing provider authority or secrets.";
603
+ readonly owner: "youmd-convex";
604
+ readonly transport: "mcp-hosted";
605
+ readonly auth: {
606
+ readonly kind: "bearer";
607
+ readonly scopes: readonly ["read:private"];
608
+ };
609
+ readonly maturity: "beta";
610
+ readonly implemented: true;
611
+ readonly advertised: true;
612
+ readonly documented: true;
613
+ readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_access_applications";
614
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
615
+ }, {
616
+ readonly id: "mcp.hosted.get_agent_access_device_keys";
617
+ readonly name: "get_agent_access_device_keys";
618
+ readonly summary: "List the authenticated owner's public Connected Agent Access device-key records without exposing private keys or provider secrets.";
619
+ readonly owner: "youmd-convex";
620
+ readonly transport: "mcp-hosted";
621
+ readonly auth: {
622
+ readonly kind: "bearer";
623
+ readonly scopes: readonly ["read:private"];
624
+ };
625
+ readonly maturity: "beta";
626
+ readonly implemented: true;
627
+ readonly advertised: true;
628
+ readonly documented: true;
629
+ readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_access_device_keys";
630
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
631
+ }, {
632
+ readonly id: "mcp.hosted.get_agent_access_receipts";
633
+ readonly name: "get_agent_access_receipts";
634
+ readonly summary: "List the authenticated owner's short-lived, non-authoritative Connected Agent Access receipt records.";
635
+ readonly owner: "youmd-convex";
636
+ readonly transport: "mcp-hosted";
637
+ readonly auth: {
638
+ readonly kind: "bearer";
639
+ readonly scopes: readonly ["read:private"];
640
+ };
641
+ readonly maturity: "beta";
642
+ readonly implemented: true;
643
+ readonly advertised: true;
644
+ readonly documented: true;
645
+ readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_access_receipts";
646
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
535
647
  }, {
536
648
  readonly id: "mcp.hosted.get_agent_brief";
537
649
  readonly name: "get_agent_brief";
@@ -547,7 +659,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
547
659
  readonly advertised: true;
548
660
  readonly documented: true;
549
661
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_brief";
550
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
662
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
663
+ }, {
664
+ readonly id: "mcp.hosted.get_agent_job_status";
665
+ readonly name: "get_agent_job_status";
666
+ readonly summary: "Read one authenticated owner's redacted bounded local Codex job status without exposing claim, signature, stable runner, raw file, or provider material.";
667
+ readonly owner: "youmd-convex";
668
+ readonly transport: "mcp-hosted";
669
+ readonly auth: {
670
+ readonly kind: "bearer";
671
+ readonly scopes: readonly ["read:private"];
672
+ };
673
+ readonly maturity: "beta";
674
+ readonly implemented: true;
675
+ readonly advertised: true;
676
+ readonly documented: true;
677
+ readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_job_status";
678
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
551
679
  }, {
552
680
  readonly id: "mcp.hosted.get_agent_stack_inventory";
553
681
  readonly name: "get_agent_stack_inventory";
@@ -563,7 +691,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
563
691
  readonly advertised: true;
564
692
  readonly documented: true;
565
693
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_stack_inventory";
566
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
694
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
567
695
  }, {
568
696
  readonly id: "mcp.hosted.get_context_reconciliation_status";
569
697
  readonly name: "get_context_reconciliation_status";
@@ -579,7 +707,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
579
707
  readonly advertised: true;
580
708
  readonly documented: true;
581
709
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_context_reconciliation_status";
582
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
710
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
583
711
  }, {
584
712
  readonly id: "mcp.hosted.get_founder_overview";
585
713
  readonly name: "get_founder_overview";
@@ -595,7 +723,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
595
723
  readonly advertised: true;
596
724
  readonly documented: true;
597
725
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_founder_overview";
598
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
726
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
599
727
  }, {
600
728
  readonly id: "mcp.hosted.get_identity";
601
729
  readonly name: "get_identity";
@@ -611,7 +739,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
611
739
  readonly advertised: true;
612
740
  readonly documented: true;
613
741
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_identity";
614
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
742
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
615
743
  }, {
616
744
  readonly id: "mcp.hosted.get_my_identity";
617
745
  readonly name: "get_my_identity";
@@ -627,7 +755,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
627
755
  readonly advertised: true;
628
756
  readonly documented: true;
629
757
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_my_identity";
630
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
758
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
631
759
  }, {
632
760
  readonly id: "mcp.hosted.get_my_stacks";
633
761
  readonly name: "get_my_stacks";
@@ -643,7 +771,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
643
771
  readonly advertised: true;
644
772
  readonly documented: true;
645
773
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_my_stacks";
646
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
774
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
647
775
  }, {
648
776
  readonly id: "mcp.hosted.get_project_brain";
649
777
  readonly name: "get_project_brain";
@@ -659,7 +787,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
659
787
  readonly advertised: true;
660
788
  readonly documented: true;
661
789
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_project_brain";
662
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
790
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
791
+ }, {
792
+ readonly id: "mcp.hosted.get_project_vision";
793
+ readonly name: "get_project_vision";
794
+ readonly summary: "Read one path-only, provenance-preserving Vision Artifact projection from synchronized Project Brain evidence.";
795
+ readonly owner: "youmd-convex";
796
+ readonly transport: "mcp-hosted";
797
+ readonly auth: {
798
+ readonly kind: "bearer";
799
+ readonly scopes: readonly ["read:private"];
800
+ };
801
+ readonly maturity: "beta";
802
+ readonly implemented: true;
803
+ readonly advertised: true;
804
+ readonly documented: true;
805
+ readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_project_vision";
806
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
663
807
  }, {
664
808
  readonly id: "mcp.hosted.get_repo_file";
665
809
  readonly name: "get_repo_file";
@@ -675,7 +819,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
675
819
  readonly advertised: true;
676
820
  readonly documented: true;
677
821
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_repo_file";
678
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
822
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
679
823
  }, {
680
824
  readonly id: "mcp.hosted.get_synced_brain_graph";
681
825
  readonly name: "get_synced_brain_graph";
@@ -691,7 +835,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
691
835
  readonly advertised: true;
692
836
  readonly documented: true;
693
837
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_synced_brain_graph";
694
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
838
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
695
839
  }, {
696
840
  readonly id: "mcp.hosted.report_skill_outcome";
697
841
  readonly name: "report_skill_outcome";
@@ -707,7 +851,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
707
851
  readonly advertised: true;
708
852
  readonly documented: true;
709
853
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.report_skill_outcome";
710
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
854
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
711
855
  }, {
712
856
  readonly id: "mcp.hosted.search_memories";
713
857
  readonly name: "search_memories";
@@ -723,7 +867,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
723
867
  readonly advertised: true;
724
868
  readonly documented: true;
725
869
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.search_memories";
726
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
870
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
727
871
  }, {
728
872
  readonly id: "mcp.hosted.search_profiles";
729
873
  readonly name: "search_profiles";
@@ -739,7 +883,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
739
883
  readonly advertised: true;
740
884
  readonly documented: true;
741
885
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.search_profiles";
742
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
886
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
887
+ }, {
888
+ readonly id: "mcp.hosted.verify_agent_access_receipt";
889
+ readonly name: "verify_agent_access_receipt";
890
+ readonly summary: "Verify an owner receipt's active status and exact device, application, and audience bindings without granting execution authority.";
891
+ readonly owner: "youmd-convex";
892
+ readonly transport: "mcp-hosted";
893
+ readonly auth: {
894
+ readonly kind: "bearer";
895
+ readonly scopes: readonly ["read:private"];
896
+ };
897
+ readonly maturity: "beta";
898
+ readonly implemented: true;
899
+ readonly advertised: true;
900
+ readonly documented: true;
901
+ readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.verify_agent_access_receipt";
902
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
743
903
  }, {
744
904
  readonly id: "mcp.hosted.whoami";
745
905
  readonly name: "whoami";
@@ -755,7 +915,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
755
915
  readonly advertised: true;
756
916
  readonly documented: true;
757
917
  readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.whoami";
758
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
918
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
759
919
  }, {
760
920
  readonly id: "mcp.local.add_memory";
761
921
  readonly name: "add_memory";
@@ -771,7 +931,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
771
931
  readonly advertised: true;
772
932
  readonly documented: true;
773
933
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.add_memory";
774
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
934
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
775
935
  }, {
776
936
  readonly id: "mcp.local.add_source";
777
937
  readonly name: "add_source";
@@ -787,7 +947,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
787
947
  readonly advertised: true;
788
948
  readonly documented: true;
789
949
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.add_source";
790
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
950
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
791
951
  }, {
792
952
  readonly id: "mcp.local.create_context_link";
793
953
  readonly name: "create_context_link";
@@ -803,7 +963,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
803
963
  readonly advertised: true;
804
964
  readonly documented: true;
805
965
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.create_context_link";
806
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
966
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
807
967
  }, {
808
968
  readonly id: "mcp.local.get_activity_log";
809
969
  readonly name: "get_activity_log";
@@ -819,7 +979,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
819
979
  readonly advertised: true;
820
980
  readonly documented: true;
821
981
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_activity_log";
822
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
982
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
983
+ }, {
984
+ readonly id: "mcp.local.get_agent_access_receipts";
985
+ readonly name: "get_agent_access_receipts";
986
+ readonly summary: "List the authenticated owner's short-lived, non-authoritative Connected Agent Access receipts through the local MCP bridge.";
987
+ readonly owner: "youmd-cli";
988
+ readonly transport: "mcp-local";
989
+ readonly auth: {
990
+ readonly kind: "local-user";
991
+ readonly scopes: readonly [];
992
+ };
993
+ readonly maturity: "beta";
994
+ readonly implemented: true;
995
+ readonly advertised: true;
996
+ readonly documented: true;
997
+ readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_agent_access_receipts";
998
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
823
999
  }, {
824
1000
  readonly id: "mcp.local.get_agent_stack_inventory";
825
1001
  readonly name: "get_agent_stack_inventory";
@@ -835,7 +1011,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
835
1011
  readonly advertised: true;
836
1012
  readonly documented: true;
837
1013
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_agent_stack_inventory";
838
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1014
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
839
1015
  }, {
840
1016
  readonly id: "mcp.local.get_context_reconciliation_status";
841
1017
  readonly name: "get_context_reconciliation_status";
@@ -851,7 +1027,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
851
1027
  readonly advertised: true;
852
1028
  readonly documented: true;
853
1029
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_context_reconciliation_status";
854
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1030
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
855
1031
  }, {
856
1032
  readonly id: "mcp.local.get_founder_overview";
857
1033
  readonly name: "get_founder_overview";
@@ -867,7 +1043,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
867
1043
  readonly advertised: true;
868
1044
  readonly documented: true;
869
1045
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_founder_overview";
870
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1046
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
871
1047
  }, {
872
1048
  readonly id: "mcp.local.get_identity";
873
1049
  readonly name: "get_identity";
@@ -883,7 +1059,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
883
1059
  readonly advertised: true;
884
1060
  readonly documented: true;
885
1061
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_identity";
886
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1062
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
887
1063
  }, {
888
1064
  readonly id: "mcp.local.get_media";
889
1065
  readonly name: "get_media";
@@ -899,7 +1075,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
899
1075
  readonly advertised: true;
900
1076
  readonly documented: true;
901
1077
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_media";
902
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1078
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
903
1079
  }, {
904
1080
  readonly id: "mcp.local.get_private_context";
905
1081
  readonly name: "get_private_context";
@@ -915,7 +1091,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
915
1091
  readonly advertised: true;
916
1092
  readonly documented: true;
917
1093
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_private_context";
918
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1094
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
919
1095
  }, {
920
1096
  readonly id: "mcp.local.get_project_brain";
921
1097
  readonly name: "get_project_brain";
@@ -931,7 +1107,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
931
1107
  readonly advertised: true;
932
1108
  readonly documented: true;
933
1109
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_project_brain";
934
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1110
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
935
1111
  }, {
936
1112
  readonly id: "mcp.local.get_project_context";
937
1113
  readonly name: "get_project_context";
@@ -947,7 +1123,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
947
1123
  readonly advertised: true;
948
1124
  readonly documented: true;
949
1125
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_project_context";
950
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1126
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1127
+ }, {
1128
+ readonly id: "mcp.local.get_project_vision";
1129
+ readonly name: "get_project_vision";
1130
+ readonly summary: "Read a path-only Vision Artifact projection for the current or named local Project Brain without opening artifact bodies.";
1131
+ readonly owner: "youmd-cli";
1132
+ readonly transport: "mcp-local";
1133
+ readonly auth: {
1134
+ readonly kind: "local-user";
1135
+ readonly scopes: readonly [];
1136
+ };
1137
+ readonly maturity: "beta";
1138
+ readonly implemented: true;
1139
+ readonly advertised: true;
1140
+ readonly documented: true;
1141
+ readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_project_vision";
1142
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
951
1143
  }, {
952
1144
  readonly id: "mcp.local.get_remote_status";
953
1145
  readonly name: "get_remote_status";
@@ -963,7 +1155,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
963
1155
  readonly advertised: true;
964
1156
  readonly documented: true;
965
1157
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_remote_status";
966
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1158
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
967
1159
  }, {
968
1160
  readonly id: "mcp.local.get_section";
969
1161
  readonly name: "get_section";
@@ -979,7 +1171,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
979
1171
  readonly advertised: true;
980
1172
  readonly documented: true;
981
1173
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_section";
982
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1174
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
983
1175
  }, {
984
1176
  readonly id: "mcp.local.get_stack_capabilities";
985
1177
  readonly name: "get_stack_capabilities";
@@ -995,7 +1187,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
995
1187
  readonly advertised: true;
996
1188
  readonly documented: true;
997
1189
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_stack_capabilities";
998
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1190
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
999
1191
  }, {
1000
1192
  readonly id: "mcp.local.get_stack_manifest";
1001
1193
  readonly name: "get_stack_manifest";
@@ -1011,7 +1203,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1011
1203
  readonly advertised: true;
1012
1204
  readonly documented: true;
1013
1205
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_stack_manifest";
1014
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1206
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1015
1207
  }, {
1016
1208
  readonly id: "mcp.local.hydrate_portfolio_graph";
1017
1209
  readonly name: "hydrate_portfolio_graph";
@@ -1027,7 +1219,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1027
1219
  readonly advertised: true;
1028
1220
  readonly documented: true;
1029
1221
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.hydrate_portfolio_graph";
1030
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1222
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1031
1223
  }, {
1032
1224
  readonly id: "mcp.local.list_projects";
1033
1225
  readonly name: "list_projects";
@@ -1043,7 +1235,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1043
1235
  readonly advertised: true;
1044
1236
  readonly documented: true;
1045
1237
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.list_projects";
1046
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1238
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1047
1239
  }, {
1048
1240
  readonly id: "mcp.local.list_skills";
1049
1241
  readonly name: "list_skills";
@@ -1059,7 +1251,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1059
1251
  readonly advertised: true;
1060
1252
  readonly documented: true;
1061
1253
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.list_skills";
1062
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1254
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1063
1255
  }, {
1064
1256
  readonly id: "mcp.local.propose_project_brain_update";
1065
1257
  readonly name: "propose_project_brain_update";
@@ -1075,7 +1267,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1075
1267
  readonly advertised: true;
1076
1268
  readonly documented: true;
1077
1269
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.propose_project_brain_update";
1078
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1270
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1079
1271
  }, {
1080
1272
  readonly id: "mcp.local.record_brain_dump";
1081
1273
  readonly name: "record_brain_dump";
@@ -1091,7 +1283,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1091
1283
  readonly advertised: true;
1092
1284
  readonly documented: true;
1093
1285
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.record_brain_dump";
1094
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1286
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1095
1287
  }, {
1096
1288
  readonly id: "mcp.local.remote_machine_run";
1097
1289
  readonly name: "remote_machine_run";
@@ -1107,7 +1299,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1107
1299
  readonly advertised: true;
1108
1300
  readonly documented: true;
1109
1301
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.remote_machine_run";
1110
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1302
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1111
1303
  }, {
1112
1304
  readonly id: "mcp.local.remote_machine_status";
1113
1305
  readonly name: "remote_machine_status";
@@ -1123,7 +1315,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1123
1315
  readonly advertised: true;
1124
1316
  readonly documented: true;
1125
1317
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.remote_machine_status";
1126
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1318
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1127
1319
  }, {
1128
1320
  readonly id: "mcp.local.route_stack_request";
1129
1321
  readonly name: "route_stack_request";
@@ -1139,7 +1331,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1139
1331
  readonly advertised: true;
1140
1332
  readonly documented: true;
1141
1333
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.route_stack_request";
1142
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1334
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1143
1335
  }, {
1144
1336
  readonly id: "mcp.local.search_memories";
1145
1337
  readonly name: "search_memories";
@@ -1155,7 +1347,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1155
1347
  readonly advertised: true;
1156
1348
  readonly documented: true;
1157
1349
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.search_memories";
1158
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1350
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1159
1351
  }, {
1160
1352
  readonly id: "mcp.local.smoke_stack";
1161
1353
  readonly name: "smoke_stack";
@@ -1171,7 +1363,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1171
1363
  readonly advertised: true;
1172
1364
  readonly documented: true;
1173
1365
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.smoke_stack";
1174
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1366
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1175
1367
  }, {
1176
1368
  readonly id: "mcp.local.store_media";
1177
1369
  readonly name: "store_media";
@@ -1187,7 +1379,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1187
1379
  readonly advertised: true;
1188
1380
  readonly documented: true;
1189
1381
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.store_media";
1190
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1382
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1191
1383
  }, {
1192
1384
  readonly id: "mcp.local.update_portfolio_task";
1193
1385
  readonly name: "update_portfolio_task";
@@ -1203,7 +1395,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1203
1395
  readonly advertised: true;
1204
1396
  readonly documented: true;
1205
1397
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.update_portfolio_task";
1206
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1398
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1207
1399
  }, {
1208
1400
  readonly id: "mcp.local.upsert_portfolio_project";
1209
1401
  readonly name: "upsert_portfolio_project";
@@ -1219,7 +1411,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1219
1411
  readonly advertised: true;
1220
1412
  readonly documented: true;
1221
1413
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.upsert_portfolio_project";
1222
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1414
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1223
1415
  }, {
1224
1416
  readonly id: "mcp.local.upsert_portfolio_task";
1225
1417
  readonly name: "upsert_portfolio_task";
@@ -1235,7 +1427,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1235
1427
  readonly advertised: true;
1236
1428
  readonly documented: true;
1237
1429
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.upsert_portfolio_task";
1238
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1430
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1239
1431
  }, {
1240
1432
  readonly id: "mcp.local.use_skill";
1241
1433
  readonly name: "use_skill";
@@ -1251,7 +1443,23 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1251
1443
  readonly advertised: true;
1252
1444
  readonly documented: true;
1253
1445
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.use_skill";
1254
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1446
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1447
+ }, {
1448
+ readonly id: "mcp.local.verify_agent_access_receipt";
1449
+ readonly name: "verify_agent_access_receipt";
1450
+ readonly summary: "Verify an owner receipt's exact status and bindings through local MCP without granting execution authority.";
1451
+ readonly owner: "youmd-cli";
1452
+ readonly transport: "mcp-local";
1453
+ readonly auth: {
1454
+ readonly kind: "local-user";
1455
+ readonly scopes: readonly [];
1456
+ };
1457
+ readonly maturity: "beta";
1458
+ readonly implemented: true;
1459
+ readonly advertised: true;
1460
+ readonly documented: true;
1461
+ readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.verify_agent_access_receipt";
1462
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1255
1463
  }, {
1256
1464
  readonly id: "mcp.local.whoami";
1257
1465
  readonly name: "whoami";
@@ -1267,7 +1475,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1267
1475
  readonly advertised: true;
1268
1476
  readonly documented: true;
1269
1477
  readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.whoami";
1270
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1478
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1271
1479
  }, {
1272
1480
  readonly id: "remote.events.http.publish";
1273
1481
  readonly name: "POST /api/v1/me/remote-agent-events";
@@ -1283,7 +1491,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1283
1491
  readonly advertised: false;
1284
1492
  readonly documented: true;
1285
1493
  readonly handlerRef: "convex/http.ts#POST./api/v1/me/remote-agent-events";
1286
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1494
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1287
1495
  }, {
1288
1496
  readonly id: "remote.events.http.read";
1289
1497
  readonly name: "GET /api/v1/me/remote-agent-events";
@@ -1299,7 +1507,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1299
1507
  readonly advertised: false;
1300
1508
  readonly documented: true;
1301
1509
  readonly handlerRef: "convex/http.ts#GET./api/v1/me/remote-agent-events";
1302
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1510
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1303
1511
  }, {
1304
1512
  readonly id: "tasks.cli.propose-fix";
1305
1513
  readonly name: "tasks propose-fix";
@@ -1315,7 +1523,7 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1315
1523
  readonly advertised: true;
1316
1524
  readonly documented: true;
1317
1525
  readonly handlerRef: "cli/src/commands/tasks.ts#tasksCommand";
1318
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1526
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1319
1527
  }, {
1320
1528
  readonly id: "tasks.cli.validate";
1321
1529
  readonly name: "tasks validate";
@@ -1331,6 +1539,6 @@ export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
1331
1539
  readonly advertised: true;
1332
1540
  readonly documented: true;
1333
1541
  readonly handlerRef: "cli/src/commands/tasks.ts#tasksCommand";
1334
- readonly contractRevision: "you-md/capability-registry/2026-07-15.1";
1542
+ readonly contractRevision: "you-md/capability-registry/2026-08-12.1";
1335
1543
  }];
1336
1544
  //# sourceMappingURL=capability-registry.d.ts.map