@cloudflare/create-nimbus-docs@0.6.4
Patch Changes
-
#64
d551fa2Thanks @MohamedH1998! - Stop shipping the.nimbus/build directory into scaffolded projects.nimbus/holds build artifacts materialized byastro build(routes.json,lint.json). It had leaked into the starter source and was being copied into new projects, so a freshly scaffolded app carried stale route and lint truth from the template rather than its own..nimbusis now excluded by both the template-copy script and the runtime scaffolder, and removed from the starter source; a new project starts with no build artifacts and generates its own on first build. -
#64
e1e4e8dThanks @MohamedH1998! - Point the scaffolded AGENT.md atnimbus-docs checkThe generated
AGENT.mdnow documents the one-command model: a "Check it builds" row in the actions table (env + structure + authoring + types), and an "Audit this site" section that leads withnimbus-docs check --jsonbefore the manual walk of whatcheckdoesn't cover yet (route-file existence, registry hygiene, AI surface, post-build search, Cloudflare config).It teaches an agent the honest result contract: the primary signals are
status(passed|failed|partial) andreadiness(buildable|blocked|unknown), withokkept only for back-compat; a check that couldn't be evaluated yet (e.g. types before a build) is anoteunderscopes[].notes[]— never a finding, never afix— so the fix loop terminates onstatus !== "failed" && summary.fixable === 0rather than spinning on a coverage gap it cannot repair.