Skip to content

Doc Bridge v1.3.0 — deterministic handoffs for VitePress, Starlight, Nextra, and Nx

Latest

Choose a tag to compare

@github-actions github-actions released this 09 Aug 15:26
· 1 commit to master since this release
5ae15ff

Coding agents can read a repository and still make the wrong change. Documentation pages do not automatically tell an agent which package owns the work, which paths are safe to edit, or which checks prove the result.

Doc Bridge turns that scattered context into one deterministic handoff:

{
  "startHere": "docs/for-agents/packages/auth.md",
  "editRoots": ["packages/auth"],
  "checks": ["pnpm --filter @demo/auth test"],
  "humanDoc": "/docs/guides/auth"
}

Version 1.3.0 extends that bridge to more of the documentation and monorepo stacks JavaScript teams already use.

What is new

  • VitePress: maps configured content roots, clean URLs, index pages, prefixes, and declarative exclusions.
  • Astro Starlight: maps content roots, explicit slugs, drafts, index pages, and partial-file exclusions.
  • Nextra: maps content or src/content, contentDirBasePath, index routes, and deterministic route collisions.
  • Nx: discovers static project metadata and available test or lint targets from workspace manifests.

Why this is different

The adapters do not import documentation frameworks, execute next.config, load themes, run Nx plugins, or evaluate project code. They read bounded declarative files and produce the same handoff contract already used by the CLI, MCP server, and CI gates.

The core path still requires no LLM, provider account, hosted service, or API key. A model can consume the result, but it does not decide repository ownership or invent the validation command.

Try it now

npx -y @agentskit/doc-bridge@1.3.0 demo --text

Then start from the example closest to your repository:

  • Nx: examples/nx-monorepo.config.ts
  • VitePress: examples/vitepress-only.config.ts
  • Astro Starlight: examples/starlight-only.config.ts
  • Nextra: examples/nextra-only.config.ts

Documentation: https://doc-bridge.agentskit.io/?utm_source=github_release&utm_medium=owned&utm_campaign=docbridge_adapters_1_3_0

Source: https://github.com/AgentsKit-io/doc-bridge

npm: https://www.npmjs.com/package/@agentskit/doc-bridge/v/1.3.0

Provenance: https://registry.npmjs.org/-/npm/v1/attestations/@agentskit%2fdoc-bridge@1.3.0

Full changelog: v1.2.6...v1.3.0

If a route does not match your real documentation site, open an issue with the smallest reproducible layout. Suggestions, critical feedback, adapter contributions, and stars are welcome.