@jaimevalasek/aioson 1.3.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 +456 -0
- package/CODE_OF_CONDUCT.md +12 -0
- package/CONTRIBUTING.md +13 -0
- package/LICENSE +21 -0
- package/README.md +254 -0
- package/bin/aioson.js +4 -0
- package/docs/en/cli-reference.md +398 -0
- package/docs/en/i18n.md +52 -0
- package/docs/en/json-schemas.md +41 -0
- package/docs/en/mcp.md +56 -0
- package/docs/en/parallel.md +82 -0
- package/docs/en/qa-browser.md +339 -0
- package/docs/en/release-flow.md +22 -0
- package/docs/en/release-notes-template.md +41 -0
- package/docs/en/release.md +28 -0
- package/docs/en/schemas/agent-prompt.schema.json +17 -0
- package/docs/en/schemas/agents.schema.json +32 -0
- package/docs/en/schemas/context-validate.schema.json +36 -0
- package/docs/en/schemas/doctor.schema.json +89 -0
- package/docs/en/schemas/error.schema.json +24 -0
- package/docs/en/schemas/i18n-add.schema.json +15 -0
- package/docs/en/schemas/index.json +116 -0
- package/docs/en/schemas/info.schema.json +39 -0
- package/docs/en/schemas/init.schema.json +48 -0
- package/docs/en/schemas/install.schema.json +60 -0
- package/docs/en/schemas/locale-apply.schema.json +30 -0
- package/docs/en/schemas/mcp-doctor.schema.json +95 -0
- package/docs/en/schemas/mcp-init.schema.json +122 -0
- package/docs/en/schemas/package-test.schema.json +24 -0
- package/docs/en/schemas/parallel-assign.schema.json +57 -0
- package/docs/en/schemas/parallel-doctor.schema.json +86 -0
- package/docs/en/schemas/parallel-init.schema.json +53 -0
- package/docs/en/schemas/parallel-status.schema.json +94 -0
- package/docs/en/schemas/setup-context.schema.json +39 -0
- package/docs/en/schemas/smoke.schema.json +23 -0
- package/docs/en/schemas/update.schema.json +48 -0
- package/docs/en/schemas/workflow-plan.schema.json +30 -0
- package/docs/en/web3.md +54 -0
- package/docs/pt/README.md +46 -0
- package/docs/pt/advisor-spec.md +335 -0
- package/docs/pt/agentes.md +453 -0
- package/docs/pt/cenarios.md +1230 -0
- package/docs/pt/clientes-ai.md +224 -0
- package/docs/pt/comandos-cli.md +511 -0
- package/docs/pt/genome-3.0-spec.md +296 -0
- package/docs/pt/guia-engineer.md +226 -0
- package/docs/pt/inicio-rapido.md +138 -0
- package/docs/pt/profiler-system.md +214 -0
- package/docs/pt/runtime-observability.md +72 -0
- package/docs/pt/squad-genoma.md +777 -0
- package/docs/pt/web3.md +797 -0
- package/docs/testing/genome-2.0-manual-regression.md +23 -0
- package/docs/testing/genome-2.0-matrix.md +36 -0
- package/docs/testing/genome-2.0-rollout.md +184 -0
- package/package.json +50 -0
- package/src/agents.js +56 -0
- package/src/cli.js +497 -0
- package/src/commands/agents.js +142 -0
- package/src/commands/cloud.js +1767 -0
- package/src/commands/config.js +90 -0
- package/src/commands/context-validate.js +91 -0
- package/src/commands/doctor.js +123 -0
- package/src/commands/genome-doctor.js +41 -0
- package/src/commands/genome-migrate.js +49 -0
- package/src/commands/i18n-add.js +56 -0
- package/src/commands/info.js +41 -0
- package/src/commands/init.js +75 -0
- package/src/commands/install.js +68 -0
- package/src/commands/locale-apply.js +51 -0
- package/src/commands/locale-diff.js +126 -0
- package/src/commands/mcp-doctor.js +406 -0
- package/src/commands/mcp-init.js +379 -0
- package/src/commands/package-e2e.js +273 -0
- package/src/commands/parallel-assign.js +403 -0
- package/src/commands/parallel-doctor.js +437 -0
- package/src/commands/parallel-init.js +249 -0
- package/src/commands/parallel-status.js +290 -0
- package/src/commands/qa-doctor.js +185 -0
- package/src/commands/qa-init.js +161 -0
- package/src/commands/qa-report.js +58 -0
- package/src/commands/qa-run.js +873 -0
- package/src/commands/qa-scan.js +337 -0
- package/src/commands/runtime.js +948 -0
- package/src/commands/scan-project.js +1107 -0
- package/src/commands/setup-context.js +650 -0
- package/src/commands/smoke.js +426 -0
- package/src/commands/squad-doctor.js +358 -0
- package/src/commands/squad-export.js +46 -0
- package/src/commands/squad-pipeline.js +97 -0
- package/src/commands/squad-repair-genomes.js +39 -0
- package/src/commands/squad-status.js +424 -0
- package/src/commands/squad-validate.js +230 -0
- package/src/commands/test-agents.js +194 -0
- package/src/commands/update.js +55 -0
- package/src/commands/workflow-next.js +594 -0
- package/src/commands/workflow-plan.js +108 -0
- package/src/constants.js +314 -0
- package/src/context-parse-reason.js +22 -0
- package/src/context-writer.js +150 -0
- package/src/context.js +217 -0
- package/src/detector.js +261 -0
- package/src/doctor.js +289 -0
- package/src/execution-gateway.js +461 -0
- package/src/genome-files.js +198 -0
- package/src/genome-format.js +442 -0
- package/src/genome-schema.js +215 -0
- package/src/genomes/bindings.js +281 -0
- package/src/genomes.js +467 -0
- package/src/i18n/index.js +103 -0
- package/src/i18n/messages/en.js +784 -0
- package/src/i18n/messages/es.js +718 -0
- package/src/i18n/messages/fr.js +725 -0
- package/src/i18n/messages/pt-BR.js +818 -0
- package/src/i18n/scaffold.js +64 -0
- package/src/installer.js +232 -0
- package/src/lib/genomes/compat.js +206 -0
- package/src/lib/genomes/migrate.js +90 -0
- package/src/lib/squads/genome-repair.js +49 -0
- package/src/locales.js +84 -0
- package/src/onboarding.js +305 -0
- package/src/parser.js +53 -0
- package/src/prompt-tool.js +20 -0
- package/src/qa-html-report.js +472 -0
- package/src/runtime-store.js +1527 -0
- package/src/squads/apply-genome.js +21 -0
- package/src/squads/genome-binding-service.js +154 -0
- package/src/updater.js +32 -0
- package/src/utils.js +46 -0
- package/src/version.js +50 -0
- package/template/.aioson/advisors/.gitkeep +1 -0
- package/template/.aioson/agents/analyst.md +225 -0
- package/template/.aioson/agents/architect.md +221 -0
- package/template/.aioson/agents/dev.md +201 -0
- package/template/.aioson/agents/discovery-design-doc.md +196 -0
- package/template/.aioson/agents/genoma.md +300 -0
- package/template/.aioson/agents/orchestrator.md +107 -0
- package/template/.aioson/agents/pm.md +89 -0
- package/template/.aioson/agents/product.md +361 -0
- package/template/.aioson/agents/profiler-enricher.md +266 -0
- package/template/.aioson/agents/profiler-forge.md +188 -0
- package/template/.aioson/agents/profiler-researcher.md +245 -0
- package/template/.aioson/agents/qa.md +344 -0
- package/template/.aioson/agents/setup.md +381 -0
- package/template/.aioson/agents/squad.md +837 -0
- package/template/.aioson/agents/ux-ui.md +416 -0
- package/template/.aioson/config.md +56 -0
- package/template/.aioson/context/.gitkeep +0 -0
- package/template/.aioson/context/parallel/.gitkeep +0 -0
- package/template/.aioson/context/spec.md.template +37 -0
- package/template/.aioson/genomas/.gitkeep +0 -0
- package/template/.aioson/locales/en/agents/analyst.md +214 -0
- package/template/.aioson/locales/en/agents/architect.md +210 -0
- package/template/.aioson/locales/en/agents/dev.md +187 -0
- package/template/.aioson/locales/en/agents/discovery-design-doc.md +27 -0
- package/template/.aioson/locales/en/agents/genoma.md +212 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +105 -0
- package/template/.aioson/locales/en/agents/pm.md +77 -0
- package/template/.aioson/locales/en/agents/product.md +310 -0
- package/template/.aioson/locales/en/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/en/agents/qa.md +214 -0
- package/template/.aioson/locales/en/agents/setup.md +342 -0
- package/template/.aioson/locales/en/agents/squad.md +247 -0
- package/template/.aioson/locales/en/agents/ux-ui.md +320 -0
- package/template/.aioson/locales/es/agents/analyst.md +203 -0
- package/template/.aioson/locales/es/agents/architect.md +208 -0
- package/template/.aioson/locales/es/agents/dev.md +183 -0
- package/template/.aioson/locales/es/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/es/agents/genoma.md +102 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/es/agents/pm.md +81 -0
- package/template/.aioson/locales/es/agents/product.md +310 -0
- package/template/.aioson/locales/es/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/es/agents/qa.md +163 -0
- package/template/.aioson/locales/es/agents/setup.md +347 -0
- package/template/.aioson/locales/es/agents/squad.md +247 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/fr/agents/analyst.md +203 -0
- package/template/.aioson/locales/fr/agents/architect.md +208 -0
- package/template/.aioson/locales/fr/agents/dev.md +183 -0
- package/template/.aioson/locales/fr/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/fr/agents/genoma.md +102 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/fr/agents/pm.md +81 -0
- package/template/.aioson/locales/fr/agents/product.md +310 -0
- package/template/.aioson/locales/fr/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/fr/agents/qa.md +163 -0
- package/template/.aioson/locales/fr/agents/setup.md +347 -0
- package/template/.aioson/locales/fr/agents/squad.md +247 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/architect.md +213 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/discovery-design-doc.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/genoma.md +297 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/pt-BR/agents/pm.md +81 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +316 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/qa.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +371 -0
- package/template/.aioson/locales/pt-BR/agents/squad.md +772 -0
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +322 -0
- package/template/.aioson/mcp/servers.md +24 -0
- package/template/.aioson/profiler-reports/.gitkeep +1 -0
- package/template/.aioson/schemas/content-blueprint.schema.json +30 -0
- package/template/.aioson/schemas/genome-meta.schema.json +150 -0
- package/template/.aioson/schemas/genome.schema.json +115 -0
- package/template/.aioson/schemas/readiness.schema.json +27 -0
- package/template/.aioson/schemas/squad-blueprint.schema.json +172 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +276 -0
- package/template/.aioson/skills/dynamic/README.md +30 -0
- package/template/.aioson/skills/dynamic/cardano-docs.md +16 -0
- package/template/.aioson/skills/dynamic/ethereum-docs.md +17 -0
- package/template/.aioson/skills/dynamic/flux-ui-docs.md +13 -0
- package/template/.aioson/skills/dynamic/laravel-docs.md +41 -0
- package/template/.aioson/skills/dynamic/npm-packages.md +16 -0
- package/template/.aioson/skills/dynamic/solana-docs.md +16 -0
- package/template/.aioson/skills/references/premium-command-center-ui/master-application-prompt.md +79 -0
- package/template/.aioson/skills/references/premium-command-center-ui/operational-ux-playbook.md +253 -0
- package/template/.aioson/skills/references/premium-command-center-ui/quality-validation-checklist.md +82 -0
- package/template/.aioson/skills/references/premium-command-center-ui/visual-system-and-component-patterns.md +270 -0
- package/template/.aioson/skills/static/django-patterns.md +342 -0
- package/template/.aioson/skills/static/fastapi-patterns.md +344 -0
- package/template/.aioson/skills/static/filament-patterns.md +267 -0
- package/template/.aioson/skills/static/flux-ui-components.md +262 -0
- package/template/.aioson/skills/static/git-conventions.md +227 -0
- package/template/.aioson/skills/static/interface-design.md +372 -0
- package/template/.aioson/skills/static/jetstream-setup.md +200 -0
- package/template/.aioson/skills/static/laravel-conventions.md +491 -0
- package/template/.aioson/skills/static/nextjs-patterns.md +321 -0
- package/template/.aioson/skills/static/node-express-patterns.md +317 -0
- package/template/.aioson/skills/static/node-typescript-patterns.md +282 -0
- package/template/.aioson/skills/static/premium-command-center-ui.md +190 -0
- package/template/.aioson/skills/static/rails-conventions.md +307 -0
- package/template/.aioson/skills/static/react-motion-patterns.md +577 -0
- package/template/.aioson/skills/static/static-html-patterns.md +1935 -0
- package/template/.aioson/skills/static/tall-stack-patterns.md +286 -0
- package/template/.aioson/skills/static/ui-ux-modern.md +75 -0
- package/template/.aioson/skills/static/web3-cardano-patterns.md +337 -0
- package/template/.aioson/skills/static/web3-ethereum-patterns.md +310 -0
- package/template/.aioson/skills/static/web3-security-checklist.md +284 -0
- package/template/.aioson/skills/static/web3-solana-patterns.md +324 -0
- package/template/.aioson/squads/.artisan/.gitkeep +0 -0
- package/template/.aioson/squads/.gitkeep +0 -0
- package/template/.aioson/squads/memory.md +5 -0
- package/template/.aioson/tasks/squad-analyze.md +83 -0
- package/template/.aioson/tasks/squad-create.md +99 -0
- package/template/.aioson/tasks/squad-design.md +100 -0
- package/template/.aioson/tasks/squad-export.md +20 -0
- package/template/.aioson/tasks/squad-extend.md +68 -0
- package/template/.aioson/tasks/squad-pipeline.md +122 -0
- package/template/.aioson/tasks/squad-repair.md +85 -0
- package/template/.aioson/tasks/squad-validate.md +58 -0
- package/template/.aioson/templates/squads/content-basic/template.json +21 -0
- package/template/.aioson/templates/squads/media-channel/template.json +24 -0
- package/template/.aioson/templates/squads/research-analysis/template.json +22 -0
- package/template/.aioson/templates/squads/software-delivery/template.json +21 -0
- package/template/.claude/commands/aioson/analyst.md +5 -0
- package/template/.claude/commands/aioson/architect.md +5 -0
- package/template/.claude/commands/aioson/dev.md +5 -0
- package/template/.claude/commands/aioson/orchestrator.md +5 -0
- package/template/.claude/commands/aioson/pm.md +5 -0
- package/template/.claude/commands/aioson/qa.md +5 -0
- package/template/.claude/commands/aioson/setup.md +5 -0
- package/template/.claude/commands/aioson/ux-ui.md +5 -0
- package/template/.gemini/GEMINI.md +10 -0
- package/template/.gemini/commands/aios-analyst.toml +4 -0
- package/template/.gemini/commands/aios-architect.toml +7 -0
- package/template/.gemini/commands/aios-dev.toml +8 -0
- package/template/.gemini/commands/aios-discovery-design-doc.toml +4 -0
- package/template/.gemini/commands/aios-orchestrator.toml +8 -0
- package/template/.gemini/commands/aios-pm.toml +8 -0
- package/template/.gemini/commands/aios-product.toml +4 -0
- package/template/.gemini/commands/aios-qa.toml +6 -0
- package/template/.gemini/commands/aios-setup.toml +3 -0
- package/template/.gemini/commands/aios-ux-ui.toml +8 -0
- package/template/AGENTS.md +67 -0
- package/template/CLAUDE.md +31 -0
- package/template/OPENCODE.md +24 -0
- package/template/aioson-models.json +40 -0
package/template/.aioson/skills/references/premium-command-center-ui/master-application-prompt.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Master Application Prompt
|
|
2
|
+
|
|
3
|
+
Use the prompt below when another agent needs to apply `premium-command-center-ui` to a new project.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Prompt
|
|
8
|
+
|
|
9
|
+
```text
|
|
10
|
+
Apply the `premium-command-center-ui` skill to this project.
|
|
11
|
+
|
|
12
|
+
Your job is to produce a premium operational interface derived from the real AIOS Dashboard patterns, not a generic dark admin panel.
|
|
13
|
+
|
|
14
|
+
Work from the current codebase and data model first. Do not invent abstract design systems disconnected from the implementation.
|
|
15
|
+
|
|
16
|
+
Required behavior:
|
|
17
|
+
1. Inspect the existing routes, components, and real domain objects before proposing layout changes.
|
|
18
|
+
2. Identify the true operational nouns and verbs of the product.
|
|
19
|
+
3. Translate raw domain records into UI-native objects when needed (for example: lanes, queues, memory assets, grouped registries, current signal summaries).
|
|
20
|
+
4. Choose the right page archetype per route:
|
|
21
|
+
- command center overview
|
|
22
|
+
- queue / control tower
|
|
23
|
+
- workflow catalog
|
|
24
|
+
- knowledge explorer
|
|
25
|
+
- grouped registry
|
|
26
|
+
5. If the product has enough complexity, use a tri-rail shell on desktop:
|
|
27
|
+
- left navigation
|
|
28
|
+
- center workspace
|
|
29
|
+
- right contextual activity rail
|
|
30
|
+
6. Preserve the visual system:
|
|
31
|
+
- deep graphite or cool-mist base
|
|
32
|
+
- aurora page atmosphere
|
|
33
|
+
- borders-first depth
|
|
34
|
+
- 3 surface levels max
|
|
35
|
+
- compact density
|
|
36
|
+
- restrained semantic tones
|
|
37
|
+
7. Preserve the interaction system:
|
|
38
|
+
- search-first top bar
|
|
39
|
+
- command palette if route count justifies it
|
|
40
|
+
- direct drill-down actions inside major cards
|
|
41
|
+
- styled empty states
|
|
42
|
+
- contextual status/history/metrics support
|
|
43
|
+
8. Keep the result responsive by collapsing progressively rather than inventing a disconnected mobile UI.
|
|
44
|
+
9. Avoid generic solutions:
|
|
45
|
+
- no flat card wall
|
|
46
|
+
- no washed-out contrast
|
|
47
|
+
- no oversized spacing
|
|
48
|
+
- no random gradients
|
|
49
|
+
- no equal importance for every section
|
|
50
|
+
10. Implement real code, not a moodboard.
|
|
51
|
+
|
|
52
|
+
Before coding, state briefly:
|
|
53
|
+
- visual direction
|
|
54
|
+
- shell decision
|
|
55
|
+
- page archetype per affected route
|
|
56
|
+
- primary reusable components you will create or reuse
|
|
57
|
+
|
|
58
|
+
During implementation, maintain these quality rules:
|
|
59
|
+
- runtime / primary operations appear before infrastructure
|
|
60
|
+
- one focal block per page
|
|
61
|
+
- every major card has a next action when relevant
|
|
62
|
+
- semantic colors mean something specific
|
|
63
|
+
- compact density is preserved
|
|
64
|
+
- premium feel comes from behavior as much as appearance
|
|
65
|
+
|
|
66
|
+
Final output must include:
|
|
67
|
+
- what changed in the UI and why
|
|
68
|
+
- which components or routes were updated
|
|
69
|
+
- responsive notes
|
|
70
|
+
- validation against the premium-command-center-ui checklist
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## How to use this prompt
|
|
76
|
+
|
|
77
|
+
- Use it when the target project is operational, multi-module, and needs a premium shell.
|
|
78
|
+
- Pair it with the visual system and UX playbook references, not by itself.
|
|
79
|
+
- If the project is a landing page or marketing site, do not use this prompt; use a site-focused skill instead.
|
package/template/.aioson/skills/references/premium-command-center-ui/operational-ux-playbook.md
ADDED
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
# Operational UX Playbook
|
|
2
|
+
|
|
3
|
+
> This reference documents the UX logic extracted from the AIOS Dashboard implementation.
|
|
4
|
+
> Use it when defining navigation, hierarchy, grouping, page composition, and interaction patterns.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. Core UX principle
|
|
9
|
+
|
|
10
|
+
This system treats the product like an operating surface.
|
|
11
|
+
|
|
12
|
+
That means:
|
|
13
|
+
|
|
14
|
+
- the user should see current pressure first
|
|
15
|
+
- the next useful action should be one click away
|
|
16
|
+
- supporting history and metrics should stay available without taking over the page
|
|
17
|
+
- the UI should guide the user through live state, not just display records
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 2. Hierarchy rules extracted from the dashboard
|
|
22
|
+
|
|
23
|
+
### Rule 1: runtime before infrastructure
|
|
24
|
+
|
|
25
|
+
Operational signals must appear above:
|
|
26
|
+
|
|
27
|
+
- paths
|
|
28
|
+
- configuration
|
|
29
|
+
- administrative utilities
|
|
30
|
+
- long explanatory blocks
|
|
31
|
+
|
|
32
|
+
This was applied directly in the dashboard: runtime, agents, tasks, workflows, and memory lanes moved above lower-priority infrastructure.
|
|
33
|
+
|
|
34
|
+
### Rule 2: one dominant section per screen
|
|
35
|
+
|
|
36
|
+
Each premium route has one primary working area:
|
|
37
|
+
|
|
38
|
+
- overview: runtime pulse
|
|
39
|
+
- tasks: control tower
|
|
40
|
+
- workflows: execution topology + catalog
|
|
41
|
+
- memories: memory model + fresh assets
|
|
42
|
+
|
|
43
|
+
Everything else is secondary support.
|
|
44
|
+
|
|
45
|
+
### Rule 3: grouped meaning beats flat listing
|
|
46
|
+
|
|
47
|
+
Do not show long ungrouped lists when the records can be grouped by origin, momentum, layer, or domain.
|
|
48
|
+
|
|
49
|
+
Real examples from the implementation:
|
|
50
|
+
|
|
51
|
+
- agents split into official vs squad agents
|
|
52
|
+
- squad agents grouped by squad
|
|
53
|
+
- workflows represented as lanes per squad
|
|
54
|
+
- memories grouped into foundation / generated / capabilities
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## 3. Navigation pattern
|
|
59
|
+
|
|
60
|
+
The navigation stack has three layers:
|
|
61
|
+
|
|
62
|
+
### Left rail
|
|
63
|
+
|
|
64
|
+
Permanent product modules and project switching.
|
|
65
|
+
|
|
66
|
+
Use it for:
|
|
67
|
+
|
|
68
|
+
- top-level routes
|
|
69
|
+
- project/workspace selector
|
|
70
|
+
- persistent product identity
|
|
71
|
+
|
|
72
|
+
### Top search bar
|
|
73
|
+
|
|
74
|
+
This is a search-first control strip.
|
|
75
|
+
|
|
76
|
+
Include:
|
|
77
|
+
|
|
78
|
+
- command palette entry point
|
|
79
|
+
- active route label
|
|
80
|
+
- active project chip
|
|
81
|
+
- system utility such as theme toggle or live status chip
|
|
82
|
+
|
|
83
|
+
### Right activity rail
|
|
84
|
+
|
|
85
|
+
Keep contextual panels visible on desktop.
|
|
86
|
+
|
|
87
|
+
The shipped pattern uses three tabs:
|
|
88
|
+
|
|
89
|
+
- `Status`
|
|
90
|
+
- `History`
|
|
91
|
+
- `Metrics`
|
|
92
|
+
|
|
93
|
+
This is important: the right rail should never be decorative. It must summarize the current route context and provide quick drill-downs.
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## 4. Search-first interaction
|
|
98
|
+
|
|
99
|
+
The premium feel improved because navigation stopped depending only on the left rail.
|
|
100
|
+
|
|
101
|
+
Required behaviors:
|
|
102
|
+
|
|
103
|
+
- command palette open via `Ctrl/Cmd + K`
|
|
104
|
+
- close via `Esc`
|
|
105
|
+
- immediate focus on the search field
|
|
106
|
+
- searchable items drawn from real routes and project context
|
|
107
|
+
- result items should be clickable cards, not plain text rows
|
|
108
|
+
|
|
109
|
+
If a dashboard has many modules and no fast command surface, it will feel slower than it looks.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## 5. Page archetypes extracted from the implementation
|
|
114
|
+
|
|
115
|
+
### A. Command center overview
|
|
116
|
+
|
|
117
|
+
Use when the user needs a system pulse before drilling deeper.
|
|
118
|
+
|
|
119
|
+
Composition:
|
|
120
|
+
|
|
121
|
+
- metrics row
|
|
122
|
+
- runtime pulse block
|
|
123
|
+
- project snapshot
|
|
124
|
+
- momentum boards for workflows, queue, memory
|
|
125
|
+
|
|
126
|
+
### B. Queue / control tower
|
|
127
|
+
|
|
128
|
+
Use when a route is primarily about active work items.
|
|
129
|
+
|
|
130
|
+
Composition:
|
|
131
|
+
|
|
132
|
+
- metrics row
|
|
133
|
+
- left column: load mix + active queue
|
|
134
|
+
- right column: backlog / recent history
|
|
135
|
+
- bottom: grouped load map or concentration map
|
|
136
|
+
|
|
137
|
+
### C. Workflow catalog
|
|
138
|
+
|
|
139
|
+
Use when a route represents grouped execution lanes or modules.
|
|
140
|
+
|
|
141
|
+
Composition:
|
|
142
|
+
|
|
143
|
+
- metrics row
|
|
144
|
+
- left: capacity topology / featured lanes
|
|
145
|
+
- right: dense lane catalog
|
|
146
|
+
|
|
147
|
+
### D. Knowledge explorer
|
|
148
|
+
|
|
149
|
+
Use when surfacing memory, assets, documents, or learned context.
|
|
150
|
+
|
|
151
|
+
Composition:
|
|
152
|
+
|
|
153
|
+
- metrics row
|
|
154
|
+
- model explanation or layer summary
|
|
155
|
+
- recent asset stream
|
|
156
|
+
- grouped knowledge columns
|
|
157
|
+
|
|
158
|
+
### E. Grouped registry
|
|
159
|
+
|
|
160
|
+
Use when a route is still index-like but should not feel flat.
|
|
161
|
+
|
|
162
|
+
Composition:
|
|
163
|
+
|
|
164
|
+
- metrics row
|
|
165
|
+
- registry header
|
|
166
|
+
- segmented groups with direct actions inside each group
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## 6. Data modeling for premium UX
|
|
171
|
+
|
|
172
|
+
A key implementation pattern was to build UI-specific records instead of binding components directly to raw data.
|
|
173
|
+
|
|
174
|
+
Reuse this pattern in new projects:
|
|
175
|
+
|
|
176
|
+
- create aggregated task records that already know their group, counts, and latest signal
|
|
177
|
+
- create workflow records that already know momentum and capability volume
|
|
178
|
+
- create memory or asset records that already know scope, kind, and source
|
|
179
|
+
|
|
180
|
+
This lets the UI stay concise and intentional.
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## 7. Interaction patterns to preserve
|
|
185
|
+
|
|
186
|
+
### Project switcher
|
|
187
|
+
|
|
188
|
+
- collapsible panel in the left rail
|
|
189
|
+
- active project clearly highlighted
|
|
190
|
+
- switching should preserve current route when possible
|
|
191
|
+
|
|
192
|
+
### State tabs
|
|
193
|
+
|
|
194
|
+
- use compact segmented controls for status / history / metrics
|
|
195
|
+
- active state gets a premium fill, not just bold text
|
|
196
|
+
|
|
197
|
+
### Direct action cards
|
|
198
|
+
|
|
199
|
+
- every major card should offer the next drill-down
|
|
200
|
+
- do not force the user to navigate back to the left rail for everything
|
|
201
|
+
|
|
202
|
+
### Empty states
|
|
203
|
+
|
|
204
|
+
- use styled empty states with dashed border and an orientation sentence
|
|
205
|
+
- explain what will populate this area and where the user should go next
|
|
206
|
+
|
|
207
|
+
### Theme toggle
|
|
208
|
+
|
|
209
|
+
- small persistent utility
|
|
210
|
+
- should feel integrated, not like a floating widget
|
|
211
|
+
|
|
212
|
+
---
|
|
213
|
+
|
|
214
|
+
## 8. Responsive playbook
|
|
215
|
+
|
|
216
|
+
The responsive strategy is progressive collapse, not redesign.
|
|
217
|
+
|
|
218
|
+
- keep the same route structure on mobile/tablet
|
|
219
|
+
- hide the right rail below desktop
|
|
220
|
+
- stack split sections vertically
|
|
221
|
+
- let chips and actions wrap naturally
|
|
222
|
+
- keep titles, helper text, and action labels short enough to survive narrower widths
|
|
223
|
+
|
|
224
|
+
Avoid shipping a dense desktop layout with no collapse strategy.
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
## 9. Anti-patterns extracted from what was improved
|
|
229
|
+
|
|
230
|
+
Avoid these regressions:
|
|
231
|
+
|
|
232
|
+
- placing paths, IDs, and infrastructure blocks above runtime-critical information
|
|
233
|
+
- leaving all cards with the same visual weight and no focal block
|
|
234
|
+
- separating related items into different screens when grouped cards would work better
|
|
235
|
+
- over-expanding padding and gaps until the dashboard feels empty
|
|
236
|
+
- making the premium layer only visual, with no navigation or interaction upgrade
|
|
237
|
+
- using status colors as decoration rather than meaning
|
|
238
|
+
- rendering every route as the same metric-row-plus-card-grid template without adapting to the job of the page
|
|
239
|
+
|
|
240
|
+
---
|
|
241
|
+
|
|
242
|
+
## 10. What creates the premium feel in UX terms
|
|
243
|
+
|
|
244
|
+
The premium effect is the combination of:
|
|
245
|
+
|
|
246
|
+
- a productized shell
|
|
247
|
+
- faster route entry through search
|
|
248
|
+
- contextual side information always available
|
|
249
|
+
- clear operational hierarchy
|
|
250
|
+
- grouped drill-downs that match how the user thinks
|
|
251
|
+
- reduced friction between reading and acting
|
|
252
|
+
|
|
253
|
+
If the UI looks expensive but still feels slow to operate, the premium bar was missed.
|
package/template/.aioson/skills/references/premium-command-center-ui/quality-validation-checklist.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Quality Validation Checklist
|
|
2
|
+
|
|
3
|
+
> Run this before shipping any UI that claims to follow `premium-command-center-ui`.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## A. Visual system
|
|
8
|
+
|
|
9
|
+
- [ ] The page uses a clear premium direction, not a default dark theme.
|
|
10
|
+
- [ ] There are no more than 3 major surface levels.
|
|
11
|
+
- [ ] Borders are visible and consistent across major panels.
|
|
12
|
+
- [ ] Shadows belong to one family only.
|
|
13
|
+
- [ ] Semantic colors are limited to clear roles (`accent`, `success`, `warning`, `danger`, `violet`, `neutral`).
|
|
14
|
+
- [ ] The background atmosphere is intentional and restrained.
|
|
15
|
+
|
|
16
|
+
## B. Typography and density
|
|
17
|
+
|
|
18
|
+
- [ ] Eyebrows, headings, helper text, and monospace metadata follow a consistent hierarchy.
|
|
19
|
+
- [ ] Titles use stronger weight and tighter tracking than body copy.
|
|
20
|
+
- [ ] Density feels compact and operational, not empty and oversized.
|
|
21
|
+
- [ ] Repeated paddings, radii, and gaps follow one compact scale.
|
|
22
|
+
|
|
23
|
+
## C. Layout and hierarchy
|
|
24
|
+
|
|
25
|
+
- [ ] The primary operational signal is above infrastructure and secondary metadata.
|
|
26
|
+
- [ ] Each page has one obvious focal block.
|
|
27
|
+
- [ ] The route composition matches its job (overview, queue, catalog, explorer, registry).
|
|
28
|
+
- [ ] Long flat lists were replaced by grouped or segmented structures where appropriate.
|
|
29
|
+
- [ ] Important counts or statuses are visible without scrolling deep into the page.
|
|
30
|
+
|
|
31
|
+
## D. Shell and navigation
|
|
32
|
+
|
|
33
|
+
- [ ] The shell feels like a product operating surface, not just page chrome.
|
|
34
|
+
- [ ] Left navigation exposes real first-class modules only.
|
|
35
|
+
- [ ] Top search or command access exists when route count or complexity justifies it.
|
|
36
|
+
- [ ] Contextual status/history/metrics are available somewhere persistent when needed.
|
|
37
|
+
- [ ] Cards or grouped rows expose direct drill-down actions.
|
|
38
|
+
|
|
39
|
+
## E. Component quality
|
|
40
|
+
|
|
41
|
+
- [ ] Major cards have clear default and hover states.
|
|
42
|
+
- [ ] Active or selected states are visually distinct.
|
|
43
|
+
- [ ] Empty states are intentionally designed, not plain paragraphs.
|
|
44
|
+
- [ ] Error and warning surfaces use the semantic tone system.
|
|
45
|
+
- [ ] Utility controls (toggle, tabs, segmented filters, search triggers) feel integrated into the shell.
|
|
46
|
+
|
|
47
|
+
## F. Responsiveness
|
|
48
|
+
|
|
49
|
+
- [ ] The desktop shell collapses progressively instead of breaking.
|
|
50
|
+
- [ ] Split sections stack cleanly below large breakpoints.
|
|
51
|
+
- [ ] Action rows and chips wrap safely.
|
|
52
|
+
- [ ] No critical context disappears without an alternate access path.
|
|
53
|
+
- [ ] Text labels remain legible and do not overflow in common viewport widths.
|
|
54
|
+
|
|
55
|
+
## G. Accessibility
|
|
56
|
+
|
|
57
|
+
- [ ] Interactive elements remain keyboard reachable.
|
|
58
|
+
- [ ] Focus states are visible.
|
|
59
|
+
- [ ] Body text contrast is comfortable for long reading.
|
|
60
|
+
- [ ] Meaning is not conveyed by color alone.
|
|
61
|
+
- [ ] Modals, overlays, and drawers have obvious close behavior.
|
|
62
|
+
|
|
63
|
+
## H. Premium feel audit
|
|
64
|
+
|
|
65
|
+
- [ ] The interface feels faster to use, not only more decorated.
|
|
66
|
+
- [ ] The shell, search, context rail, and grouped cards work together as one system.
|
|
67
|
+
- [ ] The result does not look like a generic template from a dashboard kit.
|
|
68
|
+
- [ ] The visual identity would still be recognizable if labels changed.
|
|
69
|
+
- [ ] The user can tell where to act next on every important screen.
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Hard fail conditions
|
|
74
|
+
|
|
75
|
+
If any of these are true, the skill was not applied correctly:
|
|
76
|
+
|
|
77
|
+
- the page is just a dark background with default cards
|
|
78
|
+
- every section has the same weight and the same composition
|
|
79
|
+
- runtime-critical areas are buried below paths, config, or explanatory prose
|
|
80
|
+
- the UI is still washed out or low-contrast
|
|
81
|
+
- the interface feels spacious but not useful
|
|
82
|
+
- navigation improved visually but not operationally
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
# Visual System And Component Patterns
|
|
2
|
+
|
|
3
|
+
> This reference captures the actual visual language implemented in the AIOS Dashboard.
|
|
4
|
+
> Use it when you need the concrete token system, density rules, shell proportions, and component patterns.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. Visual direction
|
|
9
|
+
|
|
10
|
+
**Direction name:** Premium Dark Platform
|
|
11
|
+
|
|
12
|
+
**Core feel:** an operating surface, not a gallery of cards.
|
|
13
|
+
|
|
14
|
+
The premium effect comes from combining:
|
|
15
|
+
|
|
16
|
+
- deep graphite base instead of pure black
|
|
17
|
+
- aurora radial fields in orange, magenta, cyan
|
|
18
|
+
- strong but disciplined borders
|
|
19
|
+
- blurred glass surfaces with inset highlight
|
|
20
|
+
- compact density
|
|
21
|
+
- semantic accents with restrained hue count
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 2. Extracted token system
|
|
26
|
+
|
|
27
|
+
### Dark foundation
|
|
28
|
+
|
|
29
|
+
- `background`: `#060818`
|
|
30
|
+
- `panel`: `#0b1230`
|
|
31
|
+
- `panel-elevated`: `#121c46`
|
|
32
|
+
- `panel-soft`: `rgba(10, 16, 42, 0.8)`
|
|
33
|
+
- `panel-contrast`: `rgba(7, 12, 33, 0.92)`
|
|
34
|
+
- `panel-contrast-hover`: `rgba(18, 31, 72, 0.96)`
|
|
35
|
+
- `foreground`: `#f4f7ff`
|
|
36
|
+
- `muted`: `#a5b3d9`
|
|
37
|
+
- `border`: `rgba(104, 144, 238, 0.34)`
|
|
38
|
+
- `accent`: `#28a5ff`
|
|
39
|
+
- `accent-soft`: `rgba(40, 165, 255, 0.26)`
|
|
40
|
+
- `surface-soft`: `rgba(82, 122, 232, 0.18)`
|
|
41
|
+
- `surface-fill`: `rgba(82, 122, 232, 0.24)`
|
|
42
|
+
- `surface-fill-strong`: `rgba(110, 148, 255, 0.34)`
|
|
43
|
+
- `success`: `#46d5a7`
|
|
44
|
+
- `warning`: `#f2bb59`
|
|
45
|
+
- `danger`: `#ff7d8d`
|
|
46
|
+
- `violet`: `#b18cff`
|
|
47
|
+
- `shadow`: `0 20px 64px rgba(3, 8, 30, 0.55)`
|
|
48
|
+
|
|
49
|
+
### Light foundation
|
|
50
|
+
|
|
51
|
+
The light theme is not a plain white inversion. It uses cool mist surfaces:
|
|
52
|
+
|
|
53
|
+
- `background`: `#edf3ff`
|
|
54
|
+
- `panel`: `#f8faff`
|
|
55
|
+
- `panel-elevated`: `#ffffff`
|
|
56
|
+
- `panel-soft`: `rgba(248, 251, 255, 0.95)`
|
|
57
|
+
- `panel-contrast`: `rgba(225, 236, 255, 0.88)`
|
|
58
|
+
- `panel-contrast-hover`: `rgba(209, 224, 252, 0.94)`
|
|
59
|
+
- `foreground`: `#112041`
|
|
60
|
+
- `muted`: `#3f5b89`
|
|
61
|
+
- `border`: `rgba(41, 86, 170, 0.22)`
|
|
62
|
+
- `accent`: `#166fff`
|
|
63
|
+
- `shadow`: `0 18px 44px rgba(20, 50, 108, 0.18)`
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## 3. Background and depth rules
|
|
68
|
+
|
|
69
|
+
### Page background
|
|
70
|
+
|
|
71
|
+
The page background uses 4 radial aurora spots over a deep cool gradient.
|
|
72
|
+
|
|
73
|
+
Rules:
|
|
74
|
+
|
|
75
|
+
- use orange, magenta, cyan, and soft violet as atmospheric fields
|
|
76
|
+
- keep them diffused and large
|
|
77
|
+
- apply them to the page and shell backdrop, not every card
|
|
78
|
+
- avoid neon glow and avoid rainbow clutter inside content panels
|
|
79
|
+
|
|
80
|
+
### Depth strategy
|
|
81
|
+
|
|
82
|
+
This system is **borders-first** with blur and one shadow family.
|
|
83
|
+
|
|
84
|
+
Use:
|
|
85
|
+
|
|
86
|
+
- visible border on every major surface
|
|
87
|
+
- inset highlight on premium surfaces
|
|
88
|
+
- one shared shadow family only
|
|
89
|
+
- blurred panels for shell and premium overlays
|
|
90
|
+
|
|
91
|
+
Do not mix:
|
|
92
|
+
|
|
93
|
+
- flat cards, heavy shadows, and shadowless cards in the same route
|
|
94
|
+
- multiple shadow families
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## 4. Typography extracted from implementation
|
|
99
|
+
|
|
100
|
+
### UI font stack
|
|
101
|
+
|
|
102
|
+
Use the actual shipped stack, not a generic default:
|
|
103
|
+
|
|
104
|
+
- `"Segoe UI", "SF Pro Text", "Helvetica Neue", Arial, sans-serif`
|
|
105
|
+
|
|
106
|
+
### Monospace stack
|
|
107
|
+
|
|
108
|
+
- `"SFMono-Regular", "JetBrains Mono", "Cascadia Code", "Fira Code", monospace`
|
|
109
|
+
|
|
110
|
+
### Hierarchy
|
|
111
|
+
|
|
112
|
+
- micro eyebrow: `0.68rem`, uppercase, wide tracking (`0.22em` to `0.32em`)
|
|
113
|
+
- page heading: large, semibold, negative tracking (`-0.03em` to `-0.04em`)
|
|
114
|
+
- section titles: `text-2xl` or `text-lg`, semibold
|
|
115
|
+
- helper/body text: `text-sm`, generous line-height (`1.6` to `1.8`)
|
|
116
|
+
- paths and runtime metadata: monospace, small size, safe wrapping
|
|
117
|
+
|
|
118
|
+
The premium feel depends on **micro-label + strong title + muted helper** repeating consistently.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## 5. Density and spacing
|
|
123
|
+
|
|
124
|
+
Base grid is `8px`, but the dashboard uses a compact mode layer that compresses common Tailwind spacing values:
|
|
125
|
+
|
|
126
|
+
- `p-6 -> 18px`
|
|
127
|
+
- `p-5 -> 15px`
|
|
128
|
+
- `p-8 -> 22px`
|
|
129
|
+
- `gap-6 -> 14px`
|
|
130
|
+
- `space-y-6 -> 14px`
|
|
131
|
+
|
|
132
|
+
Rounded values are also compressed:
|
|
133
|
+
|
|
134
|
+
- `28px -> 16px`
|
|
135
|
+
- `24px -> 14px`
|
|
136
|
+
- `22px -> 13px`
|
|
137
|
+
- `20px -> 12px`
|
|
138
|
+
- `30px -> 18px`
|
|
139
|
+
|
|
140
|
+
Use this to avoid the "too expanded" feeling that often makes dashboards look amateur.
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## 6. Shell composition
|
|
145
|
+
|
|
146
|
+
### Desktop shell
|
|
147
|
+
|
|
148
|
+
On wide screens the shell is:
|
|
149
|
+
|
|
150
|
+
- left rail: `248px`
|
|
151
|
+
- center workspace: fluid
|
|
152
|
+
- right activity rail: `320px`
|
|
153
|
+
|
|
154
|
+
The top search bar sits above the main workspace content, not inside the left rail.
|
|
155
|
+
|
|
156
|
+
### Main page pattern
|
|
157
|
+
|
|
158
|
+
Most premium routes follow this order:
|
|
159
|
+
|
|
160
|
+
1. metric row
|
|
161
|
+
2. primary operational split section
|
|
162
|
+
3. secondary support section
|
|
163
|
+
|
|
164
|
+
This is what makes the interface feel curated rather than randomly assembled.
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
## 7. Extracted component patterns
|
|
169
|
+
|
|
170
|
+
### SurfacePanel
|
|
171
|
+
|
|
172
|
+
Use for major containers.
|
|
173
|
+
|
|
174
|
+
- `panel-soft`
|
|
175
|
+
- visible border
|
|
176
|
+
- blur
|
|
177
|
+
- shared shadow
|
|
178
|
+
- generous but compact padding
|
|
179
|
+
|
|
180
|
+
### MetricTile
|
|
181
|
+
|
|
182
|
+
Use for top-row metrics.
|
|
183
|
+
|
|
184
|
+
Structure:
|
|
185
|
+
|
|
186
|
+
- eyebrow label
|
|
187
|
+
- large number
|
|
188
|
+
- one short helper sentence
|
|
189
|
+
- semantic tone gradient in the panel background
|
|
190
|
+
|
|
191
|
+
### StatusBadge
|
|
192
|
+
|
|
193
|
+
Use for semantic pills, counts, and momentum labels.
|
|
194
|
+
|
|
195
|
+
Rules:
|
|
196
|
+
|
|
197
|
+
- rounded full pill
|
|
198
|
+
- semantic tint only
|
|
199
|
+
- small uppercase tracking
|
|
200
|
+
- never the main source of meaning by color alone
|
|
201
|
+
|
|
202
|
+
### SignalBar
|
|
203
|
+
|
|
204
|
+
Use for compact ratio visualization inside operational cards.
|
|
205
|
+
|
|
206
|
+
Rules:
|
|
207
|
+
|
|
208
|
+
- thin track
|
|
209
|
+
- semantic gradient fill
|
|
210
|
+
- numeric label on the right
|
|
211
|
+
- useful only when it answers a decision question quickly
|
|
212
|
+
|
|
213
|
+
### Empty state panel
|
|
214
|
+
|
|
215
|
+
Use dashed border + premium surface, never plain text floating on the page.
|
|
216
|
+
|
|
217
|
+
### Grouped operational card
|
|
218
|
+
|
|
219
|
+
Used in tasks, workflows, agents, memories.
|
|
220
|
+
|
|
221
|
+
Structure:
|
|
222
|
+
|
|
223
|
+
- eyebrow / source / scope
|
|
224
|
+
- title
|
|
225
|
+
- one helper line or summary
|
|
226
|
+
- status or count pills
|
|
227
|
+
- direct action link when available
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## 8. Semantic tone map
|
|
232
|
+
|
|
233
|
+
Keep tones disciplined:
|
|
234
|
+
|
|
235
|
+
- `accent` = primary runtime / navigation / live importance
|
|
236
|
+
- `success` = running / healthy / available
|
|
237
|
+
- `warning` = queued / caution / capability volume
|
|
238
|
+
- `danger` = failed / broken / urgent
|
|
239
|
+
- `violet` = knowledge / memory / warming / secondary momentum
|
|
240
|
+
- `neutral` = contextual or inactive information
|
|
241
|
+
|
|
242
|
+
This limited palette is a big part of the premium feel.
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## 9. Hover, active, and premium polish
|
|
247
|
+
|
|
248
|
+
The actual implementation uses:
|
|
249
|
+
|
|
250
|
+
- stronger border on hover
|
|
251
|
+
- slightly brighter surface on hover
|
|
252
|
+
- active nav items with gradient fill + inset highlight
|
|
253
|
+
- top shell glow and shell backdrop aura
|
|
254
|
+
- blurred modal overlay for command palette
|
|
255
|
+
|
|
256
|
+
Do not add gratuitous motion. The premium feel here comes more from shell behavior and disciplined layering than from animation.
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## 10. Responsive behavior
|
|
261
|
+
|
|
262
|
+
Responsive strategy is desktop-first but not desktop-only:
|
|
263
|
+
|
|
264
|
+
- right activity rail hides below `xl`
|
|
265
|
+
- shell collapses to one content column below `xl`
|
|
266
|
+
- metric grids move through `md` and `xl` column counts
|
|
267
|
+
- action clusters use `flex-wrap`
|
|
268
|
+
- page sections become stacked rather than replaced
|
|
269
|
+
|
|
270
|
+
Preserve the same hierarchy when stacking. Do not invent a separate mobile composition unless the product truly requires it.
|