@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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ef543f6: Publish the portable handoff skill through an Agent Plugins v1 manifest for GitHub Copilot.
8
+ - 8b07f46: Package the portable handoff skill and credential-free MCP server as a Claude Code plugin.
9
+
3
10
  ## 1.4.0
4
11
 
5
12
  ### Minor Changes
package/README.md CHANGED
@@ -116,7 +116,7 @@ Using Cline? Follow the deterministic [`llms-install.md`](llms-install.md) setup
116
116
  |---------|------------|--------------------|
117
117
  | **CLI** | Inspect ownership, search docs, run gates, ask local questions | `ak-docs query`, `search`, `ask`, `doctor`, `gate` |
118
118
  | **MCP server** | Let Cursor, Claude Code, Codex-style agents resolve handoffs before editing | `ak-docs mcp`, `handoff.resolve` |
119
- | **GitHub Action / CI** | Fail stale indexes and broken human-doc links on PRs | `AgentsKit-io/doc-bridge@v1.3.0` |
119
+ | **GitHub Action / CI** | Fail stale indexes and broken human-doc links on PRs | `AgentsKit-io/doc-bridge@v1.4.0` |
120
120
  | **Documentation conformance** | Check the stable ecosystem standard with auditable evidence | `ak-docs conformance run documentation-standard-v1 --text` |
121
121
  | **Doc adapters** | Link human docs to agent docs | `fumadocs`, `docusaurus`, `vitepress`, `starlight`, `nextra`, `plain-markdown` |
122
122
  | **Monorepo routing** | Discover workspaces and checks | `pnpm-monorepo`, `nx` |
@@ -129,6 +129,14 @@ See [docs/getting-started.md](docs/getting-started.md), [docs/mcp.md](docs/mcp.m
129
129
 
130
130
  This repository also contains a Cursor plugin that pairs the read-only Doc Bridge MCP server with a handoff skill. It resolves `startHere`, `readBeforeEditing`, `editRoots`, and `checks` before Cursor edits a routed repository. The plugin does not request credentials or write project files through MCP.
131
131
 
132
+ ### GitHub Copilot plugin
133
+
134
+ The root Agent Plugins manifest exposes the same portable handoff skill and read-only MCP server to GitHub Copilot CLI. Copilot discovers `skills/` and `.mcp.json` from the standard plugin layout, so the integration stays source-owned instead of copying prompts into another repository.
135
+
136
+ ```bash
137
+ copilot plugin install AgentsKit-io/doc-bridge
138
+ ```
139
+
132
140
  ### Portable Agent Skill
133
141
 
134
142
  [`skills/doc-bridge-handoff`](skills/doc-bridge-handoff) packages the same fail-closed routing contract in the open Agent Skills layout for OpenClaw-compatible clients, Hermes Agent, Pi, Cursor, and other runtimes that can execute a local skill script. The skill prefers the read-only MCP tool and falls back to a pinned, zero-credential CLI resolver. It never edits files, runs returned checks, or grants authority outside `editRoots`.
@@ -246,7 +254,7 @@ permissions:
246
254
 
247
255
  steps:
248
256
  - uses: actions/checkout@v4
249
- - uses: AgentsKit-io/doc-bridge@v1.3.0
257
+ - uses: AgentsKit-io/doc-bridge@v1.4.0
250
258
  with:
251
259
  config-path: doc-bridge.config.json
252
260
  ```
@@ -332,7 +340,7 @@ ak-docs memory promote --pr # opens draft PR via gh
332
340
 
333
341
  ## Status
334
342
 
335
- **v1.3.0 stable** — deterministic Documentation Standard v1 conformance, VitePress, Starlight, Nextra, and Nx discovery, verified release provenance, Marketplace Action, doctor + CI + skill, and full Tier A/B/C.
343
+ **v1.4.0 stable** — portable, fail-closed handoffs for Cursor, Pi, Hermes, and ClawHub-compatible clients; deterministic Documentation Standard v1 conformance; verified release provenance; Marketplace Action; doctor + CI + skill; and full Tier A/B/C.
336
344
 
337
345
  ```bash
338
346
  pnpm install && pnpm build && pnpm test
package/action.yml CHANGED
@@ -20,7 +20,7 @@ inputs:
20
20
  package-version:
21
21
  description: Exact @agentskit/doc-bridge npm version (kept in sync with this Action release)
22
22
  required: false
23
- default: '1.4.0'
23
+ default: '1.4.1'
24
24
 
25
25
  runs:
26
26
  using: composite
@@ -1350,7 +1350,7 @@ var buildLookup = (config, packages, corpus, indexOutFile, humanDocs = {}, root
1350
1350
  };
1351
1351
 
1352
1352
  // src/version.ts
1353
- var PACKAGE_VERSION = "1.4.0";
1353
+ var PACKAGE_VERSION = "1.4.1";
1354
1354
 
1355
1355
  // src/index-builder/capabilities.ts
1356
1356
  var renderCapabilitiesJson = (config, index, paths) => {