@agentskit/doc-bridge 1.11.1 → 1.12.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/CHANGELOG.md +17 -1
- package/README.md +3 -2
- package/action.yml +1 -1
- package/dist/cli/program.js +582 -471
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.js +500 -389
- package/dist/index.js.map +1 -1
- package/docs/DESIGN.md +71 -0
- package/docs/MARKETPLACE-ECOSYSTEM-PLAN.md +1 -1
- package/docs/PRD-enterprise-hardening.md +5 -5
- package/docs/PRD-knowledge-retrieval-and-enrichment.md +1 -1
- package/docs/knowledge-engine-runbook.md +1 -1
- package/docs/loop-workflow.md +15 -15
- package/docs/spec/config-v1.md +29 -7
- package/docs/spec/documentation-standard-v1.md +5 -0
- package/docs/spec/mcp-knowledge-tools-v1.md +1 -1
- package/docs/validation-cycle-plan.md +13 -13
- package/ecosystem-claims.json +17 -17
- package/ecosystem-upstream.json +2 -2
- package/ecosystem.json +300 -147
- package/mcpb/manifest.json +1 -1
- package/package.json +2 -1
- package/skills/doc-bridge-handoff/SKILL.md +1 -1
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
- package/src/conformance/ecosystem-contract.ts +10 -26
- package/src/discovery/repository.ts +7 -1
- package/src/findings/report.ts +1 -1
- package/src/fixes/proposals.ts +4 -2
- package/src/gates/run-gates.ts +1 -1
- package/src/index-builder/human-adapters/core.ts +10 -4
- package/src/lib/ignore-filter.ts +151 -0
- package/src/lib/walk.ts +10 -2
- package/src/memory/ingest.ts +1 -1
- package/src/report/html.ts +1 -1
- package/src/safety/repository.ts +9 -0
- package/src/version.ts +1 -1
- package/docs/DOGFOOD-ROUND2.md +0 -147
- package/docs/DOGFOOD-ROUND3.md +0 -79
- package/docs/DOGFOOD-V1.md +0 -89
- package/docs/DOGFOOD.md +0 -97
package/ecosystem.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
|
-
"$comment": "Canonical
|
|
3
|
+
"$comment": "Canonical seven-product AgentsKit catalog. The three-entry properties array is the legacy v1 compatibility projection; shared navigation is derived from products[].",
|
|
4
4
|
"parentBrand": {
|
|
5
5
|
"id": "agentskit",
|
|
6
6
|
"name": "AgentsKit"
|
|
@@ -8,9 +8,17 @@
|
|
|
8
8
|
"positioning": {
|
|
9
9
|
"canonicalDescription": "AgentsKit is the open-source TypeScript ecosystem for building production AI agents without locking application architecture to a model provider, framework, database, or hosted platform.",
|
|
10
10
|
"metaDescription": "Open-source TypeScript ecosystem for production AI agents. Swap models, providers, tools, memory, RAG, and interfaces without architectural lock-in.",
|
|
11
|
-
"commercialBoundary": "
|
|
12
|
-
"openSourceProductIds": [
|
|
13
|
-
|
|
11
|
+
"commercialBoundary": "The listed products are free and open source.",
|
|
12
|
+
"openSourceProductIds": [
|
|
13
|
+
"agentskit",
|
|
14
|
+
"registry",
|
|
15
|
+
"agentskit-chat",
|
|
16
|
+
"doc-bridge",
|
|
17
|
+
"code-review",
|
|
18
|
+
"harness",
|
|
19
|
+
"playbook"
|
|
20
|
+
],
|
|
21
|
+
"managedProductIds": []
|
|
14
22
|
},
|
|
15
23
|
"products": [
|
|
16
24
|
{
|
|
@@ -26,7 +34,7 @@
|
|
|
26
34
|
"repo": "AgentsKit-io/agentskit",
|
|
27
35
|
"accent": "#2EA043",
|
|
28
36
|
"metadata": {
|
|
29
|
-
"alternateName": "AgentsKit
|
|
37
|
+
"alternateName": "AgentsKit",
|
|
30
38
|
"description": "A free, MIT-licensed TypeScript ecosystem for production AI agents with replaceable contracts for models, runtimes, tools, memory, RAG, observability, sandboxing, evaluation, and interfaces.",
|
|
31
39
|
"dateCreated": "2026-04-02",
|
|
32
40
|
"applicationCategory": "DeveloperApplication",
|
|
@@ -57,11 +65,21 @@
|
|
|
57
65
|
"claimSource": {
|
|
58
66
|
"url": "https://www.agentskit.io/api/stats.json",
|
|
59
67
|
"claims": {
|
|
60
|
-
"packages": {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
|
|
68
|
+
"packages": {
|
|
69
|
+
"path": "counts.packages"
|
|
70
|
+
},
|
|
71
|
+
"core-size-kb-gzip": {
|
|
72
|
+
"path": "coreSizeKbGzip"
|
|
73
|
+
},
|
|
74
|
+
"catalog-providers": {
|
|
75
|
+
"path": "counts.catalogProviders"
|
|
76
|
+
},
|
|
77
|
+
"native-adapters": {
|
|
78
|
+
"path": "counts.nativeAdapters"
|
|
79
|
+
},
|
|
80
|
+
"integrations": {
|
|
81
|
+
"path": "counts.integrations"
|
|
82
|
+
}
|
|
65
83
|
}
|
|
66
84
|
},
|
|
67
85
|
"stage": "Build",
|
|
@@ -72,12 +90,30 @@
|
|
|
72
90
|
"kind": "integration-stack",
|
|
73
91
|
"headline": "Swap the stack. Keep the agent.",
|
|
74
92
|
"metrics": [
|
|
75
|
-
{
|
|
76
|
-
|
|
77
|
-
|
|
93
|
+
{
|
|
94
|
+
"value": "140+",
|
|
95
|
+
"label": "providers"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"value": "25",
|
|
99
|
+
"label": "adapters"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"value": "50",
|
|
103
|
+
"label": "integrations"
|
|
104
|
+
}
|
|
78
105
|
],
|
|
79
|
-
"capabilities": [
|
|
80
|
-
|
|
106
|
+
"capabilities": [
|
|
107
|
+
"Tools",
|
|
108
|
+
"RAG",
|
|
109
|
+
"Memory",
|
|
110
|
+
"MCP"
|
|
111
|
+
],
|
|
112
|
+
"steps": [
|
|
113
|
+
"Choose any adapter",
|
|
114
|
+
"Add tools and memory",
|
|
115
|
+
"Ship without rewrites"
|
|
116
|
+
]
|
|
81
117
|
},
|
|
82
118
|
"cta": "Build with AgentsKit"
|
|
83
119
|
},
|
|
@@ -95,10 +131,10 @@
|
|
|
95
131
|
"next": [
|
|
96
132
|
"registry",
|
|
97
133
|
"agentskit-chat",
|
|
98
|
-
"playbook",
|
|
99
134
|
"doc-bridge",
|
|
100
135
|
"code-review",
|
|
101
|
-
"
|
|
136
|
+
"harness",
|
|
137
|
+
"playbook"
|
|
102
138
|
]
|
|
103
139
|
}
|
|
104
140
|
},
|
|
@@ -118,8 +154,16 @@
|
|
|
118
154
|
"claimSource": {
|
|
119
155
|
"url": "https://registry.agentskit.io/r/index.json",
|
|
120
156
|
"claims": {
|
|
121
|
-
"agents": {
|
|
122
|
-
|
|
157
|
+
"agents": {
|
|
158
|
+
"path": "agents",
|
|
159
|
+
"aggregate": "length"
|
|
160
|
+
},
|
|
161
|
+
"remaining-categories": {
|
|
162
|
+
"path": "agents",
|
|
163
|
+
"aggregate": "distinct",
|
|
164
|
+
"field": "category",
|
|
165
|
+
"subtract": 5
|
|
166
|
+
}
|
|
123
167
|
}
|
|
124
168
|
},
|
|
125
169
|
"stage": "Discover",
|
|
@@ -128,12 +172,20 @@
|
|
|
128
172
|
"proof": "Ready-made · source-owned",
|
|
129
173
|
"sales": {
|
|
130
174
|
"kind": "registry-install",
|
|
131
|
-
"headline": "
|
|
175
|
+
"headline": "Inspect every file before it ships.",
|
|
132
176
|
"metric": "Source-owned",
|
|
133
177
|
"metricLabel": "agent code",
|
|
134
|
-
"capabilities": [
|
|
135
|
-
|
|
136
|
-
|
|
178
|
+
"capabilities": [
|
|
179
|
+
"Ready-made agents",
|
|
180
|
+
"Source ownership",
|
|
181
|
+
"CLI installation"
|
|
182
|
+
],
|
|
183
|
+
"steps": [
|
|
184
|
+
"Find the right agent",
|
|
185
|
+
"Run npx @agentskit/cli add",
|
|
186
|
+
"Own every line"
|
|
187
|
+
],
|
|
188
|
+
"command": "npx @agentskit/cli add research"
|
|
137
189
|
},
|
|
138
190
|
"cta": "Explore the Registry"
|
|
139
191
|
},
|
|
@@ -151,10 +203,10 @@
|
|
|
151
203
|
"next": [
|
|
152
204
|
"agentskit",
|
|
153
205
|
"agentskit-chat",
|
|
154
|
-
"playbook",
|
|
155
206
|
"doc-bridge",
|
|
156
207
|
"code-review",
|
|
157
|
-
"
|
|
208
|
+
"harness",
|
|
209
|
+
"playbook"
|
|
158
210
|
]
|
|
159
211
|
}
|
|
160
212
|
},
|
|
@@ -181,12 +233,29 @@
|
|
|
181
233
|
"metric": "One",
|
|
182
234
|
"metricLabel": "agent experience",
|
|
183
235
|
"logos": [
|
|
184
|
-
{
|
|
185
|
-
|
|
186
|
-
|
|
236
|
+
{
|
|
237
|
+
"id": "human",
|
|
238
|
+
"label": "Human"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "agent",
|
|
242
|
+
"label": "Agent"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "tools",
|
|
246
|
+
"label": "Tools"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"capabilities": [
|
|
250
|
+
"Conversation",
|
|
251
|
+
"Human control",
|
|
252
|
+
"Tool results"
|
|
187
253
|
],
|
|
188
|
-
"
|
|
189
|
-
|
|
254
|
+
"steps": [
|
|
255
|
+
"Define the agent experience",
|
|
256
|
+
"Connect the conversation surface",
|
|
257
|
+
"Keep the human in control"
|
|
258
|
+
]
|
|
190
259
|
},
|
|
191
260
|
"cta": "Explore AgentsKit Chat"
|
|
192
261
|
},
|
|
@@ -203,64 +272,10 @@
|
|
|
203
272
|
"next": [
|
|
204
273
|
"agentskit",
|
|
205
274
|
"registry",
|
|
206
|
-
"playbook",
|
|
207
|
-
"doc-bridge",
|
|
208
|
-
"code-review",
|
|
209
|
-
"akos"
|
|
210
|
-
]
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
"id": "playbook",
|
|
215
|
-
"public": true,
|
|
216
|
-
"distributionClass": "open-source",
|
|
217
|
-
"name": "Agents Playbook",
|
|
218
|
-
"shortName": "Playbook",
|
|
219
|
-
"kind": "methodology",
|
|
220
|
-
"role": "discipline",
|
|
221
|
-
"promise": "Make agents ship code a human would actually merge.",
|
|
222
|
-
"maturity": "stable",
|
|
223
|
-
"repo": "AgentsKit-io/agents-playbook",
|
|
224
|
-
"accent": "#8B5CF6",
|
|
225
|
-
"showcase": {
|
|
226
|
-
"stage": "Standardize",
|
|
227
|
-
"headline": "Engineering standards agents can execute.",
|
|
228
|
-
"detail": "Turn repeatable practices into guidance that coding agents can follow in every repository.",
|
|
229
|
-
"proof": "Convention → executable guidance",
|
|
230
|
-
"sales": {
|
|
231
|
-
"kind": "standards-flow",
|
|
232
|
-
"headline": "Your standards. Every agent. Every repository.",
|
|
233
|
-
"metric": "1×",
|
|
234
|
-
"metricLabel": "define · reuse everywhere",
|
|
235
|
-
"logos": [
|
|
236
|
-
{ "id": "architecture", "label": "Architecture" },
|
|
237
|
-
{ "id": "tests", "label": "Tests" },
|
|
238
|
-
{ "id": "security", "label": "Security" },
|
|
239
|
-
{ "id": "style", "label": "Style" }
|
|
240
|
-
],
|
|
241
|
-
"capabilities": ["Repository rules", "Review criteria", "Agent guidance", "Team conventions"],
|
|
242
|
-
"steps": ["Define the standard once", "Agents receive executable guidance", "Review consistent output"]
|
|
243
|
-
},
|
|
244
|
-
"cta": "Explore the Playbook"
|
|
245
|
-
},
|
|
246
|
-
"surfaces": {
|
|
247
|
-
"home": "https://playbook.agentskit.io",
|
|
248
|
-
"docs": "https://playbook.agentskit.io/docs",
|
|
249
|
-
"llms": "https://playbook.agentskit.io/llms.txt",
|
|
250
|
-
"stats": "https://playbook.agentskit.io/api/stats.json",
|
|
251
|
-
"documentation": "fumadocs",
|
|
252
|
-
"chat": "custom"
|
|
253
|
-
},
|
|
254
|
-
"navigation": {
|
|
255
|
-
"showInBar": true,
|
|
256
|
-
"order": 3,
|
|
257
|
-
"next": [
|
|
258
|
-
"agentskit",
|
|
259
|
-
"registry",
|
|
260
|
-
"agentskit-chat",
|
|
261
275
|
"doc-bridge",
|
|
262
276
|
"code-review",
|
|
263
|
-
"
|
|
277
|
+
"harness",
|
|
278
|
+
"playbook"
|
|
264
279
|
]
|
|
265
280
|
}
|
|
266
281
|
},
|
|
@@ -287,13 +302,34 @@
|
|
|
287
302
|
"metric": "↔",
|
|
288
303
|
"metricLabel": "humans and agents",
|
|
289
304
|
"logos": [
|
|
290
|
-
{
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
305
|
+
{
|
|
306
|
+
"id": "human",
|
|
307
|
+
"label": "Humans"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"id": "markdown",
|
|
311
|
+
"label": "Docs"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"id": "code",
|
|
315
|
+
"label": "Code"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": "agent",
|
|
319
|
+
"label": "Agents"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"capabilities": [
|
|
323
|
+
"ADRs",
|
|
324
|
+
"Handoffs",
|
|
325
|
+
"Agent findings",
|
|
326
|
+
"Human-readable docs"
|
|
294
327
|
],
|
|
295
|
-
"
|
|
296
|
-
|
|
328
|
+
"steps": [
|
|
329
|
+
"Humans document decisions",
|
|
330
|
+
"Agents receive precise context",
|
|
331
|
+
"Agent findings return to humans"
|
|
332
|
+
]
|
|
297
333
|
},
|
|
298
334
|
"cta": "Explore Doc Bridge"
|
|
299
335
|
},
|
|
@@ -306,14 +342,14 @@
|
|
|
306
342
|
},
|
|
307
343
|
"navigation": {
|
|
308
344
|
"showInBar": true,
|
|
309
|
-
"order":
|
|
345
|
+
"order": 3,
|
|
310
346
|
"next": [
|
|
311
347
|
"agentskit",
|
|
312
348
|
"registry",
|
|
313
349
|
"agentskit-chat",
|
|
314
|
-
"playbook",
|
|
315
350
|
"code-review",
|
|
316
|
-
"
|
|
351
|
+
"harness",
|
|
352
|
+
"playbook"
|
|
317
353
|
]
|
|
318
354
|
}
|
|
319
355
|
},
|
|
@@ -330,71 +366,197 @@
|
|
|
330
366
|
"repo": "AgentsKit-io/code-review",
|
|
331
367
|
"accent": "#F97316",
|
|
332
368
|
"surfaces": {
|
|
333
|
-
"home": "https://
|
|
334
|
-
"docs": "https://
|
|
335
|
-
"llms": "https://
|
|
336
|
-
"documentation": "
|
|
369
|
+
"home": "https://code-review.agentskit.io",
|
|
370
|
+
"docs": "https://code-review.agentskit.io/docs",
|
|
371
|
+
"llms": "https://code-review.agentskit.io/llms.txt",
|
|
372
|
+
"documentation": "fumadocs",
|
|
337
373
|
"chat": "none"
|
|
338
374
|
},
|
|
339
375
|
"navigation": {
|
|
340
|
-
"showInBar":
|
|
341
|
-
"order":
|
|
376
|
+
"showInBar": true,
|
|
377
|
+
"order": 4,
|
|
342
378
|
"next": [
|
|
343
379
|
"agentskit",
|
|
344
380
|
"registry",
|
|
345
381
|
"agentskit-chat",
|
|
346
|
-
"playbook",
|
|
347
382
|
"doc-bridge",
|
|
348
|
-
"
|
|
383
|
+
"harness",
|
|
384
|
+
"playbook"
|
|
349
385
|
]
|
|
386
|
+
},
|
|
387
|
+
"showcase": {
|
|
388
|
+
"stage": "Review",
|
|
389
|
+
"headline": "A review you can tune. Findings you can act on.",
|
|
390
|
+
"detail": "Choose the concerns that matter and see the review comments adapt to the change.",
|
|
391
|
+
"proof": "Configurable · provider-neutral · open source",
|
|
392
|
+
"sales": {
|
|
393
|
+
"kind": "review-config",
|
|
394
|
+
"headline": "Set the standard for every review.",
|
|
395
|
+
"metric": "2",
|
|
396
|
+
"metricLabel": "review profiles",
|
|
397
|
+
"capabilities": [
|
|
398
|
+
"Security",
|
|
399
|
+
"Performance",
|
|
400
|
+
"Correctness",
|
|
401
|
+
"Actionable comments"
|
|
402
|
+
],
|
|
403
|
+
"steps": [
|
|
404
|
+
"Choose security or performance",
|
|
405
|
+
"Apply your review configuration",
|
|
406
|
+
"Get focused, actionable comments"
|
|
407
|
+
]
|
|
408
|
+
},
|
|
409
|
+
"cta": "Explore Code Review"
|
|
350
410
|
}
|
|
351
411
|
},
|
|
352
412
|
{
|
|
353
|
-
"id": "
|
|
354
|
-
"public":
|
|
355
|
-
"distributionClass": "
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
"
|
|
360
|
-
"
|
|
361
|
-
"
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
"repo": null,
|
|
365
|
-
"distributionPolicy": "Public commercial references only; never use private implementation as contribution evidence.",
|
|
366
|
-
"accent": "#34D399",
|
|
413
|
+
"id": "harness",
|
|
414
|
+
"public": true,
|
|
415
|
+
"distributionClass": "open-source",
|
|
416
|
+
"name": "AgentsKit Harness",
|
|
417
|
+
"shortName": "Harness",
|
|
418
|
+
"kind": "tool",
|
|
419
|
+
"role": "delivery",
|
|
420
|
+
"promise": "The keep-pushing loop for your SDLC.",
|
|
421
|
+
"maturity": "beta",
|
|
422
|
+
"repo": "AgentsKit-io/harness",
|
|
423
|
+
"accent": "#F778BA",
|
|
367
424
|
"showcase": {
|
|
368
|
-
"stage": "
|
|
369
|
-
"headline": "
|
|
370
|
-
"detail": "
|
|
371
|
-
"proof": "
|
|
425
|
+
"stage": "Ship",
|
|
426
|
+
"headline": "From a vague objective to production, unattended.",
|
|
427
|
+
"detail": "Interview, plan, vote, build, review, prove, merge, release — one state machine per stage, with humans only where the loop acts on the world.",
|
|
428
|
+
"proof": "Objective → released change",
|
|
372
429
|
"sales": {
|
|
373
|
-
"kind": "
|
|
374
|
-
"headline": "
|
|
375
|
-
"metric": "
|
|
376
|
-
"metricLabel": "
|
|
430
|
+
"kind": "standards-flow",
|
|
431
|
+
"headline": "The loop keeps pushing while you sleep.",
|
|
432
|
+
"metric": "24/7",
|
|
433
|
+
"metricLabel": "unattended delivery",
|
|
377
434
|
"logos": [
|
|
378
|
-
{
|
|
379
|
-
|
|
380
|
-
|
|
435
|
+
{
|
|
436
|
+
"id": "issue",
|
|
437
|
+
"label": "Issues"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"id": "worktree",
|
|
441
|
+
"label": "Worktrees"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": "review",
|
|
445
|
+
"label": "Review"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"id": "release",
|
|
449
|
+
"label": "Release"
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
"capabilities": [
|
|
453
|
+
"Frozen contracts",
|
|
454
|
+
"Plan with votes",
|
|
455
|
+
"Definition of done",
|
|
456
|
+
"Human gates"
|
|
381
457
|
],
|
|
382
|
-
"
|
|
383
|
-
|
|
458
|
+
"steps": [
|
|
459
|
+
"An issue becomes a contract nobody can widen",
|
|
460
|
+
"A worker proves it in its own worktree",
|
|
461
|
+
"A human approves what reaches production"
|
|
462
|
+
]
|
|
384
463
|
},
|
|
385
|
-
"cta": "
|
|
464
|
+
"cta": "Explore Harness"
|
|
386
465
|
},
|
|
387
466
|
"surfaces": {
|
|
388
|
-
"home": "https://
|
|
389
|
-
"docs": "https://
|
|
390
|
-
"llms": "https://
|
|
467
|
+
"home": "https://harness.agentskit.io/",
|
|
468
|
+
"docs": "https://harness.agentskit.io/docs",
|
|
469
|
+
"llms": "https://harness.agentskit.io/llms.txt",
|
|
470
|
+
"stats": "https://harness.agentskit.io/api/stats.json",
|
|
391
471
|
"documentation": "fumadocs",
|
|
392
472
|
"chat": "none"
|
|
393
473
|
},
|
|
394
474
|
"navigation": {
|
|
395
475
|
"showInBar": true,
|
|
476
|
+
"order": 5,
|
|
477
|
+
"next": [
|
|
478
|
+
"agentskit",
|
|
479
|
+
"registry",
|
|
480
|
+
"agentskit-chat",
|
|
481
|
+
"doc-bridge",
|
|
482
|
+
"code-review",
|
|
483
|
+
"playbook"
|
|
484
|
+
]
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"id": "playbook",
|
|
489
|
+
"public": true,
|
|
490
|
+
"distributionClass": "open-source",
|
|
491
|
+
"name": "Agents Playbook",
|
|
492
|
+
"shortName": "Playbook",
|
|
493
|
+
"kind": "methodology",
|
|
494
|
+
"role": "discipline",
|
|
495
|
+
"promise": "Make agents ship code a human would actually merge.",
|
|
496
|
+
"maturity": "stable",
|
|
497
|
+
"repo": "AgentsKit-io/agents-playbook",
|
|
498
|
+
"accent": "#8B5CF6",
|
|
499
|
+
"showcase": {
|
|
500
|
+
"stage": "Standardize",
|
|
501
|
+
"headline": "Engineering standards agents can execute.",
|
|
502
|
+
"detail": "Turn repeatable practices into guidance that coding agents can follow in every repository.",
|
|
503
|
+
"proof": "Convention → executable guidance",
|
|
504
|
+
"sales": {
|
|
505
|
+
"kind": "standards-flow",
|
|
506
|
+
"headline": "Your standards. Every agent. Every repository.",
|
|
507
|
+
"metric": "1×",
|
|
508
|
+
"metricLabel": "define · reuse everywhere",
|
|
509
|
+
"logos": [
|
|
510
|
+
{
|
|
511
|
+
"id": "architecture",
|
|
512
|
+
"label": "Architecture"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"id": "tests",
|
|
516
|
+
"label": "Tests"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"id": "security",
|
|
520
|
+
"label": "Security"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"id": "style",
|
|
524
|
+
"label": "Style"
|
|
525
|
+
}
|
|
526
|
+
],
|
|
527
|
+
"capabilities": [
|
|
528
|
+
"Repository rules",
|
|
529
|
+
"Review criteria",
|
|
530
|
+
"Agent guidance",
|
|
531
|
+
"Team conventions"
|
|
532
|
+
],
|
|
533
|
+
"steps": [
|
|
534
|
+
"Define the standard once",
|
|
535
|
+
"Agents receive executable guidance",
|
|
536
|
+
"Review consistent output"
|
|
537
|
+
]
|
|
538
|
+
},
|
|
539
|
+
"cta": "Explore the Playbook"
|
|
540
|
+
},
|
|
541
|
+
"surfaces": {
|
|
542
|
+
"home": "https://playbook.agentskit.io",
|
|
543
|
+
"docs": "https://playbook.agentskit.io/docs",
|
|
544
|
+
"llms": "https://playbook.agentskit.io/llms.txt",
|
|
545
|
+
"stats": "https://playbook.agentskit.io/api/stats.json",
|
|
546
|
+
"documentation": "fumadocs",
|
|
547
|
+
"chat": "custom"
|
|
548
|
+
},
|
|
549
|
+
"navigation": {
|
|
550
|
+
"showInBar": false,
|
|
396
551
|
"order": 6,
|
|
397
|
-
"next": [
|
|
552
|
+
"next": [
|
|
553
|
+
"agentskit",
|
|
554
|
+
"registry",
|
|
555
|
+
"agentskit-chat",
|
|
556
|
+
"doc-bridge",
|
|
557
|
+
"code-review",
|
|
558
|
+
"harness"
|
|
559
|
+
]
|
|
398
560
|
}
|
|
399
561
|
}
|
|
400
562
|
],
|
|
@@ -409,21 +571,10 @@
|
|
|
409
571
|
"tagline": "Build agents without gluing many libraries together.",
|
|
410
572
|
"kind": "library",
|
|
411
573
|
"accent": "#2EA043",
|
|
574
|
+
"showInBar": true,
|
|
412
575
|
"llms": "https://www.agentskit.io/llms.txt",
|
|
413
576
|
"stats": "https://www.agentskit.io/api/stats.json"
|
|
414
577
|
},
|
|
415
|
-
{
|
|
416
|
-
"id": "akos",
|
|
417
|
-
"name": "AKOS",
|
|
418
|
-
"barLabel": "AKOS",
|
|
419
|
-
"domain": "akos.agentskit.io",
|
|
420
|
-
"url": "https://akos.agentskit.io",
|
|
421
|
-
"repo": null,
|
|
422
|
-
"tagline": "Add optional managed operations when production governance calls for it.",
|
|
423
|
-
"kind": "managed-service",
|
|
424
|
-
"accent": "#34D399",
|
|
425
|
-
"llms": "https://akos.agentskit.io/llms.txt"
|
|
426
|
-
},
|
|
427
578
|
{
|
|
428
579
|
"id": "playbook",
|
|
429
580
|
"name": "Agents Playbook",
|
|
@@ -434,6 +585,7 @@
|
|
|
434
585
|
"tagline": "Make agents ship code a human would actually merge.",
|
|
435
586
|
"kind": "methodology",
|
|
436
587
|
"accent": "#8B5CF6",
|
|
588
|
+
"showInBar": false,
|
|
437
589
|
"llms": "https://playbook.agentskit.io/llms.txt",
|
|
438
590
|
"stats": "https://playbook.agentskit.io/api/stats.json"
|
|
439
591
|
},
|
|
@@ -447,6 +599,7 @@
|
|
|
447
599
|
"tagline": "Copy ready-made agents and own the source.",
|
|
448
600
|
"kind": "registry",
|
|
449
601
|
"accent": "#58A6FF",
|
|
602
|
+
"showInBar": true,
|
|
450
603
|
"llms": "https://registry.agentskit.io/llms.txt",
|
|
451
604
|
"stats": "https://registry.agentskit.io/r/index.json"
|
|
452
605
|
}
|
package/mcpb/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": "0.3",
|
|
3
3
|
"name": "doc-bridge",
|
|
4
4
|
"display_name": "Doc Bridge",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.12.0",
|
|
6
6
|
"description": "Deterministic repository handoffs for coding agents, running locally without an LLM or API key.",
|
|
7
7
|
"long_description": "Doc Bridge turns a repository's own documentation and ownership metadata into deterministic handoffs: where an agent should start, which paths it may edit, which checks it must run, and when a human must take over. The local connector exposes the same read-only contract available through Doc Bridge CLI and CI.",
|
|
8
8
|
"author": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentskit/doc-bridge",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"mcpName": "io.github.AgentsKit-io/doc-bridge",
|
|
5
5
|
"description": "Human↔agent documentation bridge — deterministic handoffs, doc-site links, memory→docs, optional AgentsKit RAG/chat.",
|
|
6
6
|
"type": "module",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"graphology-dag": "~0.4.1",
|
|
81
81
|
"graphology-metrics": "~2.4.2",
|
|
82
82
|
"graphology-shortest-path": "~2.1.0",
|
|
83
|
+
"ignore": "^7.0.6",
|
|
83
84
|
"knap": "~0.5.1",
|
|
84
85
|
"mdast-util-to-string": "^4.0.0",
|
|
85
86
|
"mermaid": "^11.17.2",
|
|
@@ -25,7 +25,7 @@ Use this skill before editing a repository that contains `doc-bridge.config.json
|
|
|
25
25
|
|
|
26
26
|
If resolution fails, returns incomplete fields, or names an unknown target, stop. Do not infer edit permission from repository layout.
|
|
27
27
|
|
|
28
|
-
The resolver and MCP tools are read-only. They resolve project guidance but never authorize edits, publish changes, execute returned checks, or replace repository instructions. The skill uses no credentials and has no provider, hosted service, or
|
|
28
|
+
The resolver and MCP tools are read-only. They resolve project guidance but never authorize edits, publish changes, execute returned checks, or replace repository instructions. The skill uses no credentials and has no provider, hosted service, or managed-service dependency.
|
|
29
29
|
|
|
30
30
|
## Portable runtimes
|
|
31
31
|
|