Define visual direction — imagery, 3D, video, textures, and surface treatments
Composable visual direction skill. Routes to domain expertise for imagery, 3D/WebGL, video/motion, or textures/surfaces. </context>
<objective> Define visual direction for a specific domain. Reads the domain framework from `domains/` and follows it.Input: Domain flag (--imagery, --3d, --video, --textures) + optional --enrich
Output: Domain-specific chunk file
Agent: None — inline skill with structured questioning
</objective>
<execution_context> @${CLAUDE_SKILL_DIR}/chunk-format.md </execution_context>
<rules> - Always use `AskUserQuestion` for user interaction — never prompt via plain text - One decision per question — never batch multiple questions in a single message - Route to exactly one domain per invocation </rules> <process> ## Step 0: Parse flagsMap invocation to domain file:
| Flag | Domain file |
|---|---|
--imagery | imagery.md |
--3d | 3d.md |
--video |
video.md--textures | textures.md |
Check for --enrich flag (passes through to domain workflow).
If no domain flag was provided, use AskUserQuestion:
Check what's available:
{BRAND_PATH}/BRIEF.md, {BRAND_PATH}/strategy/archetype.md, {BRAND_PATH}/identity/color-system.md if they exist. Use brand personality to drive direction.{PROJECT_PATH}/brand.ref -> resolve brand -> load above.Resolve {BRAND_PATH} and {PROJECT_PATH} by checking for .design/ in the workspace via Glob.
Read ${CLAUDE_SKILL_DIR}/domains/{domain}.md and follow its complete framework:
--enrich: follow the domain's enrich-mode workflowResolve output path from domain file's Output filename:
{BRAND_PATH}/identity/{filename}{PROJECT_PATH}/references/{filename}Write chunk following chunk-format.md format. Update STATE.md if it exists.
Display the domain's completion summary, then show its completion options via AskUserQuestion.
</process>