flyee 0.1.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/LICENSE +21 -0
- package/README.md +134 -0
- package/bin/install.js +357 -0
- package/bridge/bridge.py +1780 -0
- package/bridge/local_tracker.py +722 -0
- package/core/agents/backend-specialist.md +266 -0
- package/core/agents/code-archaeologist.md +106 -0
- package/core/agents/database-architect.md +226 -0
- package/core/agents/debugger.md +225 -0
- package/core/agents/devops-engineer.md +323 -0
- package/core/agents/documentation-writer.md +104 -0
- package/core/agents/explorer-agent.md +73 -0
- package/core/agents/frontend-specialist.md +743 -0
- package/core/agents/game-developer.md +162 -0
- package/core/agents/mobile-developer.md +377 -0
- package/core/agents/orchestrator.md +416 -0
- package/core/agents/penetration-tester.md +188 -0
- package/core/agents/performance-optimizer.md +187 -0
- package/core/agents/product-manager.md +112 -0
- package/core/agents/product-owner.md +95 -0
- package/core/agents/project-planner.md +470 -0
- package/core/agents/qa-automation-engineer.md +103 -0
- package/core/agents/security-auditor.md +170 -0
- package/core/agents/seo-specialist.md +111 -0
- package/core/agents/stitch-designer.md +190 -0
- package/core/agents/tdd-reviewer.md +282 -0
- package/core/agents/test-engineer.md +158 -0
- package/core/scripts/auto_preview.py +148 -0
- package/core/scripts/checklist.py +243 -0
- package/core/scripts/cost_report.py +149 -0
- package/core/scripts/doc-sync-check.py +461 -0
- package/core/scripts/parse_user_stories.py +79 -0
- package/core/scripts/prepare_notion_updates.py +172 -0
- package/core/scripts/print_create_payload.py +18 -0
- package/core/scripts/session_manager.py +120 -0
- package/core/scripts/task_complete.py +127 -0
- package/core/scripts/verify_all.py +327 -0
- package/core/skills/analytics-strategy/SKILL.md +128 -0
- package/core/skills/api-patterns/SKILL.md +81 -0
- package/core/skills/api-patterns/api-style.md +42 -0
- package/core/skills/api-patterns/auth.md +24 -0
- package/core/skills/api-patterns/documentation.md +26 -0
- package/core/skills/api-patterns/graphql.md +41 -0
- package/core/skills/api-patterns/rate-limiting.md +31 -0
- package/core/skills/api-patterns/response.md +37 -0
- package/core/skills/api-patterns/rest.md +40 -0
- package/core/skills/api-patterns/scripts/api_validator.py +211 -0
- package/core/skills/api-patterns/security-testing.md +122 -0
- package/core/skills/api-patterns/trpc.md +41 -0
- package/core/skills/api-patterns/versioning.md +22 -0
- package/core/skills/app-builder/SKILL.md +75 -0
- package/core/skills/app-builder/agent-coordination.md +71 -0
- package/core/skills/app-builder/feature-building.md +53 -0
- package/core/skills/app-builder/project-detection.md +34 -0
- package/core/skills/app-builder/scaffolding.md +118 -0
- package/core/skills/app-builder/tech-stack.md +40 -0
- package/core/skills/app-builder/templates/SKILL.md +39 -0
- package/core/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
- package/core/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
- package/core/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
- package/core/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
- package/core/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
- package/core/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
- package/core/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
- package/core/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +82 -0
- package/core/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +100 -0
- package/core/skills/app-builder/templates/nextjs-static/TEMPLATE.md +106 -0
- package/core/skills/app-builder/templates/nuxt-app/TEMPLATE.md +101 -0
- package/core/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
- package/core/skills/app-builder/templates/react-native-app/TEMPLATE.md +93 -0
- package/core/skills/architecture/SKILL.md +55 -0
- package/core/skills/architecture/context-discovery.md +43 -0
- package/core/skills/architecture/examples.md +94 -0
- package/core/skills/architecture/pattern-selection.md +68 -0
- package/core/skills/architecture/patterns-reference.md +50 -0
- package/core/skills/architecture/trade-off-analysis.md +77 -0
- package/core/skills/atomic-design/SKILL.md +282 -0
- package/core/skills/atomic-design/references/classification-guide.md +132 -0
- package/core/skills/atomic-design/references/quality-checklist.md +60 -0
- package/core/skills/atomic-design/references/stacks/stack-blade.md +254 -0
- package/core/skills/atomic-design/references/stacks/stack-nextjs.md +272 -0
- package/core/skills/atomic-design/references/stacks/stack-react.md +239 -0
- package/core/skills/atomic-design/references/stacks/stack-vue.md +224 -0
- package/core/skills/bash-linux/SKILL.md +199 -0
- package/core/skills/behavioral-modes/SKILL.md +242 -0
- package/core/skills/brainstorming/SKILL.md +163 -0
- package/core/skills/brainstorming/dynamic-questioning.md +373 -0
- package/core/skills/checkpointing-patterns/SKILL.md +163 -0
- package/core/skills/clean-code/SKILL.md +201 -0
- package/core/skills/code-review-checklist/SKILL.md +109 -0
- package/core/skills/code-truth-validation/SKILL.md +149 -0
- package/core/skills/component-library-discovery/SKILL.md +154 -0
- package/core/skills/content-strategy/SKILL.md +222 -0
- package/core/skills/context-budget/SKILL.md +155 -0
- package/core/skills/context-gathering-patterns/SKILL.md +278 -0
- package/core/skills/cost-tracking/SKILL.md +206 -0
- package/core/skills/database-design/SKILL.md +52 -0
- package/core/skills/database-design/database-selection.md +43 -0
- package/core/skills/database-design/indexing.md +39 -0
- package/core/skills/database-design/migrations.md +48 -0
- package/core/skills/database-design/optimization.md +36 -0
- package/core/skills/database-design/orm-selection.md +30 -0
- package/core/skills/database-design/schema-design.md +56 -0
- package/core/skills/database-design/scripts/schema_validator.py +172 -0
- package/core/skills/deployment-procedures/SKILL.md +295 -0
- package/core/skills/design-md/README.md +34 -0
- package/core/skills/design-md/SKILL.md +172 -0
- package/core/skills/design-md/examples/DESIGN.md +154 -0
- package/core/skills/design-system-enforcement/SKILL.md +339 -0
- package/core/skills/doc.md +177 -0
- package/core/skills/document-registry/SKILL.md +130 -0
- package/core/skills/documentation-publishing/SKILL.md +174 -0
- package/core/skills/documentation-templates/SKILL.md +194 -0
- package/core/skills/enhance-prompt/README.md +34 -0
- package/core/skills/enhance-prompt/SKILL.md +204 -0
- package/core/skills/enhance-prompt/references/KEYWORDS.md +114 -0
- package/core/skills/frontend-design/SKILL.md +430 -0
- package/core/skills/frontend-design/animation-guide.md +331 -0
- package/core/skills/frontend-design/color-system.md +311 -0
- package/core/skills/frontend-design/decision-trees.md +418 -0
- package/core/skills/frontend-design/motion-graphics.md +306 -0
- package/core/skills/frontend-design/scripts/accessibility_checker.py +183 -0
- package/core/skills/frontend-design/scripts/ux_audit.py +722 -0
- package/core/skills/frontend-design/typography-system.md +345 -0
- package/core/skills/frontend-design/ux-psychology.md +541 -0
- package/core/skills/frontend-design/visual-effects.md +383 -0
- package/core/skills/game-development/2d-games/SKILL.md +119 -0
- package/core/skills/game-development/3d-games/SKILL.md +135 -0
- package/core/skills/game-development/SKILL.md +167 -0
- package/core/skills/game-development/game-art/SKILL.md +185 -0
- package/core/skills/game-development/game-audio/SKILL.md +190 -0
- package/core/skills/game-development/game-design/SKILL.md +129 -0
- package/core/skills/game-development/mobile-games/SKILL.md +108 -0
- package/core/skills/game-development/multiplayer/SKILL.md +132 -0
- package/core/skills/game-development/pc-games/SKILL.md +144 -0
- package/core/skills/game-development/vr-ar/SKILL.md +123 -0
- package/core/skills/game-development/web-games/SKILL.md +150 -0
- package/core/skills/geo-fundamentals/SKILL.md +156 -0
- package/core/skills/geo-fundamentals/scripts/geo_checker.py +289 -0
- package/core/skills/git-workflow/SKILL.md +263 -0
- package/core/skills/history-check-patterns/SKILL.md +125 -0
- package/core/skills/i18n-localization/SKILL.md +154 -0
- package/core/skills/i18n-localization/scripts/i18n_checker.py +241 -0
- package/core/skills/integration-completeness/SKILL.md +219 -0
- package/core/skills/intelligent-routing/SKILL.md +370 -0
- package/core/skills/lint-and-validate/SKILL.md +45 -0
- package/core/skills/lint-and-validate/scripts/lint_runner.py +173 -0
- package/core/skills/lint-and-validate/scripts/type_coverage.py +173 -0
- package/core/skills/local-verification/SKILL.md +195 -0
- package/core/skills/mcp-builder/SKILL.md +176 -0
- package/core/skills/mobile-design/SKILL.md +394 -0
- package/core/skills/mobile-design/decision-trees.md +516 -0
- package/core/skills/mobile-design/mobile-backend.md +491 -0
- package/core/skills/mobile-design/mobile-color-system.md +420 -0
- package/core/skills/mobile-design/mobile-debugging.md +122 -0
- package/core/skills/mobile-design/mobile-design-thinking.md +357 -0
- package/core/skills/mobile-design/mobile-navigation.md +458 -0
- package/core/skills/mobile-design/mobile-performance.md +767 -0
- package/core/skills/mobile-design/mobile-testing.md +356 -0
- package/core/skills/mobile-design/mobile-typography.md +433 -0
- package/core/skills/mobile-design/platform-android.md +666 -0
- package/core/skills/mobile-design/platform-ios.md +561 -0
- package/core/skills/mobile-design/scripts/mobile_audit.py +670 -0
- package/core/skills/mobile-design/touch-psychology.md +537 -0
- package/core/skills/nextjs-react-expert/1-async-eliminating-waterfalls.md +312 -0
- package/core/skills/nextjs-react-expert/2-bundle-bundle-size-optimization.md +240 -0
- package/core/skills/nextjs-react-expert/3-server-server-side-performance.md +490 -0
- package/core/skills/nextjs-react-expert/4-client-client-side-data-fetching.md +264 -0
- package/core/skills/nextjs-react-expert/5-rerender-re-render-optimization.md +581 -0
- package/core/skills/nextjs-react-expert/6-rendering-rendering-performance.md +432 -0
- package/core/skills/nextjs-react-expert/7-js-javascript-performance.md +684 -0
- package/core/skills/nextjs-react-expert/8-advanced-advanced-patterns.md +150 -0
- package/core/skills/nextjs-react-expert/SKILL.md +267 -0
- package/core/skills/nextjs-react-expert/scripts/convert_rules.py +222 -0
- package/core/skills/nextjs-react-expert/scripts/react_performance_checker.py +252 -0
- package/core/skills/nodejs-best-practices/SKILL.md +333 -0
- package/core/skills/notion-task-patterns/SKILL.md +2529 -0
- package/core/skills/page-specifications/SKILL.md +367 -0
- package/core/skills/parallel-agents/SKILL.md +175 -0
- package/core/skills/performance-profiling/SKILL.md +143 -0
- package/core/skills/performance-profiling/scripts/lighthouse_audit.py +76 -0
- package/core/skills/plan-writing/SKILL.md +190 -0
- package/core/skills/powershell-windows/SKILL.md +167 -0
- package/core/skills/project-foundation/SKILL.md +117 -0
- package/core/skills/project-setup/SKILL.md +141 -0
- package/core/skills/project-tracking-patterns/SKILL.md +357 -0
- package/core/skills/project-type-discovery/SKILL.md +239 -0
- package/core/skills/python-patterns/SKILL.md +441 -0
- package/core/skills/qa-test-generation/SKILL.md +156 -0
- package/core/skills/react-components/README.md +36 -0
- package/core/skills/react-components/SKILL.md +47 -0
- package/core/skills/react-components/examples/gold-standard-card.tsx +80 -0
- package/core/skills/react-components/package-lock.json +231 -0
- package/core/skills/react-components/package.json +16 -0
- package/core/skills/react-components/resources/architecture-checklist.md +15 -0
- package/core/skills/react-components/resources/component-template.tsx +37 -0
- package/core/skills/react-components/resources/stitch-api-reference.md +14 -0
- package/core/skills/react-components/resources/style-guide.json +27 -0
- package/core/skills/react-components/scripts/fetch-stitch.sh +30 -0
- package/core/skills/react-components/scripts/validate.js +68 -0
- package/core/skills/red-team-tactics/SKILL.md +199 -0
- package/core/skills/remotion/README.md +105 -0
- package/core/skills/remotion/SKILL.md +393 -0
- package/core/skills/remotion/examples/WalkthroughComposition.tsx +78 -0
- package/core/skills/remotion/examples/screens.json +56 -0
- package/core/skills/remotion/resources/composition-checklist.md +124 -0
- package/core/skills/remotion/resources/screen-slide-template.tsx +123 -0
- package/core/skills/remotion/scripts/download-stitch-asset.sh +38 -0
- package/core/skills/seo-fundamentals/SKILL.md +129 -0
- package/core/skills/seo-fundamentals/scripts/seo_checker.py +219 -0
- package/core/skills/server-management/SKILL.md +161 -0
- package/core/skills/session-resilience/SKILL.md +199 -0
- package/core/skills/shadcn-ui/README.md +248 -0
- package/core/skills/shadcn-ui/SKILL.md +326 -0
- package/core/skills/shadcn-ui/examples/auth-layout.tsx +177 -0
- package/core/skills/shadcn-ui/examples/data-table.tsx +313 -0
- package/core/skills/shadcn-ui/examples/form-pattern.tsx +177 -0
- package/core/skills/shadcn-ui/resources/component-catalog.md +481 -0
- package/core/skills/shadcn-ui/resources/customization-guide.md +516 -0
- package/core/skills/shadcn-ui/resources/migration-guide.md +463 -0
- package/core/skills/shadcn-ui/resources/setup-guide.md +412 -0
- package/core/skills/shadcn-ui/scripts/verify-setup.sh +134 -0
- package/core/skills/state-machine/SKILL.md +264 -0
- package/core/skills/stitch-loop/README.md +54 -0
- package/core/skills/stitch-loop/SKILL.md +203 -0
- package/core/skills/stitch-loop/examples/SITE.md +73 -0
- package/core/skills/stitch-loop/examples/next-prompt.md +25 -0
- package/core/skills/stitch-loop/resources/baton-schema.md +61 -0
- package/core/skills/stitch-loop/resources/site-template.md +104 -0
- package/core/skills/systematic-debugging/SKILL.md +109 -0
- package/core/skills/tailwind-patterns/SKILL.md +284 -0
- package/core/skills/tdd-validation/SKILL.md +243 -0
- package/core/skills/tdd-workflow/SKILL.md +284 -0
- package/core/skills/testing-patterns/SKILL.md +196 -0
- package/core/skills/testing-patterns/scripts/test_runner.py +219 -0
- package/core/skills/ui-ux-discovery/SKILL.md +329 -0
- package/core/skills/ui-validation/SKILL.md +190 -0
- package/core/skills/ui-validation/scripts/ui_antipattern_check.py +317 -0
- package/core/skills/verification-gate/SKILL.md +205 -0
- package/core/skills/vulnerability-scanner/SKILL.md +276 -0
- package/core/skills/vulnerability-scanner/checklists.md +121 -0
- package/core/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
- package/core/skills/web-design-guidelines/SKILL.md +57 -0
- package/core/skills/webapp-testing/SKILL.md +187 -0
- package/core/skills/webapp-testing/scripts/playwright_runner.py +173 -0
- package/core/templates/ARCHITECTURE.template.md +407 -0
- package/core/templates/project-resources.example.json +71 -0
- package/core/workflows/atomic.md +182 -0
- package/core/workflows/brainstorm.md +134 -0
- package/core/workflows/check-task.md +242 -0
- package/core/workflows/copy-collect.md +306 -0
- package/core/workflows/create-agent.md +33 -0
- package/core/workflows/create-skill.md +39 -0
- package/core/workflows/create-workflow.md +33 -0
- package/core/workflows/create.md +92 -0
- package/core/workflows/debug.md +186 -0
- package/core/workflows/demand.md +443 -0
- package/core/workflows/deploy.md +260 -0
- package/core/workflows/discovery.md +267 -0
- package/core/workflows/document.md +272 -0
- package/core/workflows/ds-components.md +296 -0
- package/core/workflows/ds-init.md +58 -0
- package/core/workflows/ds-refactor.md +245 -0
- package/core/workflows/ds-references.md +197 -0
- package/core/workflows/ds-styleguide.md +237 -0
- package/core/workflows/ds-token-diff.md +103 -0
- package/core/workflows/ds-tokens.md +317 -0
- package/core/workflows/ds-validate.md +309 -0
- package/core/workflows/execute.md +483 -0
- package/core/workflows/extract-template.md +278 -0
- package/core/workflows/fix-failed-tests.md +160 -0
- package/core/workflows/init-project.md +386 -0
- package/core/workflows/legacy-project.md +849 -0
- package/core/workflows/log.md +97 -0
- package/core/workflows/new-project.md +610 -0
- package/core/workflows/new-project.md.bak +3292 -0
- package/core/workflows/new-task.md +404 -0
- package/core/workflows/orchestrate.md +237 -0
- package/core/workflows/page-build.md +296 -0
- package/core/workflows/plan.md +89 -0
- package/core/workflows/prd.md +255 -0
- package/core/workflows/preview.md +81 -0
- package/core/workflows/review-page.md +304 -0
- package/core/workflows/status.md +86 -0
- package/core/workflows/stitch.md +226 -0
- package/core/workflows/task-complete.md +473 -0
- package/core/workflows/task-update.md +163 -0
- package/core/workflows/tdd.md +344 -0
- package/core/workflows/test.md +251 -0
- package/core/workflows/ui-ux-pro-max.md +437 -0
- package/core/workflows/ux-mobile-optimize.md +262 -0
- package/core/workflows/ux-mobile-validate.md +297 -0
- package/engine-files/GEMINI.md +69 -0
- package/package.json +47 -0
- package/runtime-adapters/antigravity.js +26 -0
- package/runtime-adapters/claude.js +57 -0
- package/runtime-adapters/codex.js +51 -0
- package/runtime-adapters/copilot.js +51 -0
- package/runtime-adapters/cursor.js +51 -0
- package/runtime-adapters/gemini-cli.js +30 -0
- package/runtime-adapters/opencode.js +51 -0
- package/runtime-adapters/windsurf.js +51 -0
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Revisar UI/UX e conteúdo de páginas existentes
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Review Page Workflow
|
|
6
|
+
|
|
7
|
+
> **Objetivo:** Auditar página existente em UI/UX e Conteúdo com **validação visual real**, gerando recomendações acionáveis.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Sintaxe
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
/review-page {caminho_da_página}
|
|
15
|
+
# Exemplo: /review-page src/app/page.tsx
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
**Flags Opcionais:**
|
|
19
|
+
- `--ui-only` - Apenas revisão de UI/UX
|
|
20
|
+
- `--content-only` - Apenas revisão de conteúdo
|
|
21
|
+
- `--quick` - Auditoria rápida sem perguntas (usa padrões)
|
|
22
|
+
- `--no-browser` - Pular validação visual (não recomendado)
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## ⚠️ REGRA CRÍTICA
|
|
27
|
+
|
|
28
|
+
> [!CAUTION]
|
|
29
|
+
> **NUNCA** aprovar UI apenas lendo código.
|
|
30
|
+
> **SEMPRE** capturar screenshots e analisar visualmente no browser.
|
|
31
|
+
> Confiar apenas no código leva a erros de layout, espaçamento e alinhamento.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Processo (5 Fases)
|
|
36
|
+
|
|
37
|
+
### FASE 1: Análise da Página Atual
|
|
38
|
+
|
|
39
|
+
1. **Ler arquivo da página** e identificar:
|
|
40
|
+
- Estrutura de componentes
|
|
41
|
+
- Seções existentes (Hero, Features, etc.)
|
|
42
|
+
- Imports de estilos e assets
|
|
43
|
+
|
|
44
|
+
2. **Verificar Design System:**
|
|
45
|
+
- Existe `design-system/{projeto}/MASTER.md`?
|
|
46
|
+
- Se sim: usar como baseline
|
|
47
|
+
- Se não: extrair identidade visual do código
|
|
48
|
+
|
|
49
|
+
3. **Verificar Content Strategy:**
|
|
50
|
+
- Existe `docs/content/CONTENT-STRATEGY-{Projeto}.md`?
|
|
51
|
+
- Se sim: usar como baseline
|
|
52
|
+
- Se não: extrair conteúdo atual
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
### FASE 2: Auditoria de UI/UX
|
|
57
|
+
|
|
58
|
+
> **SKILL:** Seguir `ui-ux-discovery` para análise visual.
|
|
59
|
+
|
|
60
|
+
**Checklist de Auditoria:**
|
|
61
|
+
|
|
62
|
+
```markdown
|
|
63
|
+
## 🎨 Auditoria UI/UX - {página}
|
|
64
|
+
|
|
65
|
+
### Cores
|
|
66
|
+
- [ ] Cores seguem Design System?
|
|
67
|
+
- [ ] Contraste adequado (WCAG AA)?
|
|
68
|
+
- [ ] Consistência entre seções?
|
|
69
|
+
|
|
70
|
+
### Tipografia
|
|
71
|
+
- [ ] Fontes corretas aplicadas?
|
|
72
|
+
- [ ] Hierarquia visual clara?
|
|
73
|
+
- [ ] Tamanhos responsivos?
|
|
74
|
+
|
|
75
|
+
### Layout
|
|
76
|
+
- [ ] Espaçamento consistente?
|
|
77
|
+
- [ ] Responsividade funciona?
|
|
78
|
+
- [ ] Seções bem delimitadas?
|
|
79
|
+
|
|
80
|
+
### Efeitos Visuais
|
|
81
|
+
- [ ] Animações funcionando?
|
|
82
|
+
- [ ] Glassmorphism/shadows aplicados?
|
|
83
|
+
- [ ] Dark mode funciona (se aplicável)?
|
|
84
|
+
|
|
85
|
+
### Componentes
|
|
86
|
+
- [ ] Usando componentes do Design System?
|
|
87
|
+
- [ ] Sem estilos inline desnecessários?
|
|
88
|
+
- [ ] Acessibilidade (aria-labels, etc.)?
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
### FASE 2.5: VALIDAÇÃO VISUAL NO BROWSER (OBRIGATÓRIA)
|
|
94
|
+
|
|
95
|
+
> [!CAUTION]
|
|
96
|
+
> **GATE BLOQUEANTE:** Não prosseguir sem executar esta fase.
|
|
97
|
+
> Código pode parecer correto mas renderizar errado.
|
|
98
|
+
|
|
99
|
+
**1. Abrir Página no Browser:**
|
|
100
|
+
```
|
|
101
|
+
Use: browser_subagent
|
|
102
|
+
Task: "Navegar para {URL} e capturar estado da página"
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
**2. Capturar Screenshots de CADA Seção:**
|
|
106
|
+
```
|
|
107
|
+
Use: browser_subagent
|
|
108
|
+
Task: "Scrollar página e capturar screenshots de:
|
|
109
|
+
- Hero section (viewport inicial)
|
|
110
|
+
- Features/Cards section
|
|
111
|
+
- Social Proof section
|
|
112
|
+
- Pricing section (se houver)
|
|
113
|
+
- FAQ section (se houver)
|
|
114
|
+
- Footer
|
|
115
|
+
Retornar paths dos screenshots capturados."
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
**3. Análise Crítica Visual (OBRIGATÓRIO):**
|
|
119
|
+
|
|
120
|
+
Para CADA screenshot, analisar:
|
|
121
|
+
|
|
122
|
+
```markdown
|
|
123
|
+
## 🔍 Análise Visual Crítica
|
|
124
|
+
|
|
125
|
+
### Alinhamento e Espaçamento
|
|
126
|
+
- [ ] Cards em mesma row têm MESMA altura?
|
|
127
|
+
- [ ] Elementos estão centralizados corretamente?
|
|
128
|
+
- [ ] Gap entre elementos é uniforme?
|
|
129
|
+
- [ ] Padding interno dos cards é consistente?
|
|
130
|
+
|
|
131
|
+
### Grid e Layout
|
|
132
|
+
- [ ] Colunas estão balanceadas?
|
|
133
|
+
- [ ] Não há overflow ou corte de conteúdo?
|
|
134
|
+
- [ ] Breakpoints mobile/tablet funcionam?
|
|
135
|
+
|
|
136
|
+
### Tipografia
|
|
137
|
+
- [ ] Textos não estão quebrando de forma estranha?
|
|
138
|
+
- [ ] Hierarquia visual está clara?
|
|
139
|
+
- [ ] Line-height adequado?
|
|
140
|
+
|
|
141
|
+
### Cores e Contraste
|
|
142
|
+
- [ ] CTAs estão visíveis e destacados?
|
|
143
|
+
- [ ] Texto legível sobre backgrounds?
|
|
144
|
+
- [ ] Cores do Design System aplicadas?
|
|
145
|
+
|
|
146
|
+
### Erros Evidentes
|
|
147
|
+
- [ ] Elementos sobrepostos?
|
|
148
|
+
- [ ] Imagens quebradas?
|
|
149
|
+
- [ ] Ícones faltando ou errados?
|
|
150
|
+
- [ ] Bordas/sombras renderizando corretamente?
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
**4. Se Encontrar Problemas:**
|
|
154
|
+
```
|
|
155
|
+
⚠️ PARE e documente:
|
|
156
|
+
- Screenshot do problema
|
|
157
|
+
- Descrição exata
|
|
158
|
+
- Localização (seção, linha aproximada)
|
|
159
|
+
- Sugestão de fix
|
|
160
|
+
|
|
161
|
+
NÃO aprove a página visualmente até corrigir.
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
**Gate de Saída:**
|
|
165
|
+
```
|
|
166
|
+
[ ] Página aberta no browser
|
|
167
|
+
[ ] Screenshots de TODAS as seções capturados
|
|
168
|
+
[ ] Análise crítica de alinhamento feita
|
|
169
|
+
[ ] Análise de espaçamento feita
|
|
170
|
+
[ ] Problemas visuais documentados (se houver)
|
|
171
|
+
[ ] TODOS os problemas evidentes corrigidos
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
### FASE 3: Auditoria de Conteúdo
|
|
177
|
+
|
|
178
|
+
> **SKILL:** Seguir `content-strategy` para análise de copy.
|
|
179
|
+
|
|
180
|
+
**Checklist de Auditoria:**
|
|
181
|
+
|
|
182
|
+
```markdown
|
|
183
|
+
## 📝 Auditoria Conteúdo - {página}
|
|
184
|
+
|
|
185
|
+
### Hero Section
|
|
186
|
+
- [ ] Headline clara e impactante?
|
|
187
|
+
- [ ] Subheadline complementa sem repetir?
|
|
188
|
+
- [ ] CTAs têm verbos de ação?
|
|
189
|
+
|
|
190
|
+
### Features/Benefícios
|
|
191
|
+
- [ ] Títulos focam no BENEFÍCIO (não no recurso)?
|
|
192
|
+
- [ ] Descrições são concisas (max 15 palavras)?
|
|
193
|
+
- [ ] Ícones são relevantes?
|
|
194
|
+
|
|
195
|
+
### Social Proof
|
|
196
|
+
- [ ] Tem testimonials/logos/métricas?
|
|
197
|
+
- [ ] Dados são verificáveis?
|
|
198
|
+
|
|
199
|
+
### SEO
|
|
200
|
+
- [ ] Title tag presente e otimizado?
|
|
201
|
+
- [ ] Meta description presente?
|
|
202
|
+
- [ ] Heading hierarchy correta (H1 > H2 > H3)?
|
|
203
|
+
- [ ] Alt text em imagens?
|
|
204
|
+
|
|
205
|
+
### Tom de Voz
|
|
206
|
+
- [ ] Consistente com CONTENT-STRATEGY?
|
|
207
|
+
- [ ] Adequado ao público-alvo?
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
### FASE 4: Relatório e Recomendações
|
|
213
|
+
|
|
214
|
+
**Gerar relatório em:**
|
|
215
|
+
`docs/reviews/REVIEW-{página}-{data}.md`
|
|
216
|
+
|
|
217
|
+
**Estrutura do Relatório:**
|
|
218
|
+
|
|
219
|
+
```markdown
|
|
220
|
+
# Page Review: {página}
|
|
221
|
+
> **Data:** {YYYY-MM-DD}
|
|
222
|
+
> **Revisor:** Claude Agent
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
## 📊 Resumo Executivo
|
|
227
|
+
|
|
228
|
+
| Aspecto | Score | Status |
|
|
229
|
+
|---------|-------|--------|
|
|
230
|
+
| UI/UX | X/10 | 🟢/🟡/🔴 |
|
|
231
|
+
| Conteúdo | X/10 | 🟢/🟡/🔴 |
|
|
232
|
+
| SEO | X/10 | 🟢/🟡/🔴 |
|
|
233
|
+
| Acessibilidade | X/10 | 🟢/🟡/🔴 |
|
|
234
|
+
|
|
235
|
+
**Score Geral:** X/10
|
|
236
|
+
|
|
237
|
+
---
|
|
238
|
+
|
|
239
|
+
## 🔴 Issues Críticas (Fix Imediato)
|
|
240
|
+
|
|
241
|
+
| # | Issue | Local | Recomendação |
|
|
242
|
+
|---|-------|-------|--------------|
|
|
243
|
+
| 1 | | | |
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
## 🟡 Melhorias Sugeridas
|
|
248
|
+
|
|
249
|
+
| # | Melhoria | Impacto | Esforço |
|
|
250
|
+
|---|----------|---------|---------|
|
|
251
|
+
| 1 | | Alto/Médio/Baixo | Alto/Médio/Baixo |
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
## 🟢 Pontos Positivos
|
|
256
|
+
|
|
257
|
+
- {o que está bom}
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
## 📋 Próximos Passos
|
|
262
|
+
|
|
263
|
+
1. [ ] {ação 1}
|
|
264
|
+
2. [ ] {ação 2}
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
---
|
|
268
|
+
|
|
269
|
+
## Gate de Saída
|
|
270
|
+
|
|
271
|
+
```
|
|
272
|
+
[ ] Página analisada
|
|
273
|
+
[ ] Auditoria UI/UX completa
|
|
274
|
+
[ ] Auditoria de Conteúdo completa
|
|
275
|
+
[ ] Relatório gerado em docs/reviews/
|
|
276
|
+
[ ] Issues priorizadas
|
|
277
|
+
[ ] Recomendações acionáveis documentadas
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
## Integração com Outros Workflows
|
|
283
|
+
|
|
284
|
+
| Após Review | Workflow Sugerido |
|
|
285
|
+
|-------------|-------------------|
|
|
286
|
+
| Muitos issues de UI | `/new-task --visual` |
|
|
287
|
+
| Muitos issues de copy | `/new-task --content` |
|
|
288
|
+
| Redesign completo | `/legacy-project` |
|
|
289
|
+
| Pequenos ajustes | Editar diretamente |
|
|
290
|
+
|
|
291
|
+
---
|
|
292
|
+
|
|
293
|
+
## Exemplos de Uso
|
|
294
|
+
|
|
295
|
+
```bash
|
|
296
|
+
# Review completo da landing page
|
|
297
|
+
/review-page src/app/page.tsx
|
|
298
|
+
|
|
299
|
+
# Apenas UI/UX do dashboard
|
|
300
|
+
/review-page src/app/dashboard/page.tsx --ui-only
|
|
301
|
+
|
|
302
|
+
# Review rápido sem perguntas
|
|
303
|
+
/review-page src/app/pricing/page.tsx --quick
|
|
304
|
+
```
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Display agent and project status. Progress tracking and status board.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# /status - Show Status
|
|
6
|
+
|
|
7
|
+
$ARGUMENTS
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Task
|
|
12
|
+
|
|
13
|
+
Show current project and agent status.
|
|
14
|
+
|
|
15
|
+
### What It Shows
|
|
16
|
+
|
|
17
|
+
1. **Project Info**
|
|
18
|
+
- Project name and path
|
|
19
|
+
- Tech stack
|
|
20
|
+
- Current features
|
|
21
|
+
|
|
22
|
+
2. **Agent Status Board**
|
|
23
|
+
- Which agents are running
|
|
24
|
+
- Which tasks are completed
|
|
25
|
+
- Pending work
|
|
26
|
+
|
|
27
|
+
3. **File Statistics**
|
|
28
|
+
- Files created count
|
|
29
|
+
- Files modified count
|
|
30
|
+
|
|
31
|
+
4. **Preview Status**
|
|
32
|
+
- Is server running
|
|
33
|
+
- URL
|
|
34
|
+
- Health check
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Example Output
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
=== Project Status ===
|
|
42
|
+
|
|
43
|
+
📁 Project: my-ecommerce
|
|
44
|
+
📂 Path: C:/projects/my-ecommerce
|
|
45
|
+
🏷️ Type: nextjs-ecommerce
|
|
46
|
+
📊 Status: active
|
|
47
|
+
|
|
48
|
+
🔧 Tech Stack:
|
|
49
|
+
Framework: next.js
|
|
50
|
+
Database: postgresql
|
|
51
|
+
Auth: clerk
|
|
52
|
+
Payment: stripe
|
|
53
|
+
|
|
54
|
+
✅ Features (5):
|
|
55
|
+
• product-listing
|
|
56
|
+
• cart
|
|
57
|
+
• checkout
|
|
58
|
+
• user-auth
|
|
59
|
+
• order-history
|
|
60
|
+
|
|
61
|
+
⏳ Pending (2):
|
|
62
|
+
• admin-panel
|
|
63
|
+
• email-notifications
|
|
64
|
+
|
|
65
|
+
📄 Files: 73 created, 12 modified
|
|
66
|
+
|
|
67
|
+
=== Agent Status ===
|
|
68
|
+
|
|
69
|
+
✅ database-architect → Completed
|
|
70
|
+
✅ backend-specialist → Completed
|
|
71
|
+
🔄 frontend-specialist → Dashboard components (60%)
|
|
72
|
+
⏳ test-engineer → Waiting
|
|
73
|
+
|
|
74
|
+
=== Preview ===
|
|
75
|
+
|
|
76
|
+
🌐 URL: http://localhost:3000
|
|
77
|
+
💚 Health: OK
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Technical
|
|
83
|
+
|
|
84
|
+
Status uses these scripts:
|
|
85
|
+
- `python .agent/scripts/session_manager.py status`
|
|
86
|
+
- `python .agent/scripts/auto_preview.py status`
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Workflow unificado para usar as Stitch Skills (design-md, enhance-prompt, react-components, stitch-loop, remotion, shadcn-ui). Gera UI com IA.
|
|
3
|
+
skills: design-md, enhance-prompt, react-components, stitch-loop, remotion, shadcn-ui, design-system-enforcement
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# /stitch - UI Generation Workflow
|
|
7
|
+
|
|
8
|
+
$ARGUMENTS
|
|
9
|
+
|
|
10
|
+
**Flags:**
|
|
11
|
+
|
|
12
|
+
| Flag | Descrição |
|
|
13
|
+
|------|-----------|
|
|
14
|
+
| `--design` | Gerar/analisar `DESIGN.md` com design system semântico |
|
|
15
|
+
| `--prompt` | Melhorar prompt de UI para Stitch |
|
|
16
|
+
| `--components` | Converter screens para componentes React |
|
|
17
|
+
| `--loop` | Modo autônomo: gerar website completo |
|
|
18
|
+
| `--video` | Gerar vídeo walkthrough com Remotion |
|
|
19
|
+
| `--shadcn` | Adicionar componentes shadcn/ui |
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 🎯 PROPÓSITO
|
|
24
|
+
|
|
25
|
+
Workflow para geração de UI usando as **Stitch Skills** do Google Labs.
|
|
26
|
+
Cada flag ativa uma skill específica para o tipo de trabalho desejado.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## 🧭 QUICK REFERENCE
|
|
31
|
+
|
|
32
|
+
| Quero... | Comando |
|
|
33
|
+
|----------|---------|
|
|
34
|
+
| Documentar design system existente | `/stitch --design` |
|
|
35
|
+
| Melhorar um prompt de UI | `/stitch --prompt "descrição vaga"` |
|
|
36
|
+
| Converter screen para React | `/stitch --components` |
|
|
37
|
+
| Gerar site completo | `/stitch --loop "objetivo"` |
|
|
38
|
+
| Criar vídeo de demo | `/stitch --video` |
|
|
39
|
+
| Adicionar componente shadcn | `/stitch --shadcn button` |
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 📋 FLUXO POR FLAG
|
|
44
|
+
|
|
45
|
+
### 🎨 `--design` → Skill: design-md
|
|
46
|
+
|
|
47
|
+
**Objetivo:** Analisar projeto Stitch e gerar `DESIGN.md` com design system semântico.
|
|
48
|
+
|
|
49
|
+
**Pré-requisitos:**
|
|
50
|
+
- Projeto Stitch existente OU screens para análise
|
|
51
|
+
|
|
52
|
+
**Passos:**
|
|
53
|
+
1. Ler skill: `.agent/skills/design-md/SKILL.md`
|
|
54
|
+
2. Analisar screens existentes
|
|
55
|
+
3. Extrair padrões visuais (cores, tipografia, espaçamento)
|
|
56
|
+
4. Gerar `DESIGN.md` no formato otimizado para Stitch
|
|
57
|
+
|
|
58
|
+
**Output esperado:**
|
|
59
|
+
```
|
|
60
|
+
📄 DESIGN.md criado com:
|
|
61
|
+
- Color palette documentada
|
|
62
|
+
- Typography system
|
|
63
|
+
- Spacing scale
|
|
64
|
+
- Component patterns
|
|
65
|
+
- Stitch generation notes
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
### ✨ `--prompt` → Skill: enhance-prompt
|
|
71
|
+
|
|
72
|
+
**Objetivo:** Transformar descrições vagas em prompts otimizados para Stitch.
|
|
73
|
+
|
|
74
|
+
**Pré-requisitos:**
|
|
75
|
+
- Descrição/ideia de UI (pode ser vaga)
|
|
76
|
+
|
|
77
|
+
**Passos:**
|
|
78
|
+
1. Ler skill: `.agent/skills/new-task-prompt/SKILL.md`
|
|
79
|
+
2. Analisar descrição fornecida
|
|
80
|
+
3. Aplicar enhancers:
|
|
81
|
+
- Adicionar keywords de UI/UX
|
|
82
|
+
- Injetar contexto de design system
|
|
83
|
+
- Estruturar para melhor resultado
|
|
84
|
+
4. Retornar prompt otimizado
|
|
85
|
+
|
|
86
|
+
**Exemplo:**
|
|
87
|
+
```
|
|
88
|
+
IN: "página de login simples"
|
|
89
|
+
OUT: "Modern login page with glassmorphic card, centered form with email/password fields,
|
|
90
|
+
social OAuth buttons (Google, GitHub), subtle gradient background,
|
|
91
|
+
responsive mobile-first design, clear error states..."
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
### ⚛️ `--components` → Skill: react-components
|
|
97
|
+
|
|
98
|
+
**Objetivo:** Converter screens do Stitch para componentes React modulares.
|
|
99
|
+
|
|
100
|
+
**Pré-requisitos:**
|
|
101
|
+
- Screen HTML do Stitch
|
|
102
|
+
- Design tokens definidos (ou DESIGN.md)
|
|
103
|
+
|
|
104
|
+
**Passos:**
|
|
105
|
+
1. Ler skill: `.agent/skills/react-components/SKILL.md`
|
|
106
|
+
2. Executar scripts de validação
|
|
107
|
+
3. Extrair componentes do HTML
|
|
108
|
+
4. Aplicar design tokens consistentes
|
|
109
|
+
5. Validar com AST
|
|
110
|
+
|
|
111
|
+
**Scripts disponíveis:**
|
|
112
|
+
```bash
|
|
113
|
+
# Validação de componentes
|
|
114
|
+
node .agent/skills/react-components/scripts/validate.js
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
### 🔄 `--loop` → Skill: stitch-loop
|
|
120
|
+
|
|
121
|
+
**Objetivo:** Gerar website multi-página de forma autônoma.
|
|
122
|
+
|
|
123
|
+
**Pré-requisitos:**
|
|
124
|
+
- `DESIGN.md` (ou gerar com --design primeiro)
|
|
125
|
+
- `SITE.md` com visão do projeto
|
|
126
|
+
- Acesso ao Stitch MCP Server
|
|
127
|
+
|
|
128
|
+
**Passos:**
|
|
129
|
+
1. Ler skill: `.agent/skills/stitch-loop/SKILL.md`
|
|
130
|
+
2. Verificar/criar `next-prompt.md` (baton)
|
|
131
|
+
3. Consultar `SITE.md` para roadmap
|
|
132
|
+
4. Gerar página com Stitch
|
|
133
|
+
5. Integrar ao site
|
|
134
|
+
6. Atualizar baton para próxima iteração
|
|
135
|
+
|
|
136
|
+
**Estrutura esperada:**
|
|
137
|
+
```
|
|
138
|
+
project/
|
|
139
|
+
├── next-prompt.md # Baton - tarefa atual
|
|
140
|
+
├── stitch.json # Stitch project ID
|
|
141
|
+
├── DESIGN.md # Design system
|
|
142
|
+
├── SITE.md # Visão e roadmap
|
|
143
|
+
├── queue/ # Staging do Stitch
|
|
144
|
+
└── site/public/ # Páginas prontas
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
### 🎬 `--video` → Skill: remotion
|
|
150
|
+
|
|
151
|
+
**Objetivo:** Gerar vídeo walkthrough profissional do projeto.
|
|
152
|
+
|
|
153
|
+
**Pré-requisitos:**
|
|
154
|
+
- Screenshots das páginas
|
|
155
|
+
- Remotion instalado
|
|
156
|
+
|
|
157
|
+
**Passos:**
|
|
158
|
+
1. Ler skill: `.agent/skills/remotion/SKILL.md`
|
|
159
|
+
2. Coletar screenshots
|
|
160
|
+
3. Configurar transições e zoom
|
|
161
|
+
4. Adicionar overlays de texto
|
|
162
|
+
5. Renderizar vídeo
|
|
163
|
+
|
|
164
|
+
**Scripts disponíveis:**
|
|
165
|
+
```bash
|
|
166
|
+
# Gerar vídeo
|
|
167
|
+
npx remotion render
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
### 🧩 `--shadcn` → Skill: shadcn-ui
|
|
173
|
+
|
|
174
|
+
**Objetivo:** Integrar componentes shadcn/ui ao projeto.
|
|
175
|
+
|
|
176
|
+
**Pré-requisitos:**
|
|
177
|
+
- Projeto React/Next.js
|
|
178
|
+
- shadcn/ui inicializado
|
|
179
|
+
|
|
180
|
+
**Passos:**
|
|
181
|
+
1. Ler skill: `.agent/skills/shadcn-ui/SKILL.md`
|
|
182
|
+
2. Descobrir componente desejado
|
|
183
|
+
3. Instalar via CLI
|
|
184
|
+
4. Customizar conforme design system
|
|
185
|
+
5. Integrar ao código
|
|
186
|
+
|
|
187
|
+
**Comandos comuns:**
|
|
188
|
+
```bash
|
|
189
|
+
# Instalar componente
|
|
190
|
+
npx shadcn-ui@latest add button
|
|
191
|
+
|
|
192
|
+
# Ver componentes disponíveis
|
|
193
|
+
npx shadcn-ui@latest add --help
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
## 🔗 COMBINAÇÕES RECOMENDADAS
|
|
199
|
+
|
|
200
|
+
| Cenário | Comando |
|
|
201
|
+
|---------|---------|
|
|
202
|
+
| Novo projeto do zero | `/stitch --loop "descrição do site"` |
|
|
203
|
+
| Melhorar UI existente | `/stitch --prompt` → `/stitch --design` |
|
|
204
|
+
| Extrair componentes | `/stitch --design` → `/stitch --components` |
|
|
205
|
+
| Criar demo | `/stitch --video` |
|
|
206
|
+
| Adicionar UI library | `/stitch --shadcn [componente]` |
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## ⚠️ REGRAS IMPORTANTES
|
|
211
|
+
|
|
212
|
+
1. **Sempre ler a skill antes de usar** - Cada skill tem instruções detalhadas
|
|
213
|
+
2. **DESIGN.md é central** - A maioria das skills depende dele
|
|
214
|
+
3. **Stitch MCP** - Para --loop, precisa do Stitch MCP Server configurado
|
|
215
|
+
4. **Design System primeiro** - Use --design antes de --components
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## 🆘 TROUBLESHOOTING
|
|
220
|
+
|
|
221
|
+
| Problema | Solução |
|
|
222
|
+
|----------|---------|
|
|
223
|
+
| Prompt não gera bom resultado | Use `--prompt` para melhorar |
|
|
224
|
+
| Estilos inconsistentes | Gere/atualize `DESIGN.md` com `--design` |
|
|
225
|
+
| Componentes não validam | Verifique design tokens |
|
|
226
|
+
| Loop não continua | Verifique se `next-prompt.md` foi atualizado |
|