From 4fbab4ed74353fb934337704980702b6794a743b Mon Sep 17 00:00:00 2001 From: Kurt Overmier Date: Thu, 9 Apr 2026 13:42:05 -0500 Subject: [PATCH] docs: post-0.10.0 state refresh + http-client comment fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two small drift-cleanup changes after the 0.10.0 publish: - .ai/state.adf — CURRENT was still v0.8.0 from the #50-53 era, had no mention of blast + surface or the npm publish milestone. Refreshed to reflect the current reality: 0.10.0 live on npm, #94/#90/#69 as the next queue, vendor-fix (#93) recorded in COMPLETED so the scaffold-response type-vendor context isn't lost. - packages/cli/src/http-client.ts — the ScaffoldFile doc comment said "sourced from @stackbilt/contracts" which is no longer accurate after #93. Updated to "vendored from @stackbilt/contracts" and pointed at the local types file for discoverability. No runtime behavior change. Sweep also confirmed the rest of the docs (README, CHANGELOG, PUBLISHING.md, per-package READMEs, docs/) are already 0.10.0-accurate from yesterday's pre-release docs audit. --- .ai/state.adf | 8 ++++---- packages/cli/src/http-client.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ai/state.adf b/.ai/state.adf index 470446b..3e84e0d 100644 --- a/.ai/state.adf +++ b/.ai/state.adf @@ -1,7 +1,7 @@ ADF: 0.1 🧠 STATE: - CURRENT: v0.8.0 ready with #50-53 folded in. Hybrid CLAUDE.md, auto-loading, parser fixes, preset-aware scaffolding. - NEXT: M3 — Guided Authoring (charter adf add --rule --auto-route --dry-run). Requires focused routing engine design session. - BLOCKED_ON: Routing engine classifier design — must grow from the rule-routing decision tree (packages/adf/README.md), not be bolted on. - COMPLETED: Phase 1-7, M0-M2, #50 (bootstrap UX), #51 (migrate parser), #52 (auto-loading), #53 (CLAUDE.md coexistence) + CURRENT: v0.10.0 published to npm (2026-04-09) — all 11 `@stackbilt/*` packages live. Publish identity: stackbilt-kovermier. Added blast + surface subsystems (deterministic codebase analysis, zero-LLM). First cross-linked consumer is cc-taskrunner 1.5.0 via CC_BLAST_* env var gate. + NEXT: #94 (blast: exclude .claude/worktrees/ ghost paths — Claude Code consumers see inflated blast radius from ephemeral worktree clones). #90 (package ecosystem — configurable dependency orchestration via charter config). #69 (typed data access disambiguation policy). + BLOCKED_ON: Nothing critical. #94 is a quick win, #90 + #69 are larger design-first efforts. + COMPLETED: Phase 1-7, M0-M2, #50-53 (bootstrap UX, migrate parser, auto-loading, CLAUDE.md coexistence), blast + surface subsystems (new in 0.10.0), first npm publish of @stackbilt/blast + @stackbilt/surface, vendor fix for cli scaffold-response types (#93 — dropped file: dep on unpublished @stackbilt/contracts to unblock publish). diff --git a/packages/cli/src/http-client.ts b/packages/cli/src/http-client.ts index 9cee885..5f8ac35 100644 --- a/packages/cli/src/http-client.ts +++ b/packages/cli/src/http-client.ts @@ -71,7 +71,7 @@ export interface BuildResult { }; } -/** Canonical scaffold file shape — sourced from @stackbilt/contracts. */ +/** Canonical scaffold file shape — vendored from @stackbilt/contracts (see ./types/scaffold-contract-types). */ export type ScaffoldFile = ScaffoldFileType; /**