@agentskit/doc-bridge 1.3.0 → 1.4.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 +11 -0
- package/README.md +23 -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/choose-context-layer.md +129 -0
- package/docs/guides/gate-ci.md +1 -1
- package/docs/guides/meta.json +1 -0
- 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 +12 -3
- package/skills/doc-bridge-handoff/SKILL.md +38 -0
- package/skills/doc-bridge-handoff/fixtures/synthetic-repo/doc-bridge.config.json +23 -0
- package/skills/doc-bridge-handoff/fixtures/synthetic-repo/docs/for-agents/packages/payments.md +5 -0
- package/skills/doc-bridge-handoff/fixtures/synthetic-repo/packages/payments/package.json +4 -0
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +70 -0
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 14a9075: Add a portable, fail-closed Doc Bridge handoff skill with a zero-credential resolver and synthetic compatibility fixture for Agent Skills runtimes.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 5133bda: Expose the portable Doc Bridge handoff skill as a discoverable Pi package.
|
|
12
|
+
- 14a9075: Add a Cursor plugin manifest, pinned MCP configuration, and handoff skill.
|
|
13
|
+
|
|
3
14
|
## 1.3.0
|
|
4
15
|
|
|
5
16
|
### 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.
|
|
119
|
+
| **GitHub Action / CI** | Fail stale indexes and broken human-doc links on PRs | `AgentsKit-io/doc-bridge@v1.3.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,26 @@ 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
|
+
### Portable Agent Skill
|
|
133
|
+
|
|
134
|
+
[`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`.
|
|
135
|
+
|
|
136
|
+
Install the published skill from [ClawHub](https://clawhub.ai/emersonbraun/skills/doc-bridge-handoff):
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
clawhub install doc-bridge-handoff
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Pi users can install the same source-owned skill through the npm package:
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
pi install npm:@agentskit/doc-bridge
|
|
146
|
+
```
|
|
147
|
+
|
|
128
148
|
## Claude Desktop MCP Bundle
|
|
129
149
|
|
|
130
150
|
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 +246,7 @@ permissions:
|
|
|
226
246
|
|
|
227
247
|
steps:
|
|
228
248
|
- uses: actions/checkout@v4
|
|
229
|
-
- uses: AgentsKit-io/doc-bridge@v1.
|
|
249
|
+
- uses: AgentsKit-io/doc-bridge@v1.3.0
|
|
230
250
|
with:
|
|
231
251
|
config-path: doc-bridge.config.json
|
|
232
252
|
```
|
|
@@ -312,7 +332,7 @@ ak-docs memory promote --pr # opens draft PR via gh
|
|
|
312
332
|
|
|
313
333
|
## Status
|
|
314
334
|
|
|
315
|
-
**v1.
|
|
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.
|
|
316
336
|
|
|
317
337
|
```bash
|
|
318
338
|
pnpm install && pnpm build && pnpm test
|
package/action.yml
CHANGED
package/dist/cli/program.js
CHANGED
|
@@ -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.
|
|
1353
|
+
var PACKAGE_VERSION = "1.4.0";
|
|
1354
1354
|
|
|
1355
1355
|
// src/index-builder/capabilities.ts
|
|
1356
1356
|
var renderCapabilitiesJson = (config, index, paths) => {
|