Files
2026-07-13 12:20:01 +08:00

8.8 KiB
Raw Permalink Blame History

Visual Probes

Use visual probes when a brainstorm decision is faster to judge by seeing a rough artifact than by reading prose. A visual probe is a disposable decision sketch, not a prototype, implementation plan, UI spec, or design deliverable.

Trigger

Use this reference only when the next question has a specific visual decision:

  • behavior shape: "Which annotation or drawing behavior feels right?"
  • layout shape: "Which navigation structure matches the workflow?"
  • flow shape: "Where should this decision point sit?"
  • state shape: "Which empty/loading/error state communicates the right thing?"
  • diagram shape: "Which relationship or system boundary is clearer?"

Do not use a visual probe for product goals, scope boundaries, success criteria, evidence probes, tradeoff prose, or technical decisions that are easier to discuss in chat.

The gate (when the offer must fire)

When the Phase 0.3 tripwire flagged an inherently-visual topic, the offer must fire before the first decision about shape, behavior, state, layout, flow, or a diagram is raised in any form — plain chat or a blocking question.

Timing is state-based, not memory-based. Anchor the check to the decision you are about to raise, not to a "pending gate" remembered since Phase 0.3: offer unless this specific decision has already been through the offer (the user already chose text or visual for it). This gate takes precedence over the default blocking-question path — do not raise the shape decision as an AskUserQuestion/request_user_input menu, or as a plain-chat shape question, until the user has declined visual (or visual feedback has returned to chat).

An ASCII preview or text mockup embedded inside the question's choices does NOT satisfy the offer — that shortcut is exactly what this gate exists to stop. The offer is its own prior question with two options (sketch vs describe); only after the user chooses does the shape decision proceed.

Offer

Ask once at the decision point. Do not enable a session-wide mode.

Use the platform's blocking question tool for the opt-in when available (AskUserQuestion, request_user_input, ask_user, or equivalent). Use a plain chat question only when no interactive question tool exists or the tool errors. The opt-in should have two clear options:

  • Visual sketch — create rough options in a local browser
  • Text description — keep the decision in chat

Use this wording:

This decision may be easier to judge visually. I can either sketch rough options in a local browser so you can react to the shape, or keep it in chat and describe the options textually, which is faster but lower-fidelity. Which do you prefer?

The text path must be credible. If you cannot explain the decision clearly in text, you do not understand it well enough to sketch it.

If the user chooses text, continue in chat and do not re-offer for the same decision. If they choose visual, proceed below.

Visual Path

Create the cheapest artifact that answers the current question. Optimize for fast feedback, not polish.

Allowed:

  • rough behavior sketches
  • low-fidelity wireframes
  • state comparisons
  • flow diagrams
  • simple A/B/C visual contrasts
  • disposable interaction demos only when behavior itself is the decision

Avoid:

  • polished branding
  • final colors or typography
  • component-library precision
  • pixel-perfect layout
  • production-like implementation
  • unnecessary animation
  • details that imply exact UI commitments

Label the artifact as directional. State what the user should judge and what they should ignore.

Display Helper

Use the bundled display-only helper when the current platform can run a bundled skill script. Invoke it via the SKILL_DIR anchor: set SKILL_DIR to the absolute path of the directory containing the ce-brainstorm SKILL.md you loaded (the Bash tool's cwd is the user's project, not the skill dir), and re-set it in the same command on each call since shell vars don't persist between Bash invocations. Do not resolve the helper from the user's project CWD.

Start (detached):

SKILL_DIR="<absolute path of the ce-brainstorm skill directory>";
node "$SKILL_DIR/scripts/visual-probe-server.js" start --root /tmp/compound-engineering/ce-brainstorm-visual/<run-id>

Append --foreground to that start command for foreground mode. Status and stop take the same anchor — and because SKILL_DIR does not persist between Bash invocations, each must re-set it in its own call rather than reuse the start block's value:

SKILL_DIR="<absolute path of the ce-brainstorm skill directory>";
node "$SKILL_DIR/scripts/visual-probe-server.js" status --root /tmp/compound-engineering/ce-brainstorm-visual/<run-id>
# stop: the same command with `stop` in place of `status` (re-set SKILL_DIR again)

If SKILL_DIR cannot be resolved to a concrete skill directory, do not guess from the project CWD — use the text path.

The helper creates screens/ and state/, serves the newest .html file in screens/, writes state/display-info.json, and exposes /version so the browser can poll for screen changes. The browser reloads only when the newest screen changes; it must not continually reload on a timer. /version polling does not count as activity, so an abandoned browser tab cannot keep the server alive forever. Detached servers monitor the owning harness process when it can be resolved, and all servers exit after an idle timeout. The helper has no click tracking or browser-to-agent event path.

If the helper path is unavailable or the platform cannot display a local URL cleanly, say so briefly and use the text path. Do not build a custom event system or long-lived server to compensate during the brainstorm.

Launch Mode by Platform

The server is the same everywhere; only the launch mode changes.

  • Claude Code / Claude desktop app: detached start is the default path. If the app opens localhost URLs, show the returned URL and continue. If the browser surface is unavailable, use the text path.
  • Codex CLI / Codex app: if detached processes are reaped or the URL dies after the tool call, use start --foreground through the platform's long-running/background terminal mechanism. If there is no stable browser surface, use the text path.
  • Plain terminal UI: print the returned URL for the user to open manually. If opening a browser would interrupt the flow, keep the decision in chat.
  • Remote or containerized sessions: if localhost is not reachable from the user's browser, start with --host 0.0.0.0 and tell the user which host/port to open. If that cannot be made clear, use the text path.

Never force the visual path because a local server exists. The user chose visual to understand the decision faster; if the platform plumbing gets in the way, switch back to text.

Post-Artifact Feedback

After showing the visual artifact, use the platform's blocking question tool for bounded artifact feedback when available. This is still chat-based feedback, not browser event capture.

Use a bounded interactive question when the expected response is a small choice set:

  • A/B/C/D option selection
  • visual direction vs mix
  • choose one layout/state/behavior
  • accept one option with requested tweaks

Include a free-text fallback option when the tool supports it. Use plain chat only when feedback is genuinely open critique, no interactive question tool exists, or the tool errors.

Good post-artifact prompt:

Which direction best matches what you want? Pick A, B, C, D, or mix, and use the free-text fallback for anything that feels off. Judge the behavior shape, not the exact styling.

Do not ask the user to click inside the browser artifact. The question tool is for the chat/session response after the artifact is visible.

Interaction Contract

The browser/artifact is display-only. Feedback happens in chat.

Do not add click tracking, selected states, event ingestion, forms, analytics, or "submit" affordances in v1. Do not ask the user to click an option. Ask them to look at the artifact and reply in chat with the choice, mix, or correction.

If no interactive question tool is available, use this plain-chat fallback after showing the artifact:

Im showing three rough options. Reply here with A, B, C, or "mix", plus anything that feels off. Judge the behavior shape, not the exact styling.

The user's chat response is authoritative. The visual artifact is supporting context only.

File Placement

Use OS temp by default because visual probes are disposable scratch:

/tmp/compound-engineering/ce-brainstorm-visual/<run-id>/
  screens/
    001-<decision>.html
  state/
    display-info.json

Use .context/compound-engineering/ce-brainstorm-visual/<run-id>/ only when the user explicitly wants to inspect, preserve, or curate the sketches after the session. The probe is disposable scratch; the durable artifact is the Phase 3 requirements-only unified plan under docs/plans/.