@agentskit/doc-bridge 1.3.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,23 @@
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
+
10
+ ## 1.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 14a9075: Add a portable, fail-closed Doc Bridge handoff skill with a zero-credential resolver and synthetic compatibility fixture for Agent Skills runtimes.
15
+
16
+ ### Patch Changes
17
+
18
+ - 5133bda: Expose the portable Doc Bridge handoff skill as a discoverable Pi package.
19
+ - 14a9075: Add a Cursor plugin manifest, pinned MCP configuration, and handoff skill.
20
+
3
21
  ## 1.3.0
4
22
 
5
23
  ### 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.2.1` |
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` |
@@ -125,6 +125,34 @@ Using Cline? Follow the deterministic [`llms-install.md`](llms-install.md) setup
125
125
 
126
126
  See [docs/getting-started.md](docs/getting-started.md), [docs/mcp.md](docs/mcp.md), and [docs/examples.md](docs/examples.md).
127
127
 
128
+ ### Cursor plugin
129
+
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
+
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
+
140
+ ### Portable Agent Skill
141
+
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`.
143
+
144
+ Install the published skill from [ClawHub](https://clawhub.ai/emersonbraun/skills/doc-bridge-handoff):
145
+
146
+ ```bash
147
+ clawhub install doc-bridge-handoff
148
+ ```
149
+
150
+ Pi users can install the same source-owned skill through the npm package:
151
+
152
+ ```bash
153
+ pi install npm:@agentskit/doc-bridge
154
+ ```
155
+
128
156
  ## Claude Desktop MCP Bundle
129
157
 
130
158
  Doc Bridge can be packaged as a local MCP Bundle for Claude Desktop. The bundle keeps the eight MCP tools read-only and asks the user to select the repository's `doc-bridge.config.json`; that file defines the project boundary Doc Bridge may read.
@@ -226,7 +254,7 @@ permissions:
226
254
 
227
255
  steps:
228
256
  - uses: actions/checkout@v4
229
- - uses: AgentsKit-io/doc-bridge@v1.2.1
257
+ - uses: AgentsKit-io/doc-bridge@v1.4.0
230
258
  with:
231
259
  config-path: doc-bridge.config.json
232
260
  ```
@@ -312,7 +340,7 @@ ak-docs memory promote --pr # opens draft PR via gh
312
340
 
313
341
  ## Status
314
342
 
315
- **v1.2.1 stable** — deterministic Documentation Standard v1 conformance, verified release provenance, Fumadocs portal, 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.
316
344
 
317
345
  ```bash
318
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.3.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.3.0";
1353
+ var PACKAGE_VERSION = "1.4.1";
1354
1354
 
1355
1355
  // src/index-builder/capabilities.ts
1356
1356
  var renderCapabilitiesJson = (config, index, paths) => {