@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.
@@ -21,7 +21,7 @@ jobs:
21
21
  runs-on: ubuntu-latest
22
22
  steps:
23
23
  - uses: actions/checkout@v4
24
- - uses: AgentsKit-io/doc-bridge@v1.3.0
24
+ - uses: AgentsKit-io/doc-bridge@v1.4.0
25
25
  with:
26
26
  config-path: doc-bridge.config.json
27
27
  ```
@@ -38,7 +38,7 @@ jobs:
38
38
  runs-on: ubuntu-latest
39
39
  steps:
40
40
  - uses: actions/checkout@v4
41
- - uses: AgentsKit-io/doc-bridge@v1.3.0
41
+ - uses: AgentsKit-io/doc-bridge@v1.4.0
42
42
  with:
43
43
  config-path: doc-bridge.config.json
44
44
  ```
@@ -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.3.0</span></div>
340
+ <div>- uses: <span class="t-hi">AgentsKit-io/doc-bridge@v1.4.0</span></div>
341
341
  <div>&nbsp;&nbsp;with:</div>
342
342
  <div>&nbsp;&nbsp;&nbsp;&nbsp;config-path: doc-bridge.config.json</div>
343
343
  </div>
@@ -77,7 +77,7 @@ Agents call `handoff.resolve` before editing `packages/*`:
77
77
  ## CI gate
78
78
 
79
79
  ```yaml
80
- - uses: AgentsKit-io/doc-bridge@v1.3.0
80
+ - uses: AgentsKit-io/doc-bridge@v1.4.0
81
81
  ```
82
82
 
83
83
  Or: `ak-docs index && ak-docs gate run` — stale index fails the PR.
@@ -71,7 +71,7 @@ Root `package.json`:
71
71
  ## CI (GitHub Action)
72
72
 
73
73
  ```yaml
74
- - uses: AgentsKit-io/doc-bridge@v1.3.0
74
+ - uses: AgentsKit-io/doc-bridge@v1.4.0
75
75
  ```
76
76
 
77
77
  Or manual:
@@ -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.0",
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.0",
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",
@@ -8,12 +8,6 @@ platforms:
8
8
  - darwin
9
9
  - linux
10
10
  - windows
11
- metadata:
12
- hermes:
13
- tags:
14
- - documentation
15
- - coding-agents
16
- - repository-routing
17
11
  ---
18
12
 
19
13
  # Doc Bridge handoff
@@ -3,7 +3,7 @@
3
3
  import { spawnSync } from 'node:child_process'
4
4
  import { isAbsolute } from 'node:path'
5
5
 
6
- const VERSION = '1.4.0'
6
+ const VERSION = '1.4.1'
7
7
  const kinds = new Set(['package', 'ownership'])
8
8
  const args = process.argv.slice(2)
9
9
  const id = args[0]
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const PACKAGE_VERSION = '1.4.0'
1
+ export const PACKAGE_VERSION = '1.4.1'