@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.
- package/CHANGELOG.md +12 -2
- package/README.md +3 -2
- package/action.yml +1 -1
- package/dist/cli/program.js +582 -470
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.js +500 -388
- package/dist/index.js.map +1 -1
- package/docs/DESIGN.md +71 -0
- package/docs/MARKETPLACE-ECOSYSTEM-PLAN.md +1 -1
- package/docs/PRD-enterprise-hardening.md +5 -5
- package/docs/PRD-knowledge-retrieval-and-enrichment.md +1 -1
- package/docs/knowledge-engine-runbook.md +1 -1
- package/docs/loop-workflow.md +15 -15
- package/docs/spec/config-v1.md +29 -7
- package/docs/spec/documentation-standard-v1.md +5 -0
- package/docs/spec/mcp-knowledge-tools-v1.md +1 -1
- package/docs/validation-cycle-plan.md +13 -13
- package/ecosystem-claims.json +23 -14
- package/ecosystem-upstream.json +3 -3
- package/ecosystem.json +318 -99
- package/mcpb/manifest.json +1 -1
- package/package.json +2 -1
- package/skills/doc-bridge-handoff/SKILL.md +1 -1
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
- package/src/conformance/ecosystem-contract.ts +10 -24
- package/src/discovery/repository.ts +7 -1
- package/src/findings/report.ts +1 -1
- package/src/fixes/proposals.ts +4 -2
- package/src/gates/run-gates.ts +1 -1
- package/src/index-builder/human-adapters/core.ts +10 -4
- package/src/lib/ignore-filter.ts +151 -0
- package/src/lib/walk.ts +10 -2
- package/src/memory/ingest.ts +1 -1
- package/src/report/html.ts +1 -1
- package/src/safety/repository.ts +9 -0
- package/src/version.ts +1 -1
- package/docs/DOGFOOD-ROUND2.md +0 -147
- package/docs/DOGFOOD-ROUND3.md +0 -79
- package/docs/DOGFOOD-V1.md +0 -89
- 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.
|
|
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
|
|
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
|
*
|