doc/design/AGENT-SESSIONS.md
A guide for the human driving the session. You don't need to know the codebase — the system briefs the agent for you (AGENTS.md → DESIGN.md → doc/design/). Your job is to say what you want, look at pictures, and say yes or no. This document tells you how to do that well.
Describe outcomes, not implementations. The whole point of the token system is that intent maps to small, safe changes:
If your ask names a feeling ("too loud", "cramped", "inconsistent"), that's fine — expect the agent to translate it into a token change and show you the before/after to confirm the translation.
Small (minutes) — a value change. Colors, sizes, spacing, radius, one component's look.
"In the Paperclip repo: make X look like Y. Show me before/after screenshots from the visual suite before you re-baseline anything."
The agent should: edit token(s) → run pnpm test:storybook-visual → show you the diff images → only after your yes, run test:storybook-visual:update, publish the packed baseline archive from a trusted maintainer environment, and commit the code change + manifest update together.
Medium (an afternoon) — a retheme or a component-family restyle. Ask for a git worktree so main stays untouched:
"Create a worktree off master, apply shadcn preset
<CODE>as token values only (values-only — review the CLI's diff, revert scaffolding), reconcile the Paperclip status/agent color tiers, then build me a before/after gallery of the key surfaces."
Review the gallery, iterate ("the dark red is too soft", "two different greens on toggles — one green"), then tell it to re-baseline and merge when you're satisfied.
Large (a day, unattended) — a bounded autonomous run. Use /goal with a measurable finish line — the evaluator needs conditions a command can verify, not aspirations:
Good conditions: "rg finds zero palette classes in ui/src/components", "the snapshot suite passes against the pinned external baseline", "pnpm check:token-gates reports 3/3 CLEAN". Bad conditions: "the UI feels cleaner", "design is more consistent".
See doc/design/GOAL-PROMPT.md for a complete worked example (the run that built this system), including the phase structure and guardrails worth copying: work in a worktree, commit per phase, never re-baseline without human review, stop-and-report over partial application.
Hold every session to these five, regardless of size:
pnpm check:token-gates 3/3 CLEAN, pnpm typecheck green, suite result stated as a number ("510/510" or "N intentional diffs pending your review"). If the agent says done without these, ask for the outputs.scripts/ (existing codemod-*.mjs files are the pattern), not hand-edit.doc/design/DECISION-SHEET.md with one line of rationale.tests/storybook-visual/test-results/ are your primary review surface; ask the agent to assemble them into a browsable before/after page (or use npx playwright show-report from tests/storybook-visual/).pnpm paperclipai worktree init once, then PORT=3300 pnpm dev:once gives an isolated Paperclip (own database, own config; your real instance is untouched). Click around; real use surfaces what screenshots can't.pnpm storybook in each checkout), flip tabs.shadcn apply --preset (overwrites components); re-baselining snapshots to hide an unexplained diff; hardcoding a value because a token "doesn't fit" (add the token instead); "fixing" the scheduled-debt areas ad hoc (palette classes, card/pill consolidation — see DECISION-SHEET).Say what you want in plain language → agent turns it into token/component edits → you review before/after screenshots → you say "ship it" or say what's off → repeat. Every round today's system was built with took under an hour. That loop is the design workflow now.