@agentskit/doc-bridge 1.11.1 → 1.12.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.
Files changed (41) hide show
  1. package/CHANGELOG.md +17 -1
  2. package/README.md +3 -2
  3. package/action.yml +1 -1
  4. package/dist/cli/program.js +582 -471
  5. package/dist/cli/program.js.map +1 -1
  6. package/dist/index.d.ts +7 -2
  7. package/dist/index.js +500 -389
  8. package/dist/index.js.map +1 -1
  9. package/docs/DESIGN.md +71 -0
  10. package/docs/MARKETPLACE-ECOSYSTEM-PLAN.md +1 -1
  11. package/docs/PRD-enterprise-hardening.md +5 -5
  12. package/docs/PRD-knowledge-retrieval-and-enrichment.md +1 -1
  13. package/docs/knowledge-engine-runbook.md +1 -1
  14. package/docs/loop-workflow.md +15 -15
  15. package/docs/spec/config-v1.md +29 -7
  16. package/docs/spec/documentation-standard-v1.md +5 -0
  17. package/docs/spec/mcp-knowledge-tools-v1.md +1 -1
  18. package/docs/validation-cycle-plan.md +13 -13
  19. package/ecosystem-claims.json +17 -17
  20. package/ecosystem-upstream.json +2 -2
  21. package/ecosystem.json +300 -147
  22. package/mcpb/manifest.json +1 -1
  23. package/package.json +2 -1
  24. package/skills/doc-bridge-handoff/SKILL.md +1 -1
  25. package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
  26. package/src/conformance/ecosystem-contract.ts +10 -26
  27. package/src/discovery/repository.ts +7 -1
  28. package/src/findings/report.ts +1 -1
  29. package/src/fixes/proposals.ts +4 -2
  30. package/src/gates/run-gates.ts +1 -1
  31. package/src/index-builder/human-adapters/core.ts +10 -4
  32. package/src/lib/ignore-filter.ts +151 -0
  33. package/src/lib/walk.ts +10 -2
  34. package/src/memory/ingest.ts +1 -1
  35. package/src/report/html.ts +1 -1
  36. package/src/safety/repository.ts +9 -0
  37. package/src/version.ts +1 -1
  38. package/docs/DOGFOOD-ROUND2.md +0 -147
  39. package/docs/DOGFOOD-ROUND3.md +0 -79
  40. package/docs/DOGFOOD-V1.md +0 -89
  41. package/docs/DOGFOOD.md +0 -97
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 6d552b3: Repository scans now respect ignore rules. `ak-docs index`, `doctor`, `scan`/`check`, gates, and link-fix proposals skip every path the repository ignores — via `git ls-files --cached --others --exclude-standard` inside a Git work tree (nested `.gitignore`, `.git/info/exclude`, and global excludes included; tracked files are kept), or the on-disk `.gitignore` files outside Git — in addition to the built-in safety excludes. Build output such as `.next/`, `.source/`, generated API pages, or `next-env.d.ts` no longer enters a committed index, so `index-freshness` and `index-reproducible` agree across clean checkouts. Agent-memory ingestion still reads gitignored memory directories.
8
+
9
+ ### Patch Changes
10
+
11
+ - 6d552b3: The documentation-standard ecosystem contract no longer hard-codes product membership. It used to require the deprecated `properties` shim to project either a fixed three-product list that included Playbook or a fixed six-product list without Harness, which forced repositories to keep a hidden `playbook` record in `ecosystem.json`. Membership now comes from the canonical manifest: the shim is optional, and each entry must name a distinct `products[]` record and match it exactly.
12
+
13
+ ## 1.11.2
14
+
15
+ ### Patch Changes
16
+
17
+ - 221b4a6: Retire a deprecated ecosystem contract and generated documentation references.
18
+
3
19
  ## 1.11.1
4
20
 
5
21
  ### Patch Changes
@@ -1057,7 +1073,7 @@ Dogfood round-2 fixes (search ranking, full-text body, peers, federation soft-fa
1057
1073
 
1058
1074
  ## 0.1.0-alpha.2
1059
1075
 
1060
- Dogfood-driven polish after ecosystem install on agentskit, agentskit-os, playbook, and registry.
1076
+ Dogfood-driven polish after ecosystem install on agentskit, playbook, registry, and a product monorepo.
1061
1077
 
1062
1078
  ### Fixes / features
1063
1079
 
package/README.md CHANGED
@@ -297,7 +297,7 @@ gates without silently rebuilding them. It rejects non-exact package versions.
297
297
  See the [Marketplace guide](docs/MARKETPLACE.md).
298
298
 
299
299
  The guide is pinned to the published stable Action release `v1.7.45`; the
300
- checked-in package version is `1.11.1`.
300
+ checked-in package version is `1.12.0`.
301
301
 
302
302
  Coverage is repository-specific. Run `ak-docs doctor --badge` locally to emit
303
303
  current handoff and human-bridge badges, or `pnpm coverage:badge` in CI; this
@@ -350,7 +350,8 @@ Designed for and dogfooded on open AgentsKit surfaces:
350
350
  | **Registry** | [registry.agentskit.io](https://registry.agentskit.io/) |
351
351
  | **Playbook** | [playbook.agentskit.io](https://playbook.agentskit.io/llms.txt) |
352
352
  | **AgentsKit Chat** | [documentation](https://chat.agentskit.io) · [source](https://github.com/AgentsKit-io/agentskit-chat) |
353
- | **Code Review** | [repository-native CLI](https://github.com/AgentsKit-io/code-review) |
353
+ | **Code Review** | [site](https://code-review.agentskit.io) · [source](https://github.com/AgentsKit-io/code-review) |
354
+ | **Harness** | [documentation](https://harness.agentskit.io/) · [source](https://github.com/AgentsKit-io/harness) |
354
355
  | **This repo** | CI green · `ak-docs gate run` on every PR |
355
356
 
356
357
  **Playbook pattern:** [`docs/playbook/doc-bridge-pattern.md`](docs/playbook/doc-bridge-pattern.md) — export with `ak-docs playbook pattern --text`
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.11.1'
23
+ default: '1.12.0'
24
24
 
25
25
  runs:
26
26
  using: composite