@agentskit/doc-bridge 1.11.2 → 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 +12 -2
  2. package/README.md +3 -2
  3. package/action.yml +1 -1
  4. package/dist/cli/program.js +582 -470
  5. package/dist/cli/program.js.map +1 -1
  6. package/dist/index.d.ts +7 -2
  7. package/dist/index.js +500 -388
  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 +23 -14
  20. package/ecosystem-upstream.json +3 -3
  21. package/ecosystem.json +318 -99
  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 -24
  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/dist/index.d.ts CHANGED
@@ -5549,6 +5549,11 @@ type SafeWalkOptions = {
5549
5549
  readonly maxBytes?: number;
5550
5550
  readonly maxTimeMs?: number;
5551
5551
  readonly maxMemoryMb?: number;
5552
+ /**
5553
+ * Skip what the repository ignores (Git ignore rules, or `.gitignore` files outside Git) in
5554
+ * addition to `exclude`, so build output never reaches the index. Defaults to true.
5555
+ */
5556
+ readonly respectIgnore?: boolean;
5552
5557
  };
5553
5558
  type SafeWalkResult = {
5554
5559
  readonly files: readonly string[];
@@ -9636,7 +9641,7 @@ declare const chunksFromMarkdown: (property: string, raw: string, sourceUrl: str
9636
9641
  declare const loadFederatedChunks: (root: string, config: DocBridgeConfigV1, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
9637
9642
  declare const retrieveHybridChunks: (root: string, config: DocBridgeConfigV1, index: DocBridgeIndexV1, query: string, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
9638
9643
 
9639
- declare const PACKAGE_VERSION = "1.11.2";
9644
+ declare const PACKAGE_VERSION = "1.12.0";
9640
9645
 
9641
9646
  type FrontmatterValue = string | boolean | readonly string[];
9642
9647
  type FrontmatterData = Record<string, FrontmatterValue>;
@@ -10043,7 +10048,7 @@ declare const formatKnowledgeLookupText: (response: KnowledgeLookupResponse) =>
10043
10048
  * The canonical finding, as the rest of the ecosystem consumes it.
10044
10049
  *
10045
10050
  * `Finding` and `SEVERITY_ORDER` mirror `@agentskit/core/finding`, which is an optional peer:
10046
- * Code Review, AKOS and dashboards read this shape, so a Doc Bridge diagnostic reported in it
10051
+ * Code Review and dashboards read this shape, so a Doc Bridge diagnostic reported in it
10047
10052
  * needs no parser of its own. A test imports the real package and asserts that what is emitted
10048
10053
  * here is assignable to it and that the severities are drawn from the real order.
10049
10054
  *