@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
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: design-patterns
|
|
3
|
+
description: Page-level layout patterns for the Cognitive Core design system — dashboard shell, settings page, auth page, list-detail, command center, landing page, frontpage, and institutional page layouts. Load foundations and components first. Use when you need to compose a full page or screen layout.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Patterns — Page-Level Layouts
|
|
7
|
+
|
|
8
|
+
Requires: `foundations/SKILL.md` + `components/SKILL.md` loaded first.
|
|
9
|
+
|
|
10
|
+
These patterns define how to compose components into full page layouts. Each pattern includes a structure diagram, which components to use, and spacing rules.
|
|
11
|
+
|
|
12
|
+
## 1. Dashboard Shell
|
|
13
|
+
|
|
14
|
+
The base layout for any admin/dashboard interface.
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
┌────────────────────────────────────────────────────────┐
|
|
18
|
+
│ TOP BAR (sticky, bg-void, z-sticky) │
|
|
19
|
+
├────────────────────────────────────────────────────────┤
|
|
20
|
+
│ STATS ROW: [StatCard] [StatCard] [StatCard] [StatCard]│
|
|
21
|
+
├────────────────────────────────────────────────────────┤
|
|
22
|
+
│ TAB BAR (border-bottom) │
|
|
23
|
+
├───────────┬────────────────────────────────────────────┤
|
|
24
|
+
│ SIDEBAR │ CONTENT │
|
|
25
|
+
│ 200-220px │ ┌─ Section Header ──────────────────┐ │
|
|
26
|
+
│ │ │ Grid: [Card] [Card] [Card] [Card] │ │
|
|
27
|
+
│ │ └───────────────────────────────────┘ │
|
|
28
|
+
│ │ ┌─ Section Header ──────────────────┐ │
|
|
29
|
+
│ │ │ Grid: [Card] [Card] [Card] │ │
|
|
30
|
+
│ │ └───────────────────────────────────┘ │
|
|
31
|
+
└───────────┴────────────────────────────────────────────┘
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
**CSS skeleton:**
|
|
35
|
+
```css
|
|
36
|
+
.shell { min-height: 100vh; background: var(--bg-base); }
|
|
37
|
+
.stats-row { display: flex; gap: var(--space-3); padding: var(--space-5) var(--space-5) 0; flex-wrap: wrap; }
|
|
38
|
+
.main-layout { display: flex; min-height: calc(100vh - 230px); }
|
|
39
|
+
.sidebar { width: 200px; flex-shrink: 0; border-right: 1px solid var(--border-subtle); padding: var(--space-4); }
|
|
40
|
+
.content { flex: 1; padding: var(--space-4) var(--space-5); overflow-y: auto; }
|
|
41
|
+
.card-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
**Variant — with feature panels:**
|
|
45
|
+
Below stats and above card grid, add a two-column row: `grid-template-columns: 1fr 280px`. Left = DNA Panel. Right = Mode Panel.
|
|
46
|
+
|
|
47
|
+
## 2. Detail Page (Entity Profile)
|
|
48
|
+
|
|
49
|
+
For viewing a single entity (product, user, project, contact).
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
┌────────────────────────────────────────────────────────┐
|
|
53
|
+
│ TOP BAR │
|
|
54
|
+
├────────────────────────────────────────────────────────┤
|
|
55
|
+
│ Breadcrumbs: Gallery → Entity Name │
|
|
56
|
+
│ PROFILE HEADER (avatar, name, badges, stat cards) │
|
|
57
|
+
├────────────────────────────────────────────────────────┤
|
|
58
|
+
│ TAB BAR (Geral | DNA | Comunicação | Histórico) │
|
|
59
|
+
├───────────┬────────────────────────────────────────────┤
|
|
60
|
+
│ SIDEBAR │ TAB CONTENT │
|
|
61
|
+
│ │ (varies per tab — DNA panel, card grid, │
|
|
62
|
+
│ │ table, etc.) │
|
|
63
|
+
└───────────┴────────────────────────────────────────────┘
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
**Breadcrumbs:** `font-size: var(--text-sm)`, `color: var(--text-muted)`, active item in `--text-primary`.
|
|
67
|
+
|
|
68
|
+
## 3. Settings Page
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
┌────────────────────────────────────────────────────────┐
|
|
72
|
+
│ TOP BAR │
|
|
73
|
+
├───────────┬────────────────────────────────────────────┤
|
|
74
|
+
│ SIDEBAR │ SETTINGS TITLE │
|
|
75
|
+
│ │ ┌─ Card ─────────────────────────────┐ │
|
|
76
|
+
│ General │ │ SECTION LABEL │ │
|
|
77
|
+
│ Security │ │ [Label] [Input] │ │
|
|
78
|
+
│ Billing │ │ [Label] [Input] │ │
|
|
79
|
+
│ Team │ │ [Label] [Select] │ │
|
|
80
|
+
│ API │ │ [Save Button] │ │
|
|
81
|
+
│ │ └─────────────────────────────────────┘ │
|
|
82
|
+
│ │ ┌─ Card ─────────────────────────────┐ │
|
|
83
|
+
│ │ │ DANGER ZONE (red border accent) │ │
|
|
84
|
+
│ │ └─────────────────────────────────────┘ │
|
|
85
|
+
└───────────┴────────────────────────────────────────────┘
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
- Sidebar items map to form card sections
|
|
89
|
+
- Each section is a card with mono label header + form fields
|
|
90
|
+
- Danger zone card: `border-color: var(--semantic-red-dim)` with red-tinted actions
|
|
91
|
+
|
|
92
|
+
## 4. Auth Page (Login / Register)
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
┌────────────────────────────────────────────────────────┐
|
|
96
|
+
│ bg-void (full screen) │
|
|
97
|
+
│ │
|
|
98
|
+
│ ┌─ Card (max-w 420px) ──────────┐ │
|
|
99
|
+
│ │ [Logo] AppName │ │
|
|
100
|
+
│ │ SUBTITLE │ │
|
|
101
|
+
│ │ │ │
|
|
102
|
+
│ │ MONO LABEL: email │ │
|
|
103
|
+
│ │ [Input] │ │
|
|
104
|
+
│ │ MONO LABEL: password │ │
|
|
105
|
+
│ │ [Input] │ │
|
|
106
|
+
│ │ [Primary Button: full width] │ │
|
|
107
|
+
│ │ │ │
|
|
108
|
+
│ │ or ─── divider ─── or │ │
|
|
109
|
+
│ │ [Secondary Button: Google] │ │
|
|
110
|
+
│ │ Link: forgot / register │ │
|
|
111
|
+
│ └────────────────────────────────┘ │
|
|
112
|
+
│ │
|
|
113
|
+
│ radial glow behind card │
|
|
114
|
+
└────────────────────────────────────────────────────────┘
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
- Full viewport, centered flex, `background: var(--bg-void)`
|
|
118
|
+
- Card with `var(--bg-surface)`, `max-width: 420px`, `border-radius: var(--radius-xl)`
|
|
119
|
+
- Optional: radial glow effect behind card (like Mode Panel)
|
|
120
|
+
|
|
121
|
+
## 5. List-Detail (Split View)
|
|
122
|
+
|
|
123
|
+
```
|
|
124
|
+
┌────────────────────────────────────────────────────────┐
|
|
125
|
+
│ TOP BAR │
|
|
126
|
+
├────────────────────────────────────────────────────────┤
|
|
127
|
+
│ TAB BAR + Filter badges │
|
|
128
|
+
├──────────────────────┬─────────────────────────────────┤
|
|
129
|
+
│ LIST (scrollable) │ DETAIL PANEL │
|
|
130
|
+
│ ┌──────────────┐ │ Profile Header (compact) │
|
|
131
|
+
│ │ Item (active) │ │ Stat Cards row │
|
|
132
|
+
│ ├──────────────┤ │ Tab sub-navigation │
|
|
133
|
+
│ │ Item │ │ Content (DNA Panel, table, │
|
|
134
|
+
│ ├──────────────┤ │ etc.) │
|
|
135
|
+
│ │ Item │ │ │
|
|
136
|
+
│ └──────────────┘ │ │
|
|
137
|
+
└──────────────────────┴─────────────────────────────────┘
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
- List panel: `width: 340px`, `border-right: 1px solid var(--border-subtle)`
|
|
141
|
+
- Active item: `background: var(--bg-elevated)`, `border-left: 3px solid var(--accent)`
|
|
142
|
+
- Detail panel: flex: 1, scrollable independently
|
|
143
|
+
|
|
144
|
+
## 6. Landing Page / Frontpage
|
|
145
|
+
|
|
146
|
+
Default theme: **light**. Uses generous spacing and hero typography.
|
|
147
|
+
|
|
148
|
+
```
|
|
149
|
+
┌────────────────────────────────────────────────────────┐
|
|
150
|
+
│ TOP BAR (transparent → bg-void on scroll) │
|
|
151
|
+
├────────────────────────────────────────────────────────┤
|
|
152
|
+
│ │
|
|
153
|
+
│ HERO SECTION (padding: space-24) │
|
|
154
|
+
│ ┌──────────────────────────────────────────────┐ │
|
|
155
|
+
│ │ MONO LABEL: tagline │ │
|
|
156
|
+
│ │ DISPLAY HEADING (text-5xl, weight-black) │ │
|
|
157
|
+
│ │ Subtitle paragraph (text-lg, text-secondary) │ │
|
|
158
|
+
│ │ [CTA Button] [Secondary Button] │ │
|
|
159
|
+
│ └──────────────────────────────────────────────┘ │
|
|
160
|
+
│ │
|
|
161
|
+
├────────────────────────────────────────────────────────┤
|
|
162
|
+
│ FEATURES SECTION (bg-surface, padding: space-20) │
|
|
163
|
+
│ Section Header (centered) │
|
|
164
|
+
│ [InfoCard] [InfoCard] [InfoCard] (3-col grid) │
|
|
165
|
+
│ │
|
|
166
|
+
├────────────────────────────────────────────────────────┤
|
|
167
|
+
│ STATS SECTION (bg-base, padding: space-16) │
|
|
168
|
+
│ [StatCard] [StatCard] [StatCard] [StatCard] │
|
|
169
|
+
│ │
|
|
170
|
+
├────────────────────────────────────────────────────────┤
|
|
171
|
+
│ SOCIAL PROOF / TESTIMONIALS (bg-surface) │
|
|
172
|
+
│ Quote cards in 2-col grid │
|
|
173
|
+
│ │
|
|
174
|
+
├────────────────────────────────────────────────────────┤
|
|
175
|
+
│ CTA SECTION (accent glow background) │
|
|
176
|
+
│ Display heading + CTA button (centered) │
|
|
177
|
+
│ │
|
|
178
|
+
├────────────────────────────────────────────────────────┤
|
|
179
|
+
│ FOOTER (bg-void) │
|
|
180
|
+
│ Columns: Brand | Links | Links | Newsletter │
|
|
181
|
+
└────────────────────────────────────────────────────────┘
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
**Key differences from dashboard:**
|
|
185
|
+
- Sections are full-width with alternating `bg-base` / `bg-surface`
|
|
186
|
+
- Spacing between sections: `padding: var(--space-20) var(--space-6)`
|
|
187
|
+
- Hero heading: `--text-5xl` on desktop, `--text-3xl` on mobile
|
|
188
|
+
- Content max-width: `1200px`, centered with `margin: 0 auto`
|
|
189
|
+
- Section headers centered: `text-align: center`
|
|
190
|
+
- CTA section: `background: var(--bg-surface)` with `radial-gradient` glow
|
|
191
|
+
|
|
192
|
+
## 7. Institutional / Corporate
|
|
193
|
+
|
|
194
|
+
Same as Landing Page but with these pages:
|
|
195
|
+
|
|
196
|
+
- **About page**: Hero + text blocks + team card grid (avatar cards with name, role, social)
|
|
197
|
+
- **Services page**: Hero + service info cards (icon + title + desc) in 3-col grid
|
|
198
|
+
- **Contact page**: Two columns — left: text + info cards, right: form card
|
|
199
|
+
|
|
200
|
+
Team card variant:
|
|
201
|
+
```
|
|
202
|
+
┌───────────────────┐
|
|
203
|
+
│ [Avatar] │
|
|
204
|
+
│ Team Member │ ← text-heading, weight-bold
|
|
205
|
+
│ CEO │ ← text-accent, italic
|
|
206
|
+
│ Short bio text │ ← text-secondary, text-sm
|
|
207
|
+
│ [Social icons] │
|
|
208
|
+
└───────────────────┘
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
## Responsive Breakpoints
|
|
212
|
+
|
|
213
|
+
Apply to all patterns:
|
|
214
|
+
```css
|
|
215
|
+
/* Mobile: single column, sidebar collapses, stats stack */
|
|
216
|
+
@media (max-width: 768px) {
|
|
217
|
+
.main-layout { flex-direction: column; }
|
|
218
|
+
.sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border-subtle); }
|
|
219
|
+
.card-grid { grid-template-columns: 1fr; }
|
|
220
|
+
.stats-row { flex-direction: column; }
|
|
221
|
+
.hero-heading { font-size: var(--text-3xl); }
|
|
222
|
+
}
|
|
223
|
+
/* Tablet: 2-col grid */
|
|
224
|
+
@media (min-width: 768px) and (max-width: 1024px) {
|
|
225
|
+
.card-grid { grid-template-columns: repeat(2, 1fr); }
|
|
226
|
+
}
|
|
227
|
+
/* Desktop: 3-4 col grid */
|
|
228
|
+
@media (min-width: 1024px) {
|
|
229
|
+
.card-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
|
|
230
|
+
}
|
|
231
|
+
```
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: squad-skills
|
|
3
|
+
description: Router and index for squad creation skills — domain knowledge, format templates, patterns, and references
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Squad Skills Router
|
|
8
|
+
|
|
9
|
+
This directory contains knowledge that enriches the `@squad` agent during squad creation.
|
|
10
|
+
|
|
11
|
+
## Directory structure
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
skills/squad/
|
|
15
|
+
├── SKILL.md ← you are here (router)
|
|
16
|
+
├── domains/ ← domain-specific knowledge (e.g., youtube-content.md)
|
|
17
|
+
├── formats/ ← content format templates (e.g., instagram-feed.md)
|
|
18
|
+
├── patterns/ ← reusable structural patterns (e.g., review-loop-pattern.md)
|
|
19
|
+
└── references/ ← reference materials (e.g., executor-archetypes.md)
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Loading strategy
|
|
23
|
+
|
|
24
|
+
When creating a squad:
|
|
25
|
+
|
|
26
|
+
1. **Read this file** to understand what's available
|
|
27
|
+
2. **Check `domains/`** for a skill matching the squad's domain
|
|
28
|
+
- Exact match → load it
|
|
29
|
+
- Similar match → load and adapt
|
|
30
|
+
- No match → proceed with LLM knowledge
|
|
31
|
+
3. **Check `patterns/`** for relevant structural patterns
|
|
32
|
+
- Review loops needed → load `review-loop-pattern.md`
|
|
33
|
+
- Multi-platform squad → load `multi-platform-pattern.md`
|
|
34
|
+
- Persona-driven squad → load `persona-based-pattern.md`
|
|
35
|
+
- Pipeline between squads → load `pipeline-pattern.md`
|
|
36
|
+
4. **Check `formats/`** for content format templates
|
|
37
|
+
- Load only formats relevant to the squad's target platforms
|
|
38
|
+
5. **Check `references/`** for supporting material
|
|
39
|
+
- Executor inspiration → `executor-archetypes.md`
|
|
40
|
+
- Quality gates → `checklist-templates.md`
|
|
41
|
+
- Workflow ideas → `workflow-templates.md`
|
|
42
|
+
|
|
43
|
+
## NEVER load everything at once
|
|
44
|
+
|
|
45
|
+
Only load skills that are directly relevant to the current squad.
|
|
46
|
+
A software squad doesn't need instagram-feed.md.
|
|
47
|
+
A YouTube squad doesn't need legal-consulting.md.
|
|
48
|
+
|
|
49
|
+
## Adding new skills
|
|
50
|
+
|
|
51
|
+
Anyone can add skills to enrich future squad creations:
|
|
52
|
+
|
|
53
|
+
- **Domain skill:** Create `domains/{domain-name}.md` with recommended executors, anti-patterns, quality benchmarks, and structural patterns for that domain.
|
|
54
|
+
- **Format template:** Create `formats/{format-name}.md` with content structure, sections, and block types.
|
|
55
|
+
- **Pattern:** Create `patterns/{pattern-name}.md` with a reusable structural pattern.
|
|
56
|
+
- **Reference:** Create `references/{reference-name}.md` with supporting material.
|
|
57
|
+
|
|
58
|
+
The `@orache` investigator can suggest creating domain skills after completing an investigation.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
# Task: Generate Implementation Plan
|
|
2
|
+
|
|
3
|
+
> Fase obrigatória entre spec completa e início de implementação.
|
|
4
|
+
> Garante consistência, define sequência, e prepara context package para novo chat.
|
|
5
|
+
|
|
6
|
+
## Quando executar
|
|
7
|
+
|
|
8
|
+
### Automaticamente (agentes detectam)
|
|
9
|
+
- /dev detecta que NÃO existe `implementation-plan.md` mas EXISTEM:
|
|
10
|
+
- `architecture.md` (SMALL/MEDIUM) ou `project.context.md` (MICRO)
|
|
11
|
+
- Pelo menos um de: `prd.md`, `prd-{slug}.md`, `readiness.md`
|
|
12
|
+
- /orchestrator detecta o mesmo no Step 1
|
|
13
|
+
|
|
14
|
+
### Manualmente
|
|
15
|
+
- Usuário pede: "gere o plano de implementação"
|
|
16
|
+
- Após /architect ou /pm finalizar seus artefatos
|
|
17
|
+
|
|
18
|
+
### Feature mode
|
|
19
|
+
- Detecta `prd-{slug}.md` existente sem `implementation-plan-{slug}.md`
|
|
20
|
+
- Gera plan scoped à feature
|
|
21
|
+
|
|
22
|
+
## Processo
|
|
23
|
+
|
|
24
|
+
### Passo 1 — Inventory check
|
|
25
|
+
|
|
26
|
+
Listar todos os artefatos em `.aioson/context/`. Para cada um, verificar:
|
|
27
|
+
- Existe? Está completo? É consistente com os outros?
|
|
28
|
+
- Sinalizar gaps e contradições
|
|
29
|
+
|
|
30
|
+
Artefatos a verificar (em ordem de prioridade):
|
|
31
|
+
|
|
32
|
+
| Artefato | Obrigatório para | Se ausente |
|
|
33
|
+
|----------|-------------------|------------|
|
|
34
|
+
| `project.context.md` | MICRO, SMALL, MEDIUM | STOP — não gere plan sem identidade |
|
|
35
|
+
| `architecture.md` | SMALL, MEDIUM | Warn — plan terá sequência menos precisa |
|
|
36
|
+
| `prd.md` ou `prd-{slug}.md` | Todos (se existe) | Info — plan baseado apenas em architecture |
|
|
37
|
+
| `discovery.md` | SMALL, MEDIUM | Warn — risco de conflitos com entidades existentes |
|
|
38
|
+
| `ui-spec.md` | Se tem UI | Info — fases de UI terão menos detalhe |
|
|
39
|
+
| `readiness.md` | Se existe | Info — plan assume readiness = READY |
|
|
40
|
+
| `spec.md` | Se existe | Info — sem histórico de decisões anteriores |
|
|
41
|
+
| `design-doc.md` | Se existe | Info — decisões arquiteturais menos firmes |
|
|
42
|
+
| `requirements-{slug}.md` | Feature mode | Warn — regras de negócio podem faltar |
|
|
43
|
+
|
|
44
|
+
### Passo 2 — Cross-analysis
|
|
45
|
+
|
|
46
|
+
Ler os artefatos na ordem: `project.context` → `discovery` → `architecture` → `prd` → `ui-spec` → `requirements` → `spec` → `design-doc`
|
|
47
|
+
|
|
48
|
+
Buscar ativamente:
|
|
49
|
+
- **Entidades fantasma:** referenciadas no PRD mas ausentes no discovery
|
|
50
|
+
- **Contradições técnicas:** decisão no architecture que conflita com o PRD
|
|
51
|
+
- **Dependências invisíveis:** feature no ui-spec que depende de algo não coberto
|
|
52
|
+
- **Assumptions implícitas:** qualquer artefato que assume algo sem declarar
|
|
53
|
+
- **Scope creep:** requisitos que parecem fora do scope declarado
|
|
54
|
+
- **Riscos de integração:** pontos onde módulos diferentes precisam concordar
|
|
55
|
+
|
|
56
|
+
Para cada issue encontrado, classificar:
|
|
57
|
+
- **BLOCK** — não pode prosseguir sem resolver (ex: entidade central faltando)
|
|
58
|
+
- **WARN** — pode prosseguir com assumption explícita (ex: campo inferido)
|
|
59
|
+
- **INFO** — anotar para o dev ter consciência (ex: possível refatoração futura)
|
|
60
|
+
|
|
61
|
+
### Passo 3 — Sequence planning
|
|
62
|
+
|
|
63
|
+
Definir a ordem de implementação baseada em:
|
|
64
|
+
|
|
65
|
+
**Dependências de dados (sempre primeiro):**
|
|
66
|
+
1. Migrations / schemas / contracts
|
|
67
|
+
2. Models / types / entities
|
|
68
|
+
3. Repositories / data access
|
|
69
|
+
|
|
70
|
+
**Dependências de lógica (depois dos dados):**
|
|
71
|
+
4. Services / actions / use-cases
|
|
72
|
+
5. Validação / policies / authorization
|
|
73
|
+
|
|
74
|
+
**Dependências de interface (por último):**
|
|
75
|
+
6. Controllers / API routes / handlers
|
|
76
|
+
7. Views / components / pages
|
|
77
|
+
|
|
78
|
+
**Módulos independentes:**
|
|
79
|
+
- Identificar módulos que NÃO compartilham entidades → podem ser paralelos
|
|
80
|
+
- Identificar módulos que COMPARTILHAM entidades → devem ser sequenciais
|
|
81
|
+
- Se /orchestrator vai usar, marcar explicitamente: `parallel: true/false`
|
|
82
|
+
|
|
83
|
+
**Para cada fase, definir:**
|
|
84
|
+
- Título descritivo
|
|
85
|
+
- O que implementar (concreto, não vago)
|
|
86
|
+
- De que depende
|
|
87
|
+
- Quais artefatos o /dev precisa ler
|
|
88
|
+
- Critério de done (como saber que terminou)
|
|
89
|
+
- Checkpoint gate (o que verificar antes de seguir)
|
|
90
|
+
|
|
91
|
+
### Passo 4 — Context package
|
|
92
|
+
|
|
93
|
+
O context package é o conjunto MÍNIMO de arquivos que o próximo agente ou chat precisa ler para executar o plan com qualidade máxima.
|
|
94
|
+
|
|
95
|
+
**Princípios:**
|
|
96
|
+
- Menos é mais — 3-5 arquivos é o ideal, nunca mais de 7
|
|
97
|
+
- O implementation-plan.md SEMPRE é o primeiro arquivo
|
|
98
|
+
- Artefatos já digeridos no plan NÃO precisam ser re-lidos
|
|
99
|
+
- Separar "leitura obrigatória" de "leitura sob demanda"
|
|
100
|
+
|
|
101
|
+
**Formato do context package:**
|
|
102
|
+
|
|
103
|
+
```
|
|
104
|
+
Leitura obrigatória (nesta ordem):
|
|
105
|
+
1. implementation-plan.md ← este arquivo
|
|
106
|
+
2. project.context.md
|
|
107
|
+
3. architecture.md (se SMALL/MEDIUM)
|
|
108
|
+
4. spec.md (se existe — histórico de decisões)
|
|
109
|
+
|
|
110
|
+
Leitura sob demanda (quando tocar no tema):
|
|
111
|
+
- discovery.md — quando tocar em entidades existentes
|
|
112
|
+
- prd.md — quando tiver dúvida sobre requisito
|
|
113
|
+
- ui-spec.md — quando implementar UI
|
|
114
|
+
- requirements-{slug}.md — quando implementar a feature
|
|
115
|
+
|
|
116
|
+
NÃO re-ler (já sintetizado neste plan):
|
|
117
|
+
- [lista de artefatos cujo conteúdo relevante já está no plan]
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
### Passo 5 — Decision registry
|
|
121
|
+
|
|
122
|
+
Separar decisões em duas categorias:
|
|
123
|
+
|
|
124
|
+
**Decisões pré-tomadas (NÃO re-discutir):**
|
|
125
|
+
- Decisões do /architect que já foram validadas
|
|
126
|
+
- Escolhas de stack documentadas em project.context.md
|
|
127
|
+
- Convenções definidas em rules/
|
|
128
|
+
- Restrições documentadas no prd
|
|
129
|
+
|
|
130
|
+
**Decisões adiadas (o /dev vai tomar):**
|
|
131
|
+
- Trade-offs que só fazem sentido com código na frente
|
|
132
|
+
- Escolhas de implementação (ex: eager vs lazy loading)
|
|
133
|
+
- Otimizações que dependem de profiling
|
|
134
|
+
|
|
135
|
+
Para cada decisão adiada: descrever o trade-off e indicar a direção preferida.
|
|
136
|
+
|
|
137
|
+
### Passo 6 — Generate plan
|
|
138
|
+
|
|
139
|
+
Salvar o plan como:
|
|
140
|
+
- **Project mode:** `.aioson/context/implementation-plan.md`
|
|
141
|
+
- **Feature mode:** `.aioson/context/implementation-plan-{slug}.md`
|
|
142
|
+
|
|
143
|
+
Formato do artefato:
|
|
144
|
+
|
|
145
|
+
```markdown
|
|
146
|
+
---
|
|
147
|
+
project: "{project_name}"
|
|
148
|
+
scope: "{project | feature}"
|
|
149
|
+
feature_slug: "{slug ou null}"
|
|
150
|
+
created: "{ISO-8601}"
|
|
151
|
+
status: "draft"
|
|
152
|
+
classification: "{MICRO | SMALL | MEDIUM}"
|
|
153
|
+
source_artifacts:
|
|
154
|
+
- project.context.md
|
|
155
|
+
- architecture.md
|
|
156
|
+
- prd.md
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
# Implementation Plan
|
|
160
|
+
|
|
161
|
+
> Gerado após consolidação de todos os artefatos de spec.
|
|
162
|
+
> Aprovado pelo usuário antes de qualquer implementação.
|
|
163
|
+
> Status: draft → approved → in_progress → completed
|
|
164
|
+
|
|
165
|
+
## Pre-flight check
|
|
166
|
+
|
|
167
|
+
### Artefatos lidos
|
|
168
|
+
- [x] project.context.md — ok
|
|
169
|
+
- [x] architecture.md — ok
|
|
170
|
+
- [ ] discovery.md — missing (proceeding with assumptions)
|
|
171
|
+
[...]
|
|
172
|
+
|
|
173
|
+
### Consistency check
|
|
174
|
+
{issues encontrados, classificados como BLOCK/WARN/INFO}
|
|
175
|
+
|
|
176
|
+
### Readiness verdict
|
|
177
|
+
{READY | READY_WITH_ASSUMPTIONS | NOT_READY}
|
|
178
|
+
|
|
179
|
+
## Execution Strategy
|
|
180
|
+
|
|
181
|
+
### Fase 1 — {título} (estimativa: {N arquivos/commits})
|
|
182
|
+
- **O que:** {descrição concreta — não "implementar o módulo", mas "criar migration users com campos X, Y, Z + model User com relação hasMany Orders"}
|
|
183
|
+
- **Depende de:** nada
|
|
184
|
+
- **Artefatos de entrada:** {lista de arquivos que o dev precisa ler}
|
|
185
|
+
- **Critério de done:** {ex: migration roda sem erro, model passa nos testes de relação}
|
|
186
|
+
- **Checkpoint:** {ex: verificar que a tabela users existe e tem os campos corretos}
|
|
187
|
+
|
|
188
|
+
### Fase 2 — {título}
|
|
189
|
+
[...]
|
|
190
|
+
|
|
191
|
+
### Fases paralelas (se /orchestrator for usar)
|
|
192
|
+
- Fase X e Fase Y podem rodar em paralelo (sem entidades compartilhadas)
|
|
193
|
+
- Fase Z depende de X (compartilham tabela orders)
|
|
194
|
+
|
|
195
|
+
## Decisões pré-tomadas
|
|
196
|
+
- {decisão 1 — fonte: architecture.md — não re-discutir}
|
|
197
|
+
- {decisão 2 — fonte: prd.md — validado pelo product}
|
|
198
|
+
|
|
199
|
+
## Decisões adiadas
|
|
200
|
+
- {decisão 1 — trade-off: A vs B — direção preferida: A porque ...}
|
|
201
|
+
- {decisão 2 — depende do resultado da Fase 1}
|
|
202
|
+
|
|
203
|
+
## Context Package
|
|
204
|
+
|
|
205
|
+
### Leitura obrigatória (ordem importa)
|
|
206
|
+
1. `implementation-plan.md` ← este arquivo
|
|
207
|
+
2. `project.context.md`
|
|
208
|
+
3. `architecture.md`
|
|
209
|
+
4. `spec.md`
|
|
210
|
+
|
|
211
|
+
### Leitura sob demanda
|
|
212
|
+
- `discovery.md` — quando tocar em entidades
|
|
213
|
+
- `prd.md` — quando tiver dúvida sobre requisito
|
|
214
|
+
- `ui-spec.md` — quando implementar UI
|
|
215
|
+
|
|
216
|
+
### NÃO re-ler
|
|
217
|
+
- {artefato X — já sintetizado nas fases acima}
|
|
218
|
+
|
|
219
|
+
## Instruções para o próximo agente
|
|
220
|
+
|
|
221
|
+
> Para /dev ou /orchestrator:
|
|
222
|
+
>
|
|
223
|
+
> 1. Leia este arquivo PRIMEIRO
|
|
224
|
+
> 2. Siga a sequência de fases na ordem
|
|
225
|
+
> 3. Após cada fase, atualize spec.md com as decisões tomadas
|
|
226
|
+
> 4. Se encontrar contradição com este plano, PARE e pergunte ao usuário
|
|
227
|
+
> 5. Decisões pré-tomadas são final — não re-discutir
|
|
228
|
+
> 6. Decisões adiadas são para você tomar — registre em spec.md
|
|
229
|
+
> 7. Ao completar cada fase, marque o checkpoint
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### Passo 7 — Apresentar ao usuário
|
|
233
|
+
|
|
234
|
+
Mostrar resumo conciso:
|
|
235
|
+
|
|
236
|
+
```
|
|
237
|
+
Implementation Plan gerado.
|
|
238
|
+
|
|
239
|
+
Fases: {N} ({M paralelas se orchestrator)
|
|
240
|
+
Consistency: {N blocks, M warns, P infos}
|
|
241
|
+
Readiness: {READY | READY_WITH_ASSUMPTIONS | NOT_READY}
|
|
242
|
+
Context package: {N arquivos obrigatórios + M sob demanda}
|
|
243
|
+
|
|
244
|
+
Sequência:
|
|
245
|
+
1. {fase 1 — 1 linha}
|
|
246
|
+
2. {fase 2 — 1 linha}
|
|
247
|
+
[...]
|
|
248
|
+
|
|
249
|
+
Recomendação: {iniciar novo chat para implementação / continuar aqui}
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
Perguntar:
|
|
253
|
+
> "Plano de implementação pronto. Quer ajustar algo antes de começar?"
|
|
254
|
+
|
|
255
|
+
Se o chat atual já consumiu muitos tokens com discovery/design:
|
|
256
|
+
> "Recomendo iniciar um novo chat para a implementação — o context package está definido no plano."
|
|
257
|
+
|
|
258
|
+
## Adaptação por classificação
|
|
259
|
+
|
|
260
|
+
### MICRO
|
|
261
|
+
- Plan é **opcional** (overhead pode não valer)
|
|
262
|
+
- Se gerado: 1-3 fases, sem cross-analysis profunda
|
|
263
|
+
- Context package: só `project.context.md` + `implementation-plan.md`
|
|
264
|
+
- Pular passo 2 (cross-analysis) se artefatos são mínimos
|
|
265
|
+
|
|
266
|
+
### SMALL
|
|
267
|
+
- Plan é **recomendado**
|
|
268
|
+
- 3-5 fases típicas
|
|
269
|
+
- Context package: 3-4 arquivos
|
|
270
|
+
- Cross-analysis: PRD ↔ architecture + discovery ↔ PRD
|
|
271
|
+
|
|
272
|
+
### MEDIUM
|
|
273
|
+
- Plan é **obrigatório** (orchestrator precisa antes de paralelizar)
|
|
274
|
+
- 5-10 fases com dependências explícitas
|
|
275
|
+
- Context package: 4-5 arquivos + subagent-specific packages
|
|
276
|
+
- Cross-analysis: completa entre todos os artefatos
|
|
277
|
+
- Marcar fases paralelas explicitamente
|
|
278
|
+
|
|
279
|
+
## Regras
|
|
280
|
+
|
|
281
|
+
- NÃO comece a implementar nesta task — SÓ planeje
|
|
282
|
+
- NÃO ignore gaps BLOCK — sinalize e PARE
|
|
283
|
+
- NÃO invente requisitos — se não está nos artefatos, é uma decisão adiada
|
|
284
|
+
- O plan é um ARTEFATO PERSISTENTE — salve em arquivo, nunca só no chat
|
|
285
|
+
- Se readiness = NOT_READY, PARE e diga o que falta antes de gerar fases
|
|
286
|
+
- Cada fase deve ser CONCRETA o suficiente para o /dev executar sem ambiguidade
|
|
287
|
+
- Fases vagas como "implementar o backend" são proibidas — detalhe QUAIS arquivos, QUAIS entidades
|
|
288
|
+
- Após aprovação do usuário, mude status de `draft` para `approved`
|
|
@@ -32,7 +32,7 @@ Leia `.aioson/squads/.designs/<slug>.blueprint.json` e valide que os campos obri
|
|
|
32
32
|
└── squad.manifest.json # Manifesto JSON formal
|
|
33
33
|
|
|
34
34
|
output/<slug>/ # Diretório de output
|
|
35
|
-
|
|
35
|
+
aioson-logs/<slug>/ # Diretório de logs
|
|
36
36
|
media/<slug>/ # Diretório de mídia
|
|
37
37
|
```
|
|
38
38
|
|