@agentskit/doc-bridge 1.11.1 → 1.11.2
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 +6 -0
- package/README.md +1 -1
- package/action.yml +1 -1
- package/dist/cli/program.js +8 -9
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -9
- package/dist/index.js.map +1 -1
- package/ecosystem-claims.json +0 -9
- package/ecosystem-upstream.json +3 -3
- package/ecosystem.json +9 -75
- package/mcpb/manifest.json +1 -1
- package/package.json +1 -1
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
- package/src/conformance/ecosystem-contract.ts +8 -10
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
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.
|
|
300
|
+
checked-in package version is `1.11.2`.
|
|
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
|
package/action.yml
CHANGED
package/dist/cli/program.js
CHANGED
|
@@ -922,9 +922,9 @@ var ManifestSchema = z2.object({
|
|
|
922
922
|
schemaVersion: z2.literal(2),
|
|
923
923
|
parentBrand: z2.object({ id: NonEmptyStringSchema, name: NonEmptyStringSchema }).passthrough(),
|
|
924
924
|
products: z2.array(ProductSchema).min(1),
|
|
925
|
-
//
|
|
926
|
-
properties: z2.array(LegacyPropertySchema).refine((value) => value.length ===
|
|
927
|
-
message: "must project either the legacy
|
|
925
|
+
// Legacy three-product shim or full public product projection of products[].
|
|
926
|
+
properties: z2.array(LegacyPropertySchema).refine((value) => value.length === 3 || value.length === 6, {
|
|
927
|
+
message: "must project either the legacy three products or the full public product catalog"
|
|
928
928
|
}),
|
|
929
929
|
builder: z2.object({ id: NonEmptyStringSchema, name: NonEmptyStringSchema, url: HttpsUrlSchema }).passthrough().optional()
|
|
930
930
|
}).passthrough();
|
|
@@ -959,15 +959,14 @@ var ClaimsSchema = z2.object({
|
|
|
959
959
|
manifestSchemaVersion: z2.literal(2),
|
|
960
960
|
products: z2.array(ClaimProductSchema)
|
|
961
961
|
}).passthrough();
|
|
962
|
-
var
|
|
963
|
-
var
|
|
962
|
+
var LEGACY_PRODUCT_IDS = ["agentskit", "playbook", "registry"];
|
|
963
|
+
var PUBLIC_PRODUCT_IDS = [
|
|
964
964
|
"agentskit",
|
|
965
965
|
"registry",
|
|
966
966
|
"agentskit-chat",
|
|
967
967
|
"playbook",
|
|
968
968
|
"doc-bridge",
|
|
969
|
-
"code-review"
|
|
970
|
-
"akos"
|
|
969
|
+
"code-review"
|
|
971
970
|
];
|
|
972
971
|
var parseCanonicalEcosystemContract = (manifestInput, claimsInput) => {
|
|
973
972
|
const manifest = ManifestSchema.parse(manifestInput);
|
|
@@ -994,7 +993,7 @@ var parseCanonicalEcosystemContract = (manifestInput, claimsInput) => {
|
|
|
994
993
|
if (!products.has(nextId)) throw new Error(`Product ${product.id} references unknown product ${nextId}.`);
|
|
995
994
|
}
|
|
996
995
|
}
|
|
997
|
-
const propertyIds = manifest.properties.length ===
|
|
996
|
+
const propertyIds = manifest.properties.length === 6 ? PUBLIC_PRODUCT_IDS : LEGACY_PRODUCT_IDS;
|
|
998
997
|
for (const [index, id] of propertyIds.entries()) {
|
|
999
998
|
const legacy = manifest.properties[index];
|
|
1000
999
|
const product = products.get(id);
|
|
@@ -4062,7 +4061,7 @@ var buildLookup = (config, packages, corpus, indexOutFile, humanDocs = {}, root
|
|
|
4062
4061
|
};
|
|
4063
4062
|
|
|
4064
4063
|
// src/version.ts
|
|
4065
|
-
var PACKAGE_VERSION = "1.11.
|
|
4064
|
+
var PACKAGE_VERSION = "1.11.2";
|
|
4066
4065
|
|
|
4067
4066
|
// src/index-builder/capabilities.ts
|
|
4068
4067
|
var renderCapabilitiesJson = (config, index, paths) => {
|