@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
|
@@ -41,6 +41,16 @@
|
|
|
41
41
|
"title": { "type": "string" },
|
|
42
42
|
"role": { "type": "string" },
|
|
43
43
|
"focus": { "type": "array", "items": { "type": "string" } },
|
|
44
|
+
"modelTier": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"enum": ["powerful", "balanced", "fast", "none"]
|
|
47
|
+
},
|
|
48
|
+
"autonomyLevel": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"enum": ["autonomous", "semi", "approve-each"],
|
|
51
|
+
"default": "semi",
|
|
52
|
+
"description": "Controls how much human approval this agent requires: autonomous (runs freely), semi (pauses on key decisions), approve-each (requires approval for every action)"
|
|
53
|
+
},
|
|
44
54
|
"skills": { "type": "array", "items": { "type": "string" } },
|
|
45
55
|
"genomes": {
|
|
46
56
|
"type": "array",
|
|
@@ -170,6 +180,17 @@
|
|
|
170
180
|
"date": { "type": "string", "format": "date" }
|
|
171
181
|
}
|
|
172
182
|
},
|
|
183
|
+
"profiling": {
|
|
184
|
+
"type": "object",
|
|
185
|
+
"description": "Referência ao profiling de persona via pipeline profiler",
|
|
186
|
+
"properties": {
|
|
187
|
+
"person": { "type": "string" },
|
|
188
|
+
"genomePath": { "type": "string" },
|
|
189
|
+
"genomeSlug": { "type": "string" },
|
|
190
|
+
"evidenceMode": { "type": "string", "enum": ["verified", "inferred", "mixed"] },
|
|
191
|
+
"profiledAt": { "type": "string", "format": "date-time" }
|
|
192
|
+
}
|
|
193
|
+
},
|
|
173
194
|
"confidence": {
|
|
174
195
|
"type": "number",
|
|
175
196
|
"minimum": 0,
|
|
@@ -181,6 +181,33 @@
|
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
},
|
|
184
|
+
"modelTier": {
|
|
185
|
+
"type": "string",
|
|
186
|
+
"enum": ["powerful", "balanced", "fast", "none"],
|
|
187
|
+
"default": "balanced",
|
|
188
|
+
"description": "Model tier for this executor. powerful: best model (Opus/o3). balanced: good model (Sonnet/GPT-4o). fast: cheap model (Haiku/Flash). none: no LLM (workers)."
|
|
189
|
+
},
|
|
190
|
+
"tasks": {
|
|
191
|
+
"type": "array",
|
|
192
|
+
"items": {
|
|
193
|
+
"type": "object",
|
|
194
|
+
"required": ["slug", "title", "order"],
|
|
195
|
+
"properties": {
|
|
196
|
+
"slug": { "type": "string", "pattern": "^[a-z0-9-]+$" },
|
|
197
|
+
"title": { "type": "string" },
|
|
198
|
+
"order": { "type": "integer", "minimum": 1 },
|
|
199
|
+
"file": { "type": "string", "description": "Path to the task .md file" },
|
|
200
|
+
"input": { "type": "string", "description": "What this task receives" },
|
|
201
|
+
"output": { "type": "string", "description": "What this task produces" }
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"description": "Granular tasks within this executor, executed in order"
|
|
205
|
+
},
|
|
206
|
+
"formats": {
|
|
207
|
+
"type": "array",
|
|
208
|
+
"items": { "type": "string" },
|
|
209
|
+
"description": "Format slugs from the format catalog that this executor uses"
|
|
210
|
+
},
|
|
184
211
|
"skills": { "type": "array", "items": { "type": "string" } },
|
|
185
212
|
"genomes": {
|
|
186
213
|
"type": "array",
|
|
@@ -389,13 +416,163 @@
|
|
|
389
416
|
"reason": { "type": "string" }
|
|
390
417
|
}
|
|
391
418
|
},
|
|
392
|
-
"checklist": { "type": "string", "description": "Path to quality checklist for this phase" }
|
|
419
|
+
"checklist": { "type": "string", "description": "Path to quality checklist for this phase" },
|
|
420
|
+
"review": {
|
|
421
|
+
"type": "object",
|
|
422
|
+
"properties": {
|
|
423
|
+
"reviewer": {
|
|
424
|
+
"type": "string",
|
|
425
|
+
"description": "Executor slug that reviews this phase's output"
|
|
426
|
+
},
|
|
427
|
+
"criteria": {
|
|
428
|
+
"type": "array",
|
|
429
|
+
"items": { "type": "string" },
|
|
430
|
+
"description": "What the reviewer checks"
|
|
431
|
+
},
|
|
432
|
+
"onReject": {
|
|
433
|
+
"type": "string",
|
|
434
|
+
"description": "Phase ID to return to on rejection"
|
|
435
|
+
},
|
|
436
|
+
"maxRetries": {
|
|
437
|
+
"type": "integer",
|
|
438
|
+
"minimum": 1,
|
|
439
|
+
"maximum": 5,
|
|
440
|
+
"default": 2,
|
|
441
|
+
"description": "Max rejection cycles before escalation"
|
|
442
|
+
},
|
|
443
|
+
"retryStrategy": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"enum": ["feedback", "fresh", "alternative"],
|
|
446
|
+
"default": "feedback",
|
|
447
|
+
"description": "feedback: send rejection reason back. fresh: restart from scratch. alternative: ask a different executor."
|
|
448
|
+
},
|
|
449
|
+
"escalateOnMaxRetries": {
|
|
450
|
+
"type": "string",
|
|
451
|
+
"enum": ["human", "skip", "fail"],
|
|
452
|
+
"default": "human",
|
|
453
|
+
"description": "What to do when maxRetries exceeded"
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
"vetoConditions": {
|
|
458
|
+
"type": "array",
|
|
459
|
+
"items": {
|
|
460
|
+
"type": "object",
|
|
461
|
+
"required": ["condition", "action"],
|
|
462
|
+
"properties": {
|
|
463
|
+
"condition": {
|
|
464
|
+
"type": "string",
|
|
465
|
+
"description": "Natural language condition to check"
|
|
466
|
+
},
|
|
467
|
+
"action": {
|
|
468
|
+
"type": "string",
|
|
469
|
+
"enum": ["reject", "block", "warn"],
|
|
470
|
+
"description": "reject: auto-retry. block: stop pipeline. warn: continue with warning."
|
|
471
|
+
},
|
|
472
|
+
"message": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"description": "Message to show when condition is triggered"
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
}
|
|
393
479
|
}
|
|
394
480
|
}
|
|
395
481
|
}
|
|
396
482
|
}
|
|
397
483
|
}
|
|
398
484
|
},
|
|
485
|
+
"contextMonitor": {
|
|
486
|
+
"type": "object",
|
|
487
|
+
"description": "Context window monitoring configuration (Fase 1 — PRD 19.2 §3.1)",
|
|
488
|
+
"properties": {
|
|
489
|
+
"enabled": {
|
|
490
|
+
"type": "boolean",
|
|
491
|
+
"default": true,
|
|
492
|
+
"description": "Enable context window monitoring for this squad"
|
|
493
|
+
},
|
|
494
|
+
"windowSize": {
|
|
495
|
+
"type": "integer",
|
|
496
|
+
"minimum": 1000,
|
|
497
|
+
"description": "Override context window size in tokens (default: inferred from model tier)"
|
|
498
|
+
},
|
|
499
|
+
"thresholds": {
|
|
500
|
+
"type": "object",
|
|
501
|
+
"description": "Warning level thresholds as ratios (0–1)",
|
|
502
|
+
"properties": {
|
|
503
|
+
"warning": { "type": "number", "minimum": 0, "maximum": 1, "default": 0.85 },
|
|
504
|
+
"critical": { "type": "number", "minimum": 0, "maximum": 1, "default": 0.95 }
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"notify": {
|
|
508
|
+
"type": "object",
|
|
509
|
+
"description": "Which events trigger notifications",
|
|
510
|
+
"properties": {
|
|
511
|
+
"contextWarning": { "type": "boolean", "default": true, "description": "Notify at warning threshold (default 85%)" },
|
|
512
|
+
"contextCritical": { "type": "boolean", "default": true, "description": "Notify at critical threshold (default 95%)" }
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"isolation": {
|
|
518
|
+
"type": "object",
|
|
519
|
+
"description": "Execution isolation strategy for agent branches (Fase 2 — PRD 19.2 §3.5)",
|
|
520
|
+
"properties": {
|
|
521
|
+
"strategy": {
|
|
522
|
+
"type": "string",
|
|
523
|
+
"enum": ["worktree", "branch-only", "shared"],
|
|
524
|
+
"default": "shared",
|
|
525
|
+
"description": "worktree: separate git worktree per agent. branch-only: create branch but no worktree. shared: no isolation."
|
|
526
|
+
},
|
|
527
|
+
"branchPrefix": {
|
|
528
|
+
"type": "string",
|
|
529
|
+
"default": "aioson",
|
|
530
|
+
"description": "Prefix for auto-created branches: {prefix}/{squadSlug}/{agentSlug}"
|
|
531
|
+
},
|
|
532
|
+
"autoMerge": {
|
|
533
|
+
"type": "boolean",
|
|
534
|
+
"default": false,
|
|
535
|
+
"description": "Automatically fast-forward merge when agent task completes"
|
|
536
|
+
},
|
|
537
|
+
"cleanupOnComplete": {
|
|
538
|
+
"type": "boolean",
|
|
539
|
+
"default": true,
|
|
540
|
+
"description": "Remove worktree/branch after successful merge"
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"recovery": {
|
|
545
|
+
"type": "object",
|
|
546
|
+
"description": "Context recovery configuration after a compact event (Fase 3 — PRD 19.2 §3.6)",
|
|
547
|
+
"properties": {
|
|
548
|
+
"enabled": {
|
|
549
|
+
"type": "boolean",
|
|
550
|
+
"default": true,
|
|
551
|
+
"description": "Enable automatic recovery-context.md generation"
|
|
552
|
+
},
|
|
553
|
+
"autoInject": {
|
|
554
|
+
"type": "boolean",
|
|
555
|
+
"default": true,
|
|
556
|
+
"description": "Automatically inject recovery-context.md when a compact is detected (>30% drop in context)"
|
|
557
|
+
},
|
|
558
|
+
"maxTokens": {
|
|
559
|
+
"type": "integer",
|
|
560
|
+
"minimum": 500,
|
|
561
|
+
"maximum": 4000,
|
|
562
|
+
"default": 2000,
|
|
563
|
+
"description": "Maximum token budget for the generated recovery-context.md"
|
|
564
|
+
},
|
|
565
|
+
"refreshOn": {
|
|
566
|
+
"type": "array",
|
|
567
|
+
"items": {
|
|
568
|
+
"type": "string",
|
|
569
|
+
"enum": ["task_completed", "decision_made", "handoff"]
|
|
570
|
+
},
|
|
571
|
+
"default": ["task_completed", "decision_made", "handoff"],
|
|
572
|
+
"description": "Runtime event types that trigger an automatic recovery context refresh"
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
},
|
|
399
576
|
"contentBlueprints": {
|
|
400
577
|
"type": "array",
|
|
401
578
|
"items": {
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: aurora-command-ui
|
|
3
|
+
description: Aurora Command UI is a hybrid design system fusing command-center structure with dark glass surfaces over a mandatory aurora gradient substrate. Use it when `design_skill: aurora-command-ui` is set in project.context.md OR when the user explicitly asks for "aurora command", "dark glass dashboard", "glass command center", "aurora dark UI", "teal violet glass", "dark frosted panels", "aurora infra dashboard", or similar. Ideal for SOC platforms, AI tools, security dashboards, dev platforms, CRM with presence, and any product where operational authority and visual depth must coexist. Dark by default with a light aurora option. Do NOT use this skill unless explicitly selected.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Aurora Command UI
|
|
7
|
+
|
|
8
|
+
Aurora Command UI lives at the intersection of **military-grade data command center** and **layered glass depth**. It is built from the structural DNA of Cognitive Core (mono rails, dense stat numbers, section zones, command shell) fused with the glass substrate engine of Glassmorphism (backdrop-filter surfaces, aurora gradient, luminous borders, ::before reflections).
|
|
9
|
+
|
|
10
|
+
The result: a dark glass shell where every panel reveals the aurora gradient underneath, operational data reads with precision, and the interface feels simultaneously tactical and premium.
|
|
11
|
+
|
|
12
|
+
**This is one visual system.** Never combine it with another design skill.
|
|
13
|
+
|
|
14
|
+
## Package structure
|
|
15
|
+
|
|
16
|
+
```text
|
|
17
|
+
.aioson/skills/design/aurora-command-ui/
|
|
18
|
+
SKILL.md ← you are here (load this first)
|
|
19
|
+
references/
|
|
20
|
+
art-direction.md ← intent, 5 expression modes, signature library, anti-generic tests
|
|
21
|
+
design-tokens.md ← CSS variables dark + light, glass tokens, typography, spacing, shadows
|
|
22
|
+
components.md ← 22+ components (glass variants + command structure)
|
|
23
|
+
patterns.md ← Page layouts: aurora app shell, dashboard, detail, settings, auth, list-detail
|
|
24
|
+
dashboards.md ← 5 dashboard presets + chart palette + glass panel rules
|
|
25
|
+
websites.md ← Aurora landing page patterns, hero variants, section patterns
|
|
26
|
+
motion.md ← Animations: glass entrances, aurora-aware motion, command transitions
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Activation rules
|
|
30
|
+
|
|
31
|
+
- Apply this package **only** when `project.context.md` contains `design_skill: "aurora-command-ui"` or the user explicitly chooses it.
|
|
32
|
+
- If another design skill is selected, do **not** load this package.
|
|
33
|
+
- Never auto-select this skill — always require explicit confirmation.
|
|
34
|
+
- If no skill is set yet, the active agent must ask or confirm before applying.
|
|
35
|
+
|
|
36
|
+
## Responsibility boundary
|
|
37
|
+
|
|
38
|
+
This skill defines:
|
|
39
|
+
- Visual direction and aesthetic DNA (dark glass over aurora gradient, command structure)
|
|
40
|
+
- Design tokens (glass surfaces, accent fusion, shadows, typography, spacing, radius)
|
|
41
|
+
- Component vocabulary and anatomy (22+ components — glass shell + command mono rails)
|
|
42
|
+
- Page composition patterns (aurora substrate → glass shell → glass panels → mono section rails → content)
|
|
43
|
+
- Theme switching behavior (dark default / light aurora option)
|
|
44
|
+
|
|
45
|
+
This skill does **not** decide:
|
|
46
|
+
- Stack (React, Vue, Blade, HTML, etc.)
|
|
47
|
+
- Output format (single file, multi-file, CSS modules, Tailwind, etc.)
|
|
48
|
+
- Icon library choice
|
|
49
|
+
- Whether a theme toggle exists in the product (the agent decides)
|
|
50
|
+
- Animation library (CSS or JS — motion.md is stack-agnostic)
|
|
51
|
+
|
|
52
|
+
## Loading guide
|
|
53
|
+
|
|
54
|
+
Always load only what the current task needs:
|
|
55
|
+
|
|
56
|
+
| Task | Load |
|
|
57
|
+
|---|---|
|
|
58
|
+
| Any UI work | `references/design-tokens.md` |
|
|
59
|
+
| Reusable components | `references/design-tokens.md` + `references/components.md` |
|
|
60
|
+
| Dashboard or admin panel | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` + `references/dashboards.md` |
|
|
61
|
+
| Detail / profile page | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` |
|
|
62
|
+
| Landing page or website | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/websites.md` |
|
|
63
|
+
| Motion / animation | add `references/motion.md` when animation materially improves the result |
|
|
64
|
+
| Full UI build | all seven reference files |
|
|
65
|
+
|
|
66
|
+
## Visual signature — three pillars
|
|
67
|
+
|
|
68
|
+
1. **Aurora depth** — A dark aurora gradient (`linear-gradient(135deg, #060910 0%, #0A0818 30%, #060C1A 70%, #08060F 100%)`) is the mandatory substrate. Dark glass panels (`rgba(10,14,26,0.65)` with `backdrop-filter`) float over it, revealing the aurora below. The gradient is not decoration — it is structurally required. Remove it and the glass has nothing to reveal.
|
|
69
|
+
2. **Command authority** — Mono uppercase rails on every section. Dense stat numbers. Compact density that communicates operational mastery. The information structure feels like a mission control panel: labeled zones, one focal block per viewport, restrained accent usage.
|
|
70
|
+
3. **Teal-violet fusion** — A single accent gradient `linear-gradient(135deg, #00C8E8, #7C3AED)` used on CTAs, active states, stat numbers, borders, and glow shadows. Teal-electric (`#00C8E8`) is the operational signal. Violet (`#7C3AED`) is the highlight and CTA. They only appear as a gradient pair — never in isolation except for semantic purposes.
|
|
71
|
+
|
|
72
|
+
## Hybrid DNA
|
|
73
|
+
|
|
74
|
+
**From cognitive-core-ui (structure side):**
|
|
75
|
+
- Command center shell with mono section rails
|
|
76
|
+
- Dense stat numbers (text-4xl, tabular-nums)
|
|
77
|
+
- Top bar + sidebar + tab navigation structure
|
|
78
|
+
- Compact density system for dashboards and admin
|
|
79
|
+
- Section headers with mono labels and icon rails
|
|
80
|
+
- Sidebar active item: border-left 3px accent + elevated surface
|
|
81
|
+
|
|
82
|
+
**From glassmorphism-ui (glass side):**
|
|
83
|
+
- `backdrop-filter: blur()` on all major surfaces
|
|
84
|
+
- Aurora gradient substrate — mandatory, not decorative
|
|
85
|
+
- Luminous borders: `rgba(255,255,255,0.10)` on dark glass
|
|
86
|
+
- Top reflection `::before` on every glass card
|
|
87
|
+
- `@supports (backdrop-filter: blur(1px))` fallback always required
|
|
88
|
+
- Glass levels: shell → surface → elevated (3 distinct opacity layers)
|
|
89
|
+
|
|
90
|
+
**New in aurora-command-ui (hybrid elements):**
|
|
91
|
+
- Dark tinted glass: panels use `rgba(10,14,26,0.65)` — NOT white-transparent. The aurora shows through dark glass, not bright glass.
|
|
92
|
+
- Accent gradient on stat numbers, not just CTAs
|
|
93
|
+
- Teal-electric glow shadows: `0 0 30px rgba(0,200,232,0.12)`
|
|
94
|
+
- Aurora glow behind hero metric panels: `radial-gradient(circle at 50% 0%, rgba(0,200,232,0.08), transparent 70%)`
|
|
95
|
+
|
|
96
|
+
## Theme system
|
|
97
|
+
|
|
98
|
+
```html
|
|
99
|
+
<div data-theme="dark"> <!-- or data-theme="light" -->
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
- **Dark (default)**: All operational products — dashboards, monitoring, security, AI tools, dev platforms. The aurora gradient is deep navy + deep violet. Glass is dark tinted.
|
|
103
|
+
- **Light**: Client-facing apps, institutional variants, content-heavy pages. The aurora gradient is soft lavender-gray. Glass is white tinted.
|
|
104
|
+
|
|
105
|
+
If the user does not specify: default to **dark with a theme toggle** in the top bar.
|
|
106
|
+
|
|
107
|
+
## Visual DNA — dark theme
|
|
108
|
+
|
|
109
|
+
### Aurora substrate (mandatory)
|
|
110
|
+
```css
|
|
111
|
+
background: linear-gradient(135deg, #060910 0%, #0A0818 30%, #060C1A 70%, #08060F 100%);
|
|
112
|
+
background-attachment: fixed;
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### Dark glass surfaces
|
|
116
|
+
- Shell (sidebar, top bar): `rgba(8, 12, 22, 0.75)` + `backdrop-filter: blur(24px)`
|
|
117
|
+
- Surface cards: `rgba(10, 14, 26, 0.65)` + `backdrop-filter: blur(16px)`
|
|
118
|
+
- Elevated (hover, nested): `rgba(14, 20, 36, 0.75)` + `backdrop-filter: blur(16px)`
|
|
119
|
+
|
|
120
|
+
### Accents
|
|
121
|
+
- Teal-electric: `#00C8E8` (operational signals, active states, glow)
|
|
122
|
+
- Violet: `#7C3AED` (CTAs, highlights, gradient endpoint)
|
|
123
|
+
- Accent gradient: `linear-gradient(135deg, #00C8E8, #7C3AED)`
|
|
124
|
+
- Glow shadow: `0 0 30px rgba(0,200,232,0.12), 0 8px 24px rgba(0,0,0,0.40)`
|
|
125
|
+
|
|
126
|
+
### Typography
|
|
127
|
+
- Headings: `Inter`, weight 700, `letter-spacing: -0.02em`
|
|
128
|
+
- Body: `Inter`, weight 400, `line-height: 1.6`
|
|
129
|
+
- Mono rails: `JetBrains Mono`, weight 600, uppercase, `letter-spacing: 0.12em`, `font-size: 0.675rem`
|
|
130
|
+
- Stats: `Inter`, weight 700, `font-size: var(--text-4xl)`, gradient text on hero metric
|
|
131
|
+
|
|
132
|
+
## Layout structure (aurora app shell)
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
136
|
+
│ AURORA GRADIENT BACKGROUND (substrate, fixed) │
|
|
137
|
+
│ ┌──────────────────────────────────────────────────────────┐ │
|
|
138
|
+
│ │ GLASS TOP BAR — backdrop-blur-lg, glass-shell │ │
|
|
139
|
+
│ │ [Logo] ─── [Tab Nav Center] ─── [Actions + Toggle] │ │
|
|
140
|
+
│ ├─────────────────┬────────────────────────────────────────┤ │
|
|
141
|
+
│ │ GLASS SIDEBAR │ CONTENT AREA │ │
|
|
142
|
+
│ │ 200-220px │ [MONO SECTION HEADER] │ │
|
|
143
|
+
│ │ backdrop-blur │ [GLASS STAT CARDS — aurora showing] │ │
|
|
144
|
+
│ │ glass-shell │ [GLASS DATA TABLE] │ │
|
|
145
|
+
│ │ glass-border │ [GLASS CHART CONTAINER] │ │
|
|
146
|
+
│ │ aurora visible │ │ │
|
|
147
|
+
│ │ │ │ │
|
|
148
|
+
│ └─────────────────┴────────────────────────────────────────┘ │
|
|
149
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
### Signature details
|
|
153
|
+
- Glass cards always have `::before` top reflection: `linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 50%)`
|
|
154
|
+
- Teal-electric bottom border on active tabs: `3px solid #00C8E8`
|
|
155
|
+
- Sidebar active item: `border-left: 3px solid var(--accent-primary)` + `background: var(--glass-elevated)`
|
|
156
|
+
- Mono section headers always precede content zones
|
|
157
|
+
- Hero stat card: gradient text on main number (`background: var(--accent-gradient); -webkit-background-clip: text`)
|
|
158
|
+
- Every glass container uses `@supports (backdrop-filter: blur(1px))` fallback
|
|
159
|
+
|
|
160
|
+
## Application rules
|
|
161
|
+
|
|
162
|
+
- Treat `references/design-tokens.md` as the source of truth for ALL tokens.
|
|
163
|
+
- Treat `references/art-direction.md` as the source of truth for expression, signature, and anti-generic decisions.
|
|
164
|
+
- The aurora gradient substrate is **non-negotiable** — never place glass panels over a solid background.
|
|
165
|
+
- Dark glass opacity must be enough to reveal the aurora. If panels are too opaque, reduce `rgba` alpha toward 0.55.
|
|
166
|
+
- Limit glass nesting to 3 levels max. Each `backdrop-filter` is a composite layer.
|
|
167
|
+
- Always include `@supports (backdrop-filter: blur(1px))` fallbacks.
|
|
168
|
+
- Mono rails are the structural backbone — use them for section headers, stat labels, and metadata rails ONLY. Do not mono-label paragraphs, nav links, or body copy.
|
|
169
|
+
- The teal-violet gradient is the single accent family. Do not introduce secondary accent colors.
|
|
170
|
+
- Never combine this package with `cognitive-core-ui`, `glassmorphism-ui`, `interface-design`, or any other design skill.
|
|
171
|
+
- Adapt code examples to the active stack. Reference snippets are design specifications, not copy-paste code.
|
|
172
|
+
- Accessibility, responsiveness, and production semantics are the agent's responsibility (not this skill).
|
|
173
|
+
|
|
174
|
+
## Intent before visuals
|
|
175
|
+
|
|
176
|
+
Before choosing layout, answer all three:
|
|
177
|
+
|
|
178
|
+
1. Who is the human using this page right now?
|
|
179
|
+
2. What is the main action or decision they must complete?
|
|
180
|
+
3. How should this interface feel in concrete words, not generic labels?
|
|
181
|
+
|
|
182
|
+
Bad answers:
|
|
183
|
+
- "for users"
|
|
184
|
+
- "manage data"
|
|
185
|
+
- "dark and cool"
|
|
186
|
+
|
|
187
|
+
Good answers:
|
|
188
|
+
- "security analyst identifying active threats during a live incident"
|
|
189
|
+
- "AI platform admin comparing agent performance across production workloads"
|
|
190
|
+
- "surgical, atmospheric, authoritative — the aurora background communicates depth, the mono rails communicate precision"
|
|
191
|
+
|
|
192
|
+
## Workflow discipline
|
|
193
|
+
|
|
194
|
+
1. Confirm the aurora gradient substrate is in place before building any component.
|
|
195
|
+
2. Choose one expression mode from `references/art-direction.md`.
|
|
196
|
+
3. Name one signature glass+command move and repeat it intentionally across the page.
|
|
197
|
+
4. Run the Glass Test: remove `backdrop-filter` from all cards — if the UI looks fine without it, glass is decorative, not structural. Fix: reduce dark glass opacity so the aurora is clearly visible behind panels.
|
|
198
|
+
5. Build from tokens first, then components, then page composition.
|
|
199
|
+
6. Validate state parity: default, hover, active, focus, disabled — all glass token transitions.
|
|
200
|
+
7. Validate contrast: dark glass surfaces must meet WCAG AA. Increase opacity on body text surfaces if needed.
|
|
201
|
+
|
|
202
|
+
## Non-negotiable quality gates
|
|
203
|
+
|
|
204
|
+
- The aurora gradient substrate is non-negotiable. No gradient = no glass system.
|
|
205
|
+
- Dark glass must reveal the aurora — opacity must stay at or below 0.75. Do not "solidify" panels.
|
|
206
|
+
- Never use saturated neon colors. Teal-electric is at the saturation limit — do not push beyond it.
|
|
207
|
+
- Never nest more than 3 glass layers (performance + visual confusion).
|
|
208
|
+
- Shadows must be tinted with teal-electric, not plain black. `rgba(0,200,232,0.12)` is the glow baseline.
|
|
209
|
+
- Fallback without `backdrop-filter` must be tested: use `rgba(8,12,22,0.95)` solid for dark, `rgba(255,255,255,0.95)` for light.
|
|
210
|
+
- Every page must pass the **Glass Test**: backdrop-blur is structural, aurora is visible behind panels.
|
|
211
|
+
- Every page must pass the **Command Test**: mono rails appear on section headers, stat labels, and metadata only — not overused.
|
|
212
|
+
- Every page must pass the **Depth Test**: squinting reveals at least 3 depth layers (substrate → glass panel → content).
|
|
213
|
+
- Sameness is failure. If the result looks like a default dark admin with blur added, iterate on composition before finishing.
|
|
214
|
+
|
|
215
|
+
## Positioning vs parent skills
|
|
216
|
+
|
|
217
|
+
| Aspect | aurora-command-ui | cognitive-core-ui | glassmorphism-ui |
|
|
218
|
+
|--------|------------------|-------------------|-----------------|
|
|
219
|
+
| Surfaces | Dark glass (rgba dark tinted) | Solid surfaces (bg-surface) | White glass (rgba light tinted) |
|
|
220
|
+
| Background | Aurora gradient (mandatory) | Solid void/base | Lavender aurora gradient |
|
|
221
|
+
| Accent | Teal-electric + Violet gradient | Teal/cyan only | Violet-blue |
|
|
222
|
+
| Default theme | Dark | Dark | Light |
|
|
223
|
+
| Depth model | Blur layers (dark) | Border/shadow depth | Blur layers (light) |
|
|
224
|
+
| Mono usage | Section rails + stats | Section rails + stats | None (uses plain sans) |
|
|
225
|
+
| Best for | SOC, AI platforms, dev tools | Command centers, SaaS | Fintech, mobile, media |
|
|
226
|
+
|
|
227
|
+
## Delivery modes
|
|
228
|
+
|
|
229
|
+
### Greenfield
|
|
230
|
+
1. Choose expression mode (Eclipse Command, Deep Analytics, Void Editorial, Quantum Workspace, Crystal Intelligence)
|
|
231
|
+
2. Establish aurora gradient background substrate first
|
|
232
|
+
3. Load relevant references
|
|
233
|
+
4. Apply token scope from `design-tokens.md` (glass tokens are the foundation)
|
|
234
|
+
5. Compose layout from `patterns.md` or `websites.md`
|
|
235
|
+
6. Build components from `components.md`
|
|
236
|
+
|
|
237
|
+
### Brownfield
|
|
238
|
+
1. Audit existing UI before rewriting
|
|
239
|
+
2. Check if the aurora gradient background can be introduced without breaking existing work
|
|
240
|
+
3. Map Aurora Command tokens onto the existing component library
|
|
241
|
+
4. Add glass surfaces progressively: start with top bar + sidebar, then cards
|
|
242
|
+
5. Consolidate duplicate variants before introducing new ones
|
|
243
|
+
6. Prefer targeted upgrades over full rewrites unless the user asks for a redesign
|