A verified no-op
Before starting the client or site compiler, pliego build verifies the existing receipt and graph, captures the current build context, and compares every bound input. An exact match preserves the publication byte-for-byte and records a no-op.
pliego build
pliego build
pliego cache status
# PLIEGO cache: NoOp | 0 rendered | … reusedDeclare lazy-route causality
let guide = Page::lazy(
"/guide",
guide_head(),
["src/main.rs", "content/guide.md"],
|| guide_view(),
);Page::lazy executes its renderer only when one of its declared sources changed. Unaffected route bytes are copied from the verified prior publication into a fresh stage. Page::new remains eager, and missing declarations fall back to conservative allSources invalidation.
Observe and clean private state
pliego cache status
pliego cache status --format json
pliego cache cleanStatus verifies the current output before reporting changed sources, rendered and reused artifact counts, receipt transition, and phase timings. Clean removes only last-build.json and last-rebuild.json under target/.pliego; Cargo outputs and the published site remain intact.
Engineering gate, not an adoption claim
npm run check:g4-engineeringThe gate scaffolds every official starter outside the workspace and proves executed build, verified no-op, selective route reuse, corrupted-record rejection, cache cleanup, and post-clean artifact verification. Publishable timing evidence must name one clean exact revision; a dirty run validates the harness only.