@jaimevalasek/aioson 1.4.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -1
- package/LICENSE +661 -21
- package/README.md +9 -1
- package/docs/design-previews/aurora-command-ui-website.html +884 -0
- package/docs/design-previews/aurora-command-ui.html +682 -0
- package/docs/design-previews/bold-editorial-ui-website.html +658 -0
- package/docs/design-previews/bold-editorial-ui.html +717 -0
- package/docs/design-previews/clean-saas-ui-website.html +1202 -0
- package/docs/design-previews/clean-saas-ui.html +549 -0
- package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
- package/docs/design-previews/cognitive-core-ui.html +463 -0
- package/docs/design-previews/glassmorphism-ui-website.html +572 -0
- package/docs/design-previews/glassmorphism-ui.html +886 -0
- package/docs/design-previews/index.html +699 -0
- package/docs/design-previews/interface-design-website.html +1187 -0
- package/docs/design-previews/interface-design.html +513 -0
- package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
- package/docs/design-previews/neo-brutalist-ui.html +797 -0
- package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
- package/docs/design-previews/premium-command-center-ui.html +552 -0
- package/docs/design-previews/warm-craft-ui-website.html +684 -0
- package/docs/design-previews/warm-craft-ui.html +739 -0
- package/docs/en/cli-reference.md +20 -9
- package/docs/en/squad-dashboard.md +372 -0
- package/docs/openclaw-bridge.md +308 -0
- package/docs/pt/README.md +7 -0
- package/docs/pt/agent-sharding.md +132 -0
- package/docs/pt/agentes.md +131 -11
- package/docs/pt/busca-de-contexto.md +129 -0
- package/docs/pt/cache-de-contexto.md +156 -0
- package/docs/pt/cenarios.md +46 -2
- package/docs/pt/comandos-cli.md +88 -1
- package/docs/pt/design-hybrid-forge.md +107 -0
- package/docs/pt/inicio-rapido.md +72 -5
- package/docs/pt/inteligencia-adaptativa.md +324 -0
- package/docs/pt/monitor-de-contexto.md +104 -0
- package/docs/pt/recuperacao-de-sessao.md +125 -0
- package/docs/pt/sandbox.md +125 -0
- package/docs/pt/skills.md +98 -6
- package/docs/pt/squad-dashboard.md +373 -0
- package/docs/testing/genome-2.0-matrix.md +5 -5
- package/docs/testing/genome-2.0-rollout.md +9 -9
- package/package.json +2 -2
- package/src/agent-loader.js +280 -0
- package/src/backup-local.js +74 -0
- package/src/cli.js +192 -0
- package/src/commands/agent-loader.js +85 -0
- package/src/commands/backup-local-cmd.js +25 -0
- package/src/commands/context-cache.js +90 -0
- package/src/commands/context-monitor.js +92 -0
- package/src/commands/context-search.js +66 -0
- package/src/commands/design-hybrid-options.js +385 -0
- package/src/commands/health.js +214 -0
- package/src/commands/init.js +54 -13
- package/src/commands/install.js +52 -13
- package/src/commands/learning-evolve.js +355 -0
- package/src/commands/live.js +34 -0
- package/src/commands/recovery.js +43 -0
- package/src/commands/runtime.js +242 -0
- package/src/commands/sandbox.js +37 -0
- package/src/commands/setup-context.js +29 -4
- package/src/commands/setup.js +178 -0
- package/src/commands/skill.js +79 -32
- package/src/commands/squad-daemon.js +209 -0
- package/src/commands/squad-dashboard.js +39 -0
- package/src/commands/squad-deploy.js +64 -0
- package/src/commands/squad-doctor.js +52 -0
- package/src/commands/squad-mcp.js +270 -0
- package/src/commands/squad-processes.js +56 -0
- package/src/commands/squad-recovery.js +42 -0
- package/src/commands/squad-roi.js +291 -0
- package/src/commands/squad-score.js +250 -0
- package/src/commands/squad-status.js +37 -1
- package/src/commands/squad-validate.js +62 -1
- package/src/commands/squad-webhook.js +160 -0
- package/src/commands/squad-worker.js +191 -0
- package/src/commands/squad-worktrees.js +75 -0
- package/src/commands/tool-registry-cmd.js +232 -0
- package/src/commands/update.js +7 -0
- package/src/commands/web-map.js +70 -0
- package/src/commands/web-scrape.js +71 -0
- package/src/constants.js +17 -0
- package/src/context-cache.js +159 -0
- package/src/context-search.js +326 -0
- package/src/context-writer.js +45 -1
- package/src/design-variation-catalog.js +503 -0
- package/src/i18n/messages/en.js +159 -3
- package/src/i18n/messages/es.js +147 -2
- package/src/i18n/messages/fr.js +147 -2
- package/src/i18n/messages/pt-BR.js +158 -3
- package/src/install-animation.js +260 -0
- package/src/install-profile.js +143 -0
- package/src/install-wizard.js +474 -0
- package/src/installer.js +38 -10
- package/src/lib/webhook-server.js +328 -0
- package/src/mcp-connectors/registry.js +602 -0
- package/src/parser.js +7 -1
- package/src/recovery-context-session.js +154 -0
- package/src/runtime-store.js +355 -2
- package/src/sandbox.js +177 -0
- package/src/squad/external-session.js +180 -0
- package/src/squad/inter-squad.js +74 -0
- package/src/squad/recovery-context.js +201 -0
- package/src/squad/worktree-manager.js +114 -0
- package/src/squad-daemon.js +490 -0
- package/src/squad-dashboard/api.js +223 -0
- package/src/squad-dashboard/attachment-handler.js +93 -0
- package/src/squad-dashboard/context-monitor.js +157 -0
- package/src/squad-dashboard/execution-logs.js +115 -0
- package/src/squad-dashboard/hunk-review.js +209 -0
- package/src/squad-dashboard/metrics.js +133 -0
- package/src/squad-dashboard/process-monitor.js +125 -0
- package/src/squad-dashboard/renderer.js +858 -0
- package/src/squad-dashboard/server.js +232 -0
- package/src/squad-dashboard/styles.js +525 -0
- package/src/squad-dashboard/token-tracker.js +99 -0
- package/src/tool-executor.js +94 -0
- package/src/updater.js +11 -3
- package/src/web.js +284 -0
- package/src/worker-runner.js +339 -0
- package/template/.aioson/agents/analyst.md +62 -3
- package/template/.aioson/agents/architect.md +42 -0
- package/template/.aioson/agents/design-hybrid-forge.md +127 -0
- package/template/.aioson/agents/dev.md +223 -11
- package/template/.aioson/agents/deyvin.md +65 -0
- package/template/.aioson/agents/neo.md +152 -0
- package/template/.aioson/agents/orache.md +17 -0
- package/template/.aioson/agents/orchestrator.md +26 -0
- package/template/.aioson/agents/pm.md +58 -0
- package/template/.aioson/agents/product.md +88 -12
- package/template/.aioson/agents/qa.md +80 -0
- package/template/.aioson/agents/setup.md +128 -22
- package/template/.aioson/agents/sheldon.md +704 -0
- package/template/.aioson/agents/squad.md +191 -0
- package/template/.aioson/agents/tester.md +410 -0
- package/template/.aioson/agents/ux-ui.md +12 -0
- package/template/.aioson/config.md +21 -0
- package/template/.aioson/context/forensics/.gitkeep +0 -0
- package/template/.aioson/context/seeds/seed-example.md +27 -0
- package/template/.aioson/context/user-profile.md +42 -0
- package/template/.aioson/locales/en/agents/analyst.md +8 -0
- package/template/.aioson/locales/en/agents/architect.md +8 -0
- package/template/.aioson/locales/en/agents/dev.md +66 -7
- package/template/.aioson/locales/en/agents/deyvin.md +8 -0
- package/template/.aioson/locales/en/agents/neo.md +8 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/en/agents/qa.md +49 -0
- package/template/.aioson/locales/en/agents/setup.md +35 -2
- package/template/.aioson/locales/en/agents/sheldon.md +340 -0
- package/template/.aioson/locales/en/agents/ux-ui.md +8 -0
- package/template/.aioson/locales/es/agents/analyst.md +8 -0
- package/template/.aioson/locales/es/agents/architect.md +8 -0
- package/template/.aioson/locales/es/agents/dev.md +66 -7
- package/template/.aioson/locales/es/agents/deyvin.md +8 -0
- package/template/.aioson/locales/es/agents/neo.md +48 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/es/agents/qa.md +26 -0
- package/template/.aioson/locales/es/agents/setup.md +35 -2
- package/template/.aioson/locales/es/agents/sheldon.md +192 -0
- package/template/.aioson/locales/es/agents/squad.md +63 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +8 -0
- package/template/.aioson/locales/fr/agents/analyst.md +8 -0
- package/template/.aioson/locales/fr/agents/architect.md +8 -0
- package/template/.aioson/locales/fr/agents/dev.md +66 -7
- package/template/.aioson/locales/fr/agents/deyvin.md +8 -0
- package/template/.aioson/locales/fr/agents/neo.md +48 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/fr/agents/qa.md +26 -0
- package/template/.aioson/locales/fr/agents/setup.md +35 -2
- package/template/.aioson/locales/fr/agents/sheldon.md +192 -0
- package/template/.aioson/locales/fr/agents/squad.md +63 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +8 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +19 -0
- package/template/.aioson/locales/pt-BR/agents/architect.md +19 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +75 -12
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +8 -0
- package/template/.aioson/locales/pt-BR/agents/neo.md +147 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +8 -3
- package/template/.aioson/locales/pt-BR/agents/qa.md +60 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +35 -2
- package/template/.aioson/locales/pt-BR/agents/sheldon.md +192 -0
- package/template/.aioson/locales/pt-BR/agents/squad.md +105 -0
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +8 -0
- package/template/.aioson/schemas/squad-blueprint.schema.json +21 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +178 -1
- package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
- package/template/.aioson/skills/design/bold-editorial-ui/SKILL.md +205 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/art-direction.md +338 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/components.md +977 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/dashboards.md +218 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/design-tokens.md +326 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/motion.md +461 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/patterns.md +293 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/websites.md +352 -0
- package/template/.aioson/skills/design/clean-saas-ui/SKILL.md +210 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/art-direction.md +319 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/components.md +365 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/dashboards.md +196 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/design-tokens.md +244 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/motion.md +235 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/patterns.md +215 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/websites.md +295 -0
- package/template/.aioson/skills/design/cognitive-core-ui/SKILL.md +55 -9
- package/template/.aioson/skills/design/cognitive-core-ui/references/art-direction.md +339 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/components.md +1 -1
- package/template/.aioson/skills/design/cognitive-core-ui/references/dashboards.md +100 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +43 -9
- package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +40 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/patterns.md +1 -1
- package/template/.aioson/skills/design/cognitive-core-ui/references/websites.md +99 -12
- package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
- package/template/.aioson/skills/design/warm-craft-ui/SKILL.md +209 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/art-direction.md +324 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/components.md +508 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/dashboards.md +223 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/design-tokens.md +374 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/motion.md +356 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/patterns.md +288 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/websites.md +289 -0
- package/template/.aioson/skills/premium-visual-design/SKILL.md +83 -0
- package/template/.aioson/skills/premium-visual-design/components/agent-badge.md +92 -0
- package/template/.aioson/skills/premium-visual-design/components/dependency-node.md +102 -0
- package/template/.aioson/skills/premium-visual-design/components/mention-autocomplete.md +136 -0
- package/template/.aioson/skills/premium-visual-design/components/notification-center.md +136 -0
- package/template/.aioson/skills/premium-visual-design/components/review-action-bar.md +188 -0
- package/template/.aioson/skills/premium-visual-design/components/team-switcher.md +131 -0
- package/template/.aioson/skills/premium-visual-design/patterns/agent-message-thread.md +198 -0
- package/template/.aioson/skills/premium-visual-design/patterns/notification-panel.md +275 -0
- package/template/.aioson/skills/premium-visual-design/patterns/review-workflow-ui.md +234 -0
- package/template/.aioson/skills/premium-visual-design/patterns/task-dependency-graph.md +147 -0
- package/template/.aioson/skills/premium-visual-design/tokens/status-extended.md +142 -0
- package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +45 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +66 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
- package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +144 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +291 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +117 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +188 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
- package/template/.aioson/skills/squad/formats/catalog.json +15 -0
- package/template/.aioson/skills/squad/formats/content/blog-post.md +47 -0
- package/template/.aioson/skills/squad/formats/content/newsletter.md +47 -0
- package/template/.aioson/skills/squad/formats/creative/podcast-script.md +43 -0
- package/template/.aioson/skills/squad/formats/creative/video-script.md +41 -0
- package/template/.aioson/skills/squad/formats/social/instagram-feed.md +42 -0
- package/template/.aioson/skills/squad/formats/social/linkedin-post.md +42 -0
- package/template/.aioson/skills/squad/formats/social/tiktok.md +39 -0
- package/template/.aioson/skills/squad/formats/social/twitter-thread.md +39 -0
- package/template/.aioson/skills/squad/formats/social/youtube-long.md +47 -0
- package/template/.aioson/skills/squad/formats/social/youtube-shorts.md +39 -0
- package/template/.aioson/skills/squad/patterns/multi-platform-pattern.md +108 -0
- package/template/.aioson/skills/squad/patterns/persona-based-pattern.md +98 -0
- package/template/.aioson/skills/squad/patterns/pipeline-pattern.md +106 -0
- package/template/.aioson/skills/squad/patterns/review-loop-pattern.md +81 -0
- package/template/.aioson/skills/squad/references/checklist-templates.md +122 -0
- package/template/.aioson/skills/squad/references/executor-archetypes.md +123 -0
- package/template/.aioson/skills/squad/references/workflow-templates.md +169 -0
- package/template/.aioson/skills/static/debugging-protocol.md +42 -0
- package/template/.aioson/skills/static/git-worktrees.md +36 -0
- package/template/.aioson/tasks/implementation-plan.md +19 -0
- package/template/.aioson/tasks/squad-design.md +28 -0
- package/template/.aioson/tasks/squad-profile.md +48 -0
- package/template/.aioson/tasks/squad-review.md +61 -0
- package/template/.aioson/tasks/squad-task-decompose.md +66 -0
- package/template/.claude/commands/aioson/agent/neo.md +5 -0
- package/template/.claude/commands/aioson/agent/tester.md +5 -0
- package/template/.gemini/GEMINI.md +1 -0
- package/template/.gemini/commands/aios-neo.toml +4 -0
- package/template/.gemini/commands/aios-tester.toml +6 -0
- package/template/AGENTS.md +26 -1
- package/template/CLAUDE.md +6 -2
- package/template/OPENCODE.md +2 -0
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: warm-craft-ui
|
|
3
|
+
description: Warm Craft UI is a design system for approachable, human-centered interfaces with light backgrounds, rounded forms, warm accents, generous whitespace, and humanist typography. Use it when `design_skill: warm-craft-ui` is set in project.context.md OR when the user explicitly asks for "warm", "friendly UI", "clean light", "soft modern", "human-centered", "Notion-like", "Linear-like", "calm interface", or similar. Ideal for productivity apps, SaaS B2C, health, education, personal finance, and any product where trust, clarity, and approachability matter more than density or authority. Supports apps, dashboards, landing pages, and websites — light by default with an optional dark theme. Do NOT use this skill unless explicitly selected.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Warm Craft UI
|
|
7
|
+
|
|
8
|
+
A design system where **clarity is generosity and whitespace is confidence**. Warm Craft sits at the intersection of humanist typography and disciplined spacing — interfaces that feel handcrafted, breathable, and immediately trustworthy.
|
|
9
|
+
|
|
10
|
+
**This is one visual system.** Never combine it with another design skill.
|
|
11
|
+
|
|
12
|
+
## Package structure
|
|
13
|
+
|
|
14
|
+
```text
|
|
15
|
+
.aioson/skills/design/warm-craft-ui/
|
|
16
|
+
SKILL.md <- you are here (load this first)
|
|
17
|
+
references/
|
|
18
|
+
art-direction.md <- intent, domain exploration, expression modes, signature moves, anti-generic tests
|
|
19
|
+
design-tokens.md <- CSS variables light + dark, typography, token scope guardrails
|
|
20
|
+
components.md <- All reusable components (nav, cards, forms, tables, badges, modals, etc.)
|
|
21
|
+
patterns.md <- Page layouts: app shell, detail, settings, onboarding, list-detail
|
|
22
|
+
dashboards.md <- Dashboard presets: overview, analytics, activity feed, project board, admin
|
|
23
|
+
websites.md <- Landing page, product page, institutional layouts + anti-patterns
|
|
24
|
+
motion.md <- Animations: entrances, micro-interactions, scroll, loading states
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Activation rules
|
|
28
|
+
|
|
29
|
+
- Apply this package **only** when `project.context.md` contains `design_skill: "warm-craft-ui"` or the user explicitly chooses it.
|
|
30
|
+
- If another design skill is selected, do **not** load this package.
|
|
31
|
+
- Never auto-select this skill — always require explicit confirmation.
|
|
32
|
+
- If no skill is set yet, the active agent must ask or confirm before applying.
|
|
33
|
+
|
|
34
|
+
## Responsibility boundary
|
|
35
|
+
|
|
36
|
+
This skill defines:
|
|
37
|
+
- Visual direction and aesthetic DNA
|
|
38
|
+
- Design tokens (colors, typography, spacing, radius, shadows)
|
|
39
|
+
- Component vocabulary and anatomy
|
|
40
|
+
- Page composition patterns
|
|
41
|
+
- Theme switching behavior (light/dark)
|
|
42
|
+
|
|
43
|
+
This skill does **not** decide:
|
|
44
|
+
- Stack (React, Vue, Blade, HTML, etc.)
|
|
45
|
+
- Output format (single file, multi-file, CSS modules, Tailwind, etc.)
|
|
46
|
+
- Icon library choice
|
|
47
|
+
- Whether a theme toggle exists in the product (the agent decides)
|
|
48
|
+
|
|
49
|
+
## Loading guide
|
|
50
|
+
|
|
51
|
+
Always load only what the current task needs:
|
|
52
|
+
|
|
53
|
+
| Task | Load |
|
|
54
|
+
|---|---|
|
|
55
|
+
| Any UI work | `references/design-tokens.md` |
|
|
56
|
+
| Reusable components | `references/design-tokens.md` + `references/components.md` |
|
|
57
|
+
| Dashboard or admin panel | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` + `references/dashboards.md` |
|
|
58
|
+
| Detail / settings page | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` |
|
|
59
|
+
| Landing page or website | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/websites.md` |
|
|
60
|
+
| Motion / animation | add `references/motion.md` when animation materially improves the result |
|
|
61
|
+
| Full UI build | all seven reference files |
|
|
62
|
+
|
|
63
|
+
## Visual signature — three pillars
|
|
64
|
+
|
|
65
|
+
1. **Approachable warmth** — Light surfaces with subtle warm undertones. Rounded corners on everything. Colors that feel like sunlight through linen, not clinical LED panels. The interface should feel like a well-designed physical notebook, not a control room.
|
|
66
|
+
2. **Typographic humanity** — Humanist sans-serif with visible character. Generous line-heights. Text that breathes. Headings that feel handwritten in their weight and tracking, even though they are perfectly set. Body text that is genuinely pleasant to read for long sessions.
|
|
67
|
+
3. **Disciplined calm** — Generous whitespace that signals confidence, not emptiness. One accent color used sparingly. Subtle depth through soft shadows, not hard borders. Every element has room to exist without competing for attention.
|
|
68
|
+
|
|
69
|
+
## Theme system
|
|
70
|
+
|
|
71
|
+
```html
|
|
72
|
+
<div data-theme="light"> <!-- or data-theme="dark" -->
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
- **Light (default)**: Productivity apps, content platforms, B2C SaaS, health, education, personal tools, most use cases
|
|
76
|
+
- **Dark**: Optional — for users who prefer it, night modes, media-heavy contexts
|
|
77
|
+
- **Both with toggle**: When the user asks, or when the product serves diverse contexts
|
|
78
|
+
|
|
79
|
+
If the user does not specify: default to **light with a theme toggle** available.
|
|
80
|
+
|
|
81
|
+
## Visual DNA
|
|
82
|
+
|
|
83
|
+
### Colors — light theme
|
|
84
|
+
- Background void: `#F8F6F3` (warm off-white, never pure #FFF)
|
|
85
|
+
- Background base: `#FDFCFA` (main app background)
|
|
86
|
+
- Surface: `#FFFFFF` (cards, elevated panels)
|
|
87
|
+
- Elevated: `#F3F1ED` (hover, nested, sidebar backgrounds)
|
|
88
|
+
- Primary accent: `#E07A5F` (terracotta/warm coral) — CTAs, active states, key highlights
|
|
89
|
+
- Text heading: `#2D3436` (warm charcoal, never pure black)
|
|
90
|
+
- Text primary: `#4A5568` (readable warm gray)
|
|
91
|
+
- Text secondary: `#8896A6` (muted)
|
|
92
|
+
- Text muted: `#B0BCC7` (hints, placeholders)
|
|
93
|
+
|
|
94
|
+
### Colors — dark theme
|
|
95
|
+
- Background void: `#1A1814` (warm dark, not navy)
|
|
96
|
+
- Background base: `#211F1B` (main app background)
|
|
97
|
+
- Surface: `#2A2824` (cards)
|
|
98
|
+
- Elevated: `#353330` (hover, nested)
|
|
99
|
+
- Primary accent: `#F0967D` (lighter terracotta for dark backgrounds)
|
|
100
|
+
- Text heading: `#F5F0EB`
|
|
101
|
+
- Text primary: `#D4CBC2`
|
|
102
|
+
- Text secondary: `#9A9088`
|
|
103
|
+
- Text muted: `#6B6460`
|
|
104
|
+
|
|
105
|
+
### Typography
|
|
106
|
+
- Headings: `Source Serif 4`, `weight-semibold (600)` or `weight-bold (700)` for page titles, `letter-spacing: -0.02em`
|
|
107
|
+
- Body: `Inter`, `weight-normal (400)`, `line-height: 1.7`
|
|
108
|
+
- Labels and metadata: `Inter`, `weight-medium (500)`, `font-size: 0.8rem`, `letter-spacing: 0.02em`
|
|
109
|
+
- Stats: `Source Serif 4`, `weight-bold (700)`, `font-size: 2.5rem`
|
|
110
|
+
|
|
111
|
+
### Layout structure (apps)
|
|
112
|
+
```
|
|
113
|
+
+----------------------------------------------------------+
|
|
114
|
+
| TOP BAR: [Logo] [Search (center, rounded)] [Avatar] |
|
|
115
|
+
+----------------------------------------------------------+
|
|
116
|
+
| | |
|
|
117
|
+
| SIDEBAR | CONTENT |
|
|
118
|
+
| 200px | PAGE HEADER (serif title + subtitle) |
|
|
119
|
+
| soft bg | |
|
|
120
|
+
| rounded | CONTENT SECTIONS |
|
|
121
|
+
| items | (generous padding, card groups) |
|
|
122
|
+
| | |
|
|
123
|
+
| [nav | SECTION: title + description |
|
|
124
|
+
| items | CARD GROUP (2-3 col, gap-6) |
|
|
125
|
+
| with | |
|
|
126
|
+
| icons] | SECTION: title + description |
|
|
127
|
+
| | CARD GROUP or TABLE |
|
|
128
|
+
+-----------+-----------------------------------------------+
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
### Signature details
|
|
132
|
+
- Rounded corners on everything: cards `radius-xl` (16px), buttons `radius-lg` (12px), inputs `radius-md` (8px)
|
|
133
|
+
- Soft shadows: `box-shadow` with warm tones, never harsh black drops
|
|
134
|
+
- Accent used sparingly: primary buttons, active nav, key badges — never borders, never backgrounds of sections
|
|
135
|
+
- Serif headings mixed with sans-serif body — the primary differentiator from every other UI
|
|
136
|
+
- Subtle background patterns: very faint dot grid or warm gradient wash on hero sections
|
|
137
|
+
- Illustrations and empty states: warm, hand-drawn style — never cold geometric
|
|
138
|
+
- Input fields: visible but soft borders, generous padding, rounded
|
|
139
|
+
- Active sidebar item: `background: var(--bg-elevated)` + `border-radius: var(--radius-lg)` + accent text — no hard left border
|
|
140
|
+
- Theme transition: `200ms ease` on background, color, border-color, box-shadow
|
|
141
|
+
|
|
142
|
+
## Application rules
|
|
143
|
+
|
|
144
|
+
- Treat `references/design-tokens.md` as the source of truth for ALL tokens.
|
|
145
|
+
- Treat `references/art-direction.md` as the source of truth for expression, signature moves, and anti-generic decisions.
|
|
146
|
+
- Resolve the page variant before composing: apps use structured navigation rhythm; websites/landing pages use more narrative flow, larger typography, and editorial pacing.
|
|
147
|
+
- Never combine this package with `cognitive-core-ui`, `interface-design`, `premium-command-center-ui`, or any other design skill in the same task.
|
|
148
|
+
- Reuse the project's component library if one exists — map Warm Craft tokens onto it instead of rebuilding primitives.
|
|
149
|
+
- Adapt code examples to the active stack. Reference snippets are design specifications, not copy-paste code.
|
|
150
|
+
- Accessibility, responsiveness, and production semantics are the agent's responsibility (not this skill).
|
|
151
|
+
|
|
152
|
+
## Intent before visuals
|
|
153
|
+
|
|
154
|
+
Before choosing layout, answer all three:
|
|
155
|
+
|
|
156
|
+
1. Who is the human using this page right now?
|
|
157
|
+
2. What is the main action or decision they must complete?
|
|
158
|
+
3. How should this interface feel in concrete words, not generic labels?
|
|
159
|
+
|
|
160
|
+
Bad answers:
|
|
161
|
+
- "for users"
|
|
162
|
+
- "manage content"
|
|
163
|
+
- "clean and modern"
|
|
164
|
+
|
|
165
|
+
Good answers:
|
|
166
|
+
- "freelancer reviewing today's tasks over morning coffee"
|
|
167
|
+
- "parent checking their child's learning progress after dinner"
|
|
168
|
+
- "calm, warm, spacious, like a well-organized desk with natural light"
|
|
169
|
+
|
|
170
|
+
## Workflow discipline
|
|
171
|
+
|
|
172
|
+
1. Audit the current page or existing UI before changing visuals.
|
|
173
|
+
2. Explore the product domain and choose one expression mode from `references/art-direction.md`.
|
|
174
|
+
3. Name one signature move and repeat it intentionally across the page.
|
|
175
|
+
4. Consolidate repeating patterns instead of inventing new card/button/table variants for each screen.
|
|
176
|
+
5. Build from tokens first, then components, then page composition.
|
|
177
|
+
6. Validate state parity before finishing: default, hover, active, focus, disabled.
|
|
178
|
+
7. Validate contrast before shipping: body text must meet WCAG AA, controls must stay legible in all themes and states.
|
|
179
|
+
|
|
180
|
+
## Non-negotiable quality gates
|
|
181
|
+
|
|
182
|
+
- Never use pure white (#FFFFFF) as the app background — always use warm off-whites.
|
|
183
|
+
- Never use pure black (#000000) for text — always warm charcoals.
|
|
184
|
+
- Never crowd elements — when in doubt, add more whitespace, not more content.
|
|
185
|
+
- Serif headings are the signature — never replace them with sans-serif across the board.
|
|
186
|
+
- Accent must feel warm, never clinical or cold (no blues, no purples as primary).
|
|
187
|
+
- Rounded corners are structural, not decorative — everything is rounded, consistently.
|
|
188
|
+
- Soft shadows must use warm-tinted RGBA, not generic `rgba(0,0,0,...)`.
|
|
189
|
+
- Forms must feel inviting: generous padding, visible labels above fields, helpful placeholders — never cramped.
|
|
190
|
+
- Hardcoded colors, arbitrary sharp corners, and one-off font choices are design-system failures.
|
|
191
|
+
- Sameness is failure. If the result could be mistaken for a default Notion clone or a generic SaaS template, iterate before presenting.
|
|
192
|
+
- Every full page must have one memorable structural or visual signature, not just "good spacing and cards".
|
|
193
|
+
- Do not reuse the same hero, card layout, or dashboard grid across unrelated products without a domain reason.
|
|
194
|
+
|
|
195
|
+
## Delivery modes
|
|
196
|
+
|
|
197
|
+
### Greenfield
|
|
198
|
+
1. Choose page variant (app, detail, settings, landing, institutional)
|
|
199
|
+
2. Load relevant references
|
|
200
|
+
3. Apply token scope from `design-tokens.md`
|
|
201
|
+
4. Compose layout from `patterns.md` or `websites.md`
|
|
202
|
+
5. Build components from `components.md`
|
|
203
|
+
|
|
204
|
+
### Brownfield
|
|
205
|
+
1. Audit existing UI before rewriting
|
|
206
|
+
2. Map Warm Craft tokens onto the existing component library
|
|
207
|
+
3. Fix token scope issues (font/color variables must be on the correct container)
|
|
208
|
+
4. Consolidate duplicate variants before introducing new ones
|
|
209
|
+
5. Prefer targeted upgrades over full rewrites unless the user asks for a redesign
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
# Art Direction — Warm Craft UI
|
|
2
|
+
|
|
3
|
+
Read this file for any page-level work where differentiation matters: apps, dashboards, landing pages, websites, profile pages, and major flows.
|
|
4
|
+
|
|
5
|
+
This file exists to stop Warm Craft from collapsing into the same light rounded-card layout every time.
|
|
6
|
+
|
|
7
|
+
The system stays coherent, but the expression must change with the product, the user, and the dominant task.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Core Rule
|
|
12
|
+
|
|
13
|
+
**Same warmth, different character.**
|
|
14
|
+
|
|
15
|
+
Keep the Warm Craft DNA:
|
|
16
|
+
- warm-toned surfaces and soft depth
|
|
17
|
+
- humanist typography with serif headings
|
|
18
|
+
- generous whitespace as a design principle
|
|
19
|
+
- rounded, approachable forms
|
|
20
|
+
|
|
21
|
+
But do **not** keep the exact same composition, hero, card rhythm, or visual emphasis from project to project.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Mandatory Pre-Build Outputs
|
|
26
|
+
|
|
27
|
+
Before designing a full page, produce all of these:
|
|
28
|
+
|
|
29
|
+
1. **Human**
|
|
30
|
+
The real person using this page right now.
|
|
31
|
+
|
|
32
|
+
2. **Main action**
|
|
33
|
+
The one decision, action, or question that matters most on this screen.
|
|
34
|
+
|
|
35
|
+
3. **Felt quality**
|
|
36
|
+
Concrete emotional words such as `warm`, `spacious`, `trustworthy`, `crafted`, `calm`, `inviting`, `focused`, `playful`, `gentle`, `grounded`.
|
|
37
|
+
Never use empty labels like `clean`, `modern`, or `beautiful`.
|
|
38
|
+
|
|
39
|
+
4. **Domain vocabulary**
|
|
40
|
+
At least 5 concepts from the product's world.
|
|
41
|
+
Example for a learning app: `lesson`, `streak`, `milestone`, `practice`, `mastery`.
|
|
42
|
+
|
|
43
|
+
5. **Material world**
|
|
44
|
+
At least 5 materials or textures that belong to that product world.
|
|
45
|
+
Example: warm paper, natural wood, linen cloth, clay, dried flowers, leather notebook, morning sunlight.
|
|
46
|
+
|
|
47
|
+
6. **Defaults to avoid**
|
|
48
|
+
Name 3 obvious UI choices that would make the result generic.
|
|
49
|
+
|
|
50
|
+
7. **Signature move**
|
|
51
|
+
One memorable design move that can appear in at least 5 places on the page.
|
|
52
|
+
|
|
53
|
+
If you cannot do these seven, you are not ready to compose the page.
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Expression Modes
|
|
58
|
+
|
|
59
|
+
Choose **one primary mode** per screen. You may borrow a small amount from a secondary mode only after the main expression is clear.
|
|
60
|
+
|
|
61
|
+
### 1. Morning Desk
|
|
62
|
+
|
|
63
|
+
Use for:
|
|
64
|
+
- productivity apps
|
|
65
|
+
- task managers
|
|
66
|
+
- personal dashboards
|
|
67
|
+
- note-taking tools
|
|
68
|
+
- CRM for small teams
|
|
69
|
+
|
|
70
|
+
Feel:
|
|
71
|
+
- organized
|
|
72
|
+
- spacious
|
|
73
|
+
- focused
|
|
74
|
+
- like opening a clean notebook
|
|
75
|
+
|
|
76
|
+
Composition:
|
|
77
|
+
- clear content zones with generous breathing room
|
|
78
|
+
- one dominant action area above the fold
|
|
79
|
+
- sidebar as quiet companion, not attention-grabber
|
|
80
|
+
- cards as containers, not decoration
|
|
81
|
+
|
|
82
|
+
Visual cues:
|
|
83
|
+
- warm white backgrounds with barely-there warm tint
|
|
84
|
+
- soft card shadows that suggest depth without shouting
|
|
85
|
+
- serif headings that ground the hierarchy
|
|
86
|
+
- accent used only on the primary action
|
|
87
|
+
|
|
88
|
+
Signature ideas:
|
|
89
|
+
- oversized greeting header with user context ("Good morning, Sarah. 3 tasks today.")
|
|
90
|
+
- card with subtle left border accent for priority items
|
|
91
|
+
- inline progress indicator with warm fill animation
|
|
92
|
+
|
|
93
|
+
### 2. Sunlit Studio
|
|
94
|
+
|
|
95
|
+
Use for:
|
|
96
|
+
- creative tools
|
|
97
|
+
- design platforms
|
|
98
|
+
- portfolio builders
|
|
99
|
+
- content creation apps
|
|
100
|
+
- media management
|
|
101
|
+
|
|
102
|
+
Feel:
|
|
103
|
+
- inspiring
|
|
104
|
+
- creative
|
|
105
|
+
- warm but vibrant
|
|
106
|
+
- like a well-lit art studio
|
|
107
|
+
|
|
108
|
+
Composition:
|
|
109
|
+
- larger visual elements and media previews
|
|
110
|
+
- asymmetric layouts that feel curated, not random
|
|
111
|
+
- generous negative space around focal content
|
|
112
|
+
- playful grid that rewards browsing
|
|
113
|
+
|
|
114
|
+
Visual cues:
|
|
115
|
+
- accent color used more expressively (subtle background washes, not just buttons)
|
|
116
|
+
- more pronounced shadow depth for media cards
|
|
117
|
+
- type mixing as creative expression: serif titles, sans body, occasional italic
|
|
118
|
+
- rounded containers that feel like frames
|
|
119
|
+
|
|
120
|
+
Signature ideas:
|
|
121
|
+
- gallery grid with hover-reveal metadata
|
|
122
|
+
- hero media card with editorial caption treatment
|
|
123
|
+
- floating toolbar with pill-shaped rounded actions
|
|
124
|
+
|
|
125
|
+
### 3. Garden Path
|
|
126
|
+
|
|
127
|
+
Use for:
|
|
128
|
+
- onboarding flows
|
|
129
|
+
- education apps
|
|
130
|
+
- health and wellness
|
|
131
|
+
- meditation and mindfulness
|
|
132
|
+
- guided experiences
|
|
133
|
+
|
|
134
|
+
Feel:
|
|
135
|
+
- gentle
|
|
136
|
+
- progressive
|
|
137
|
+
- encouraging
|
|
138
|
+
- like a guided walk through a garden
|
|
139
|
+
|
|
140
|
+
Composition:
|
|
141
|
+
- linear narrative flow
|
|
142
|
+
- one step at a time, generous vertical rhythm
|
|
143
|
+
- progress indicators that feel rewarding
|
|
144
|
+
- illustrations or organic shapes as wayfinding
|
|
145
|
+
|
|
146
|
+
Visual cues:
|
|
147
|
+
- softer accent palette (muted terracotta, sage green, warm amber)
|
|
148
|
+
- more rounded everything (pill buttons, oval badges, circular avatars)
|
|
149
|
+
- gentle background gradients that shift with progress
|
|
150
|
+
- decorative organic shapes (circles, blobs) in background — always subtle
|
|
151
|
+
|
|
152
|
+
Signature ideas:
|
|
153
|
+
- step indicator as garden path (dots connected by a curved line)
|
|
154
|
+
- celebration moment with warm radial burst
|
|
155
|
+
- floating encouragement card after milestones
|
|
156
|
+
|
|
157
|
+
### 4. Reading Room
|
|
158
|
+
|
|
159
|
+
Use for:
|
|
160
|
+
- documentation platforms
|
|
161
|
+
- knowledge bases
|
|
162
|
+
- blog platforms
|
|
163
|
+
- long-form content
|
|
164
|
+
- journal apps
|
|
165
|
+
|
|
166
|
+
Feel:
|
|
167
|
+
- intellectual
|
|
168
|
+
- measured
|
|
169
|
+
- unhurried
|
|
170
|
+
- like a quiet library with warm light
|
|
171
|
+
|
|
172
|
+
Composition:
|
|
173
|
+
- narrow, readable content column (max 680px)
|
|
174
|
+
- generous margins
|
|
175
|
+
- strong typographic hierarchy with minimal decoration
|
|
176
|
+
- sidebar as table of contents, not feature list
|
|
177
|
+
|
|
178
|
+
Visual cues:
|
|
179
|
+
- serif dominance (headings AND body can be serif here)
|
|
180
|
+
- book-like margins and line spacing
|
|
181
|
+
- footnotes, pull quotes, and editorial details
|
|
182
|
+
- minimal chrome — the content IS the interface
|
|
183
|
+
|
|
184
|
+
Signature ideas:
|
|
185
|
+
- pull quote with oversized serif and warm accent bar
|
|
186
|
+
- chapter-style section breaks with ornamental divider
|
|
187
|
+
- reading progress bar integrated into the top bar
|
|
188
|
+
|
|
189
|
+
### 5. Warm Dashboard
|
|
190
|
+
|
|
191
|
+
Use for:
|
|
192
|
+
- analytics overview
|
|
193
|
+
- admin panels
|
|
194
|
+
- project management dashboards
|
|
195
|
+
- finance overview
|
|
196
|
+
- reporting tools
|
|
197
|
+
|
|
198
|
+
Feel:
|
|
199
|
+
- clear
|
|
200
|
+
- trustworthy
|
|
201
|
+
- comprehensive but not overwhelming
|
|
202
|
+
- like a well-organized desk with everything in reach
|
|
203
|
+
|
|
204
|
+
Composition:
|
|
205
|
+
- stat cards as opening, but NOT four equal boxes
|
|
206
|
+
- one hero metric or insight above the fold
|
|
207
|
+
- tables and charts below, organized by priority
|
|
208
|
+
- sidebar for navigation, content area for data
|
|
209
|
+
|
|
210
|
+
Visual cues:
|
|
211
|
+
- warm-toned chart colors (terracotta, amber, sage, slate — never neon)
|
|
212
|
+
- card depth hierarchy: elevated stats > flat lists > subtle backgrounds
|
|
213
|
+
- serif for stat numbers and section titles, sans for data labels
|
|
214
|
+
- accent sparingly: one chart highlight color, not rainbow
|
|
215
|
+
|
|
216
|
+
Signature ideas:
|
|
217
|
+
- hero insight card with large serif number + trend context
|
|
218
|
+
- warm-toned donut/bar chart with hand-picked palette
|
|
219
|
+
- activity timeline with avatar bubbles and warm connecting line
|
|
220
|
+
|
|
221
|
+
---
|
|
222
|
+
|
|
223
|
+
## Signature Move Library
|
|
224
|
+
|
|
225
|
+
Pick one and commit. Do not apply three weak gestures when one strong one would do.
|
|
226
|
+
|
|
227
|
+
### Apps
|
|
228
|
+
- greeting card with personalized context and warm illustration
|
|
229
|
+
- soft left-accent border on priority items (3px rounded, warm coral)
|
|
230
|
+
- inline milestone celebration with subtle confetti or warm burst
|
|
231
|
+
|
|
232
|
+
### Dashboards
|
|
233
|
+
- one hero insight with large serif number instead of four equal KPI cards
|
|
234
|
+
- warm-toned chart palette that feels intentional, not default
|
|
235
|
+
- activity feed with avatar timeline and connecting warm line
|
|
236
|
+
|
|
237
|
+
### Landing Pages
|
|
238
|
+
- split hero with product shot on warm gradient background
|
|
239
|
+
- testimonial as editorial pull quote with serif and warm accent
|
|
240
|
+
- feature sections with alternating illustration/text rhythm — never a grid of icons
|
|
241
|
+
|
|
242
|
+
### Websites
|
|
243
|
+
- editorial section headers with serif overline and warm divider
|
|
244
|
+
- case-study cards with generous media and warm caption treatment
|
|
245
|
+
- organic background shapes (circles, waves) that add warmth without distraction
|
|
246
|
+
|
|
247
|
+
Rule:
|
|
248
|
+
- your signature move must appear in at least 5 concrete places, or it is not a real signature
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
252
|
+
## Anti-Generic Tests
|
|
253
|
+
|
|
254
|
+
Run these before presenting:
|
|
255
|
+
|
|
256
|
+
### Swap Test
|
|
257
|
+
|
|
258
|
+
If you swapped:
|
|
259
|
+
- the serif headings for Inter or system sans
|
|
260
|
+
- the warm colors for gray and blue
|
|
261
|
+
- the rounded corners for sharp rectangles
|
|
262
|
+
|
|
263
|
+
and the page still feels mostly the same, it is too generic.
|
|
264
|
+
|
|
265
|
+
### Squint Test
|
|
266
|
+
|
|
267
|
+
Blur your eyes:
|
|
268
|
+
- can you still see hierarchy?
|
|
269
|
+
- is there one dominant idea?
|
|
270
|
+
- do the warm tones feel intentional or just tinted?
|
|
271
|
+
|
|
272
|
+
Warmth should feel embedded, not painted on.
|
|
273
|
+
|
|
274
|
+
### Signature Test
|
|
275
|
+
|
|
276
|
+
Point to 5 exact places where the chosen signature appears.
|
|
277
|
+
If you cannot name them, you do not have a signature.
|
|
278
|
+
|
|
279
|
+
### Domain Test
|
|
280
|
+
|
|
281
|
+
Hide the product name.
|
|
282
|
+
Would the page still feel like it belongs to this specific product world?
|
|
283
|
+
If not, you are decorating a template.
|
|
284
|
+
|
|
285
|
+
### Coldness Test (unique to Warm Craft)
|
|
286
|
+
|
|
287
|
+
Does any part of the page feel clinical, cold, or sterile?
|
|
288
|
+
Check: gray cards without warm tint, sharp shadows, blue/purple accents, dense tables without breathing room.
|
|
289
|
+
Fix: warm the tone, round the edges, add spacing.
|
|
290
|
+
|
|
291
|
+
---
|
|
292
|
+
|
|
293
|
+
## Variation Rules By Surface Type
|
|
294
|
+
|
|
295
|
+
### Apps
|
|
296
|
+
- Do not always start with a greeting card. Sometimes the primary content IS the greeting.
|
|
297
|
+
- Sidebar should feel like furniture, not like a spreadsheet navigation.
|
|
298
|
+
- Dense is never the goal — clarity through structure, not compression.
|
|
299
|
+
|
|
300
|
+
### Dashboards
|
|
301
|
+
- Avoid four equal KPI cards as the only opening move.
|
|
302
|
+
- Prefer one insight story above the fold: a trend, a warning, a celebration.
|
|
303
|
+
- Charts should use warm palette colors, never default library colors.
|
|
304
|
+
|
|
305
|
+
### Landing Pages
|
|
306
|
+
- Do not default to centered hero + three feature cards + testimonials + CTA.
|
|
307
|
+
- Use editorial rhythm: alternating layouts, visual breaks, narrative pacing.
|
|
308
|
+
- Illustrations should feel warm and hand-crafted, never cold and geometric.
|
|
309
|
+
|
|
310
|
+
### Websites
|
|
311
|
+
- Not every page needs to be light. Consider warm dark for dramatic sections.
|
|
312
|
+
- Institutional does not mean boring — let typography, whitespace, and warmth carry the experience.
|
|
313
|
+
- Let proof and narrative carry trust before using effects.
|
|
314
|
+
|
|
315
|
+
---
|
|
316
|
+
|
|
317
|
+
## Non-Negotiable Expression Rules
|
|
318
|
+
|
|
319
|
+
1. One accent family, one expression mode, one signature move.
|
|
320
|
+
2. The page must feel designed for a domain, not for a prompt category.
|
|
321
|
+
3. Typography must carry personality before decoration does — serif headings are the anchor.
|
|
322
|
+
4. Background warmth must feel natural, never tinted as an afterthought.
|
|
323
|
+
5. If the design feels familiar, push the composition, not the gimmicks.
|
|
324
|
+
6. Whitespace is not wasted space — it is the most important design element in this system.
|