@jaimevalasek/aioson 1.3.0 → 1.5.1
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 +22 -3
- package/docs/en/squad-dashboard.md +372 -0
- package/docs/openclaw-bridge.md +308 -0
- package/docs/pt/README.md +62 -2
- package/docs/pt/advisor-spec.md +5 -5
- package/docs/pt/agentes-customizados.md +670 -0
- package/docs/pt/agentes.md +235 -23
- package/docs/pt/automacao-squads.md +407 -0
- package/docs/pt/cenarios.md +49 -5
- package/docs/pt/clientes-ai.md +62 -0
- package/docs/pt/comandos-cli.md +226 -17
- package/docs/pt/deyvin.md +115 -0
- package/docs/pt/genome-3.0-spec.md +11 -11
- package/docs/pt/inicio-rapido.md +63 -2
- package/docs/pt/memoria-contexto.md +255 -0
- package/docs/pt/output-strategy-delivery.md +655 -0
- package/docs/pt/profiler-system.md +17 -17
- package/docs/pt/runtime-observability.md +5 -1
- package/docs/pt/skills.md +175 -0
- package/docs/pt/squad-dashboard.md +373 -0
- package/docs/pt/{squad-genoma.md → squad-genome.md} +81 -75
- package/docs/testing/genome-2.0-matrix.md +5 -5
- package/docs/testing/genome-2.0-rollout.md +10 -10
- package/package.json +4 -4
- package/src/agents.js +21 -5
- package/src/backup-local.js +74 -0
- package/src/backup-provider.js +303 -0
- package/src/cli.js +276 -2
- package/src/commands/agents.js +22 -4
- package/src/commands/backup-local-cmd.js +25 -0
- package/src/commands/backup.js +533 -0
- package/src/commands/cloud.js +17 -17
- package/src/commands/context-pack.js +45 -0
- package/src/commands/implementation-plan.js +340 -0
- package/src/commands/learning.js +134 -0
- package/src/commands/live.js +1583 -0
- package/src/commands/runtime.js +1075 -2
- package/src/commands/scan-project.js +288 -24
- package/src/commands/setup-context.js +30 -2
- package/src/commands/skill.js +558 -0
- package/src/commands/squad-agent-create.js +788 -0
- 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 +103 -1
- package/src/commands/squad-investigate.js +261 -0
- package/src/commands/squad-learning.js +209 -0
- package/src/commands/squad-mcp.js +270 -0
- package/src/commands/squad-pipeline.js +247 -1
- package/src/commands/squad-plan.js +329 -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 +38 -2
- package/src/commands/squad-validate.js +118 -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/test-agents.js +6 -1
- package/src/commands/web-map.js +70 -0
- package/src/commands/web-scrape.js +71 -0
- package/src/commands/workflow-next.js +8 -1
- package/src/commands/workflow-status.js +250 -0
- package/src/constants.js +88 -16
- package/src/context-memory.js +837 -0
- package/src/context-writer.js +47 -1
- package/src/delivery-runner.js +319 -0
- package/src/genome-files.js +1 -1
- package/src/genome-format.js +1 -1
- package/src/i18n/messages/en.js +333 -8
- package/src/i18n/messages/es.js +240 -6
- package/src/i18n/messages/fr.js +239 -5
- package/src/i18n/messages/pt-BR.js +330 -12
- package/src/installer.js +30 -2
- package/src/lib/genomes/compat.js +1 -1
- package/src/lib/webhook-server.js +328 -0
- package/src/mcp-connectors/registry.js +602 -0
- package/src/runtime-store.js +1037 -42
- package/src/session-handoff.js +77 -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/web.js +284 -0
- package/src/worker-runner.js +339 -0
- package/template/.aioson/agents/analyst.md +40 -9
- package/template/.aioson/agents/architect.md +24 -5
- package/template/.aioson/agents/dev.md +254 -25
- package/template/.aioson/agents/deyvin.md +174 -0
- package/template/.aioson/agents/discovery-design-doc.md +25 -1
- package/template/.aioson/agents/{genoma.md → genome.md} +20 -20
- package/template/.aioson/agents/neo.md +152 -0
- package/template/.aioson/agents/orache.md +388 -0
- package/template/.aioson/agents/orchestrator.md +63 -2
- package/template/.aioson/agents/pair.md +5 -0
- package/template/.aioson/agents/pm.md +17 -5
- package/template/.aioson/agents/product.md +113 -29
- package/template/.aioson/agents/profiler-enricher.md +1 -1
- package/template/.aioson/agents/profiler-forge.md +9 -9
- package/template/.aioson/agents/profiler-researcher.md +1 -1
- package/template/.aioson/agents/qa.md +18 -5
- package/template/.aioson/agents/setup.md +138 -18
- package/template/.aioson/agents/sheldon.md +603 -0
- package/template/.aioson/agents/squad.md +866 -28
- package/template/.aioson/agents/tester.md +254 -0
- package/template/.aioson/agents/ux-ui.md +289 -34
- package/template/.aioson/config.md +181 -0
- package/template/.aioson/context/spec.md.template +17 -0
- package/template/.aioson/genomes/.gitkeep +0 -0
- package/template/.aioson/installed-skills/.gitkeep +0 -0
- package/template/.aioson/locales/en/agents/analyst.md +34 -4
- package/template/.aioson/locales/en/agents/architect.md +18 -0
- package/template/.aioson/locales/en/agents/dev.md +155 -11
- package/template/.aioson/locales/en/agents/deyvin.md +137 -0
- package/template/.aioson/locales/en/agents/{genoma.md → genome.md} +14 -14
- package/template/.aioson/locales/en/agents/neo.md +8 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +62 -2
- package/template/.aioson/locales/en/agents/pair.md +5 -0
- package/template/.aioson/locales/en/agents/pm.md +7 -0
- package/template/.aioson/locales/en/agents/product.md +35 -17
- package/template/.aioson/locales/en/agents/qa.md +56 -0
- package/template/.aioson/locales/en/agents/setup.md +53 -6
- package/template/.aioson/locales/en/agents/sheldon.md +340 -0
- package/template/.aioson/locales/en/agents/squad.md +203 -15
- package/template/.aioson/locales/en/agents/ux-ui.md +383 -35
- package/template/.aioson/locales/es/agents/analyst.md +24 -4
- package/template/.aioson/locales/es/agents/architect.md +18 -0
- package/template/.aioson/locales/es/agents/dev.md +136 -9
- package/template/.aioson/locales/es/agents/deyvin.md +97 -0
- package/template/.aioson/locales/es/agents/{genoma.md → genome.md} +13 -13
- package/template/.aioson/locales/es/agents/neo.md +48 -0
- package/template/.aioson/locales/es/agents/orache.md +103 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +62 -2
- package/template/.aioson/locales/es/agents/pair.md +5 -0
- package/template/.aioson/locales/es/agents/pm.md +7 -0
- package/template/.aioson/locales/es/agents/product.md +13 -3
- package/template/.aioson/locales/es/agents/qa.md +33 -0
- package/template/.aioson/locales/es/agents/setup.md +30 -6
- package/template/.aioson/locales/es/agents/sheldon.md +192 -0
- package/template/.aioson/locales/es/agents/squad.md +284 -15
- package/template/.aioson/locales/es/agents/ux-ui.md +34 -25
- package/template/.aioson/locales/fr/agents/analyst.md +24 -4
- package/template/.aioson/locales/fr/agents/architect.md +18 -0
- package/template/.aioson/locales/fr/agents/dev.md +136 -9
- package/template/.aioson/locales/fr/agents/deyvin.md +97 -0
- package/template/.aioson/locales/fr/agents/{genoma.md → genome.md} +7 -7
- package/template/.aioson/locales/fr/agents/neo.md +48 -0
- package/template/.aioson/locales/fr/agents/orache.md +104 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +62 -2
- package/template/.aioson/locales/fr/agents/pair.md +5 -0
- package/template/.aioson/locales/fr/agents/pm.md +7 -0
- package/template/.aioson/locales/fr/agents/product.md +13 -3
- package/template/.aioson/locales/fr/agents/qa.md +33 -0
- package/template/.aioson/locales/fr/agents/setup.md +30 -6
- package/template/.aioson/locales/fr/agents/sheldon.md +192 -0
- package/template/.aioson/locales/fr/agents/squad.md +279 -10
- package/template/.aioson/locales/fr/agents/ux-ui.md +34 -25
- package/template/.aioson/locales/pt-BR/agents/analyst.md +45 -4
- package/template/.aioson/locales/pt-BR/agents/architect.md +29 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +167 -15
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +137 -0
- package/template/.aioson/locales/pt-BR/agents/{genoma.md → genome.md} +49 -49
- package/template/.aioson/locales/pt-BR/agents/neo.md +147 -0
- package/template/.aioson/locales/pt-BR/agents/orache.md +137 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +62 -2
- package/template/.aioson/locales/pt-BR/agents/pair.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/pm.md +7 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +43 -20
- package/template/.aioson/locales/pt-BR/agents/qa.md +67 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +53 -6
- package/template/.aioson/locales/pt-BR/agents/sheldon.md +192 -0
- package/template/.aioson/locales/pt-BR/agents/squad.md +591 -47
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +369 -22
- package/template/.aioson/my-agents/.gitkeep +0 -0
- package/template/.aioson/rules/.gitkeep +0 -0
- package/template/.aioson/rules/squad/.gitkeep +0 -0
- package/template/.aioson/rules/squad/README.md +50 -0
- package/template/.aioson/schemas/genome-meta.schema.json +1 -1
- package/template/.aioson/schemas/genome.schema.json +1 -1
- package/template/.aioson/schemas/squad-blueprint.schema.json +32 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +434 -1
- 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 +203 -0
- 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 +407 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/dashboards.md +272 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +524 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +277 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/patterns.md +289 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/websites.md +437 -0
- package/template/.aioson/skills/design/interface-design/SKILL.md +47 -0
- package/template/.aioson/skills/design/interface-design/references/components-and-states.md +105 -0
- package/template/.aioson/skills/design/interface-design/references/design-directions.md +101 -0
- package/template/.aioson/skills/design/interface-design/references/handoff-and-quality.md +71 -0
- package/template/.aioson/skills/design/interface-design/references/intent-and-domain.md +74 -0
- package/template/.aioson/skills/design/interface-design/references/tokens-and-depth.md +173 -0
- package/template/.aioson/skills/design/premium-command-center-ui/SKILL.md +62 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/operations.md +74 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/patterns.md +116 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/validation.md +47 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/visual-system.md +215 -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/design-system/SKILL.md +92 -0
- package/template/.aioson/skills/design-system/cognitive-core-ui.skill +0 -0
- package/template/.aioson/skills/design-system/components/SKILL.md +274 -0
- package/template/.aioson/skills/design-system/components/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/dashboards/SKILL.md +184 -0
- package/template/.aioson/skills/design-system/dashboards/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/foundations/SKILL.md +250 -0
- package/template/.aioson/skills/design-system/foundations/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/motion/SKILL.md +197 -0
- package/template/.aioson/skills/design-system/motion/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/patterns/SKILL.md +231 -0
- package/template/.aioson/skills/design-system/patterns/SKILL.md:Zone.Identifier +0 -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/squad/SKILL.md +58 -0
- package/template/.aioson/skills/squad/domains/.gitkeep +0 -0
- package/template/.aioson/skills/squad/formats/.gitkeep +0 -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/.gitkeep +0 -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/.gitkeep +0 -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 +307 -0
- package/template/.aioson/tasks/squad-create.md +1 -1
- package/template/.aioson/tasks/squad-design.md +28 -0
- package/template/.aioson/tasks/squad-execution-plan.md +279 -0
- package/template/.aioson/tasks/squad-export.md +1 -1
- package/template/.aioson/tasks/squad-investigate.md +44 -0
- package/template/.aioson/tasks/squad-learning-review.md +44 -0
- package/template/.aioson/tasks/squad-output-config.md +177 -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/.aioson/tasks/squad-validate.md +1 -1
- package/template/.claude/commands/aioson/agent/deyvin.md +5 -0
- package/template/.claude/commands/aioson/agent/discovery-design-doc.md +5 -0
- package/template/.claude/commands/aioson/agent/genome.md +5 -0
- package/template/.claude/commands/aioson/agent/neo.md +5 -0
- package/template/.claude/commands/aioson/agent/product.md +5 -0
- package/template/.claude/commands/aioson/agent/profiler-enricher.md +5 -0
- package/template/.claude/commands/aioson/agent/profiler-forge.md +5 -0
- package/template/.claude/commands/aioson/agent/profiler-researcher.md +5 -0
- package/template/.claude/commands/aioson/agent/squad.md +5 -0
- package/template/.claude/commands/aioson/agent/tester.md +5 -0
- package/template/.gemini/GEMINI.md +3 -0
- package/template/.gemini/commands/aios-deyvin.toml +6 -0
- package/template/.gemini/commands/aios-neo.toml +4 -0
- package/template/.gemini/commands/aios-pair.toml +6 -0
- package/template/.gemini/commands/aios-tester.toml +6 -0
- package/template/AGENTS.md +37 -6
- package/template/CLAUDE.md +34 -4
- package/template/OPENCODE.md +8 -2
- package/template/squad-searches/.gitkeep +0 -0
- package/template/.aioson/skills/static/interface-design.md +0 -372
- package/template/.aioson/skills/static/premium-command-center-ui.md +0 -190
- /package/template/.aioson/{genomas → docs}/.gitkeep +0 -0
- /package/template/.claude/commands/aioson/{analyst.md → agent/analyst.md} +0 -0
- /package/template/.claude/commands/aioson/{architect.md → agent/architect.md} +0 -0
- /package/template/.claude/commands/aioson/{dev.md → agent/dev.md} +0 -0
- /package/template/.claude/commands/aioson/{orchestrator.md → agent/orchestrator.md} +0 -0
- /package/template/.claude/commands/aioson/{pm.md → agent/pm.md} +0 -0
- /package/template/.claude/commands/aioson/{qa.md → agent/qa.md} +0 -0
- /package/template/.claude/commands/aioson/{setup.md → agent/setup.md} +0 -0
- /package/template/.claude/commands/aioson/{ux-ui.md → agent/ux-ui.md} +0 -0
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
# Art Direction - Cognitive Core 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 Cognitive Core from collapsing into the same dark dashboard 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 system, different expressions.**
|
|
14
|
+
|
|
15
|
+
Keep the Cognitive Core DNA:
|
|
16
|
+
- structured information zones
|
|
17
|
+
- refined surfaces and subtle borders
|
|
18
|
+
- disciplined accent usage
|
|
19
|
+
- premium technical feel
|
|
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 `cold`, `calm`, `surgical`, `elevated`, `urgent`, `editorial`, `trustworthy`, `tactical`.
|
|
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 logistics: `dispatch`, `route`, `load`, `dock`, `throughput`.
|
|
42
|
+
|
|
43
|
+
5. **Color world**
|
|
44
|
+
At least 5 colors or materials that belong to that product world.
|
|
45
|
+
Example: graphite glass, brushed steel, fog gray, oxidized teal, warning amber.
|
|
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. Tactical Monolith
|
|
62
|
+
|
|
63
|
+
Use for:
|
|
64
|
+
- command centers
|
|
65
|
+
- security tools
|
|
66
|
+
- infra and monitoring
|
|
67
|
+
- serious operational dashboards
|
|
68
|
+
|
|
69
|
+
Feel:
|
|
70
|
+
- cold
|
|
71
|
+
- exact
|
|
72
|
+
- high-trust
|
|
73
|
+
- dense but controlled
|
|
74
|
+
|
|
75
|
+
Composition:
|
|
76
|
+
- dominant analysis panel
|
|
77
|
+
- strong left or top navigation spine
|
|
78
|
+
- grouped secondary rails
|
|
79
|
+
- no playful overlap
|
|
80
|
+
|
|
81
|
+
Visual cues:
|
|
82
|
+
- graphite surfaces
|
|
83
|
+
- restrained cyan or teal accent
|
|
84
|
+
- tight vertical rhythm
|
|
85
|
+
- mono labels as metadata rails
|
|
86
|
+
|
|
87
|
+
Signature ideas:
|
|
88
|
+
- inset command strip
|
|
89
|
+
- segmented control bar
|
|
90
|
+
- status tape above the main panel
|
|
91
|
+
|
|
92
|
+
### 2. Quiet Graphite
|
|
93
|
+
|
|
94
|
+
Use for:
|
|
95
|
+
- premium SaaS apps
|
|
96
|
+
- B2B platforms
|
|
97
|
+
- productized internal tools
|
|
98
|
+
|
|
99
|
+
Feel:
|
|
100
|
+
- calm
|
|
101
|
+
- precise
|
|
102
|
+
- premium
|
|
103
|
+
- composed
|
|
104
|
+
|
|
105
|
+
Composition:
|
|
106
|
+
- generous negative space inside a dark shell
|
|
107
|
+
- fewer but larger cards
|
|
108
|
+
- content grouped by narrative importance, not just equal grid repetition
|
|
109
|
+
|
|
110
|
+
Visual cues:
|
|
111
|
+
- soft border-first depth
|
|
112
|
+
- low-contrast radial wash
|
|
113
|
+
- bold headings with restrained body copy
|
|
114
|
+
- minimal decorative noise
|
|
115
|
+
|
|
116
|
+
Signature ideas:
|
|
117
|
+
- oversized title rail
|
|
118
|
+
- media-backed hero card
|
|
119
|
+
- one sculpted panel breaking the grid
|
|
120
|
+
|
|
121
|
+
### 3. Signal Editorial
|
|
122
|
+
|
|
123
|
+
Use for:
|
|
124
|
+
- landing pages
|
|
125
|
+
- product websites
|
|
126
|
+
- manifesto pages
|
|
127
|
+
- strategy or brand-heavy experiences
|
|
128
|
+
|
|
129
|
+
Feel:
|
|
130
|
+
- intelligent
|
|
131
|
+
- narrative
|
|
132
|
+
- premium
|
|
133
|
+
- atmospheric
|
|
134
|
+
|
|
135
|
+
Composition:
|
|
136
|
+
- asymmetric sections
|
|
137
|
+
- split hero or offset headline
|
|
138
|
+
- quote blocks, proof rails, editorial stacks
|
|
139
|
+
- alternating calm and high-impact moments
|
|
140
|
+
|
|
141
|
+
Visual cues:
|
|
142
|
+
- stronger display typography
|
|
143
|
+
- more whitespace
|
|
144
|
+
- mono as flavor, not reading mode
|
|
145
|
+
- refined textures, lines, or atmospheric backgrounds
|
|
146
|
+
|
|
147
|
+
Signature ideas:
|
|
148
|
+
- offset hero frame
|
|
149
|
+
- vertical proof rail
|
|
150
|
+
- manifesto block with oversized quote
|
|
151
|
+
|
|
152
|
+
### 4. Luminous Light
|
|
153
|
+
|
|
154
|
+
Use for:
|
|
155
|
+
- client-facing apps
|
|
156
|
+
- enterprise admin with light theme
|
|
157
|
+
- trust-heavy workflows
|
|
158
|
+
- finance, healthcare, legal, institutional
|
|
159
|
+
|
|
160
|
+
Feel:
|
|
161
|
+
- clear
|
|
162
|
+
- trustworthy
|
|
163
|
+
- measured
|
|
164
|
+
- polished
|
|
165
|
+
|
|
166
|
+
Composition:
|
|
167
|
+
- strong content containers
|
|
168
|
+
- crisp headers
|
|
169
|
+
- one dominant task surface above the fold
|
|
170
|
+
- compact but breathable forms and tables
|
|
171
|
+
|
|
172
|
+
Visual cues:
|
|
173
|
+
- off-white surfaces, not raw white overload
|
|
174
|
+
- deep teal accent, never weak sky blue buttons
|
|
175
|
+
- clear border hierarchy
|
|
176
|
+
- low-noise status colors
|
|
177
|
+
|
|
178
|
+
Signature ideas:
|
|
179
|
+
- elevated action bar
|
|
180
|
+
- proof card ribbon
|
|
181
|
+
- sculpted table header band
|
|
182
|
+
|
|
183
|
+
### 5. Industrial Flow
|
|
184
|
+
|
|
185
|
+
Use for:
|
|
186
|
+
- logistics
|
|
187
|
+
- supply chain
|
|
188
|
+
- manufacturing
|
|
189
|
+
- devtools with utilitarian tone
|
|
190
|
+
|
|
191
|
+
Feel:
|
|
192
|
+
- practical
|
|
193
|
+
- mechanical
|
|
194
|
+
- legible
|
|
195
|
+
- high-signal
|
|
196
|
+
|
|
197
|
+
Composition:
|
|
198
|
+
- rigid grid
|
|
199
|
+
- strong lanes and divisions
|
|
200
|
+
- labeled blocks with obvious purpose
|
|
201
|
+
- timeline, feed, or throughput emphasis
|
|
202
|
+
|
|
203
|
+
Visual cues:
|
|
204
|
+
- colder neutrals
|
|
205
|
+
- measured hazard accents
|
|
206
|
+
- boxed callouts
|
|
207
|
+
- minimal flourish, maximal clarity
|
|
208
|
+
|
|
209
|
+
Signature ideas:
|
|
210
|
+
- corner ticks
|
|
211
|
+
- rail markers
|
|
212
|
+
- striped progress treatment
|
|
213
|
+
|
|
214
|
+
### 6. Gallery Intelligence
|
|
215
|
+
|
|
216
|
+
Use for:
|
|
217
|
+
- media-heavy apps
|
|
218
|
+
- CRM/contact systems
|
|
219
|
+
- AI agents, profiles, collections
|
|
220
|
+
- catalog products with analytics
|
|
221
|
+
|
|
222
|
+
Feel:
|
|
223
|
+
- curated
|
|
224
|
+
- intelligent
|
|
225
|
+
- dimensional
|
|
226
|
+
- premium
|
|
227
|
+
|
|
228
|
+
Composition:
|
|
229
|
+
- large hero card or profile surface
|
|
230
|
+
- supporting detail rail
|
|
231
|
+
- modular cards with strong hierarchy between thumbnail, title, metadata, and status
|
|
232
|
+
|
|
233
|
+
Visual cues:
|
|
234
|
+
- cleaner spacing around media
|
|
235
|
+
- tighter metadata rows
|
|
236
|
+
- one expressive showcase area per viewport
|
|
237
|
+
|
|
238
|
+
Signature ideas:
|
|
239
|
+
- profile marquee panel
|
|
240
|
+
- inset media frame
|
|
241
|
+
- layered details strip
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
## Signature Move Library
|
|
246
|
+
|
|
247
|
+
Pick one and commit. Do not apply three weak gestures when one strong one would do.
|
|
248
|
+
|
|
249
|
+
### Apps
|
|
250
|
+
- segmented command bar with active underline and secondary metadata
|
|
251
|
+
- sculpted workspace header with embedded actions
|
|
252
|
+
- inset task rail that feels part of the shell, not pasted above content
|
|
253
|
+
|
|
254
|
+
### Dashboards
|
|
255
|
+
- one dominant hero metric surface instead of four equal KPI cards
|
|
256
|
+
- trend arc or sparkline ribbon integrated into the main header
|
|
257
|
+
- alert tape, timeline spine, or live activity lane
|
|
258
|
+
|
|
259
|
+
### Landing Pages
|
|
260
|
+
- offset split hero instead of centered everything
|
|
261
|
+
- manifesto quote block with asymmetric CTA cluster
|
|
262
|
+
- product theater frame with layered caption rails
|
|
263
|
+
|
|
264
|
+
### Websites
|
|
265
|
+
- editorial section header with overline, side note, and supporting proof
|
|
266
|
+
- case-study strip with alternating image/text rhythm
|
|
267
|
+
- atmospheric background treatment that supports the narrative without drowning the content
|
|
268
|
+
|
|
269
|
+
Rule:
|
|
270
|
+
- your signature move must appear in at least 5 concrete places, or it is not a real signature
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## Anti-Generic Tests
|
|
275
|
+
|
|
276
|
+
Run these before presenting:
|
|
277
|
+
|
|
278
|
+
### Swap Test
|
|
279
|
+
|
|
280
|
+
If you swapped:
|
|
281
|
+
- the typeface for a common SaaS font
|
|
282
|
+
- the layout for a default sidebar + card grid
|
|
283
|
+
- the hero for a centered headline + two buttons
|
|
284
|
+
|
|
285
|
+
and the page still feels mostly the same, it is too generic.
|
|
286
|
+
|
|
287
|
+
### Squint Test
|
|
288
|
+
|
|
289
|
+
Blur your eyes:
|
|
290
|
+
- can you still see hierarchy?
|
|
291
|
+
- is there one dominant idea?
|
|
292
|
+
- are borders, glows, or accents screaming?
|
|
293
|
+
|
|
294
|
+
Craft should whisper, not shout constantly.
|
|
295
|
+
|
|
296
|
+
### Signature Test
|
|
297
|
+
|
|
298
|
+
Point to 5 exact places where the chosen signature appears.
|
|
299
|
+
If you cannot name them, you do not have a signature.
|
|
300
|
+
|
|
301
|
+
### Domain Test
|
|
302
|
+
|
|
303
|
+
Hide the product name.
|
|
304
|
+
Would the page still feel like it belongs to this specific product world?
|
|
305
|
+
If not, you are decorating a template.
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## Variation Rules By Surface Type
|
|
310
|
+
|
|
311
|
+
### Apps
|
|
312
|
+
- Do not always start with a stat row.
|
|
313
|
+
- Do not always use a fixed left sidebar if a topbar + workspace rail fits better.
|
|
314
|
+
- Dense does not mean crowded; keep one task dominant.
|
|
315
|
+
|
|
316
|
+
### Dashboards
|
|
317
|
+
- Avoid four equal KPI cards as the only opening move.
|
|
318
|
+
- Prefer one focal story above the fold: alert cluster, trend panel, hero metric, queue, or live map.
|
|
319
|
+
- Tables should feel integrated into the system, not pasted from a CRUD starter.
|
|
320
|
+
|
|
321
|
+
### Landing Pages
|
|
322
|
+
- Do not default to centered hero + three feature cards + testimonials + CTA.
|
|
323
|
+
- Use at least one composition break: split layout, offset media, vertical rail, or alternating section cadence.
|
|
324
|
+
- Every section should have a different job, not the same card rhythm repeated four times.
|
|
325
|
+
|
|
326
|
+
### Websites
|
|
327
|
+
- Not every page needs dark mode.
|
|
328
|
+
- Institutional does not mean bland; use typography, measure, editorial rhythm, and section contrast.
|
|
329
|
+
- Let proof, narrative, and structure carry beauty before using effects.
|
|
330
|
+
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
## Non-Negotiable Expression Rules
|
|
334
|
+
|
|
335
|
+
1. One accent family, one expression mode, one signature move.
|
|
336
|
+
2. The page must feel designed for a domain, not for a prompt category.
|
|
337
|
+
3. Typography must carry personality before decoration does.
|
|
338
|
+
4. Background atmosphere must support content, never compete with it.
|
|
339
|
+
5. If the design feels familiar, push the composition, not the gimmicks.
|