docs: close consolidated story review findings

This commit is contained in:
lda
2026-07-13 15:47:59 +07:00 Verified
parent 40b0ba2779
commit ddaf8c6102
5 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -364,7 +364,7 @@ workflow authoring RPC operations.
(discover, draft, diagnose, repair, artifact, deployment) with a compact phase rail
and one dominant factual product projection per beat. A persistent prepared
assistant pane stays visible on the left while the phase canvas remains
dominant on the right; the starting split is approximately 35/65 and adapts
dominant on the right; the starting split is approximately 26/74 and adapts
to the available width. Its active tool group follows the current beat. There
is no lower chat dock, detached trace modal, or second transcript.
@@ -44,7 +44,7 @@ export type PreparedAuthoringPhase = {
readonly label: string;
readonly commands: readonly PreparedAuthoringCommand[];
readonly conversation: readonly AuthoringConversationTurn[];
/** Compact factual projection for Scene 9; command detail stays in the trace panel. */
/** Compact factual projection for the prepared lifecycle presentation. */
readonly proof: readonly string[];
};
@@ -52,7 +52,7 @@ const unknownPhase = (phase: never): never => {
throw new Error(`unknown phase: ${phase}`);
};
/** Maps a scene 9 beat ID to the corresponding authoring phase. */
/** Maps a canonical recording beat ID to its authoring phase. */
export const authoringPhaseForBeat = (beatId: AuthoringPhaseId): AuthoringPhaseId => {
switch (beatId) {
case "discover":
@@ -275,8 +275,8 @@ export const authoringToolGroupId = (phase: AuthoringPhaseId): string =>
/**
* Projects the prepared recording into one stable assistant transcript.
*
* IDs depend only on phase and command position so the full Scene 8 thread and
* compact Scene 9 dock retain DOM/message identity while later phases appear.
* IDs depend only on phase and command position so the handoff thread and
* prepared lifecycle assistant retain DOM/message identity as phases appear.
*/
export const projectPreparedAuthoringThread = (
throughPhase: AuthoringPhaseId = "deployment",