llm-orchestrator 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +14 -0
- package/.claude-plugin/plugin.json +19 -0
- package/COMPATIBILITY.md +27 -0
- package/IMPLEMENTATION.md +26 -0
- package/LICENSE +31 -0
- package/NOTICE +17 -0
- package/README.md +291 -0
- package/SKILL.md +125 -0
- package/adapters/agents.mjs +46 -0
- package/adapters/claude/index.mjs +9 -0
- package/adapters/codex/index.mjs +15 -0
- package/adapters/commands.mjs +117 -0
- package/adapters/kilo/index.mjs +5 -0
- package/adapters/opencode/index.mjs +5 -0
- package/bin/attribution-check.mjs +136 -0
- package/bin/cli-options.mjs +90 -0
- package/bin/discover-models.mjs +271 -0
- package/bin/doctor.mjs +191 -0
- package/bin/install.mjs +48 -0
- package/bin/llm-orchestrator.mjs +103 -0
- package/bin/model-thinking-report.mjs +165 -0
- package/bin/render.mjs +22 -0
- package/bin/route.mjs +139 -0
- package/bin/uninstall.mjs +15 -0
- package/lib/adapter-renderer.mjs +114 -0
- package/lib/capability-resolver.mjs +343 -0
- package/lib/dispatch-contract.mjs +583 -0
- package/lib/first-run.mjs +299 -0
- package/lib/harness.mjs +6 -0
- package/lib/installation.mjs +550 -0
- package/lib/project-discovery.mjs +434 -0
- package/lib/router.mjs +660 -0
- package/lib/tool-discovery.mjs +162 -0
- package/models/example-model-inventory.json +82 -0
- package/models/model-thinking-data.json +580 -0
- package/models/model-thinking-matrix.md +157 -0
- package/models/top-models.json +1299 -0
- package/package.json +65 -0
- package/policies/capabilities.md +144 -0
- package/policies/cleanup.md +51 -0
- package/policies/dispatch.md +284 -0
- package/policies/execution.md +116 -0
- package/policies/questions.md +75 -0
- package/policies/routing.md +677 -0
- package/policies/state.md +85 -0
- package/policies/verification.md +72 -0
- package/protocol.md +162 -0
- package/registries/agent-roles.json +1 -0
- package/registries/capabilities.json +58 -0
- package/registries/core-profile.json +183 -0
- package/registries/preferred-tools.json +595 -0
- package/registries/routing-matrix.json +394 -0
- package/registries/task-mappings.json +259 -0
- package/schemas/agent-roles.schema.json +1 -0
- package/schemas/capability-contract.schema.json +209 -0
- package/schemas/installation-manifest.schema.json +57 -0
- package/schemas/project-profile.schema.json +70 -0
- package/schemas/routing-matrix.schema.json +237 -0
- package/schemas/tool-inventory.schema.json +127 -0
- package/schemas/top-models.schema.json +235 -0
- package/skills/orchestrate-core/SKILL.md +18 -0
- package/workflows/bug-fix.md +59 -0
- package/workflows/config.md +57 -0
- package/workflows/deploy.md +57 -0
- package/workflows/feature.md +61 -0
- package/workflows/incident.md +61 -0
- package/workflows/investigation.md +62 -0
- package/workflows/refactor.md +53 -0
- package/workflows/research.md +61 -0
- package/workflows/review.md +58 -0
|
@@ -0,0 +1,595 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_attribution": "llm-orchestrator · created by Bogdan-Gabriel Torcescu · https://www.linkedin.com/in/bogdantorcescu/ · keep this credit when copying or deriving",
|
|
3
|
+
"version": 2,
|
|
4
|
+
"tools": [
|
|
5
|
+
{
|
|
6
|
+
"id": "mempalace",
|
|
7
|
+
"kind": "mcp",
|
|
8
|
+
"capabilities": [
|
|
9
|
+
"memory.recall",
|
|
10
|
+
"memory.checkpoint"
|
|
11
|
+
],
|
|
12
|
+
"scope": "user",
|
|
13
|
+
"source": "preferred core profile",
|
|
14
|
+
"display_name": "MemPalace",
|
|
15
|
+
"recommendation_kind": "product",
|
|
16
|
+
"installable": true,
|
|
17
|
+
"install": "claude mcp add mempalace -- npx -y mempalace-mcp"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "native-memory",
|
|
21
|
+
"kind": "native_tool",
|
|
22
|
+
"capabilities": [
|
|
23
|
+
"memory.recall",
|
|
24
|
+
"memory.checkpoint"
|
|
25
|
+
],
|
|
26
|
+
"scope": "harness",
|
|
27
|
+
"source": "native fallback"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "skill-discovery",
|
|
31
|
+
"aliases": [
|
|
32
|
+
"find-skills"
|
|
33
|
+
],
|
|
34
|
+
"kind": "skill",
|
|
35
|
+
"capabilities": [
|
|
36
|
+
"skill.check"
|
|
37
|
+
],
|
|
38
|
+
"scope": "user",
|
|
39
|
+
"source": "preferred core profile",
|
|
40
|
+
"display_name": "Skill discovery",
|
|
41
|
+
"recommendation_kind": "product",
|
|
42
|
+
"installable": true
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "harness-native-question",
|
|
46
|
+
"kind": "native_tool",
|
|
47
|
+
"capabilities": [
|
|
48
|
+
"user.native_question"
|
|
49
|
+
],
|
|
50
|
+
"scope": "harness",
|
|
51
|
+
"source": "preferred core profile",
|
|
52
|
+
"display_name": "Harness-native question mechanism",
|
|
53
|
+
"notes": "AskUserQuestion (Claude Code), request_user_input or update_plan + one explicit question (Codex), question (OpenCode), ask_followup_question (Kilo)."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "single-explicit-message",
|
|
57
|
+
"kind": "native_tool",
|
|
58
|
+
"capabilities": [
|
|
59
|
+
"user.native_question"
|
|
60
|
+
],
|
|
61
|
+
"scope": "harness",
|
|
62
|
+
"source": "native fallback",
|
|
63
|
+
"notes": "One explicit single-message question with the same structure. A fallback, never the default."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "native-skill-check",
|
|
67
|
+
"kind": "native_tool",
|
|
68
|
+
"capabilities": [
|
|
69
|
+
"skill.check"
|
|
70
|
+
],
|
|
71
|
+
"scope": "harness",
|
|
72
|
+
"source": "native fallback"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "tool-search",
|
|
76
|
+
"kind": "native_tool",
|
|
77
|
+
"capabilities": [
|
|
78
|
+
"tool.discovery"
|
|
79
|
+
],
|
|
80
|
+
"scope": "harness",
|
|
81
|
+
"source": "native tool search"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "verification-before-completion",
|
|
85
|
+
"kind": "skill",
|
|
86
|
+
"capabilities": [
|
|
87
|
+
"verification.checks"
|
|
88
|
+
],
|
|
89
|
+
"scope": "user",
|
|
90
|
+
"source": "preferred verification implementation",
|
|
91
|
+
"display_name": "Verification before completion",
|
|
92
|
+
"recommendation_kind": "product",
|
|
93
|
+
"installable": true,
|
|
94
|
+
"install": "llm-orchestrator install --with-skill verification-before-completion"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id": "production-telemetry-collector",
|
|
98
|
+
"kind": "agent_role",
|
|
99
|
+
"capabilities": [
|
|
100
|
+
"incident.telemetry_first"
|
|
101
|
+
],
|
|
102
|
+
"scope": "harness",
|
|
103
|
+
"source": "specialist role"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "incident-orchestration",
|
|
107
|
+
"kind": "skill",
|
|
108
|
+
"capabilities": [
|
|
109
|
+
"incident.protocol_order"
|
|
110
|
+
],
|
|
111
|
+
"scope": "user",
|
|
112
|
+
"source": "preferred incident implementation",
|
|
113
|
+
"display_name": "Incident orchestration",
|
|
114
|
+
"recommendation_kind": "product",
|
|
115
|
+
"installable": true
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "route-data-flow-tracer",
|
|
119
|
+
"kind": "agent_role",
|
|
120
|
+
"capabilities": [
|
|
121
|
+
"code.locate"
|
|
122
|
+
],
|
|
123
|
+
"scope": "harness",
|
|
124
|
+
"source": "specialist role"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id": "adversarial-skeptic",
|
|
128
|
+
"kind": "agent_role",
|
|
129
|
+
"capabilities": [
|
|
130
|
+
"review.adversarial"
|
|
131
|
+
],
|
|
132
|
+
"scope": "harness",
|
|
133
|
+
"source": "specialist role"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "serena",
|
|
137
|
+
"kind": "mcp",
|
|
138
|
+
"capabilities": [
|
|
139
|
+
"code.semantic_edit"
|
|
140
|
+
],
|
|
141
|
+
"scope": "user",
|
|
142
|
+
"source": "preferred semantic-edit implementation",
|
|
143
|
+
"display_name": "Serena",
|
|
144
|
+
"recommendation_kind": "product",
|
|
145
|
+
"installable": true
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "caveman-cavecrew-investigator",
|
|
149
|
+
"kind": "agent_role",
|
|
150
|
+
"capabilities": [
|
|
151
|
+
"code.locate"
|
|
152
|
+
],
|
|
153
|
+
"scope": "harness",
|
|
154
|
+
"source": "caveman crew role"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "caveman-cavecrew-builder",
|
|
158
|
+
"kind": "agent_role",
|
|
159
|
+
"capabilities": [
|
|
160
|
+
"code.locate",
|
|
161
|
+
"refactor.preservation"
|
|
162
|
+
],
|
|
163
|
+
"scope": "harness",
|
|
164
|
+
"source": "caveman crew role"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"id": "caveman-cavecrew-reviewer",
|
|
168
|
+
"kind": "agent_role",
|
|
169
|
+
"capabilities": [
|
|
170
|
+
"review.independent"
|
|
171
|
+
],
|
|
172
|
+
"scope": "harness",
|
|
173
|
+
"source": "caveman crew role"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"id": "design-system",
|
|
177
|
+
"kind": "skill",
|
|
178
|
+
"capabilities": [
|
|
179
|
+
"ui.design_system"
|
|
180
|
+
],
|
|
181
|
+
"scope": "project",
|
|
182
|
+
"source": "preferred UI implementation",
|
|
183
|
+
"display_name": "Design system",
|
|
184
|
+
"recommendation_kind": "product",
|
|
185
|
+
"installable": true
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "ui-styling",
|
|
189
|
+
"kind": "skill",
|
|
190
|
+
"capabilities": [
|
|
191
|
+
"ui.design_system"
|
|
192
|
+
],
|
|
193
|
+
"scope": "project",
|
|
194
|
+
"source": "preferred UI implementation"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"id": "stripe-best-practices",
|
|
198
|
+
"kind": "skill",
|
|
199
|
+
"capabilities": [
|
|
200
|
+
"billing.provider_evidence"
|
|
201
|
+
],
|
|
202
|
+
"scope": "project",
|
|
203
|
+
"source": "preferred billing implementation"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"id": "cypilot-pr-review",
|
|
207
|
+
"kind": "skill",
|
|
208
|
+
"capabilities": [
|
|
209
|
+
"traceability.cypilot",
|
|
210
|
+
"review.independent"
|
|
211
|
+
],
|
|
212
|
+
"scope": "project",
|
|
213
|
+
"source": "project traceability tool"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": "db-migration-author",
|
|
217
|
+
"kind": "agent_role",
|
|
218
|
+
"capabilities": [
|
|
219
|
+
"config.migration_author",
|
|
220
|
+
"database.migration_checks"
|
|
221
|
+
],
|
|
222
|
+
"scope": "harness",
|
|
223
|
+
"source": "specialist role"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "xcodebuildmcp",
|
|
227
|
+
"kind": "mcp",
|
|
228
|
+
"capabilities": [
|
|
229
|
+
"mobile.platform_evidence"
|
|
230
|
+
],
|
|
231
|
+
"scope": "user",
|
|
232
|
+
"source": "preferred iOS implementation",
|
|
233
|
+
"display_name": "XcodeBuildMCP",
|
|
234
|
+
"recommendation_kind": "product",
|
|
235
|
+
"installable": true,
|
|
236
|
+
"platforms": [
|
|
237
|
+
"ios"
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "cloudflare-builds",
|
|
242
|
+
"kind": "mcp",
|
|
243
|
+
"capabilities": [
|
|
244
|
+
"deployment.authorized_target"
|
|
245
|
+
],
|
|
246
|
+
"scope": "user",
|
|
247
|
+
"source": "preferred edge-deploy implementation",
|
|
248
|
+
"display_name": "Cloudflare Builds",
|
|
249
|
+
"recommendation_kind": "product",
|
|
250
|
+
"installable": true
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"id": "feature-dev-code-architect",
|
|
254
|
+
"kind": "agent_role",
|
|
255
|
+
"capabilities": [
|
|
256
|
+
"workflow.plan"
|
|
257
|
+
],
|
|
258
|
+
"scope": "harness",
|
|
259
|
+
"source": "specialist role"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "caveman",
|
|
263
|
+
"kind": "skill",
|
|
264
|
+
"capabilities": [
|
|
265
|
+
"communication.concise"
|
|
266
|
+
],
|
|
267
|
+
"scope": "user",
|
|
268
|
+
"source": "preferred core profile",
|
|
269
|
+
"display_name": "Caveman",
|
|
270
|
+
"recommendation_kind": "product",
|
|
271
|
+
"installable": true,
|
|
272
|
+
"install": "llm-orchestrator install --with-skill caveman"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "native-concise-policy",
|
|
276
|
+
"kind": "native_tool",
|
|
277
|
+
"capabilities": [
|
|
278
|
+
"communication.concise"
|
|
279
|
+
],
|
|
280
|
+
"scope": "harness",
|
|
281
|
+
"source": "native fallback"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"id": "superpowers-workflows",
|
|
285
|
+
"aliases": [
|
|
286
|
+
"superpowers",
|
|
287
|
+
"using-superpowers"
|
|
288
|
+
],
|
|
289
|
+
"kind": "workflow",
|
|
290
|
+
"capabilities": [
|
|
291
|
+
"workflow.selection",
|
|
292
|
+
"workflow.design",
|
|
293
|
+
"workflow.plan",
|
|
294
|
+
"workflow.tdd",
|
|
295
|
+
"workflow.debug",
|
|
296
|
+
"workflow.review",
|
|
297
|
+
"verification.checks"
|
|
298
|
+
],
|
|
299
|
+
"scope": "user",
|
|
300
|
+
"source": "preferred core profile",
|
|
301
|
+
"display_name": "Superpowers",
|
|
302
|
+
"recommendation_kind": "product",
|
|
303
|
+
"installable": true,
|
|
304
|
+
"install": "npx -y superpowers install"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "native-workflow-selection",
|
|
308
|
+
"kind": "native_tool",
|
|
309
|
+
"capabilities": [
|
|
310
|
+
"workflow.selection",
|
|
311
|
+
"workflow.design",
|
|
312
|
+
"workflow.plan",
|
|
313
|
+
"workflow.tdd",
|
|
314
|
+
"workflow.debug",
|
|
315
|
+
"workflow.review",
|
|
316
|
+
"verification.checks"
|
|
317
|
+
],
|
|
318
|
+
"scope": "harness",
|
|
319
|
+
"source": "native fallback"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"id": "rtk",
|
|
323
|
+
"kind": "cli",
|
|
324
|
+
"capabilities": [
|
|
325
|
+
"shell.rtk"
|
|
326
|
+
],
|
|
327
|
+
"scope": "project",
|
|
328
|
+
"source": "preferred core profile",
|
|
329
|
+
"display_name": "RTK",
|
|
330
|
+
"recommendation_kind": "product",
|
|
331
|
+
"installable": true,
|
|
332
|
+
"install": "cargo install rtk"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"id": "native-shell-wrapper",
|
|
336
|
+
"kind": "native_tool",
|
|
337
|
+
"capabilities": [
|
|
338
|
+
"shell.rtk"
|
|
339
|
+
],
|
|
340
|
+
"scope": "harness",
|
|
341
|
+
"source": "native fallback"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"id": "sequential-thinking",
|
|
345
|
+
"aliases": [
|
|
346
|
+
"sequentialthinking"
|
|
347
|
+
],
|
|
348
|
+
"kind": "mcp",
|
|
349
|
+
"capabilities": [
|
|
350
|
+
"reasoning.checkpoints"
|
|
351
|
+
],
|
|
352
|
+
"scope": "user",
|
|
353
|
+
"source": "preferred core profile",
|
|
354
|
+
"display_name": "Sequential Thinking",
|
|
355
|
+
"recommendation_kind": "product",
|
|
356
|
+
"installable": true,
|
|
357
|
+
"install": "claude mcp add sequential-thinking -- npx -y @modelcontextprotocol/server-sequential-thinking"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": "native-decision-checkpoints",
|
|
361
|
+
"kind": "native_tool",
|
|
362
|
+
"capabilities": [
|
|
363
|
+
"reasoning.checkpoints"
|
|
364
|
+
],
|
|
365
|
+
"scope": "harness",
|
|
366
|
+
"source": "native fallback"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"id": "exa-search",
|
|
370
|
+
"aliases": [
|
|
371
|
+
"exa"
|
|
372
|
+
],
|
|
373
|
+
"kind": "mcp",
|
|
374
|
+
"capabilities": [
|
|
375
|
+
"research.retrieve",
|
|
376
|
+
"research.provenance",
|
|
377
|
+
"research.validation"
|
|
378
|
+
],
|
|
379
|
+
"scope": "user",
|
|
380
|
+
"source": "preferred core profile",
|
|
381
|
+
"display_name": "Exa Search",
|
|
382
|
+
"recommendation_kind": "product",
|
|
383
|
+
"installable": true,
|
|
384
|
+
"install": "claude mcp add exa -- npx -y exa-mcp-server"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"id": "native-web",
|
|
388
|
+
"kind": "native_tool",
|
|
389
|
+
"capabilities": [
|
|
390
|
+
"research.retrieve",
|
|
391
|
+
"research.provenance",
|
|
392
|
+
"research.validation",
|
|
393
|
+
"docs.current"
|
|
394
|
+
],
|
|
395
|
+
"scope": "harness",
|
|
396
|
+
"source": "native research fallback"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"id": "context7",
|
|
400
|
+
"kind": "mcp",
|
|
401
|
+
"capabilities": [
|
|
402
|
+
"docs.current"
|
|
403
|
+
],
|
|
404
|
+
"scope": "user",
|
|
405
|
+
"source": "preferred documentation implementation",
|
|
406
|
+
"display_name": "Context7",
|
|
407
|
+
"recommendation_kind": "product",
|
|
408
|
+
"installable": true,
|
|
409
|
+
"install": "claude mcp add context7 -- npx -y @upstash/context7-mcp"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"id": "project-test-runner",
|
|
413
|
+
"kind": "cli",
|
|
414
|
+
"capabilities": [
|
|
415
|
+
"test.behavioral",
|
|
416
|
+
"refactor.preservation",
|
|
417
|
+
"database.migration_checks",
|
|
418
|
+
"verification.checks"
|
|
419
|
+
],
|
|
420
|
+
"scope": "project",
|
|
421
|
+
"source": "project command",
|
|
422
|
+
"display_name": "Project test runner",
|
|
423
|
+
"recommendation_kind": "capability_gap",
|
|
424
|
+
"installable": false
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "playwright",
|
|
428
|
+
"kind": "mcp",
|
|
429
|
+
"capabilities": [
|
|
430
|
+
"browser.inspect",
|
|
431
|
+
"browser.interact",
|
|
432
|
+
"browser.capture"
|
|
433
|
+
],
|
|
434
|
+
"scope": "project",
|
|
435
|
+
"source": "preferred browser implementation",
|
|
436
|
+
"display_name": "Playwright",
|
|
437
|
+
"recommendation_kind": "product",
|
|
438
|
+
"installable": true
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"id": "native-browser",
|
|
442
|
+
"kind": "native_tool",
|
|
443
|
+
"capabilities": [
|
|
444
|
+
"browser.inspect",
|
|
445
|
+
"browser.interact",
|
|
446
|
+
"browser.capture"
|
|
447
|
+
],
|
|
448
|
+
"scope": "harness",
|
|
449
|
+
"source": "native browser fallback"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"id": "ios-debugger-agent",
|
|
453
|
+
"kind": "skill",
|
|
454
|
+
"capabilities": [
|
|
455
|
+
"mobile.platform_evidence"
|
|
456
|
+
],
|
|
457
|
+
"scope": "project",
|
|
458
|
+
"source": "preferred iOS implementation",
|
|
459
|
+
"platforms": [
|
|
460
|
+
"ios"
|
|
461
|
+
]
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"id": "android-performance",
|
|
465
|
+
"kind": "skill",
|
|
466
|
+
"capabilities": [
|
|
467
|
+
"mobile.platform_evidence"
|
|
468
|
+
],
|
|
469
|
+
"scope": "project",
|
|
470
|
+
"source": "preferred Android implementation",
|
|
471
|
+
"platforms": [
|
|
472
|
+
"android"
|
|
473
|
+
]
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"id": "mobile-platform-cli",
|
|
477
|
+
"kind": "cli",
|
|
478
|
+
"capabilities": [
|
|
479
|
+
"mobile.platform_evidence"
|
|
480
|
+
],
|
|
481
|
+
"scope": "project",
|
|
482
|
+
"source": "platform CLI fallback"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"id": "billing-provider-api",
|
|
486
|
+
"kind": "mcp",
|
|
487
|
+
"capabilities": [
|
|
488
|
+
"billing.provider_evidence"
|
|
489
|
+
],
|
|
490
|
+
"scope": "user",
|
|
491
|
+
"source": "authorized provider API",
|
|
492
|
+
"display_name": "Authorized billing-provider evidence",
|
|
493
|
+
"recommendation_kind": "capability_gap",
|
|
494
|
+
"installable": false
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"id": "push-provider-api",
|
|
498
|
+
"kind": "mcp",
|
|
499
|
+
"capabilities": [
|
|
500
|
+
"push.provider_evidence"
|
|
501
|
+
],
|
|
502
|
+
"scope": "user",
|
|
503
|
+
"source": "authorized provider API"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"id": "db-client",
|
|
507
|
+
"kind": "cli",
|
|
508
|
+
"capabilities": [
|
|
509
|
+
"database.schema_provenance",
|
|
510
|
+
"database.migration_checks"
|
|
511
|
+
],
|
|
512
|
+
"scope": "project",
|
|
513
|
+
"source": "database fallback"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"id": "db-concurrency-specialist",
|
|
517
|
+
"kind": "agent_role",
|
|
518
|
+
"capabilities": [
|
|
519
|
+
"concurrency.review"
|
|
520
|
+
],
|
|
521
|
+
"scope": "harness",
|
|
522
|
+
"source": "specialist role"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"id": "gh",
|
|
526
|
+
"kind": "cli",
|
|
527
|
+
"capabilities": [
|
|
528
|
+
"forge.remote"
|
|
529
|
+
],
|
|
530
|
+
"scope": "project",
|
|
531
|
+
"source": "forge CLI fallback"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"id": "independent-reviewer",
|
|
535
|
+
"kind": "agent_role",
|
|
536
|
+
"capabilities": [
|
|
537
|
+
"review.independent"
|
|
538
|
+
],
|
|
539
|
+
"scope": "harness",
|
|
540
|
+
"source": "independent reviewer"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"id": "provider-webhook-specialist",
|
|
544
|
+
"kind": "agent_role",
|
|
545
|
+
"capabilities": [
|
|
546
|
+
"review.independent"
|
|
547
|
+
],
|
|
548
|
+
"scope": "harness",
|
|
549
|
+
"source": "specialist role"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"id": "harness-docs",
|
|
553
|
+
"kind": "skill",
|
|
554
|
+
"capabilities": [
|
|
555
|
+
"harness.docs",
|
|
556
|
+
"schema.validation"
|
|
557
|
+
],
|
|
558
|
+
"scope": "harness",
|
|
559
|
+
"source": "official harness documentation"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"id": "schema-validator",
|
|
563
|
+
"kind": "cli",
|
|
564
|
+
"capabilities": [
|
|
565
|
+
"schema.validation"
|
|
566
|
+
],
|
|
567
|
+
"scope": "project",
|
|
568
|
+
"source": "schema validation command",
|
|
569
|
+
"display_name": "Schema validation command",
|
|
570
|
+
"recommendation_kind": "capability_gap",
|
|
571
|
+
"installable": false
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"id": "deployment-tool",
|
|
575
|
+
"kind": "cli",
|
|
576
|
+
"capabilities": [
|
|
577
|
+
"deployment.authorized_target",
|
|
578
|
+
"deployment.precheck",
|
|
579
|
+
"deployment.smoke",
|
|
580
|
+
"deployment.rollback"
|
|
581
|
+
],
|
|
582
|
+
"scope": "project",
|
|
583
|
+
"source": "project deployment tooling"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"id": "delegation-runtime",
|
|
587
|
+
"kind": "native_tool",
|
|
588
|
+
"capabilities": [
|
|
589
|
+
"delegation.bounded"
|
|
590
|
+
],
|
|
591
|
+
"scope": "harness",
|
|
592
|
+
"source": "native delegation runtime"
|
|
593
|
+
}
|
|
594
|
+
]
|
|
595
|
+
}
|