@agentskit/doc-bridge 1.11.0 → 1.11.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.
- package/CHANGELOG.md +19 -0
- package/README.md +8 -4
- package/action.yml +1 -1
- package/dist/cli/program.js +2 -2
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/docs/agent-corpus/audit.md +25 -0
- package/docs/agent-corpus/bin.md +26 -0
- package/docs/agent-corpus/budget.md +26 -0
- package/docs/agent-corpus/config.md +33 -0
- package/docs/agent-corpus/federation.md +25 -0
- package/docs/agent-corpus/findings.md +25 -0
- package/docs/agent-corpus/fixes.md +25 -0
- package/docs/agent-corpus/lib.md +29 -0
- package/docs/agent-corpus/metrics.md +26 -0
- package/docs/agent-corpus/parity.md +33 -0
- package/docs/agent-corpus/playbook.md +22 -0
- package/docs/agent-corpus/plugins.md +23 -0
- package/docs/agent-corpus/report.md +27 -0
- package/docs/agent-corpus/retrieval.md +33 -0
- package/docs/agent-corpus/rules.md +30 -0
- package/docs/agent-corpus/safety.md +23 -0
- package/docs/agent-corpus/schemas.md +34 -0
- package/docs/agent-corpus/scripts.md +29 -0
- package/docs/agent-corpus/shims.md +26 -0
- package/docs/parity/public-claims-v1.json +18 -1
- package/mcpb/manifest.json +1 -1
- package/package.json +1 -1
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
- package/src/discovery/reproducibility.ts +11 -2
- package/src/version.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9636,7 +9636,7 @@ declare const chunksFromMarkdown: (property: string, raw: string, sourceUrl: str
|
|
|
9636
9636
|
declare const loadFederatedChunks: (root: string, config: DocBridgeConfigV1, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
|
|
9637
9637
|
declare const retrieveHybridChunks: (root: string, config: DocBridgeConfigV1, index: DocBridgeIndexV1, query: string, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
|
|
9638
9638
|
|
|
9639
|
-
declare const PACKAGE_VERSION = "1.11.
|
|
9639
|
+
declare const PACKAGE_VERSION = "1.11.1";
|
|
9640
9640
|
|
|
9641
9641
|
type FrontmatterValue = string | boolean | readonly string[];
|
|
9642
9642
|
type FrontmatterData = Record<string, FrontmatterValue>;
|
package/dist/index.js
CHANGED
|
@@ -4400,7 +4400,7 @@ var buildLookup = (config, packages, corpus, indexOutFile, humanDocs = {}, root
|
|
|
4400
4400
|
};
|
|
4401
4401
|
|
|
4402
4402
|
// src/version.ts
|
|
4403
|
-
var PACKAGE_VERSION = "1.11.
|
|
4403
|
+
var PACKAGE_VERSION = "1.11.1";
|
|
4404
4404
|
|
|
4405
4405
|
// src/index-builder/capabilities.ts
|
|
4406
4406
|
var renderCapabilitiesJson = (config, index, paths) => {
|
|
@@ -7121,7 +7121,7 @@ var checkIndexReproducibility = (root, indexPath, paths) => {
|
|
|
7121
7121
|
const ignored = [];
|
|
7122
7122
|
for (let index = 0; index + 3 < fields.length; index += 4) {
|
|
7123
7123
|
const [source, line, pattern, path] = [fields[index], fields[index + 1], fields[index + 2], fields[index + 3]];
|
|
7124
|
-
if (!path) continue;
|
|
7124
|
+
if (!path || pattern?.startsWith("!")) continue;
|
|
7125
7125
|
ignored.push({ path, rule: `${source ?? "?"}:${line ?? "?"}:${pattern ?? "?"}` });
|
|
7126
7126
|
}
|
|
7127
7127
|
return { checked: true, ignored: ignored.sort((left, right) => left.path.localeCompare(right.path)) };
|