@agentskit/doc-bridge 1.4.0 → 1.4.1
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 +7 -0
- package/README.md +11 -3
- package/action.yml +1 -1
- package/dist/cli/program.js +1 -1
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/MARKETPLACE.md +1 -1
- package/docs/guides/gate-ci.md +1 -1
- package/docs/landing/index.html +1 -1
- package/docs/playbook/doc-bridge-pattern.md +1 -1
- package/docs/recipes/index-pipeline.md +1 -1
- package/mcpb/manifest.json +1 -1
- package/package.json +4 -2
- package/skills/doc-bridge-handoff/SKILL.md +0 -6
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
- package/src/version.ts +1 -1
package/docs/MARKETPLACE.md
CHANGED
package/docs/guides/gate-ci.md
CHANGED
package/docs/landing/index.html
CHANGED
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
<div class="terminal-bar"><span class="dot dot-r"></span><span class="dot dot-y"></span><span class="dot dot-g"></span></div>
|
|
338
338
|
<div class="terminal-body">
|
|
339
339
|
<div class="t-dim"># .github/workflows/pr.yml</div>
|
|
340
|
-
<div>- uses: <span class="t-hi">AgentsKit-io/doc-bridge@v1.
|
|
340
|
+
<div>- uses: <span class="t-hi">AgentsKit-io/doc-bridge@v1.4.0</span></div>
|
|
341
341
|
<div> with:</div>
|
|
342
342
|
<div> config-path: doc-bridge.config.json</div>
|
|
343
343
|
</div>
|
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.4.
|
|
5
|
+
"version": "1.4.1",
|
|
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.4.
|
|
3
|
+
"version": "1.4.1",
|
|
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",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"prebuild": "node scripts/sync-version.mjs",
|
|
48
48
|
"build": "tsup",
|
|
49
|
-
"test": "vitest run && pnpm test:cursor-plugin && pnpm test:portable-skill",
|
|
49
|
+
"test": "vitest run && pnpm test:cursor-plugin && pnpm test:claude-plugin && pnpm test:copilot-plugin && pnpm test:portable-skill",
|
|
50
50
|
"test:watch": "vitest",
|
|
51
51
|
"coverage": "vitest run --coverage",
|
|
52
52
|
"check:ecosystem-upstream": "node scripts/check-ecosystem-upstream.mjs",
|
|
@@ -62,6 +62,8 @@
|
|
|
62
62
|
"mcpb:pack": "npm run mcpb:stage && npm run mcpb:smoke && node scripts/build-mcpb.mjs pack",
|
|
63
63
|
"test:mcpb": "node --test scripts/mcpb-contract.test.mjs",
|
|
64
64
|
"test:cursor-plugin": "node --test scripts/cursor-plugin-contract.test.mjs",
|
|
65
|
+
"test:claude-plugin": "node --test scripts/claude-plugin-contract.test.mjs",
|
|
66
|
+
"test:copilot-plugin": "node --test scripts/copilot-plugin-contract.test.mjs",
|
|
65
67
|
"test:portable-skill": "node --test scripts/portable-skill-contract.test.mjs",
|
|
66
68
|
"coverage:badge": "node scripts/update-coverage-badge.mjs",
|
|
67
69
|
"changeset": "changeset",
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const PACKAGE_VERSION = '1.4.
|
|
1
|
+
export const PACKAGE_VERSION = '1.4.1'
|