@kungfu-tech/buildchain 2.8.7-alpha.1 → 2.8.7
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/README.md +29 -1
- package/dist/site/agent-index.json +1 -0
- package/dist/site/artifact-schemas.json +1 -0
- package/dist/site/buildchain-contract.json +4 -4
- package/dist/site/buildchain-site.json +1619 -10
- package/dist/site/kfd-claims.json +326 -50
- package/dist/site/manual-registry.json +49 -10
- package/dist/site/node-api-registry.json +2 -2
- package/dist/site/page-registry.json +1437 -0
- package/dist/site/release-provenance.json +1 -0
- package/dist/site/site-manifest.json +56 -10
- package/dist/site/workflow-registry.json +5 -0
- package/docs/runtime-train-validation.md +123 -0
- package/docs/site-bundle-contract.md +30 -0
- package/docs/web-surface-deployments.md +22 -9
- package/package.json +4 -23
- package/packages/core/buildchain-kfd-claims.js +37 -6
- package/scripts/check-inventory.mjs +114 -5
- package/scripts/generate-site-bundle.mjs +311 -1
- package/scripts/web-surface-production-release-pr.mjs +315 -0
package/README.md
CHANGED
|
@@ -241,6 +241,7 @@ their own code.
|
|
|
241
241
|
|
|
242
242
|
- `buildchain-site.json`
|
|
243
243
|
- `site-manifest.json`
|
|
244
|
+
- `page-registry.json`
|
|
244
245
|
- `cli-registry.json`
|
|
245
246
|
- `workflow-registry.json`
|
|
246
247
|
- `release-model.json`
|
|
@@ -251,7 +252,34 @@ their own code.
|
|
|
251
252
|
|
|
252
253
|
`buildchain.libkungfu.dev` should render from these package-owned facts, then
|
|
253
254
|
layer presentation around them. The site should not hand-write Buildchain's
|
|
254
|
-
current release mechanics.
|
|
255
|
+
current release mechanics. `page-registry.json` is the complete markdown page
|
|
256
|
+
source for the public site: README homepage content, all packaged `docs/*.md`
|
|
257
|
+
manuals, action READMEs, the Node API package overview, and fixture guides.
|
|
258
|
+
|
|
259
|
+
## Homepage Content Contract
|
|
260
|
+
|
|
261
|
+
This README is also the homepage text source for `buildchain.libkungfu.dev`.
|
|
262
|
+
When a site repository consumes the `@kungfu-tech/buildchain` npm package, it
|
|
263
|
+
should use the generated `dist/site/buildchain-site.json` homepage fields
|
|
264
|
+
instead of parsing this README or maintaining separate homepage copy.
|
|
265
|
+
|
|
266
|
+
The first screen should be derived from:
|
|
267
|
+
|
|
268
|
+
- Page identity: the top-level heading.
|
|
269
|
+
- Lead: the opening paragraph that defines Buildchain Release Passport.
|
|
270
|
+
- Trust signal: the start of `Install and Verify`, especially passport-first
|
|
271
|
+
binary verification.
|
|
272
|
+
- Use signal: the start of `Use Buildchain`, especially the reusable workflow
|
|
273
|
+
and action surfaces.
|
|
274
|
+
|
|
275
|
+
The package-owned site bundle exposes ordered `homepage.sections`,
|
|
276
|
+
`homepage.displayPlan`, `homepage.rendererContract`, and a complete
|
|
277
|
+
`pages` collection mirrored from `page-registry.json`. A site renderer may adapt
|
|
278
|
+
layout, navigation, typography, examples, and visual assets, but it should not
|
|
279
|
+
maintain separate wording for Buildchain's release mechanics, workflow surface,
|
|
280
|
+
operation manuals, Node API overview, fixture guides, or release-passport trust
|
|
281
|
+
model. Renderer-contract text is machine/implementation metadata, not ordinary
|
|
282
|
+
homepage content.
|
|
255
283
|
|
|
256
284
|
## Local Verification
|
|
257
285
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Buildchain",
|
|
6
6
|
"package": "@kungfu-tech/buildchain",
|
|
7
|
-
"version": "2.8.7
|
|
7
|
+
"version": "2.8.7",
|
|
8
8
|
"repository": "https://github.com/kungfu-systems/buildchain"
|
|
9
9
|
},
|
|
10
10
|
"majorLine": "v2",
|
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
"manual entries carry source file digests so downstream sites and agents can detect stale hand-written documentation"
|
|
321
321
|
],
|
|
322
322
|
"breakingDigest": "sha256:7d0d2819e3a3e72989d9c57b5efe9d0bc0a79bc0f2c82a0c7b9d6c5a211a91f2",
|
|
323
|
-
"auditDigest": "sha256:
|
|
323
|
+
"auditDigest": "sha256:65236c3c8d0558544f084ebffdfca2e811fb3d05695faa0d560ce4657c8d7285"
|
|
324
324
|
},
|
|
325
325
|
{
|
|
326
326
|
"contractVersion": 1,
|
|
@@ -342,9 +342,9 @@
|
|
|
342
342
|
"agents can discover supported Node APIs without importing internal file paths"
|
|
343
343
|
],
|
|
344
344
|
"breakingDigest": "sha256:48f925608d3e2131d90936b07dc2a30341204cae3e6e785c0f77d61ad755c945",
|
|
345
|
-
"auditDigest": "sha256:
|
|
345
|
+
"auditDigest": "sha256:393f06ac60e0c71254df0bcecde1ed54c1d5f6ecb0a01e87f2d535cb2a90c52c"
|
|
346
346
|
}
|
|
347
347
|
],
|
|
348
348
|
"compatibilityDigest": "sha256:36421b592a782decbfe31a7d8d42d70ce1100a56a2c4f4a0ccc21f0617dc72bf",
|
|
349
|
-
"contractDigest": "sha256:
|
|
349
|
+
"contractDigest": "sha256:737771ed207aa2e57dbe85beeb0e146b7dbd32cd628b076d370e75efe39cea2c"
|
|
350
350
|
}
|