@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.11.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 221b4a6: Retire the public AKOS ecosystem contract and generated documentation references.
8
+
3
9
  ## 1.11.1
4
10
 
5
11
  ### Patch Changes
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.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
@@ -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.11.2'
24
24
 
25
25
  runs:
26
26
  using: composite
@@ -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
- // Historical four-product shim or full seven-product projection of products[].
926
- properties: z2.array(LegacyPropertySchema).refine((value) => value.length === 4 || value.length === 7, {
927
- message: "must project either the legacy four products or the full seven-product catalog"
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 LEGACY_FOUR_PRODUCT_IDS = ["agentskit", "akos", "playbook", "registry"];
963
- var FULL_SEVEN_PRODUCT_IDS = [
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 === 7 ? FULL_SEVEN_PRODUCT_IDS : LEGACY_FOUR_PRODUCT_IDS;
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.1";
4064
+ var PACKAGE_VERSION = "1.11.2";
4066
4065
 
4067
4066
  // src/index-builder/capabilities.ts
4068
4067
  var renderCapabilitiesJson = (config, index, paths) => {