@jaimevalasek/aioson 1.3.0 → 1.4.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/README.md +19 -2
- 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 +111 -13
- package/docs/pt/automacao-squads.md +407 -0
- package/docs/pt/cenarios.md +3 -3
- package/docs/pt/clientes-ai.md +62 -0
- package/docs/pt/comandos-cli.md +167 -17
- package/docs/pt/deyvin.md +115 -0
- package/docs/pt/genome-3.0-spec.md +11 -11
- package/docs/pt/inicio-rapido.md +45 -0
- 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-genoma.md → squad-genome.md} +81 -75
- package/docs/testing/genome-2.0-rollout.md +1 -1
- package/package.json +3 -3
- package/src/agents.js +21 -5
- package/src/backup-provider.js +303 -0
- package/src/cli.js +178 -2
- package/src/commands/agents.js +22 -4
- 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 +833 -2
- package/src/commands/scan-project.js +288 -24
- package/src/commands/setup-context.js +23 -0
- package/src/commands/skill.js +558 -0
- package/src/commands/squad-agent-create.js +788 -0
- package/src/commands/squad-doctor.js +51 -1
- package/src/commands/squad-investigate.js +261 -0
- package/src/commands/squad-learning.js +209 -0
- package/src/commands/squad-pipeline.js +247 -1
- package/src/commands/squad-plan.js +329 -0
- package/src/commands/squad-status.js +1 -1
- package/src/commands/squad-validate.js +57 -1
- package/src/commands/test-agents.js +6 -1
- package/src/commands/workflow-next.js +8 -1
- package/src/commands/workflow-status.js +250 -0
- package/src/constants.js +80 -16
- package/src/context-memory.js +837 -0
- package/src/context-writer.js +2 -0
- 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 +206 -7
- package/src/i18n/messages/es.js +123 -6
- package/src/i18n/messages/fr.js +122 -5
- package/src/i18n/messages/pt-BR.js +205 -12
- package/src/installer.js +30 -2
- package/src/lib/genomes/compat.js +1 -1
- package/src/runtime-store.js +780 -42
- package/src/session-handoff.js +77 -0
- package/template/.aioson/agents/analyst.md +36 -9
- package/template/.aioson/agents/architect.md +20 -5
- package/template/.aioson/agents/dev.md +135 -15
- package/template/.aioson/agents/deyvin.md +166 -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/orache.md +371 -0
- package/template/.aioson/agents/orchestrator.md +37 -2
- package/template/.aioson/agents/pair.md +5 -0
- package/template/.aioson/agents/pm.md +17 -5
- package/template/.aioson/agents/product.md +58 -22
- 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 +17 -5
- package/template/.aioson/agents/setup.md +81 -5
- package/template/.aioson/agents/squad.md +675 -28
- package/template/.aioson/agents/ux-ui.md +277 -34
- package/template/.aioson/config.md +175 -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 +26 -4
- package/template/.aioson/locales/en/agents/architect.md +10 -0
- package/template/.aioson/locales/en/agents/dev.md +89 -4
- package/template/.aioson/locales/en/agents/deyvin.md +129 -0
- package/template/.aioson/locales/en/agents/{genoma.md → genome.md} +14 -14
- package/template/.aioson/locales/en/agents/orchestrator.md +36 -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 +7 -0
- package/template/.aioson/locales/en/agents/setup.md +51 -5
- package/template/.aioson/locales/en/agents/squad.md +203 -15
- package/template/.aioson/locales/en/agents/ux-ui.md +375 -35
- package/template/.aioson/locales/es/agents/analyst.md +16 -4
- package/template/.aioson/locales/es/agents/architect.md +10 -0
- package/template/.aioson/locales/es/agents/dev.md +70 -2
- package/template/.aioson/locales/es/agents/deyvin.md +89 -0
- package/template/.aioson/locales/es/agents/{genoma.md → genome.md} +13 -13
- package/template/.aioson/locales/es/agents/orache.md +103 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +36 -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 +7 -0
- package/template/.aioson/locales/es/agents/setup.md +28 -5
- package/template/.aioson/locales/es/agents/squad.md +221 -15
- package/template/.aioson/locales/es/agents/ux-ui.md +26 -25
- package/template/.aioson/locales/fr/agents/analyst.md +16 -4
- package/template/.aioson/locales/fr/agents/architect.md +10 -0
- package/template/.aioson/locales/fr/agents/dev.md +70 -2
- package/template/.aioson/locales/fr/agents/deyvin.md +89 -0
- package/template/.aioson/locales/fr/agents/{genoma.md → genome.md} +7 -7
- package/template/.aioson/locales/fr/agents/orache.md +104 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +36 -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 +7 -0
- package/template/.aioson/locales/fr/agents/setup.md +28 -5
- package/template/.aioson/locales/fr/agents/squad.md +216 -10
- package/template/.aioson/locales/fr/agents/ux-ui.md +26 -25
- package/template/.aioson/locales/pt-BR/agents/analyst.md +26 -4
- package/template/.aioson/locales/pt-BR/agents/architect.md +10 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +93 -4
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +129 -0
- package/template/.aioson/locales/pt-BR/agents/{genoma.md → genome.md} +49 -49
- package/template/.aioson/locales/pt-BR/agents/orache.md +137 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +36 -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 +35 -17
- package/template/.aioson/locales/pt-BR/agents/qa.md +7 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +51 -5
- package/template/.aioson/locales/pt-BR/agents/squad.md +486 -47
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +361 -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 +11 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +257 -1
- package/template/.aioson/skills/design/cognitive-core-ui/SKILL.md +157 -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 +172 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +490 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +237 -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 +350 -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-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/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/patterns/.gitkeep +0 -0
- package/template/.aioson/skills/squad/references/.gitkeep +0 -0
- package/template/.aioson/tasks/implementation-plan.md +288 -0
- package/template/.aioson/tasks/squad-create.md +1 -1
- 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-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/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/.gemini/GEMINI.md +2 -0
- package/template/.gemini/commands/aios-deyvin.toml +6 -0
- package/template/.gemini/commands/aios-pair.toml +6 -0
- package/template/AGENTS.md +34 -6
- package/template/CLAUDE.md +31 -4
- package/template/OPENCODE.md +6 -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
|
@@ -1,190 +0,0 @@
|
|
|
1
|
-
# Premium Command Center UI
|
|
2
|
-
|
|
3
|
-
> Use this skill when the product is a dashboard, admin panel, control tower, command center, or internal operating surface that must feel premium without becoming bloated.
|
|
4
|
-
> This skill was extracted from the real AIOS Dashboard implementation: tri-rail shell, aurora-glass surfaces, compact density, search-first navigation, grouped operational cards, and data-aware page hierarchy.
|
|
5
|
-
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
## What this skill captures
|
|
9
|
-
|
|
10
|
-
This is not a generic "modern dashboard" guide. It captures the concrete moves that created the premium feel in the AIOS Dashboard:
|
|
11
|
-
|
|
12
|
-
- tri-rail shell: left navigation, center workspace, right activity rail
|
|
13
|
-
- aurora-glass visual system with strong contrast and restrained semantic color
|
|
14
|
-
- compact density tuned for operational reading, not marketing whitespace
|
|
15
|
-
- search-first interaction via top search bar + command palette
|
|
16
|
-
- contextual right rail with status/history/metrics tabs
|
|
17
|
-
- page archetypes built around runtime priority, not equal-weight card walls
|
|
18
|
-
- UI view-model aggregation (`workflow lanes`, `task queue`, `memory assets`) instead of rendering raw backend shapes directly
|
|
19
|
-
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
## When to use this skill
|
|
23
|
-
|
|
24
|
-
Apply this skill when:
|
|
25
|
-
|
|
26
|
-
- the product is an operational dashboard or internal tool
|
|
27
|
-
- the user asks for a premium, high-contrast, high-trust interface
|
|
28
|
-
- the current UI feels washed out, generic, or too expanded
|
|
29
|
-
- the app has multiple modules that need one shared shell and consistent hierarchy
|
|
30
|
-
- the interface must surface live signals, queue state, history, and deep links
|
|
31
|
-
- the stack supports custom UI work (React, Next.js, TALL, Blade, Vue, custom HTML/CSS, etc.)
|
|
32
|
-
|
|
33
|
-
---
|
|
34
|
-
|
|
35
|
-
## When not to use this skill
|
|
36
|
-
|
|
37
|
-
Do not apply this skill blindly when:
|
|
38
|
-
|
|
39
|
-
- the project is a landing page or campaign site
|
|
40
|
-
- the product is intentionally minimal, calm, editorial, or consumer-soft
|
|
41
|
-
- the existing brand system is already strong and conflicts with aurora-glass language
|
|
42
|
-
- the screen is simple CRUD that should remain utilitarian and low-chrome
|
|
43
|
-
- the domain demands conventional enterprise neutrality over expressiveness
|
|
44
|
-
|
|
45
|
-
In those cases, borrow only the pieces that fit: density control, hierarchy discipline, grouped operational cards, or contextual rails.
|
|
46
|
-
|
|
47
|
-
---
|
|
48
|
-
|
|
49
|
-
## Read order
|
|
50
|
-
|
|
51
|
-
1. Read this file fully.
|
|
52
|
-
2. Read [visual-system-and-component-patterns](../references/premium-command-center-ui/visual-system-and-component-patterns.md) before choosing tokens or components.
|
|
53
|
-
3. Read [operational-ux-playbook](../references/premium-command-center-ui/operational-ux-playbook.md) before defining page hierarchy, navigation, or grouping.
|
|
54
|
-
4. If another agent will apply the system, give it [master-application-prompt](../references/premium-command-center-ui/master-application-prompt.md).
|
|
55
|
-
5. Before shipping, run [quality-validation-checklist](../references/premium-command-center-ui/quality-validation-checklist.md).
|
|
56
|
-
|
|
57
|
-
---
|
|
58
|
-
|
|
59
|
-
## Application flow
|
|
60
|
-
|
|
61
|
-
### 1. Inspect the product before drawing anything
|
|
62
|
-
|
|
63
|
-
Identify the real operational nouns and verbs first:
|
|
64
|
-
|
|
65
|
-
- What is the live signal?
|
|
66
|
-
- What is the queue?
|
|
67
|
-
- What is the grouped catalog?
|
|
68
|
-
- What deserves persistent navigation?
|
|
69
|
-
- What belongs in context, not in the primary column?
|
|
70
|
-
|
|
71
|
-
Do not start from components. Start from operational pressure.
|
|
72
|
-
|
|
73
|
-
### 2. Translate raw data into UI-native objects
|
|
74
|
-
|
|
75
|
-
The AIOS Dashboard improved dramatically when raw backend records were converted into UI view models such as:
|
|
76
|
-
|
|
77
|
-
- `GlobalTaskRecord`
|
|
78
|
-
- `WorkflowRecord`
|
|
79
|
-
- `MemoryAssetRecord`
|
|
80
|
-
|
|
81
|
-
Follow the same principle in new projects. Do not render tables straight from storage shape when the user actually needs lanes, signals, grouped cards, or contextual summaries.
|
|
82
|
-
|
|
83
|
-
### 3. Choose the shell intentionally
|
|
84
|
-
|
|
85
|
-
Use the tri-rail shell when the product has:
|
|
86
|
-
|
|
87
|
-
- 5+ first-class modules
|
|
88
|
-
- live or near-live context
|
|
89
|
-
- a need for persistent navigation + persistent context
|
|
90
|
-
- enough desktop usage to justify a right rail
|
|
91
|
-
|
|
92
|
-
Collapse progressively below the desktop breakpoint instead of building a separate mobile design system.
|
|
93
|
-
|
|
94
|
-
### 4. Choose the page archetype
|
|
95
|
-
|
|
96
|
-
Reuse the patterns that actually shipped in the dashboard:
|
|
97
|
-
|
|
98
|
-
- command center overview
|
|
99
|
-
- queue / control tower
|
|
100
|
-
- workflow catalog
|
|
101
|
-
- grouped registry
|
|
102
|
-
- knowledge explorer
|
|
103
|
-
|
|
104
|
-
Use the UX playbook to decide which archetype fits each route.
|
|
105
|
-
|
|
106
|
-
### 5. Apply the visual language without diluting it
|
|
107
|
-
|
|
108
|
-
Preserve these moves together:
|
|
109
|
-
|
|
110
|
-
- dark graphite or cool mist foundation
|
|
111
|
-
- aurora background fields on the page and shell, not everywhere
|
|
112
|
-
- borders-first depth with one shadow family only
|
|
113
|
-
- 3 surface levels max
|
|
114
|
-
- compact spacing and short helper copy
|
|
115
|
-
- semantic badges and gradient fills tied to meaning, not decoration
|
|
116
|
-
|
|
117
|
-
### 6. Build direct next actions into the UI
|
|
118
|
-
|
|
119
|
-
Every major card should expose the next useful step:
|
|
120
|
-
|
|
121
|
-
- open the squad
|
|
122
|
-
- inspect the task
|
|
123
|
-
- view logs
|
|
124
|
-
- switch workspace
|
|
125
|
-
- drill into workflow or memory source
|
|
126
|
-
|
|
127
|
-
Premium feel comes from reduced friction, not only from color.
|
|
128
|
-
|
|
129
|
-
---
|
|
130
|
-
|
|
131
|
-
## How to adapt this skill to new projects
|
|
132
|
-
|
|
133
|
-
Adapt the system structurally, not literally.
|
|
134
|
-
|
|
135
|
-
- Replace `squads` with the domain grouping that matters in the new product.
|
|
136
|
-
- Replace `tasks` with the domain queue or active work item.
|
|
137
|
-
- Replace `memories` with the project’s knowledge layer, asset layer, or context layer.
|
|
138
|
-
- Replace `activity rail` content with the three slices that matter most: current state, history, metrics.
|
|
139
|
-
- Keep the same visual grammar and density discipline even when labels and data change.
|
|
140
|
-
|
|
141
|
-
If the new project already has a design system:
|
|
142
|
-
|
|
143
|
-
- port the hierarchy rules first
|
|
144
|
-
- port the page archetypes second
|
|
145
|
-
- port the shell behaviors third
|
|
146
|
-
- port colors only if they do not violate brand or accessibility
|
|
147
|
-
|
|
148
|
-
---
|
|
149
|
-
|
|
150
|
-
## How to preserve the same level of visual quality
|
|
151
|
-
|
|
152
|
-
The quality bar is preserved when all of the following remain true:
|
|
153
|
-
|
|
154
|
-
- runtime or primary operations appear above infrastructure or metadata
|
|
155
|
-
- every screen has one obvious focal block
|
|
156
|
-
- cards are grouped by operational meaning, not just by data type
|
|
157
|
-
- the shell behaves like a product operating surface
|
|
158
|
-
- semantic colors are limited and consistent
|
|
159
|
-
- empty states are styled and intentional
|
|
160
|
-
- search, navigation, and context work together instead of competing
|
|
161
|
-
- density is compact but never cramped
|
|
162
|
-
|
|
163
|
-
If the result looks like a generic dark dashboard with random gradients, the skill was not applied correctly.
|
|
164
|
-
|
|
165
|
-
---
|
|
166
|
-
|
|
167
|
-
## Non-negotiable quality bar
|
|
168
|
-
|
|
169
|
-
- No flat, washed-out backgrounds.
|
|
170
|
-
- No equal-emphasis card grids for every section.
|
|
171
|
-
- No giant padding values that make the product feel empty.
|
|
172
|
-
- No rainbow status colors without semantic meaning.
|
|
173
|
-
- No shadow-heavy cards mixed with border-heavy cards.
|
|
174
|
-
- No hidden next step after a user reads a card.
|
|
175
|
-
- No infrastructure-first hierarchy.
|
|
176
|
-
- No top-level page without a clear route back to the operating workflow.
|
|
177
|
-
|
|
178
|
-
---
|
|
179
|
-
|
|
180
|
-
## Expected output when using this skill
|
|
181
|
-
|
|
182
|
-
When you apply this skill to a new product, deliver:
|
|
183
|
-
|
|
184
|
-
1. explicit visual direction and density choice
|
|
185
|
-
2. shell structure and route hierarchy
|
|
186
|
-
3. page archetype selection per major screen
|
|
187
|
-
4. reusable component set
|
|
188
|
-
5. state handling (default / hover / active / empty / loading / error)
|
|
189
|
-
6. responsive behavior notes
|
|
190
|
-
7. validation against the checklist before handoff
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|