Skip to content

Latest commit

 

History

History
67 lines (55 loc) · 1.68 KB

File metadata and controls

67 lines (55 loc) · 1.68 KB
title Examples
description Ready-to-run Doc Bridge configurations and integration examples.

Examples

Config sketches under examples/:

File Profile
minimal-plain-markdown.config.ts Solo markdown, Layer 0 only
pnpm-monorepo.config.ts Workspace discovery + ownership
nx-monorepo.config.ts Static Nx project discovery + inferred checks
fumadocs-only.config.ts Human bridge via Fumadocs
docusaurus-only.config.ts Human bridge via Docusaurus
vitepress-only.config.ts Human bridge via VitePress
starlight-only.config.ts Human bridge via Astro Starlight
nextra-only.config.ts Human bridge via Nextra
fumadocs-with-chat.config.ts Standard + intelligence (AgentsKit peers)
docusaurus-with-memory.config.ts Assisted memory promotion path

Ownership without monorepo

{
  "schemaVersion": 1,
  "corpus": { "agent": { "root": "docs/for-agents" } },
  "routing": {
    "options": {
      "ownership": {
        "auth": {
          "path": "src/auth",
          "purpose": "Authentication",
          "checks": ["npm test -- auth"]
        }
      }
    }
  }
}

Or frontmatter on an agent doc:

---
package: auth
editRoot: src/auth
checks: [npm test -- auth]
---

Public ecosystem surfaces

Doc Bridge is designed to be consumed by:

Related