youmd 0.10.0 → 0.10.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/commands/brain.d.ts +25 -0
- package/dist/commands/brain.d.ts.map +1 -0
- package/dist/commands/brain.js +683 -0
- package/dist/commands/brain.js.map +1 -0
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +4 -0
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/machine.d.ts +3 -0
- package/dist/commands/machine.d.ts.map +1 -1
- package/dist/commands/machine.js +73 -4
- package/dist/commands/machine.js.map +1 -1
- package/dist/commands/orchestrate.d.ts.map +1 -1
- package/dist/commands/orchestrate.js +4 -3
- package/dist/commands/orchestrate.js.map +1 -1
- package/dist/commands/project.d.ts.map +1 -1
- package/dist/commands/project.js +24 -0
- package/dist/commands/project.js.map +1 -1
- package/dist/commands/remote.d.ts.map +1 -1
- package/dist/commands/remote.js +42 -13
- package/dist/commands/remote.js.map +1 -1
- package/dist/commands/skill.d.ts.map +1 -1
- package/dist/commands/skill.js +2 -0
- package/dist/commands/skill.js.map +1 -1
- package/dist/commands/tasks.d.ts +23 -3
- package/dist/commands/tasks.d.ts.map +1 -1
- package/dist/commands/tasks.js +179 -49
- package/dist/commands/tasks.js.map +1 -1
- package/dist/generated/capability-registry.d.ts +1096 -0
- package/dist/generated/capability-registry.d.ts.map +1 -0
- package/dist/generated/capability-registry.js +1204 -0
- package/dist/generated/capability-registry.js.map +1 -0
- package/dist/index.js +42 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/api.d.ts +84 -0
- package/dist/lib/api.d.ts.map +1 -1
- package/dist/lib/api.js +26 -0
- package/dist/lib/api.js.map +1 -1
- package/dist/lib/brain/adapters.d.ts +34 -0
- package/dist/lib/brain/adapters.d.ts.map +1 -0
- package/dist/lib/brain/adapters.js +362 -0
- package/dist/lib/brain/adapters.js.map +1 -0
- package/dist/lib/brain/apply-control-plane.d.ts +17 -0
- package/dist/lib/brain/apply-control-plane.d.ts.map +1 -0
- package/dist/lib/brain/apply-control-plane.js +117 -0
- package/dist/lib/brain/apply-control-plane.js.map +1 -0
- package/dist/lib/brain/cache.d.ts +25 -0
- package/dist/lib/brain/cache.d.ts.map +1 -0
- package/dist/lib/brain/cache.js +99 -0
- package/dist/lib/brain/cache.js.map +1 -0
- package/dist/lib/brain/canonical.d.ts +5 -0
- package/dist/lib/brain/canonical.d.ts.map +1 -0
- package/dist/lib/brain/canonical.js +38 -0
- package/dist/lib/brain/canonical.js.map +1 -0
- package/dist/lib/brain/discovery.d.ts +9 -0
- package/dist/lib/brain/discovery.d.ts.map +1 -0
- package/dist/lib/brain/discovery.js +560 -0
- package/dist/lib/brain/discovery.js.map +1 -0
- package/dist/lib/brain/index.d.ts +55 -0
- package/dist/lib/brain/index.d.ts.map +1 -0
- package/dist/lib/brain/index.js +384 -0
- package/dist/lib/brain/index.js.map +1 -0
- package/dist/lib/brain/proposal.d.ts +179 -0
- package/dist/lib/brain/proposal.d.ts.map +1 -0
- package/dist/lib/brain/proposal.js +694 -0
- package/dist/lib/brain/proposal.js.map +1 -0
- package/dist/lib/brain/render.d.ts +33 -0
- package/dist/lib/brain/render.d.ts.map +1 -0
- package/dist/lib/brain/render.js +515 -0
- package/dist/lib/brain/render.js.map +1 -0
- package/dist/lib/brain/safe-file.d.ts +110 -0
- package/dist/lib/brain/safe-file.d.ts.map +1 -0
- package/dist/lib/brain/safe-file.js +564 -0
- package/dist/lib/brain/safe-file.js.map +1 -0
- package/dist/lib/brain/safety.d.ts +8 -0
- package/dist/lib/brain/safety.d.ts.map +1 -0
- package/dist/lib/brain/safety.js +42 -0
- package/dist/lib/brain/safety.js.map +1 -0
- package/dist/lib/brain/staged-apply.d.ts +57 -0
- package/dist/lib/brain/staged-apply.d.ts.map +1 -0
- package/dist/lib/brain/staged-apply.js +336 -0
- package/dist/lib/brain/staged-apply.js.map +1 -0
- package/dist/lib/brain/store.d.ts +26 -0
- package/dist/lib/brain/store.d.ts.map +1 -0
- package/dist/lib/brain/store.js +504 -0
- package/dist/lib/brain/store.js.map +1 -0
- package/dist/lib/brain/types.d.ts +160 -0
- package/dist/lib/brain/types.d.ts.map +1 -0
- package/dist/lib/brain/types.js +24 -0
- package/dist/lib/brain/types.js.map +1 -0
- package/dist/lib/config.d.ts +22 -1
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/config.js +70 -14
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/daemon.d.ts +27 -0
- package/dist/lib/daemon.d.ts.map +1 -1
- package/dist/lib/daemon.js +57 -0
- package/dist/lib/daemon.js.map +1 -1
- package/dist/lib/machine-identity.d.ts +16 -0
- package/dist/lib/machine-identity.d.ts.map +1 -0
- package/dist/lib/machine-identity.js +101 -0
- package/dist/lib/machine-identity.js.map +1 -0
- package/dist/lib/orchestrator/loop.d.ts +1 -0
- package/dist/lib/orchestrator/loop.d.ts.map +1 -1
- package/dist/lib/orchestrator/loop.js +16 -0
- package/dist/lib/orchestrator/loop.js.map +1 -1
- package/dist/lib/orchestrator/tools.d.ts +11 -0
- package/dist/lib/orchestrator/tools.d.ts.map +1 -1
- package/dist/lib/orchestrator/tools.js +143 -0
- package/dist/lib/orchestrator/tools.js.map +1 -1
- package/dist/lib/project-strategy.d.ts +38 -0
- package/dist/lib/project-strategy.d.ts.map +1 -1
- package/dist/lib/project-strategy.js +91 -0
- package/dist/lib/project-strategy.js.map +1 -1
- package/dist/lib/projectContext.d.ts +6 -4
- package/dist/lib/projectContext.d.ts.map +1 -1
- package/dist/lib/projectContext.js +19 -17
- package/dist/lib/projectContext.js.map +1 -1
- package/dist/lib/tasksFile.d.ts +27 -32
- package/dist/lib/tasksFile.d.ts.map +1 -1
- package/dist/lib/tasksFile.js +359 -163
- package/dist/lib/tasksFile.js.map +1 -1
- package/dist/mcp/registry.d.ts +8 -2
- package/dist/mcp/registry.d.ts.map +1 -1
- package/dist/mcp/registry.js +189 -2
- package/dist/mcp/registry.js.map +1 -1
- package/dist/mcp/server.d.ts +1 -0
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +3 -2
- package/dist/mcp/server.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,1096 @@
|
|
|
1
|
+
export type AgentCapabilityOwner = "youmd-cli" | "youmd-convex" | "youmd-web";
|
|
2
|
+
export type AgentCapabilityTransport = "cli" | "mcp-local" | "mcp-hosted" | "http" | "convex";
|
|
3
|
+
export type AgentCapabilityAuthKind = "none" | "local-user" | "bearer" | "internal";
|
|
4
|
+
export type AgentCapabilityMaturity = "stable" | "beta" | "planned";
|
|
5
|
+
export interface AgentCapabilityMetadata {
|
|
6
|
+
id: string;
|
|
7
|
+
name: string;
|
|
8
|
+
summary: string;
|
|
9
|
+
owner: AgentCapabilityOwner;
|
|
10
|
+
transport: AgentCapabilityTransport;
|
|
11
|
+
auth: {
|
|
12
|
+
kind: AgentCapabilityAuthKind;
|
|
13
|
+
scopes: readonly string[];
|
|
14
|
+
};
|
|
15
|
+
maturity: AgentCapabilityMaturity;
|
|
16
|
+
implemented: boolean;
|
|
17
|
+
advertised: boolean;
|
|
18
|
+
documented: boolean;
|
|
19
|
+
handlerRef: string | null;
|
|
20
|
+
contractRevision: string;
|
|
21
|
+
}
|
|
22
|
+
export declare const AGENT_CAPABILITY_CONTRACT_REVISION: "you-md/capability-registry/2026-07-10.4";
|
|
23
|
+
export declare const AGENT_CAPABILITY_REGISTRY: readonly [{
|
|
24
|
+
readonly id: "brain.apply.cli.local";
|
|
25
|
+
readonly name: "brain apply";
|
|
26
|
+
readonly summary: "Apply one freshly approved, marker-bounded Project Brain patch through the guarded local host path.";
|
|
27
|
+
readonly owner: "youmd-cli";
|
|
28
|
+
readonly transport: "cli";
|
|
29
|
+
readonly auth: {
|
|
30
|
+
readonly kind: "local-user";
|
|
31
|
+
readonly scopes: readonly ["brain.apply"];
|
|
32
|
+
};
|
|
33
|
+
readonly maturity: "beta";
|
|
34
|
+
readonly implemented: true;
|
|
35
|
+
readonly advertised: false;
|
|
36
|
+
readonly documented: true;
|
|
37
|
+
readonly handlerRef: "cli/src/lib/brain/safe-file.ts#applyProjectBrainSafeFile";
|
|
38
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
39
|
+
}, {
|
|
40
|
+
readonly id: "brain.apply.http.claim";
|
|
41
|
+
readonly name: "POST /api/v1/me/brain/apply/claim";
|
|
42
|
+
readonly summary: "Claim one exact approved Project Brain patch for a trusted local device without transmitting file content.";
|
|
43
|
+
readonly owner: "youmd-convex";
|
|
44
|
+
readonly transport: "http";
|
|
45
|
+
readonly auth: {
|
|
46
|
+
readonly kind: "bearer";
|
|
47
|
+
readonly scopes: readonly ["write:brain"];
|
|
48
|
+
};
|
|
49
|
+
readonly maturity: "beta";
|
|
50
|
+
readonly implemented: true;
|
|
51
|
+
readonly advertised: false;
|
|
52
|
+
readonly documented: true;
|
|
53
|
+
readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/apply/claim";
|
|
54
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
55
|
+
}, {
|
|
56
|
+
readonly id: "brain.apply.http.events";
|
|
57
|
+
readonly name: "POST /api/v1/me/brain/apply/events";
|
|
58
|
+
readonly summary: "Append one hashes-only guarded Project Brain apply lifecycle event for an active claim.";
|
|
59
|
+
readonly owner: "youmd-convex";
|
|
60
|
+
readonly transport: "http";
|
|
61
|
+
readonly auth: {
|
|
62
|
+
readonly kind: "bearer";
|
|
63
|
+
readonly scopes: readonly ["write:brain"];
|
|
64
|
+
};
|
|
65
|
+
readonly maturity: "beta";
|
|
66
|
+
readonly implemented: true;
|
|
67
|
+
readonly advertised: false;
|
|
68
|
+
readonly documented: true;
|
|
69
|
+
readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/apply/events";
|
|
70
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
71
|
+
}, {
|
|
72
|
+
readonly id: "brain.cli.adopt";
|
|
73
|
+
readonly name: "brain adopt";
|
|
74
|
+
readonly summary: "Create a review-only Project Brain descriptor adoption proposal.";
|
|
75
|
+
readonly owner: "youmd-cli";
|
|
76
|
+
readonly transport: "cli";
|
|
77
|
+
readonly auth: {
|
|
78
|
+
readonly kind: "local-user";
|
|
79
|
+
readonly scopes: readonly [];
|
|
80
|
+
};
|
|
81
|
+
readonly maturity: "beta";
|
|
82
|
+
readonly implemented: true;
|
|
83
|
+
readonly advertised: true;
|
|
84
|
+
readonly documented: true;
|
|
85
|
+
readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.adopt";
|
|
86
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
87
|
+
}, {
|
|
88
|
+
readonly id: "brain.cli.map";
|
|
89
|
+
readonly name: "brain map";
|
|
90
|
+
readonly summary: "Render a portable multi-project Brain catalog outside scanned roots.";
|
|
91
|
+
readonly owner: "youmd-cli";
|
|
92
|
+
readonly transport: "cli";
|
|
93
|
+
readonly auth: {
|
|
94
|
+
readonly kind: "local-user";
|
|
95
|
+
readonly scopes: readonly [];
|
|
96
|
+
};
|
|
97
|
+
readonly maturity: "beta";
|
|
98
|
+
readonly implemented: true;
|
|
99
|
+
readonly advertised: true;
|
|
100
|
+
readonly documented: true;
|
|
101
|
+
readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.map";
|
|
102
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
103
|
+
}, {
|
|
104
|
+
readonly id: "brain.cli.propose";
|
|
105
|
+
readonly name: "brain propose";
|
|
106
|
+
readonly summary: "Import validated Project Brain override files as review-only proposals.";
|
|
107
|
+
readonly owner: "youmd-cli";
|
|
108
|
+
readonly transport: "cli";
|
|
109
|
+
readonly auth: {
|
|
110
|
+
readonly kind: "local-user";
|
|
111
|
+
readonly scopes: readonly [];
|
|
112
|
+
};
|
|
113
|
+
readonly maturity: "beta";
|
|
114
|
+
readonly implemented: true;
|
|
115
|
+
readonly advertised: true;
|
|
116
|
+
readonly documented: true;
|
|
117
|
+
readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.propose";
|
|
118
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
119
|
+
}, {
|
|
120
|
+
readonly id: "brain.cli.scan";
|
|
121
|
+
readonly name: "brain scan";
|
|
122
|
+
readonly summary: "Project Brain scan command for local agent workflows.";
|
|
123
|
+
readonly owner: "youmd-cli";
|
|
124
|
+
readonly transport: "cli";
|
|
125
|
+
readonly auth: {
|
|
126
|
+
readonly kind: "local-user";
|
|
127
|
+
readonly scopes: readonly [];
|
|
128
|
+
};
|
|
129
|
+
readonly maturity: "beta";
|
|
130
|
+
readonly implemented: true;
|
|
131
|
+
readonly advertised: true;
|
|
132
|
+
readonly documented: true;
|
|
133
|
+
readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.scan";
|
|
134
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
135
|
+
}, {
|
|
136
|
+
readonly id: "brain.cli.show";
|
|
137
|
+
readonly name: "brain show";
|
|
138
|
+
readonly summary: "Project Brain show command for local agent workflows.";
|
|
139
|
+
readonly owner: "youmd-cli";
|
|
140
|
+
readonly transport: "cli";
|
|
141
|
+
readonly auth: {
|
|
142
|
+
readonly kind: "local-user";
|
|
143
|
+
readonly scopes: readonly [];
|
|
144
|
+
};
|
|
145
|
+
readonly maturity: "beta";
|
|
146
|
+
readonly implemented: true;
|
|
147
|
+
readonly advertised: true;
|
|
148
|
+
readonly documented: true;
|
|
149
|
+
readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.show";
|
|
150
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
151
|
+
}, {
|
|
152
|
+
readonly id: "brain.cli.stage";
|
|
153
|
+
readonly name: "brain stage";
|
|
154
|
+
readonly summary: "Stage one exact proposal, approval, and repository binding for a single guarded native apply correlation.";
|
|
155
|
+
readonly owner: "youmd-cli";
|
|
156
|
+
readonly transport: "cli";
|
|
157
|
+
readonly auth: {
|
|
158
|
+
readonly kind: "local-user";
|
|
159
|
+
readonly scopes: readonly ["brain.apply"];
|
|
160
|
+
};
|
|
161
|
+
readonly maturity: "beta";
|
|
162
|
+
readonly implemented: true;
|
|
163
|
+
readonly advertised: false;
|
|
164
|
+
readonly documented: true;
|
|
165
|
+
readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.stage";
|
|
166
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
167
|
+
}, {
|
|
168
|
+
readonly id: "brain.cli.validate";
|
|
169
|
+
readonly name: "brain validate";
|
|
170
|
+
readonly summary: "Project Brain validate command for local agent workflows.";
|
|
171
|
+
readonly owner: "youmd-cli";
|
|
172
|
+
readonly transport: "cli";
|
|
173
|
+
readonly auth: {
|
|
174
|
+
readonly kind: "local-user";
|
|
175
|
+
readonly scopes: readonly [];
|
|
176
|
+
};
|
|
177
|
+
readonly maturity: "beta";
|
|
178
|
+
readonly implemented: true;
|
|
179
|
+
readonly advertised: true;
|
|
180
|
+
readonly documented: true;
|
|
181
|
+
readonly handlerRef: "cli/src/commands/brain.ts#brainCommand.validate";
|
|
182
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
183
|
+
}, {
|
|
184
|
+
readonly id: "brain.convex.project.get";
|
|
185
|
+
readonly name: "projectBrain.getProject";
|
|
186
|
+
readonly summary: "Read one owner-scoped Project Brain projection.";
|
|
187
|
+
readonly owner: "youmd-convex";
|
|
188
|
+
readonly transport: "convex";
|
|
189
|
+
readonly auth: {
|
|
190
|
+
readonly kind: "internal";
|
|
191
|
+
readonly scopes: readonly ["read:private"];
|
|
192
|
+
};
|
|
193
|
+
readonly maturity: "beta";
|
|
194
|
+
readonly implemented: true;
|
|
195
|
+
readonly advertised: false;
|
|
196
|
+
readonly documented: true;
|
|
197
|
+
readonly handlerRef: "convex/projectBrain.ts#getProject";
|
|
198
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
199
|
+
}, {
|
|
200
|
+
readonly id: "brain.convex.projections.backfill";
|
|
201
|
+
readonly name: "projectBrain.backfillProjectionHeads";
|
|
202
|
+
readonly summary: "Backfill Project Brain projection heads.";
|
|
203
|
+
readonly owner: "youmd-convex";
|
|
204
|
+
readonly transport: "convex";
|
|
205
|
+
readonly auth: {
|
|
206
|
+
readonly kind: "internal";
|
|
207
|
+
readonly scopes: readonly ["write:brain"];
|
|
208
|
+
};
|
|
209
|
+
readonly maturity: "beta";
|
|
210
|
+
readonly implemented: true;
|
|
211
|
+
readonly advertised: false;
|
|
212
|
+
readonly documented: true;
|
|
213
|
+
readonly handlerRef: "convex/projectBrain.ts#backfillProjectionHeads";
|
|
214
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
215
|
+
}, {
|
|
216
|
+
readonly id: "brain.convex.projections.compare";
|
|
217
|
+
readonly name: "projectBrain.comparePortfolioProjection";
|
|
218
|
+
readonly summary: "Compare evidence and portfolio projection revisions.";
|
|
219
|
+
readonly owner: "youmd-convex";
|
|
220
|
+
readonly transport: "convex";
|
|
221
|
+
readonly auth: {
|
|
222
|
+
readonly kind: "internal";
|
|
223
|
+
readonly scopes: readonly ["read:private"];
|
|
224
|
+
};
|
|
225
|
+
readonly maturity: "beta";
|
|
226
|
+
readonly implemented: true;
|
|
227
|
+
readonly advertised: false;
|
|
228
|
+
readonly documented: true;
|
|
229
|
+
readonly handlerRef: "convex/projectBrain.ts#comparePortfolioProjection";
|
|
230
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
231
|
+
}, {
|
|
232
|
+
readonly id: "brain.convex.projects.list";
|
|
233
|
+
readonly name: "projectBrain.listProjects";
|
|
234
|
+
readonly summary: "List owner-scoped Project Brain projections.";
|
|
235
|
+
readonly owner: "youmd-convex";
|
|
236
|
+
readonly transport: "convex";
|
|
237
|
+
readonly auth: {
|
|
238
|
+
readonly kind: "internal";
|
|
239
|
+
readonly scopes: readonly ["read:private"];
|
|
240
|
+
};
|
|
241
|
+
readonly maturity: "beta";
|
|
242
|
+
readonly implemented: true;
|
|
243
|
+
readonly advertised: false;
|
|
244
|
+
readonly documented: true;
|
|
245
|
+
readonly handlerRef: "convex/projectBrain.ts#listProjects";
|
|
246
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
247
|
+
}, {
|
|
248
|
+
readonly id: "brain.convex.snapshot.project";
|
|
249
|
+
readonly name: "projectBrain.projectSnapshot";
|
|
250
|
+
readonly summary: "Project one snapshot into portfolio entities.";
|
|
251
|
+
readonly owner: "youmd-convex";
|
|
252
|
+
readonly transport: "convex";
|
|
253
|
+
readonly auth: {
|
|
254
|
+
readonly kind: "internal";
|
|
255
|
+
readonly scopes: readonly ["write:brain"];
|
|
256
|
+
};
|
|
257
|
+
readonly maturity: "beta";
|
|
258
|
+
readonly implemented: true;
|
|
259
|
+
readonly advertised: false;
|
|
260
|
+
readonly documented: true;
|
|
261
|
+
readonly handlerRef: "convex/projectBrain.ts#projectSnapshot";
|
|
262
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
263
|
+
}, {
|
|
264
|
+
readonly id: "brain.convex.snapshots.ingest";
|
|
265
|
+
readonly name: "projectBrain.ingestSnapshots";
|
|
266
|
+
readonly summary: "Persist append-only Project Brain snapshot evidence.";
|
|
267
|
+
readonly owner: "youmd-convex";
|
|
268
|
+
readonly transport: "convex";
|
|
269
|
+
readonly auth: {
|
|
270
|
+
readonly kind: "internal";
|
|
271
|
+
readonly scopes: readonly ["write:brain"];
|
|
272
|
+
};
|
|
273
|
+
readonly maturity: "beta";
|
|
274
|
+
readonly implemented: true;
|
|
275
|
+
readonly advertised: false;
|
|
276
|
+
readonly documented: true;
|
|
277
|
+
readonly handlerRef: "convex/projectBrain.ts#ingestSnapshots";
|
|
278
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
279
|
+
}, {
|
|
280
|
+
readonly id: "brain.http.projects.get";
|
|
281
|
+
readonly name: "GET /api/v1/me/brain/projects/:slug";
|
|
282
|
+
readonly summary: "Read one synchronized Project Brain project.";
|
|
283
|
+
readonly owner: "youmd-convex";
|
|
284
|
+
readonly transport: "http";
|
|
285
|
+
readonly auth: {
|
|
286
|
+
readonly kind: "bearer";
|
|
287
|
+
readonly scopes: readonly ["read:private"];
|
|
288
|
+
};
|
|
289
|
+
readonly maturity: "beta";
|
|
290
|
+
readonly implemented: true;
|
|
291
|
+
readonly advertised: true;
|
|
292
|
+
readonly documented: true;
|
|
293
|
+
readonly handlerRef: "convex/http.ts#GET./api/v1/me/brain/projects/:slug";
|
|
294
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
295
|
+
}, {
|
|
296
|
+
readonly id: "brain.http.projects.list";
|
|
297
|
+
readonly name: "GET /api/v1/me/brain/projects";
|
|
298
|
+
readonly summary: "List synchronized Project Brain projects.";
|
|
299
|
+
readonly owner: "youmd-convex";
|
|
300
|
+
readonly transport: "http";
|
|
301
|
+
readonly auth: {
|
|
302
|
+
readonly kind: "bearer";
|
|
303
|
+
readonly scopes: readonly ["read:private"];
|
|
304
|
+
};
|
|
305
|
+
readonly maturity: "beta";
|
|
306
|
+
readonly implemented: true;
|
|
307
|
+
readonly advertised: true;
|
|
308
|
+
readonly documented: true;
|
|
309
|
+
readonly handlerRef: "convex/http.ts#GET./api/v1/me/brain/projects";
|
|
310
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
311
|
+
}, {
|
|
312
|
+
readonly id: "brain.http.snapshots.ingest";
|
|
313
|
+
readonly name: "POST /api/v1/me/brain/snapshots";
|
|
314
|
+
readonly summary: "Ingest validated Project Brain snapshot evidence.";
|
|
315
|
+
readonly owner: "youmd-convex";
|
|
316
|
+
readonly transport: "http";
|
|
317
|
+
readonly auth: {
|
|
318
|
+
readonly kind: "bearer";
|
|
319
|
+
readonly scopes: readonly ["write:brain"];
|
|
320
|
+
};
|
|
321
|
+
readonly maturity: "beta";
|
|
322
|
+
readonly implemented: true;
|
|
323
|
+
readonly advertised: true;
|
|
324
|
+
readonly documented: true;
|
|
325
|
+
readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/snapshots";
|
|
326
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
327
|
+
}, {
|
|
328
|
+
readonly id: "brain.proposal.http.create";
|
|
329
|
+
readonly name: "POST /api/v1/me/brain/proposals";
|
|
330
|
+
readonly summary: "Create an exact Project Brain patch proposal.";
|
|
331
|
+
readonly owner: "youmd-convex";
|
|
332
|
+
readonly transport: "http";
|
|
333
|
+
readonly auth: {
|
|
334
|
+
readonly kind: "bearer";
|
|
335
|
+
readonly scopes: readonly ["write:brain"];
|
|
336
|
+
};
|
|
337
|
+
readonly maturity: "beta";
|
|
338
|
+
readonly implemented: true;
|
|
339
|
+
readonly advertised: true;
|
|
340
|
+
readonly documented: true;
|
|
341
|
+
readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/proposals";
|
|
342
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
343
|
+
}, {
|
|
344
|
+
readonly id: "brain.proposal.http.resolve";
|
|
345
|
+
readonly name: "POST /api/v1/me/brain/proposals/:id/decision";
|
|
346
|
+
readonly summary: "Approve or deny a scoped Project Brain proposal.";
|
|
347
|
+
readonly owner: "youmd-convex";
|
|
348
|
+
readonly transport: "http";
|
|
349
|
+
readonly auth: {
|
|
350
|
+
readonly kind: "bearer";
|
|
351
|
+
readonly scopes: readonly ["approve:brain"];
|
|
352
|
+
};
|
|
353
|
+
readonly maturity: "beta";
|
|
354
|
+
readonly implemented: true;
|
|
355
|
+
readonly advertised: true;
|
|
356
|
+
readonly documented: true;
|
|
357
|
+
readonly handlerRef: "convex/http.ts#POST./api/v1/me/brain/proposals/:id/decision";
|
|
358
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
359
|
+
}, {
|
|
360
|
+
readonly id: "brain.proposal.mcp.create";
|
|
361
|
+
readonly name: "propose_project_brain_update";
|
|
362
|
+
readonly summary: "Create an exact Project Brain patch proposal.";
|
|
363
|
+
readonly owner: "youmd-convex";
|
|
364
|
+
readonly transport: "mcp-hosted";
|
|
365
|
+
readonly auth: {
|
|
366
|
+
readonly kind: "bearer";
|
|
367
|
+
readonly scopes: readonly ["write:brain"];
|
|
368
|
+
};
|
|
369
|
+
readonly maturity: "beta";
|
|
370
|
+
readonly implemented: true;
|
|
371
|
+
readonly advertised: true;
|
|
372
|
+
readonly documented: true;
|
|
373
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.propose_project_brain_update";
|
|
374
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
375
|
+
}, {
|
|
376
|
+
readonly id: "brain.proposal.mcp.resolve";
|
|
377
|
+
readonly name: "resolve_project_brain_proposal";
|
|
378
|
+
readonly summary: "Approve or deny a scoped Project Brain proposal.";
|
|
379
|
+
readonly owner: "youmd-convex";
|
|
380
|
+
readonly transport: "mcp-hosted";
|
|
381
|
+
readonly auth: {
|
|
382
|
+
readonly kind: "bearer";
|
|
383
|
+
readonly scopes: readonly ["approve:brain"];
|
|
384
|
+
};
|
|
385
|
+
readonly maturity: "beta";
|
|
386
|
+
readonly implemented: true;
|
|
387
|
+
readonly advertised: true;
|
|
388
|
+
readonly documented: true;
|
|
389
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.resolve_project_brain_proposal";
|
|
390
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
391
|
+
}, {
|
|
392
|
+
readonly id: "brain.recover.cli.local";
|
|
393
|
+
readonly name: "brain recover";
|
|
394
|
+
readonly summary: "Recover one interrupted guarded Project Brain apply from its encrypted local rollback journal.";
|
|
395
|
+
readonly owner: "youmd-cli";
|
|
396
|
+
readonly transport: "cli";
|
|
397
|
+
readonly auth: {
|
|
398
|
+
readonly kind: "local-user";
|
|
399
|
+
readonly scopes: readonly ["brain.recover"];
|
|
400
|
+
};
|
|
401
|
+
readonly maturity: "beta";
|
|
402
|
+
readonly implemented: true;
|
|
403
|
+
readonly advertised: false;
|
|
404
|
+
readonly documented: true;
|
|
405
|
+
readonly handlerRef: "cli/src/lib/brain/safe-file.ts#recoverProjectBrainSafeFile";
|
|
406
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
407
|
+
}, {
|
|
408
|
+
readonly id: "mcp.hosted.ask_public_profile";
|
|
409
|
+
readonly name: "ask_public_profile";
|
|
410
|
+
readonly summary: "Hosted MCP capability for ask public profile.";
|
|
411
|
+
readonly owner: "youmd-convex";
|
|
412
|
+
readonly transport: "mcp-hosted";
|
|
413
|
+
readonly auth: {
|
|
414
|
+
readonly kind: "none";
|
|
415
|
+
readonly scopes: readonly [];
|
|
416
|
+
};
|
|
417
|
+
readonly maturity: "stable";
|
|
418
|
+
readonly implemented: true;
|
|
419
|
+
readonly advertised: true;
|
|
420
|
+
readonly documented: true;
|
|
421
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.ask_public_profile";
|
|
422
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
423
|
+
}, {
|
|
424
|
+
readonly id: "mcp.hosted.get_agent_brief";
|
|
425
|
+
readonly name: "get_agent_brief";
|
|
426
|
+
readonly summary: "Hosted MCP capability for get agent brief.";
|
|
427
|
+
readonly owner: "youmd-convex";
|
|
428
|
+
readonly transport: "mcp-hosted";
|
|
429
|
+
readonly auth: {
|
|
430
|
+
readonly kind: "bearer";
|
|
431
|
+
readonly scopes: readonly ["read:private"];
|
|
432
|
+
};
|
|
433
|
+
readonly maturity: "stable";
|
|
434
|
+
readonly implemented: true;
|
|
435
|
+
readonly advertised: true;
|
|
436
|
+
readonly documented: true;
|
|
437
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_brief";
|
|
438
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
439
|
+
}, {
|
|
440
|
+
readonly id: "mcp.hosted.get_agent_stack_inventory";
|
|
441
|
+
readonly name: "get_agent_stack_inventory";
|
|
442
|
+
readonly summary: "Hosted MCP capability for get agent stack inventory.";
|
|
443
|
+
readonly owner: "youmd-convex";
|
|
444
|
+
readonly transport: "mcp-hosted";
|
|
445
|
+
readonly auth: {
|
|
446
|
+
readonly kind: "bearer";
|
|
447
|
+
readonly scopes: readonly ["read:private"];
|
|
448
|
+
};
|
|
449
|
+
readonly maturity: "stable";
|
|
450
|
+
readonly implemented: true;
|
|
451
|
+
readonly advertised: true;
|
|
452
|
+
readonly documented: true;
|
|
453
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_agent_stack_inventory";
|
|
454
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
455
|
+
}, {
|
|
456
|
+
readonly id: "mcp.hosted.get_identity";
|
|
457
|
+
readonly name: "get_identity";
|
|
458
|
+
readonly summary: "Hosted MCP capability for get identity.";
|
|
459
|
+
readonly owner: "youmd-convex";
|
|
460
|
+
readonly transport: "mcp-hosted";
|
|
461
|
+
readonly auth: {
|
|
462
|
+
readonly kind: "none";
|
|
463
|
+
readonly scopes: readonly [];
|
|
464
|
+
};
|
|
465
|
+
readonly maturity: "stable";
|
|
466
|
+
readonly implemented: true;
|
|
467
|
+
readonly advertised: true;
|
|
468
|
+
readonly documented: true;
|
|
469
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_identity";
|
|
470
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
471
|
+
}, {
|
|
472
|
+
readonly id: "mcp.hosted.get_my_identity";
|
|
473
|
+
readonly name: "get_my_identity";
|
|
474
|
+
readonly summary: "Hosted MCP capability for get my identity.";
|
|
475
|
+
readonly owner: "youmd-convex";
|
|
476
|
+
readonly transport: "mcp-hosted";
|
|
477
|
+
readonly auth: {
|
|
478
|
+
readonly kind: "bearer";
|
|
479
|
+
readonly scopes: readonly ["read:private"];
|
|
480
|
+
};
|
|
481
|
+
readonly maturity: "stable";
|
|
482
|
+
readonly implemented: true;
|
|
483
|
+
readonly advertised: true;
|
|
484
|
+
readonly documented: true;
|
|
485
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_my_identity";
|
|
486
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
487
|
+
}, {
|
|
488
|
+
readonly id: "mcp.hosted.get_my_stacks";
|
|
489
|
+
readonly name: "get_my_stacks";
|
|
490
|
+
readonly summary: "Hosted MCP capability for get my stacks.";
|
|
491
|
+
readonly owner: "youmd-convex";
|
|
492
|
+
readonly transport: "mcp-hosted";
|
|
493
|
+
readonly auth: {
|
|
494
|
+
readonly kind: "bearer";
|
|
495
|
+
readonly scopes: readonly ["read:private"];
|
|
496
|
+
};
|
|
497
|
+
readonly maturity: "stable";
|
|
498
|
+
readonly implemented: true;
|
|
499
|
+
readonly advertised: true;
|
|
500
|
+
readonly documented: true;
|
|
501
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_my_stacks";
|
|
502
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
503
|
+
}, {
|
|
504
|
+
readonly id: "mcp.hosted.get_project_brain";
|
|
505
|
+
readonly name: "get_project_brain";
|
|
506
|
+
readonly summary: "Hosted MCP capability for get project brain.";
|
|
507
|
+
readonly owner: "youmd-convex";
|
|
508
|
+
readonly transport: "mcp-hosted";
|
|
509
|
+
readonly auth: {
|
|
510
|
+
readonly kind: "bearer";
|
|
511
|
+
readonly scopes: readonly ["read:private"];
|
|
512
|
+
};
|
|
513
|
+
readonly maturity: "beta";
|
|
514
|
+
readonly implemented: true;
|
|
515
|
+
readonly advertised: true;
|
|
516
|
+
readonly documented: true;
|
|
517
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_project_brain";
|
|
518
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
519
|
+
}, {
|
|
520
|
+
readonly id: "mcp.hosted.get_repo_file";
|
|
521
|
+
readonly name: "get_repo_file";
|
|
522
|
+
readonly summary: "Hosted MCP capability for get repo file.";
|
|
523
|
+
readonly owner: "youmd-convex";
|
|
524
|
+
readonly transport: "mcp-hosted";
|
|
525
|
+
readonly auth: {
|
|
526
|
+
readonly kind: "bearer";
|
|
527
|
+
readonly scopes: readonly ["read:private"];
|
|
528
|
+
};
|
|
529
|
+
readonly maturity: "stable";
|
|
530
|
+
readonly implemented: true;
|
|
531
|
+
readonly advertised: true;
|
|
532
|
+
readonly documented: true;
|
|
533
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_repo_file";
|
|
534
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
535
|
+
}, {
|
|
536
|
+
readonly id: "mcp.hosted.get_synced_brain_graph";
|
|
537
|
+
readonly name: "get_synced_brain_graph";
|
|
538
|
+
readonly summary: "Hosted MCP capability for get synced brain graph.";
|
|
539
|
+
readonly owner: "youmd-convex";
|
|
540
|
+
readonly transport: "mcp-hosted";
|
|
541
|
+
readonly auth: {
|
|
542
|
+
readonly kind: "bearer";
|
|
543
|
+
readonly scopes: readonly ["read:private"];
|
|
544
|
+
};
|
|
545
|
+
readonly maturity: "stable";
|
|
546
|
+
readonly implemented: true;
|
|
547
|
+
readonly advertised: true;
|
|
548
|
+
readonly documented: true;
|
|
549
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.get_synced_brain_graph";
|
|
550
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
551
|
+
}, {
|
|
552
|
+
readonly id: "mcp.hosted.report_skill_outcome";
|
|
553
|
+
readonly name: "report_skill_outcome";
|
|
554
|
+
readonly summary: "Hosted MCP capability for report skill outcome.";
|
|
555
|
+
readonly owner: "youmd-convex";
|
|
556
|
+
readonly transport: "mcp-hosted";
|
|
557
|
+
readonly auth: {
|
|
558
|
+
readonly kind: "bearer";
|
|
559
|
+
readonly scopes: readonly ["write:memories"];
|
|
560
|
+
};
|
|
561
|
+
readonly maturity: "stable";
|
|
562
|
+
readonly implemented: true;
|
|
563
|
+
readonly advertised: true;
|
|
564
|
+
readonly documented: true;
|
|
565
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.report_skill_outcome";
|
|
566
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
567
|
+
}, {
|
|
568
|
+
readonly id: "mcp.hosted.search_memories";
|
|
569
|
+
readonly name: "search_memories";
|
|
570
|
+
readonly summary: "Hosted MCP capability for search memories.";
|
|
571
|
+
readonly owner: "youmd-convex";
|
|
572
|
+
readonly transport: "mcp-hosted";
|
|
573
|
+
readonly auth: {
|
|
574
|
+
readonly kind: "bearer";
|
|
575
|
+
readonly scopes: readonly ["read:private"];
|
|
576
|
+
};
|
|
577
|
+
readonly maturity: "stable";
|
|
578
|
+
readonly implemented: true;
|
|
579
|
+
readonly advertised: true;
|
|
580
|
+
readonly documented: true;
|
|
581
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.search_memories";
|
|
582
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
583
|
+
}, {
|
|
584
|
+
readonly id: "mcp.hosted.search_profiles";
|
|
585
|
+
readonly name: "search_profiles";
|
|
586
|
+
readonly summary: "Hosted MCP capability for search profiles.";
|
|
587
|
+
readonly owner: "youmd-convex";
|
|
588
|
+
readonly transport: "mcp-hosted";
|
|
589
|
+
readonly auth: {
|
|
590
|
+
readonly kind: "none";
|
|
591
|
+
readonly scopes: readonly [];
|
|
592
|
+
};
|
|
593
|
+
readonly maturity: "stable";
|
|
594
|
+
readonly implemented: true;
|
|
595
|
+
readonly advertised: true;
|
|
596
|
+
readonly documented: true;
|
|
597
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.search_profiles";
|
|
598
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
599
|
+
}, {
|
|
600
|
+
readonly id: "mcp.hosted.whoami";
|
|
601
|
+
readonly name: "whoami";
|
|
602
|
+
readonly summary: "Hosted MCP capability for whoami.";
|
|
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: "stable";
|
|
610
|
+
readonly implemented: true;
|
|
611
|
+
readonly advertised: true;
|
|
612
|
+
readonly documented: true;
|
|
613
|
+
readonly handlerRef: "convex/lib/mcpRegistry.ts#HOSTED_MCP_TOOLS.whoami";
|
|
614
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
615
|
+
}, {
|
|
616
|
+
readonly id: "mcp.local.add_memory";
|
|
617
|
+
readonly name: "add_memory";
|
|
618
|
+
readonly summary: "Local MCP capability for add memory.";
|
|
619
|
+
readonly owner: "youmd-cli";
|
|
620
|
+
readonly transport: "mcp-local";
|
|
621
|
+
readonly auth: {
|
|
622
|
+
readonly kind: "local-user";
|
|
623
|
+
readonly scopes: readonly [];
|
|
624
|
+
};
|
|
625
|
+
readonly maturity: "stable";
|
|
626
|
+
readonly implemented: true;
|
|
627
|
+
readonly advertised: true;
|
|
628
|
+
readonly documented: true;
|
|
629
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.add_memory";
|
|
630
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
631
|
+
}, {
|
|
632
|
+
readonly id: "mcp.local.add_source";
|
|
633
|
+
readonly name: "add_source";
|
|
634
|
+
readonly summary: "Local MCP capability for add source.";
|
|
635
|
+
readonly owner: "youmd-cli";
|
|
636
|
+
readonly transport: "mcp-local";
|
|
637
|
+
readonly auth: {
|
|
638
|
+
readonly kind: "local-user";
|
|
639
|
+
readonly scopes: readonly [];
|
|
640
|
+
};
|
|
641
|
+
readonly maturity: "stable";
|
|
642
|
+
readonly implemented: true;
|
|
643
|
+
readonly advertised: true;
|
|
644
|
+
readonly documented: true;
|
|
645
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.add_source";
|
|
646
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
647
|
+
}, {
|
|
648
|
+
readonly id: "mcp.local.create_context_link";
|
|
649
|
+
readonly name: "create_context_link";
|
|
650
|
+
readonly summary: "Local MCP capability for create context link.";
|
|
651
|
+
readonly owner: "youmd-cli";
|
|
652
|
+
readonly transport: "mcp-local";
|
|
653
|
+
readonly auth: {
|
|
654
|
+
readonly kind: "local-user";
|
|
655
|
+
readonly scopes: readonly [];
|
|
656
|
+
};
|
|
657
|
+
readonly maturity: "stable";
|
|
658
|
+
readonly implemented: true;
|
|
659
|
+
readonly advertised: true;
|
|
660
|
+
readonly documented: true;
|
|
661
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.create_context_link";
|
|
662
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
663
|
+
}, {
|
|
664
|
+
readonly id: "mcp.local.get_activity_log";
|
|
665
|
+
readonly name: "get_activity_log";
|
|
666
|
+
readonly summary: "Local MCP capability for get activity log.";
|
|
667
|
+
readonly owner: "youmd-cli";
|
|
668
|
+
readonly transport: "mcp-local";
|
|
669
|
+
readonly auth: {
|
|
670
|
+
readonly kind: "local-user";
|
|
671
|
+
readonly scopes: readonly [];
|
|
672
|
+
};
|
|
673
|
+
readonly maturity: "stable";
|
|
674
|
+
readonly implemented: true;
|
|
675
|
+
readonly advertised: true;
|
|
676
|
+
readonly documented: true;
|
|
677
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_activity_log";
|
|
678
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
679
|
+
}, {
|
|
680
|
+
readonly id: "mcp.local.get_agent_stack_inventory";
|
|
681
|
+
readonly name: "get_agent_stack_inventory";
|
|
682
|
+
readonly summary: "Local MCP capability for get agent stack inventory.";
|
|
683
|
+
readonly owner: "youmd-cli";
|
|
684
|
+
readonly transport: "mcp-local";
|
|
685
|
+
readonly auth: {
|
|
686
|
+
readonly kind: "local-user";
|
|
687
|
+
readonly scopes: readonly [];
|
|
688
|
+
};
|
|
689
|
+
readonly maturity: "stable";
|
|
690
|
+
readonly implemented: true;
|
|
691
|
+
readonly advertised: true;
|
|
692
|
+
readonly documented: true;
|
|
693
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_agent_stack_inventory";
|
|
694
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
695
|
+
}, {
|
|
696
|
+
readonly id: "mcp.local.get_identity";
|
|
697
|
+
readonly name: "get_identity";
|
|
698
|
+
readonly summary: "Local MCP capability for get identity.";
|
|
699
|
+
readonly owner: "youmd-cli";
|
|
700
|
+
readonly transport: "mcp-local";
|
|
701
|
+
readonly auth: {
|
|
702
|
+
readonly kind: "local-user";
|
|
703
|
+
readonly scopes: readonly [];
|
|
704
|
+
};
|
|
705
|
+
readonly maturity: "stable";
|
|
706
|
+
readonly implemented: true;
|
|
707
|
+
readonly advertised: true;
|
|
708
|
+
readonly documented: true;
|
|
709
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_identity";
|
|
710
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
711
|
+
}, {
|
|
712
|
+
readonly id: "mcp.local.get_media";
|
|
713
|
+
readonly name: "get_media";
|
|
714
|
+
readonly summary: "Local MCP capability for get media.";
|
|
715
|
+
readonly owner: "youmd-cli";
|
|
716
|
+
readonly transport: "mcp-local";
|
|
717
|
+
readonly auth: {
|
|
718
|
+
readonly kind: "local-user";
|
|
719
|
+
readonly scopes: readonly [];
|
|
720
|
+
};
|
|
721
|
+
readonly maturity: "stable";
|
|
722
|
+
readonly implemented: true;
|
|
723
|
+
readonly advertised: true;
|
|
724
|
+
readonly documented: true;
|
|
725
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_media";
|
|
726
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
727
|
+
}, {
|
|
728
|
+
readonly id: "mcp.local.get_private_context";
|
|
729
|
+
readonly name: "get_private_context";
|
|
730
|
+
readonly summary: "Local MCP capability for get private context.";
|
|
731
|
+
readonly owner: "youmd-cli";
|
|
732
|
+
readonly transport: "mcp-local";
|
|
733
|
+
readonly auth: {
|
|
734
|
+
readonly kind: "local-user";
|
|
735
|
+
readonly scopes: readonly [];
|
|
736
|
+
};
|
|
737
|
+
readonly maturity: "stable";
|
|
738
|
+
readonly implemented: true;
|
|
739
|
+
readonly advertised: true;
|
|
740
|
+
readonly documented: true;
|
|
741
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_private_context";
|
|
742
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
743
|
+
}, {
|
|
744
|
+
readonly id: "mcp.local.get_project_brain";
|
|
745
|
+
readonly name: "get_project_brain";
|
|
746
|
+
readonly summary: "Local MCP capability for get project brain.";
|
|
747
|
+
readonly owner: "youmd-cli";
|
|
748
|
+
readonly transport: "mcp-local";
|
|
749
|
+
readonly auth: {
|
|
750
|
+
readonly kind: "local-user";
|
|
751
|
+
readonly scopes: readonly [];
|
|
752
|
+
};
|
|
753
|
+
readonly maturity: "beta";
|
|
754
|
+
readonly implemented: true;
|
|
755
|
+
readonly advertised: true;
|
|
756
|
+
readonly documented: true;
|
|
757
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_project_brain";
|
|
758
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
759
|
+
}, {
|
|
760
|
+
readonly id: "mcp.local.get_project_context";
|
|
761
|
+
readonly name: "get_project_context";
|
|
762
|
+
readonly summary: "Local MCP capability for get project context.";
|
|
763
|
+
readonly owner: "youmd-cli";
|
|
764
|
+
readonly transport: "mcp-local";
|
|
765
|
+
readonly auth: {
|
|
766
|
+
readonly kind: "local-user";
|
|
767
|
+
readonly scopes: readonly [];
|
|
768
|
+
};
|
|
769
|
+
readonly maturity: "stable";
|
|
770
|
+
readonly implemented: true;
|
|
771
|
+
readonly advertised: true;
|
|
772
|
+
readonly documented: true;
|
|
773
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_project_context";
|
|
774
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
775
|
+
}, {
|
|
776
|
+
readonly id: "mcp.local.get_remote_status";
|
|
777
|
+
readonly name: "get_remote_status";
|
|
778
|
+
readonly summary: "Local MCP capability for get remote status.";
|
|
779
|
+
readonly owner: "youmd-cli";
|
|
780
|
+
readonly transport: "mcp-local";
|
|
781
|
+
readonly auth: {
|
|
782
|
+
readonly kind: "local-user";
|
|
783
|
+
readonly scopes: readonly [];
|
|
784
|
+
};
|
|
785
|
+
readonly maturity: "stable";
|
|
786
|
+
readonly implemented: true;
|
|
787
|
+
readonly advertised: true;
|
|
788
|
+
readonly documented: true;
|
|
789
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_remote_status";
|
|
790
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
791
|
+
}, {
|
|
792
|
+
readonly id: "mcp.local.get_section";
|
|
793
|
+
readonly name: "get_section";
|
|
794
|
+
readonly summary: "Local MCP capability for get section.";
|
|
795
|
+
readonly owner: "youmd-cli";
|
|
796
|
+
readonly transport: "mcp-local";
|
|
797
|
+
readonly auth: {
|
|
798
|
+
readonly kind: "local-user";
|
|
799
|
+
readonly scopes: readonly [];
|
|
800
|
+
};
|
|
801
|
+
readonly maturity: "stable";
|
|
802
|
+
readonly implemented: true;
|
|
803
|
+
readonly advertised: true;
|
|
804
|
+
readonly documented: true;
|
|
805
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_section";
|
|
806
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
807
|
+
}, {
|
|
808
|
+
readonly id: "mcp.local.get_stack_capabilities";
|
|
809
|
+
readonly name: "get_stack_capabilities";
|
|
810
|
+
readonly summary: "Local MCP capability for get stack capabilities.";
|
|
811
|
+
readonly owner: "youmd-cli";
|
|
812
|
+
readonly transport: "mcp-local";
|
|
813
|
+
readonly auth: {
|
|
814
|
+
readonly kind: "local-user";
|
|
815
|
+
readonly scopes: readonly [];
|
|
816
|
+
};
|
|
817
|
+
readonly maturity: "stable";
|
|
818
|
+
readonly implemented: true;
|
|
819
|
+
readonly advertised: true;
|
|
820
|
+
readonly documented: true;
|
|
821
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_stack_capabilities";
|
|
822
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
823
|
+
}, {
|
|
824
|
+
readonly id: "mcp.local.get_stack_manifest";
|
|
825
|
+
readonly name: "get_stack_manifest";
|
|
826
|
+
readonly summary: "Local MCP capability for get stack manifest.";
|
|
827
|
+
readonly owner: "youmd-cli";
|
|
828
|
+
readonly transport: "mcp-local";
|
|
829
|
+
readonly auth: {
|
|
830
|
+
readonly kind: "local-user";
|
|
831
|
+
readonly scopes: readonly [];
|
|
832
|
+
};
|
|
833
|
+
readonly maturity: "stable";
|
|
834
|
+
readonly implemented: true;
|
|
835
|
+
readonly advertised: true;
|
|
836
|
+
readonly documented: true;
|
|
837
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.get_stack_manifest";
|
|
838
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
839
|
+
}, {
|
|
840
|
+
readonly id: "mcp.local.hydrate_portfolio_graph";
|
|
841
|
+
readonly name: "hydrate_portfolio_graph";
|
|
842
|
+
readonly summary: "Local MCP capability for hydrate portfolio graph.";
|
|
843
|
+
readonly owner: "youmd-cli";
|
|
844
|
+
readonly transport: "mcp-local";
|
|
845
|
+
readonly auth: {
|
|
846
|
+
readonly kind: "local-user";
|
|
847
|
+
readonly scopes: readonly [];
|
|
848
|
+
};
|
|
849
|
+
readonly maturity: "stable";
|
|
850
|
+
readonly implemented: true;
|
|
851
|
+
readonly advertised: true;
|
|
852
|
+
readonly documented: true;
|
|
853
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.hydrate_portfolio_graph";
|
|
854
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
855
|
+
}, {
|
|
856
|
+
readonly id: "mcp.local.list_projects";
|
|
857
|
+
readonly name: "list_projects";
|
|
858
|
+
readonly summary: "Local MCP capability for list projects.";
|
|
859
|
+
readonly owner: "youmd-cli";
|
|
860
|
+
readonly transport: "mcp-local";
|
|
861
|
+
readonly auth: {
|
|
862
|
+
readonly kind: "local-user";
|
|
863
|
+
readonly scopes: readonly [];
|
|
864
|
+
};
|
|
865
|
+
readonly maturity: "stable";
|
|
866
|
+
readonly implemented: true;
|
|
867
|
+
readonly advertised: true;
|
|
868
|
+
readonly documented: true;
|
|
869
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.list_projects";
|
|
870
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
871
|
+
}, {
|
|
872
|
+
readonly id: "mcp.local.list_skills";
|
|
873
|
+
readonly name: "list_skills";
|
|
874
|
+
readonly summary: "Local MCP capability for list skills.";
|
|
875
|
+
readonly owner: "youmd-cli";
|
|
876
|
+
readonly transport: "mcp-local";
|
|
877
|
+
readonly auth: {
|
|
878
|
+
readonly kind: "local-user";
|
|
879
|
+
readonly scopes: readonly [];
|
|
880
|
+
};
|
|
881
|
+
readonly maturity: "stable";
|
|
882
|
+
readonly implemented: true;
|
|
883
|
+
readonly advertised: true;
|
|
884
|
+
readonly documented: true;
|
|
885
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.list_skills";
|
|
886
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
887
|
+
}, {
|
|
888
|
+
readonly id: "mcp.local.propose_project_brain_update";
|
|
889
|
+
readonly name: "propose_project_brain_update";
|
|
890
|
+
readonly summary: "Create review-only local Project Brain adoption or override proposals.";
|
|
891
|
+
readonly owner: "youmd-cli";
|
|
892
|
+
readonly transport: "mcp-local";
|
|
893
|
+
readonly auth: {
|
|
894
|
+
readonly kind: "local-user";
|
|
895
|
+
readonly scopes: readonly [];
|
|
896
|
+
};
|
|
897
|
+
readonly maturity: "beta";
|
|
898
|
+
readonly implemented: true;
|
|
899
|
+
readonly advertised: true;
|
|
900
|
+
readonly documented: true;
|
|
901
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.propose_project_brain_update";
|
|
902
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
903
|
+
}, {
|
|
904
|
+
readonly id: "mcp.local.record_brain_dump";
|
|
905
|
+
readonly name: "record_brain_dump";
|
|
906
|
+
readonly summary: "Local MCP capability for record brain dump.";
|
|
907
|
+
readonly owner: "youmd-cli";
|
|
908
|
+
readonly transport: "mcp-local";
|
|
909
|
+
readonly auth: {
|
|
910
|
+
readonly kind: "local-user";
|
|
911
|
+
readonly scopes: readonly [];
|
|
912
|
+
};
|
|
913
|
+
readonly maturity: "stable";
|
|
914
|
+
readonly implemented: true;
|
|
915
|
+
readonly advertised: true;
|
|
916
|
+
readonly documented: true;
|
|
917
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.record_brain_dump";
|
|
918
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
919
|
+
}, {
|
|
920
|
+
readonly id: "mcp.local.remote_machine_run";
|
|
921
|
+
readonly name: "remote_machine_run";
|
|
922
|
+
readonly summary: "Local MCP capability for remote machine run.";
|
|
923
|
+
readonly owner: "youmd-cli";
|
|
924
|
+
readonly transport: "mcp-local";
|
|
925
|
+
readonly auth: {
|
|
926
|
+
readonly kind: "local-user";
|
|
927
|
+
readonly scopes: readonly [];
|
|
928
|
+
};
|
|
929
|
+
readonly maturity: "stable";
|
|
930
|
+
readonly implemented: true;
|
|
931
|
+
readonly advertised: true;
|
|
932
|
+
readonly documented: true;
|
|
933
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.remote_machine_run";
|
|
934
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
935
|
+
}, {
|
|
936
|
+
readonly id: "mcp.local.remote_machine_status";
|
|
937
|
+
readonly name: "remote_machine_status";
|
|
938
|
+
readonly summary: "Local MCP capability for remote machine status.";
|
|
939
|
+
readonly owner: "youmd-cli";
|
|
940
|
+
readonly transport: "mcp-local";
|
|
941
|
+
readonly auth: {
|
|
942
|
+
readonly kind: "local-user";
|
|
943
|
+
readonly scopes: readonly [];
|
|
944
|
+
};
|
|
945
|
+
readonly maturity: "stable";
|
|
946
|
+
readonly implemented: true;
|
|
947
|
+
readonly advertised: true;
|
|
948
|
+
readonly documented: true;
|
|
949
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.remote_machine_status";
|
|
950
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
951
|
+
}, {
|
|
952
|
+
readonly id: "mcp.local.route_stack_request";
|
|
953
|
+
readonly name: "route_stack_request";
|
|
954
|
+
readonly summary: "Local MCP capability for route stack request.";
|
|
955
|
+
readonly owner: "youmd-cli";
|
|
956
|
+
readonly transport: "mcp-local";
|
|
957
|
+
readonly auth: {
|
|
958
|
+
readonly kind: "local-user";
|
|
959
|
+
readonly scopes: readonly [];
|
|
960
|
+
};
|
|
961
|
+
readonly maturity: "stable";
|
|
962
|
+
readonly implemented: true;
|
|
963
|
+
readonly advertised: true;
|
|
964
|
+
readonly documented: true;
|
|
965
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.route_stack_request";
|
|
966
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
967
|
+
}, {
|
|
968
|
+
readonly id: "mcp.local.search_memories";
|
|
969
|
+
readonly name: "search_memories";
|
|
970
|
+
readonly summary: "Local MCP capability for search memories.";
|
|
971
|
+
readonly owner: "youmd-cli";
|
|
972
|
+
readonly transport: "mcp-local";
|
|
973
|
+
readonly auth: {
|
|
974
|
+
readonly kind: "local-user";
|
|
975
|
+
readonly scopes: readonly [];
|
|
976
|
+
};
|
|
977
|
+
readonly maturity: "stable";
|
|
978
|
+
readonly implemented: true;
|
|
979
|
+
readonly advertised: true;
|
|
980
|
+
readonly documented: true;
|
|
981
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.search_memories";
|
|
982
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
983
|
+
}, {
|
|
984
|
+
readonly id: "mcp.local.smoke_stack";
|
|
985
|
+
readonly name: "smoke_stack";
|
|
986
|
+
readonly summary: "Local MCP capability for smoke stack.";
|
|
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: "stable";
|
|
994
|
+
readonly implemented: true;
|
|
995
|
+
readonly advertised: true;
|
|
996
|
+
readonly documented: true;
|
|
997
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.smoke_stack";
|
|
998
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
999
|
+
}, {
|
|
1000
|
+
readonly id: "mcp.local.store_media";
|
|
1001
|
+
readonly name: "store_media";
|
|
1002
|
+
readonly summary: "Local MCP capability for store media.";
|
|
1003
|
+
readonly owner: "youmd-cli";
|
|
1004
|
+
readonly transport: "mcp-local";
|
|
1005
|
+
readonly auth: {
|
|
1006
|
+
readonly kind: "local-user";
|
|
1007
|
+
readonly scopes: readonly [];
|
|
1008
|
+
};
|
|
1009
|
+
readonly maturity: "stable";
|
|
1010
|
+
readonly implemented: true;
|
|
1011
|
+
readonly advertised: true;
|
|
1012
|
+
readonly documented: true;
|
|
1013
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.store_media";
|
|
1014
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
1015
|
+
}, {
|
|
1016
|
+
readonly id: "mcp.local.update_portfolio_task";
|
|
1017
|
+
readonly name: "update_portfolio_task";
|
|
1018
|
+
readonly summary: "Local MCP capability for update portfolio task.";
|
|
1019
|
+
readonly owner: "youmd-cli";
|
|
1020
|
+
readonly transport: "mcp-local";
|
|
1021
|
+
readonly auth: {
|
|
1022
|
+
readonly kind: "local-user";
|
|
1023
|
+
readonly scopes: readonly [];
|
|
1024
|
+
};
|
|
1025
|
+
readonly maturity: "stable";
|
|
1026
|
+
readonly implemented: true;
|
|
1027
|
+
readonly advertised: true;
|
|
1028
|
+
readonly documented: true;
|
|
1029
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.update_portfolio_task";
|
|
1030
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
1031
|
+
}, {
|
|
1032
|
+
readonly id: "mcp.local.upsert_portfolio_project";
|
|
1033
|
+
readonly name: "upsert_portfolio_project";
|
|
1034
|
+
readonly summary: "Local MCP capability for upsert portfolio project.";
|
|
1035
|
+
readonly owner: "youmd-cli";
|
|
1036
|
+
readonly transport: "mcp-local";
|
|
1037
|
+
readonly auth: {
|
|
1038
|
+
readonly kind: "local-user";
|
|
1039
|
+
readonly scopes: readonly [];
|
|
1040
|
+
};
|
|
1041
|
+
readonly maturity: "stable";
|
|
1042
|
+
readonly implemented: true;
|
|
1043
|
+
readonly advertised: true;
|
|
1044
|
+
readonly documented: true;
|
|
1045
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.upsert_portfolio_project";
|
|
1046
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
1047
|
+
}, {
|
|
1048
|
+
readonly id: "mcp.local.upsert_portfolio_task";
|
|
1049
|
+
readonly name: "upsert_portfolio_task";
|
|
1050
|
+
readonly summary: "Local MCP capability for upsert portfolio task.";
|
|
1051
|
+
readonly owner: "youmd-cli";
|
|
1052
|
+
readonly transport: "mcp-local";
|
|
1053
|
+
readonly auth: {
|
|
1054
|
+
readonly kind: "local-user";
|
|
1055
|
+
readonly scopes: readonly [];
|
|
1056
|
+
};
|
|
1057
|
+
readonly maturity: "stable";
|
|
1058
|
+
readonly implemented: true;
|
|
1059
|
+
readonly advertised: true;
|
|
1060
|
+
readonly documented: true;
|
|
1061
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.upsert_portfolio_task";
|
|
1062
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
1063
|
+
}, {
|
|
1064
|
+
readonly id: "mcp.local.use_skill";
|
|
1065
|
+
readonly name: "use_skill";
|
|
1066
|
+
readonly summary: "Local MCP capability for use skill.";
|
|
1067
|
+
readonly owner: "youmd-cli";
|
|
1068
|
+
readonly transport: "mcp-local";
|
|
1069
|
+
readonly auth: {
|
|
1070
|
+
readonly kind: "local-user";
|
|
1071
|
+
readonly scopes: readonly [];
|
|
1072
|
+
};
|
|
1073
|
+
readonly maturity: "stable";
|
|
1074
|
+
readonly implemented: true;
|
|
1075
|
+
readonly advertised: true;
|
|
1076
|
+
readonly documented: true;
|
|
1077
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.use_skill";
|
|
1078
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
1079
|
+
}, {
|
|
1080
|
+
readonly id: "mcp.local.whoami";
|
|
1081
|
+
readonly name: "whoami";
|
|
1082
|
+
readonly summary: "Local MCP capability for whoami.";
|
|
1083
|
+
readonly owner: "youmd-cli";
|
|
1084
|
+
readonly transport: "mcp-local";
|
|
1085
|
+
readonly auth: {
|
|
1086
|
+
readonly kind: "local-user";
|
|
1087
|
+
readonly scopes: readonly [];
|
|
1088
|
+
};
|
|
1089
|
+
readonly maturity: "stable";
|
|
1090
|
+
readonly implemented: true;
|
|
1091
|
+
readonly advertised: true;
|
|
1092
|
+
readonly documented: true;
|
|
1093
|
+
readonly handlerRef: "cli/src/mcp/registry.ts#CLI_MCP_TOOLS.whoami";
|
|
1094
|
+
readonly contractRevision: "you-md/capability-registry/2026-07-10.4";
|
|
1095
|
+
}];
|
|
1096
|
+
//# sourceMappingURL=capability-registry.d.ts.map
|