@agentskit/doc-bridge 0.1.0-alpha.3 → 1.0.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/README.md +139 -57
  3. package/action.yml +78 -0
  4. package/dist/cli/program.js +1000 -70
  5. package/dist/cli/program.js.map +1 -1
  6. package/dist/index.d.ts +238 -26
  7. package/dist/index.js +717 -23
  8. package/dist/index.js.map +1 -1
  9. package/docs/DOGFOOD-ROUND3.md +74 -0
  10. package/docs/DOGFOOD-V1.md +84 -0
  11. package/docs/POSITIONING.md +2 -0
  12. package/docs/RELEASE.md +5 -3
  13. package/docs/chat-and-rag.md +2 -0
  14. package/docs/getting-started.md +14 -1
  15. package/docs/landing/index.html +299 -0
  16. package/docs/mcp.md +10 -1
  17. package/docs/ollama-demo.md +64 -0
  18. package/docs/playbook/doc-bridge-pattern.md +114 -0
  19. package/docs/recipes/index-pipeline.md +89 -0
  20. package/docs/skills/doc-bridge.md +64 -0
  21. package/docs/spec/cli.md +6 -0
  22. package/docs/spec/playbook-feedback.md +12 -4
  23. package/examples/demo-example/doc-bridge.config.json +23 -0
  24. package/examples/demo-example/docs/for-agents/INDEX.md +3 -0
  25. package/examples/demo-example/docs/for-agents/packages/example.md +14 -0
  26. package/examples/demo-example/package.json +7 -0
  27. package/examples/demo-example/src/.gitkeep +0 -0
  28. package/examples/demo-monorepo/doc-bridge.config.json +37 -0
  29. package/examples/demo-monorepo/docs/for-agents/INDEX.md +4 -0
  30. package/examples/demo-monorepo/docs/for-agents/packages/auth.md +22 -0
  31. package/examples/demo-monorepo/docs/for-agents/packages/billing.md +19 -0
  32. package/examples/demo-monorepo/docs/human/guides/auth.md +7 -0
  33. package/examples/demo-monorepo/package.json +7 -0
  34. package/examples/demo-monorepo/packages/auth/package.json +8 -0
  35. package/examples/demo-monorepo/packages/billing/package.json +7 -0
  36. package/examples/demo-monorepo/pnpm-workspace.yaml +2 -0
  37. package/examples/ollama-chat.config.ts +42 -0
  38. package/package.json +7 -4
  39. package/src/cli/demo.ts +143 -0
  40. package/src/cli/program.ts +194 -14
  41. package/src/doctor/badge.ts +53 -0
  42. package/src/doctor/run-doctor.ts +286 -0
  43. package/src/index-builder/build-handoffs.ts +19 -1
  44. package/src/index-builder/watch-index.ts +94 -0
  45. package/src/index.ts +24 -0
  46. package/src/intelligence/adapter.ts +14 -1
  47. package/src/mcp/install.ts +84 -0
  48. package/src/memory/github-pr.ts +190 -0
  49. package/src/playbook/doc-bridge-pattern.ts +121 -0
  50. package/src/query/query.ts +19 -1
  51. package/src/schemas/agent-handoff.ts +11 -0
  52. package/src/version.ts +1 -1
@@ -0,0 +1,114 @@
1
+ ---
2
+ type: pattern
3
+ id: doc-bridge-pattern
4
+ purpose: Route coding agents to the correct package, checks, and human docs in any monorepo.
5
+ owner: AgentsKit
6
+ license: CC-BY-4.0
7
+ visibility: public
8
+ tags: [agents, documentation, monorepo, handoff, mcp]
9
+ ---
10
+
11
+ # Doc Bridge Pattern
12
+
13
+ **AgentHandoff for your monorepo** — deterministic routing so agents edit the right roots, run the right checks, and stay linked to human documentation.
14
+
15
+ Published pattern for [Agents Playbook](https://playbook.agentskit.io/). Export with:
16
+
17
+ ```bash
18
+ ak-docs playbook pattern --text
19
+ ak-docs playbook pattern --json
20
+ ```
21
+
22
+ ## Problem
23
+
24
+ Coding agents guess package ownership. They edit sibling modules, run repo-wide tests, and ship changes without a bridge to human-facing guides. Wikis and RAG explain concepts but weakly answer *where to act*.
25
+
26
+ ## Solution (three artifacts)
27
+
28
+ | Artifact | Role |
29
+ |----------|------|
30
+ | **AgentHandoff** | JSON handoff: `startHere`, `editRoots`, `checks`, `humanDoc`, `bridge` |
31
+ | **DocBridgeIndex** | Deterministic index + `contentHash` for CI freshness gates |
32
+ | **Self-describe** | `llms.txt`, `capabilities.json` for discovery |
33
+
34
+ ## Four loops
35
+
36
+ | Loop | Command | Outcome |
37
+ |------|---------|---------|
38
+ | **Act** | `ak-docs query package <id> --agent` | Agent edits only `editRoots` |
39
+ | **Bridge** | `ak-docs bootstrap agent-docs` | Link agent corpus ↔ human site |
40
+ | **Learn** | `ak-docs memory promote --pr` | HITL draft PR from agent memory |
41
+ | **Explain** | `ak-docs ask "<question>"` | Local consult + handoff preview |
42
+
43
+ ## 60-second proof
44
+
45
+ ```bash
46
+ npm i -D @agentskit/doc-bridge
47
+ npx ak-docs demo --text
48
+ ak-docs mcp install --cursor
49
+ ```
50
+
51
+ ## AgentHandoff example
52
+
53
+ ```json
54
+ {
55
+ "type": "agent-handoff",
56
+ "startHere": "docs/for-agents/packages/auth.md",
57
+ "editRoots": ["packages/auth"],
58
+ "checks": ["pnpm --filter @demo/auth test"],
59
+ "humanDoc": "/docs/guides/auth",
60
+ "bridge": { "humanDoc": "linked" }
61
+ }
62
+ ```
63
+
64
+ When `humanDoc` is missing, handoffs surface `bridge.action: "ak-docs bootstrap agent-docs"` — a feature, not a silent gap.
65
+
66
+ ## MCP contract
67
+
68
+ Agents call `handoff.resolve` before editing `packages/*`:
69
+
70
+ 1. Read `startHere`
71
+ 2. Stay inside `editRoots`
72
+ 3. Run every `checks` command
73
+ 4. Link `humanDoc` or escalate missing bridge
74
+
75
+ ## CI gate
76
+
77
+ ```yaml
78
+ - uses: AgentsKit-io/doc-bridge@v1.0.0
79
+ ```
80
+
81
+ Or: `ak-docs index && ak-docs gate run` — stale index fails the PR.
82
+
83
+ ## Coverage metric
84
+
85
+ ```bash
86
+ ak-docs doctor --text
87
+ ak-docs doctor --badge
88
+ ```
89
+
90
+ Teams track handoff % and human-bridge % daily.
91
+
92
+ ## When to use
93
+
94
+ - pnpm/npm monorepos with real package ownership
95
+ - Fumadocs / Docusaurus human sites + dense agent corpus
96
+ - Cursor / Claude / Codex agents that should not guess edit roots
97
+
98
+ ## When not to use
99
+
100
+ - Single-file repos with no ownership boundaries (AGENTS.md may suffice)
101
+ - Hosted doc chat as primary product (doc-bridge is routing + bridge, not SaaS chat)
102
+
103
+ ## Promotion to Playbook
104
+
105
+ 1. Review this file for secrets and private paths
106
+ 2. Open PR to [agents-playbook](https://github.com/AgentsKit-io/agents-playbook) under `content/docs/pillars/ai-collaboration/`
107
+ 3. Or run `ak-docs memory promote --pr` for memory-sourced findings
108
+
109
+ ## References
110
+
111
+ - npm: https://www.npmjs.com/package/@agentskit/doc-bridge
112
+ - repo: https://github.com/AgentsKit-io/doc-bridge
113
+ - skill: [doc-bridge skill](../skills/doc-bridge.md)
114
+ - landing: https://agentskit-io.github.io/doc-bridge/
@@ -0,0 +1,89 @@
1
+ # Index pipeline recipes
2
+
3
+ Keep `.doc-bridge/index.json` fresh during development and in CI.
4
+
5
+ ## Watch mode (local dev)
6
+
7
+ ```bash
8
+ ak-docs index --watch
9
+ ```
10
+
11
+ Watches `docs/for-agents/` (and human corpus dirs when configured). Rebuilds on `.md`, `.mdx`, `.json`, `.yaml` changes.
12
+
13
+ Pair with MCP in Cursor — agents always resolve against a live index.
14
+
15
+ ## Pre-commit hook
16
+
17
+ `.husky/pre-commit` or `.git/hooks/pre-commit`:
18
+
19
+ ```bash
20
+ #!/bin/sh
21
+ ak-docs index
22
+ ak-docs gate run index-freshness || {
23
+ echo "doc-bridge index is stale — run: ak-docs index"
24
+ exit 1
25
+ }
26
+ ```
27
+
28
+ Or only index agent docs when they change:
29
+
30
+ ```bash
31
+ #!/bin/sh
32
+ if git diff --cached --name-only | grep -Eq 'docs/for-agents/|doc-bridge\.config'; then
33
+ ak-docs index
34
+ fi
35
+ ```
36
+
37
+ ## Turborepo task
38
+
39
+ `turbo.json`:
40
+
41
+ ```json
42
+ {
43
+ "tasks": {
44
+ "ak-docs:index": {
45
+ "inputs": ["docs/for-agents/**", "doc-bridge.config.*"],
46
+ "outputs": [".doc-bridge/index.json", "llms.txt", ".doc-bridge/capabilities.json"]
47
+ },
48
+ "build": {
49
+ "dependsOn": ["ak-docs:index"]
50
+ }
51
+ }
52
+ }
53
+ ```
54
+
55
+ Root `package.json`:
56
+
57
+ ```json
58
+ {
59
+ "scripts": {
60
+ "ak-docs:index": "ak-docs index",
61
+ "ak-docs:gate": "ak-docs gate run"
62
+ }
63
+ }
64
+ ```
65
+
66
+ ## CI (GitHub Action)
67
+
68
+ ```yaml
69
+ - uses: AgentsKit-io/doc-bridge@v1.0.0
70
+ ```
71
+
72
+ Or manual:
73
+
74
+ ```yaml
75
+ - run: npm i -g @agentskit/doc-bridge && ak-docs index && ak-docs gate run
76
+ ```
77
+
78
+ ## Coverage badge in README
79
+
80
+ ```bash
81
+ ak-docs doctor --badge
82
+ # paste markdown into README
83
+
84
+ # or persist for CI:
85
+ ak-docs doctor --write-badge
86
+ pnpm coverage:badge
87
+ ```
88
+
89
+ Paste the shields.io line from `.doc-bridge/coverage-badge.json` → `markdown` field.
@@ -0,0 +1,64 @@
1
+ # Doc Bridge — agent routing skill
2
+
3
+ Use this skill in Cursor, Claude Code, or Codex so agents resolve ownership **before** editing packages.
4
+
5
+ ## When to trigger
6
+
7
+ - User asks to change code under `packages/*`, `apps/*`, or any monorepo module
8
+ - Task mentions auth, billing, API, schema, or a package name
9
+ - Before creating or moving files in an unfamiliar area of the repo
10
+
11
+ ## Required workflow
12
+
13
+ 1. **Resolve handoff first** — call MCP tool `handoff.resolve` with the package id, or run:
14
+ ```bash
15
+ ak-docs query ownership <id> --agent
16
+ ```
17
+ 2. **Read `startHere`** — open the agent doc path from the handoff
18
+ 3. **Edit only `editRoots`** — do not touch sibling packages
19
+ 4. **Run `checks`** from the handoff before claiming done
20
+ 5. **Bridge to humans** — if `bridge.humanDoc` is `missing`, tell the user and suggest `ak-docs bootstrap agent-docs`; if `humanDoc` is set, link it in your summary
21
+
22
+ ## MCP setup (one-time)
23
+
24
+ ```bash
25
+ ak-docs mcp install --cursor
26
+ ```
27
+
28
+ Or paste into `.cursor/mcp.json`:
29
+
30
+ ```json
31
+ {
32
+ "mcpServers": {
33
+ "ak-docs": {
34
+ "command": "npx",
35
+ "args": ["ak-docs", "mcp"],
36
+ "cwd": "/absolute/path/to/repo"
37
+ }
38
+ }
39
+ }
40
+ ```
41
+
42
+ ## Cursor rule (paste into `.cursor/rules/doc-bridge.mdc`)
43
+
44
+ ```markdown
45
+ ---
46
+ description: Resolve doc-bridge handoff before editing packages
47
+ globs: packages/**/*
48
+ ---
49
+
50
+ Before editing any file under packages/ or apps/:
51
+
52
+ 1. Call MCP `handoff.resolve` for the owning package id
53
+ 2. Read `startHere` from the handoff
54
+ 3. Only modify paths under `editRoots`
55
+ 4. Run every command in `checks` before finishing
56
+ 5. If humanDoc is missing, surface `ak-docs bootstrap agent-docs` to the user
57
+ ```
58
+
59
+ ## Quick consult (no LLM)
60
+
61
+ ```bash
62
+ ak-docs ask "auth is broken in staging"
63
+ ak-docs doctor --text
64
+ ```
package/docs/spec/cli.md CHANGED
@@ -49,7 +49,10 @@ pnpm add -D @agentskit/doc-bridge
49
49
  | `ak-docs init --scaffold-workspaces` | Also create draft `docs/for-agents/packages/*.md` from discovered pnpm workspaces; never overwrites existing docs |
50
50
  | `ak-docs bootstrap agent-docs` | Create draft `docs/for-agents/human/*.md` from configured human-doc adapters; never overwrites existing docs |
51
51
  | `ak-docs validate-config` | Zod-validate config file |
52
+ | `ak-docs demo [--fixture example\|monorepo] [--text]` | Bundled 60s wow path: handoff, gate red→green, MCP snippet |
53
+ | `ak-docs doctor [--text] [--badge] [--write-badge]` | Coverage score, gaps, gates, shields.io badge |
52
54
  | `ak-docs index` | Build `DocBridgeIndex` + optional `llms.txt` |
55
+ | `ak-docs index --watch` | Debounced rebuild on agent/human doc changes |
53
56
  | `ak-docs query <target> [--agent] [--text]` | Resolve package/module/intent/change → handoff JSON or text |
54
57
  | `ak-docs search <term> [--agent] [--text]` | Full-text search over index |
55
58
  | `ak-docs ask <question>` | Human-readable local consult mode: search + best match + next handoff commands; no LLM |
@@ -60,11 +63,14 @@ pnpm add -D @agentskit/doc-bridge
60
63
  | `ak-docs memory ingest` | Normalize local memory files (`.agent-memory/**/*.md`, `.cursor/rules/*.mdc`) into `MemoryCandidate[]` |
61
64
  | `ak-docs memory classify` | Deterministically route candidates to agent/human/playbook/discard |
62
65
  | `ak-docs memory promote` | Build draft-only promotion body with safety scan; never auto-merges |
66
+ | `ak-docs memory promote --pr [--dry-run] [--force]` | Write draft + open GitHub draft PR via `gh` |
63
67
  | `ak-docs registry topology` | Print the `doc-curator` topology for AgentsKit/Registry composition |
64
68
  | `ak-docs playbook draft` | Build a draft Playbook feedback payload from local memory candidates |
69
+ | `ak-docs playbook pattern [--text]` | Export published Doc Bridge Playbook pattern (OKF markdown / JSON) |
65
70
  | `ak-docs list <kind> [--text]` | List packages, apps, intents, … |
66
71
  | `ak-docs gate run [index-freshness]` | Check generated index freshness |
67
72
  | `ak-docs mcp` | Start MCP server (stdio default) |
73
+ | `ak-docs mcp install --cursor \| --claude` | Write MCP server config for Cursor or Claude Desktop |
68
74
 
69
75
  ### Layer 1 — optional AgentsKit peers (`intelligence.enabled`)
70
76
 
@@ -66,12 +66,20 @@ mergePolicy:
66
66
  autoMerge: false
67
67
  ```
68
68
 
69
- ## Doc Bridge Pattern Stub
69
+ ## Doc Bridge Pattern (published)
70
70
 
71
- The public pattern should describe the trilogy:
71
+ Full pattern: [`docs/playbook/doc-bridge-pattern.md`](../playbook/doc-bridge-pattern.md)
72
+
73
+ Export for Playbook PR:
74
+
75
+ ```bash
76
+ ak-docs playbook pattern --text > doc-bridge-pattern.md
77
+ ```
78
+
79
+ The pattern describes the trilogy:
72
80
 
73
81
  - `AgentHandoff`: precise editing route for coding agents.
74
82
  - OKF docs: knowledge files that can be linted and indexed.
75
- - Self-Describe artifacts: `llms.txt`, `capabilities.json`, and content hashes for discovery.
83
+ - Self-describe artifacts: `llms.txt`, `capabilities.json`, and content hashes for discovery.
76
84
 
77
- The first automated implementation should only open a draft PR. Human review owns merge, licensing, and final wording.
85
+ Memory-sourced findings still use `ak-docs memory promote --pr` human review owns merge, licensing, and final wording.
@@ -0,0 +1,23 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "corpus": {
4
+ "agent": {
5
+ "root": "docs/for-agents"
6
+ }
7
+ },
8
+ "routing": {
9
+ "options": {
10
+ "ownership": {
11
+ "example": {
12
+ "path": "src",
13
+ "purpose": "Starter ownership target — replace with your real modules",
14
+ "checks": ["npm test"],
15
+ "agentDoc": "docs/for-agents/packages/example.md"
16
+ }
17
+ }
18
+ }
19
+ },
20
+ "gates": {
21
+ "preset": "minimal"
22
+ }
23
+ }
@@ -0,0 +1,3 @@
1
+ # Agent docs index
2
+
3
+ - [example](./packages/example.md) — starter ownership target
@@ -0,0 +1,14 @@
1
+ ---
2
+ type: package
3
+ package: example
4
+ editRoot: src
5
+ checks: [npm test]
6
+ ---
7
+
8
+ # example
9
+
10
+ Starter agent doc for the ak-docs demo.
11
+
12
+ ## Checks
13
+
14
+ - `npm test`
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "ak-docs-demo-example",
3
+ "private": true,
4
+ "scripts": {
5
+ "test": "node -e \"process.exit(0)\""
6
+ }
7
+ }
File without changes
@@ -0,0 +1,37 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "corpus": {
4
+ "agent": {
5
+ "root": "docs/for-agents",
6
+ "index": "docs/for-agents/INDEX.md"
7
+ },
8
+ "human": {
9
+ "plugin": "plain-markdown",
10
+ "options": {
11
+ "contentDir": "docs/human",
12
+ "urlPrefix": "/docs"
13
+ }
14
+ }
15
+ },
16
+ "routing": {
17
+ "plugin": "pnpm-monorepo",
18
+ "options": {
19
+ "ownership": {
20
+ "auth": {
21
+ "path": "packages/auth",
22
+ "purpose": "Authentication, sessions, and token validation",
23
+ "checks": ["pnpm --filter @demo/auth test", "pnpm --filter @demo/auth lint"],
24
+ "humanDoc": "/docs/guides/auth"
25
+ },
26
+ "billing": {
27
+ "path": "packages/billing",
28
+ "purpose": "Subscriptions, invoices, and payment webhooks",
29
+ "checks": ["pnpm --filter @demo/billing test"]
30
+ }
31
+ }
32
+ }
33
+ },
34
+ "gates": {
35
+ "preset": "minimal"
36
+ }
37
+ }
@@ -0,0 +1,4 @@
1
+ # Agent docs index
2
+
3
+ - [auth](./packages/auth.md) — authentication package
4
+ - [billing](./packages/billing.md) — billing package
@@ -0,0 +1,22 @@
1
+ ---
2
+ type: package
3
+ package: auth
4
+ editRoot: packages/auth
5
+ checks:
6
+ - pnpm --filter @demo/auth test
7
+ - pnpm --filter @demo/auth lint
8
+ humanDoc: /docs/guides/auth
9
+ ---
10
+
11
+ # auth
12
+
13
+ Owns authentication, sessions, and token validation.
14
+
15
+ ## Edit roots
16
+
17
+ - `packages/auth`
18
+
19
+ ## Checks
20
+
21
+ - `pnpm --filter @demo/auth test`
22
+ - `pnpm --filter @demo/auth lint`
@@ -0,0 +1,19 @@
1
+ ---
2
+ type: package
3
+ package: billing
4
+ editRoot: packages/billing
5
+ checks:
6
+ - pnpm --filter @demo/billing test
7
+ ---
8
+
9
+ # billing
10
+
11
+ Owns subscriptions, invoices, and payment webhooks.
12
+
13
+ ## Edit roots
14
+
15
+ - `packages/billing`
16
+
17
+ ## Checks
18
+
19
+ - `pnpm --filter @demo/billing test`
@@ -0,0 +1,7 @@
1
+ ---
2
+ id: guides/auth
3
+ ---
4
+
5
+ # Auth guide
6
+
7
+ Human-facing guide for authentication flows and session management.
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "ak-docs-demo-monorepo",
3
+ "private": true,
4
+ "scripts": {
5
+ "test": "pnpm -r test"
6
+ }
7
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "@demo/auth",
3
+ "private": true,
4
+ "scripts": {
5
+ "test": "node -e \"process.exit(0)\"",
6
+ "lint": "node -e \"process.exit(0)\""
7
+ }
8
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "@demo/billing",
3
+ "private": true,
4
+ "scripts": {
5
+ "test": "node -e \"process.exit(0)\""
6
+ }
7
+ }
@@ -0,0 +1,2 @@
1
+ packages:
2
+ - 'packages/*'
@@ -0,0 +1,42 @@
1
+ import { defineConfig } from '@agentskit/doc-bridge/config'
2
+
3
+ /**
4
+ * Local Ollama chat demo — zero cloud API key.
5
+ *
6
+ * Prerequisites:
7
+ * ollama serve
8
+ * ollama pull llama3.2
9
+ * ollama pull nomic-embed-text
10
+ * npm i -D @agentskit/rag @agentskit/ink @agentskit/adapters @agentskit/memory react
11
+ *
12
+ * Then:
13
+ * ak-docs index
14
+ * ak-docs rag ingest
15
+ * ak-docs ask "who owns auth?" --chat
16
+ * ak-docs chat
17
+ */
18
+ export default defineConfig({
19
+ schemaVersion: 1,
20
+ corpus: {
21
+ agent: { root: 'docs/for-agents' },
22
+ },
23
+ intelligence: {
24
+ enabled: true,
25
+ adapter: {
26
+ provider: 'ollama',
27
+ model: 'llama3.2',
28
+ baseUrl: 'http://127.0.0.1:11434',
29
+ options: { embedModel: 'nomic-embed-text' },
30
+ },
31
+ chat: {
32
+ enabled: true,
33
+ sources: ['agent'],
34
+ handoffFirst: true,
35
+ },
36
+ retriever: {
37
+ enabled: true,
38
+ mode: 'agentskit-rag',
39
+ },
40
+ runtime: 'agentskit',
41
+ },
42
+ })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentskit/doc-bridge",
3
- "version": "0.1.0-alpha.3",
3
+ "version": "1.0.1",
4
4
  "description": "Human↔agent documentation bridge — deterministic handoffs, doc-site links, memory→docs, optional AgentsKit RAG/chat.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,6 +21,7 @@
21
21
  "files": [
22
22
  "dist",
23
23
  "bin",
24
+ "action.yml",
24
25
  "scripts/prepare.mjs",
25
26
  "docs",
26
27
  "examples",
@@ -43,12 +44,14 @@
43
44
  "smoke:packaged": "node scripts/smoke-packaged.mjs",
44
45
  "smoke:docsites": "node scripts/smoke-docsites.mjs",
45
46
  "smoke:real-docsites": "node scripts/smoke-real-docsites.mjs",
47
+ "smoke:ollama": "node scripts/smoke-ollama.mjs",
48
+ "coverage:badge": "node scripts/update-coverage-badge.mjs",
46
49
  "changeset": "changeset",
47
50
  "version-packages": "changeset version",
48
51
  "release": "pnpm build && pnpm test && changeset publish",
49
- "prepublishOnly": "pnpm build && pnpm test",
52
+ "prepublishOnly": "npm run build && npm test",
50
53
  "prepare": "node scripts/prepare.mjs",
51
- "prepack": "pnpm build"
54
+ "prepack": "npm run build"
52
55
  },
53
56
  "keywords": [
54
57
  "agentskit",
@@ -119,5 +122,5 @@
119
122
  "bugs": {
120
123
  "url": "https://github.com/AgentsKit-io/doc-bridge/issues"
121
124
  },
122
- "homepage": "https://github.com/AgentsKit-io/doc-bridge#readme"
125
+ "homepage": "https://agentskit-io.github.io/doc-bridge/"
123
126
  }