@onion-ai/cli 1.0.0-beta.1
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 +529 -0
- package/bin/onion.js +6 -0
- package/framework/CLAUDE.md +45 -0
- package/framework/VERSION +1 -0
- package/framework/agents/compliance/iso-22301-specialist.md +985 -0
- package/framework/agents/compliance/iso-27001-specialist.md +713 -0
- package/framework/agents/compliance/pmbok-specialist.md +739 -0
- package/framework/agents/compliance/security-information-master.md +907 -0
- package/framework/agents/compliance/soc2-specialist.md +889 -0
- package/framework/agents/deployment/docker-specialist.md +1192 -0
- package/framework/agents/development/c4-architecture-specialist.md +745 -0
- package/framework/agents/development/c4-documentation-specialist.md +695 -0
- package/framework/agents/development/clickup-specialist.md +396 -0
- package/framework/agents/development/cursor-specialist.md +277 -0
- package/framework/agents/development/docs-reverse-engineer.md +417 -0
- package/framework/agents/development/gamma-api-specialist.md +1168 -0
- package/framework/agents/development/gitflow-specialist.md +1206 -0
- package/framework/agents/development/linux-security-specialist.md +675 -0
- package/framework/agents/development/mermaid-specialist.md +515 -0
- package/framework/agents/development/nodejs-specialist.md +672 -0
- package/framework/agents/development/nx-migration-specialist.md +866 -0
- package/framework/agents/development/nx-monorepo-specialist.md +618 -0
- package/framework/agents/development/postgres-specialist.md +1123 -0
- package/framework/agents/development/react-developer.md +131 -0
- package/framework/agents/development/runflow-specialist.md +277 -0
- package/framework/agents/development/system-documentation-orchestrator.md +1387 -0
- package/framework/agents/development/task-specialist.md +677 -0
- package/framework/agents/git/branch-code-reviewer.md +225 -0
- package/framework/agents/git/branch-documentation-writer.md +161 -0
- package/framework/agents/git/branch-metaspec-checker.md +67 -0
- package/framework/agents/git/branch-test-planner.md +176 -0
- package/framework/agents/meta/agent-creator-specialist.md +1266 -0
- package/framework/agents/meta/command-creator-specialist.md +1676 -0
- package/framework/agents/meta/metaspec-gate-keeper.md +240 -0
- package/framework/agents/meta/onion.md +824 -0
- package/framework/agents/product/branding-positioning-specialist.md +1029 -0
- package/framework/agents/product/extract-meeting-specialist.md +394 -0
- package/framework/agents/product/meeting-consolidator.md +482 -0
- package/framework/agents/product/pain-price-specialist.md +508 -0
- package/framework/agents/product/presentation-orchestrator.md +1190 -0
- package/framework/agents/product/product-agent.md +201 -0
- package/framework/agents/product/story-points-framework-specialist.md +538 -0
- package/framework/agents/product/storytelling-business-specialist.md +890 -0
- package/framework/agents/research/research-agent.md +292 -0
- package/framework/agents/review/code-reviewer.md +154 -0
- package/framework/agents/review/corporate-compliance-specialist.md +370 -0
- package/framework/agents/testing/test-agent.md +424 -0
- package/framework/agents/testing/test-engineer.md +294 -0
- package/framework/agents/testing/test-planner.md +117 -0
- package/framework/commands/common/prompts/README.md +208 -0
- package/framework/commands/common/prompts/clickup-patterns.md +144 -0
- package/framework/commands/common/prompts/code-review-checklist.md +168 -0
- package/framework/commands/common/prompts/git-workflow-patterns.md +235 -0
- package/framework/commands/common/prompts/output-formats.md +240 -0
- package/framework/commands/common/prompts/technical.md +194 -0
- package/framework/commands/common/templates/abstraction-template.md +399 -0
- package/framework/commands/common/templates/agent-template.md +353 -0
- package/framework/commands/common/templates/business_context_template.md +748 -0
- package/framework/commands/common/templates/command-template.md +273 -0
- package/framework/commands/common/templates/technical_context_template.md +526 -0
- package/framework/commands/design/screen-spec.md +505 -0
- package/framework/commands/development/runflow-dev.md +465 -0
- package/framework/commands/docs/build-business-docs.md +299 -0
- package/framework/commands/docs/build-compliance-docs.md +143 -0
- package/framework/commands/docs/build-index.md +119 -0
- package/framework/commands/docs/build-tech-docs.md +221 -0
- package/framework/commands/docs/docs-health.md +141 -0
- package/framework/commands/docs/help.md +278 -0
- package/framework/commands/docs/refine-vision.md +25 -0
- package/framework/commands/docs/reverse-consolidate.md +158 -0
- package/framework/commands/docs/sync-sessions.md +354 -0
- package/framework/commands/docs/validate-docs.md +157 -0
- package/framework/commands/engineer/bump.md +29 -0
- package/framework/commands/engineer/docs.md +11 -0
- package/framework/commands/engineer/hotfix.md +183 -0
- package/framework/commands/engineer/plan.md +85 -0
- package/framework/commands/engineer/pr-update.md +219 -0
- package/framework/commands/engineer/pr.md +117 -0
- package/framework/commands/engineer/pre-pr.md +81 -0
- package/framework/commands/engineer/start.md +254 -0
- package/framework/commands/engineer/validate-phase-sync.md +134 -0
- package/framework/commands/engineer/warm-up.md +20 -0
- package/framework/commands/engineer/work.md +155 -0
- package/framework/commands/f/company-context-extractor.md +93 -0
- package/framework/commands/f/process-meetings.md +103 -0
- package/framework/commands/git/README.md +682 -0
- package/framework/commands/git/code-review.md +213 -0
- package/framework/commands/git/fast-commit.md +43 -0
- package/framework/commands/git/feature/finish.md +88 -0
- package/framework/commands/git/feature/publish.md +89 -0
- package/framework/commands/git/feature/start.md +172 -0
- package/framework/commands/git/help.md +100 -0
- package/framework/commands/git/hotfix/finish.md +96 -0
- package/framework/commands/git/hotfix/start.md +92 -0
- package/framework/commands/git/init.md +111 -0
- package/framework/commands/git/release/finish.md +96 -0
- package/framework/commands/git/release/start.md +93 -0
- package/framework/commands/git/sync.md +199 -0
- package/framework/commands/meta/all-tools.md +58 -0
- package/framework/commands/meta/analyze-complex-problem.md +186 -0
- package/framework/commands/meta/create-abstraction.md +882 -0
- package/framework/commands/meta/create-agent-express.md +98 -0
- package/framework/commands/meta/create-agent.md +210 -0
- package/framework/commands/meta/create-command.md +203 -0
- package/framework/commands/meta/create-knowledge-base.md +143 -0
- package/framework/commands/meta/create-task-structure.md +150 -0
- package/framework/commands/meta/setup-integration.md +274 -0
- package/framework/commands/onion.md +169 -0
- package/framework/commands/product/README.md +249 -0
- package/framework/commands/product/analyze-pain-price.md +694 -0
- package/framework/commands/product/branding.md +458 -0
- package/framework/commands/product/check.md +46 -0
- package/framework/commands/product/checklist-sync.md +239 -0
- package/framework/commands/product/collect.md +95 -0
- package/framework/commands/product/consolidate-meetings.md +291 -0
- package/framework/commands/product/estimate.md +511 -0
- package/framework/commands/product/extract-meeting.md +226 -0
- package/framework/commands/product/feature.md +416 -0
- package/framework/commands/product/light-arch.md +82 -0
- package/framework/commands/product/presentation.md +174 -0
- package/framework/commands/product/refine.md +161 -0
- package/framework/commands/product/spec.md +79 -0
- package/framework/commands/product/task-check.md +378 -0
- package/framework/commands/product/task.md +603 -0
- package/framework/commands/product/validate-task.md +325 -0
- package/framework/commands/product/warm-up.md +24 -0
- package/framework/commands/quick/analisys.md +17 -0
- package/framework/commands/test/e2e.md +377 -0
- package/framework/commands/test/integration.md +508 -0
- package/framework/commands/test/unit.md +381 -0
- package/framework/commands/validate/collab/pair-testing.md +657 -0
- package/framework/commands/validate/collab/three-amigos.md +534 -0
- package/framework/commands/validate/qa-points/estimate.md +660 -0
- package/framework/commands/validate/test-strategy/analyze.md +1201 -0
- package/framework/commands/validate/test-strategy/create.md +411 -0
- package/framework/commands/validate/workflow.md +370 -0
- package/framework/commands/warm-up.md +20 -0
- package/framework/docs/architecture/acoplamento-clickup-problema-analise.md +468 -0
- package/framework/docs/architecture/desacoplamento-roadmap.md +364 -0
- package/framework/docs/architecture/validacao-fase-1.md +235 -0
- package/framework/docs/c4/c4-detection-rules.md +395 -0
- package/framework/docs/c4/c4-documentation-templates.md +579 -0
- package/framework/docs/c4/c4-mermaid-patterns.md +331 -0
- package/framework/docs/c4/c4-templates.md +256 -0
- package/framework/docs/clickup/clickup-acceptance-criteria-strategy.md +329 -0
- package/framework/docs/clickup/clickup-auto-update-strategy.md +340 -0
- package/framework/docs/clickup/clickup-comment-formatter.md +239 -0
- package/framework/docs/clickup/clickup-description-fix.md +384 -0
- package/framework/docs/clickup/clickup-dual-comment-strategy.md +528 -0
- package/framework/docs/clickup/clickup-formatting.md +302 -0
- package/framework/docs/clickup/separador-tamanho-otimizado.md +258 -0
- package/framework/docs/engineer/pre-pr-acceptance-validation.md +256 -0
- package/framework/docs/onion/ESPERANTO.md +293 -0
- package/framework/docs/onion/agents-reference.md +832 -0
- package/framework/docs/onion/clickup-integration.md +780 -0
- package/framework/docs/onion/commands-guide.md +924 -0
- package/framework/docs/onion/engineering-flows.md +900 -0
- package/framework/docs/onion/getting-started.md +803 -0
- package/framework/docs/onion/maintenance-checklist.md +421 -0
- package/framework/docs/onion/naming-conventions.md +286 -0
- package/framework/docs/onion/practical-examples.md +854 -0
- package/framework/docs/product/story-points-integration.md +269 -0
- package/framework/docs/product/story-points-validation.md +237 -0
- package/framework/docs/reviews/task-manager-docs-review-2025-11-24.md +184 -0
- package/framework/docs/strategies/clickup-comment-patterns.md +766 -0
- package/framework/docs/strategies/clickup-integration-tests.md +602 -0
- package/framework/docs/strategies/clickup-mcp-wrappers-tests.md +888 -0
- package/framework/docs/strategies/clickup-regression-tests.md +587 -0
- package/framework/docs/strategies/visual-patterns.md +315 -0
- package/framework/docs/templates/README.md +649 -0
- package/framework/docs/templates/adr-template.md +226 -0
- package/framework/docs/templates/analysis-template.md +280 -0
- package/framework/docs/templates/execution-plan-template.md +430 -0
- package/framework/docs/templates/guide-template.md +367 -0
- package/framework/docs/templates/phase-execution-prompt-template.md +504 -0
- package/framework/docs/templates/reference-template.md +522 -0
- package/framework/docs/templates/solution-template.md +390 -0
- package/framework/docs/tools/README.md +356 -0
- package/framework/docs/tools/agents.md +365 -0
- package/framework/docs/tools/commands.md +669 -0
- package/framework/docs/tools/cursor.md +539 -0
- package/framework/docs/tools/mcps.md +937 -0
- package/framework/docs/tools/rules.md +461 -0
- package/framework/rules/language-and-documentation.mdc +371 -0
- package/framework/rules/nestjs-controllers.md +83 -0
- package/framework/rules/nestjs-dtos.md +255 -0
- package/framework/rules/nestjs-modules.md +141 -0
- package/framework/rules/nestjs-services.md +230 -0
- package/framework/rules/nx-rules.mdc +41 -0
- package/framework/rules/onion-patterns.mdc +197 -0
- package/framework/skills/codebase-visualizer/SKILL.md +26 -0
- package/framework/skills/codebase-visualizer/scripts/visualize.py +131 -0
- package/framework/skills/collect/SKILL.md +84 -0
- package/framework/skills/create-rule/SKILL.md +152 -0
- package/framework/skills/db-schema-visualizer/SKILL.md +49 -0
- package/framework/skills/db-schema-visualizer/scripts/visualize.py +1191 -0
- package/framework/skills/sync-meetings/SKILL.md +239 -0
- package/framework/utils/clickup-mcp-wrappers.md +744 -0
- package/framework/utils/date-time-standards.md +200 -0
- package/framework/utils/task-manager/README.md +94 -0
- package/framework/utils/task-manager/adapters/asana.md +377 -0
- package/framework/utils/task-manager/adapters/clickup.md +467 -0
- package/framework/utils/task-manager/adapters/linear.md +421 -0
- package/framework/utils/task-manager/detector.md +299 -0
- package/framework/utils/task-manager/factory.md +363 -0
- package/framework/utils/task-manager/interface.md +248 -0
- package/framework/utils/task-manager/types.md +409 -0
- package/package.json +41 -0
- package/src/cli.js +73 -0
- package/src/commands/doctor.js +191 -0
- package/src/commands/init.js +287 -0
- package/src/commands/install.js +261 -0
- package/src/commands/list.js +152 -0
- package/src/commands/uninstall.js +90 -0
- package/src/commands/update.js +26 -0
- package/src/utils/fs.js +89 -0
- package/src/utils/log.js +35 -0
- package/src/utils/paths.js +32 -0
- package/src/utils/prompt.js +76 -0
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
# 🛠️ Documentação de Ferramentas - Sistema Onion
|
|
2
|
+
|
|
3
|
+
> Documentação completa de todas as ferramentas disponíveis no contexto do Cursor IDE organizadas por categoria.
|
|
4
|
+
|
|
5
|
+
## 📑 Índice Geral
|
|
6
|
+
|
|
7
|
+
### 🔌 [Ferramentas MCP](./mcps.md)
|
|
8
|
+
|
|
9
|
+
Integrações com Model Context Protocol - ClickUp, Postman, Nx
|
|
10
|
+
|
|
11
|
+
- **50+ funções** para gestão de projeto e workflow
|
|
12
|
+
- Integração completa com ClickUp (tasks, time tracking, docs)
|
|
13
|
+
- Postman API management (collections, mocks, monitors)
|
|
14
|
+
- Nx monorepo tools (generators, CI/CD)
|
|
15
|
+
|
|
16
|
+
### 🤖 [Agentes Especializados](./agents.md)
|
|
17
|
+
|
|
18
|
+
14+ agentes de IA especializados para tarefas específicas
|
|
19
|
+
|
|
20
|
+
- Gestão de Produto (@product-agent, @clickup-specialist)
|
|
21
|
+
- Desenvolvimento (@react-developer, @python-developer)
|
|
22
|
+
- Qualidade (@code-reviewer, @test-engineer)
|
|
23
|
+
- Arquitetura (@metaspec-gate-keeper)
|
|
24
|
+
|
|
25
|
+
### 📋 [Comandos .claude/](./commands.md)
|
|
26
|
+
|
|
27
|
+
46 comandos organizados em workflows automatizados
|
|
28
|
+
|
|
29
|
+
- **Product Workflow** (10 comandos) - Feature planning, specs
|
|
30
|
+
- **Engineer Workflow** (11 comandos) - Development, PR, versioning
|
|
31
|
+
- **Git Workflow** (11 comandos) - Feature/Release/Hotfix flows
|
|
32
|
+
- **Documentation** (9 comandos) - Docs generation & validation
|
|
33
|
+
|
|
34
|
+
### ⚙️ [Regras e Configurações](./rules.md)
|
|
35
|
+
|
|
36
|
+
Regras do workspace, padrões e convenções
|
|
37
|
+
|
|
38
|
+
- Convenções de linguagem (EN code, PT-BR docs)
|
|
39
|
+
- Estrutura de projeto
|
|
40
|
+
- Formatação ClickUp (Markdown vs Unicode)
|
|
41
|
+
- Padrões de código e testes
|
|
42
|
+
|
|
43
|
+
### 🛠️ [Ferramentas Core do Cursor](./cursor.md)
|
|
44
|
+
|
|
45
|
+
Ferramentas fundamentais do Cursor IDE
|
|
46
|
+
|
|
47
|
+
- Operações de codebase (search, read, edit)
|
|
48
|
+
- File operations (create, update, delete)
|
|
49
|
+
- Terminal commands
|
|
50
|
+
- Grep/search avançado
|
|
51
|
+
- Linting & validation
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## 🎯 Guia Rápido de Uso
|
|
56
|
+
|
|
57
|
+
### Por Tipo de Tarefa
|
|
58
|
+
|
|
59
|
+
| Preciso... | Use... |
|
|
60
|
+
| --------------------------- | ----------------------------------------------- |
|
|
61
|
+
| 🎯 Planejar feature | `@product-agent` + `/product/feature` |
|
|
62
|
+
| ✅ Criar task ClickUp | `mcp_ClickUp_clickup_create_task` |
|
|
63
|
+
| 💻 Desenvolver código | `@react-developer` ou `@python-developer` |
|
|
64
|
+
| 🔍 Buscar no código | `codebase_search` (semântico) ou `grep` (exato) |
|
|
65
|
+
| 📝 Editar arquivo | `search_replace` |
|
|
66
|
+
| 🧪 Criar testes | `@test-engineer` |
|
|
67
|
+
| 👀 Review código | `@code-reviewer` + `/git/code-review` |
|
|
68
|
+
| 🚀 Fazer deploy | `@deployment-specialist` |
|
|
69
|
+
| 📚 Gerar docs | `/docs/build-tech-docs` |
|
|
70
|
+
| 🔧 Problema técnico ClickUp | `@clickup-specialist` |
|
|
71
|
+
| ⚙️ Problema Cursor IDE | `@cursor-specialist` |
|
|
72
|
+
|
|
73
|
+
### Por Fase do Projeto
|
|
74
|
+
|
|
75
|
+
#### 1️⃣ Discovery & Planning
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
@product-agent # Consultar especialista
|
|
79
|
+
/product/feature # Iniciar planejamento
|
|
80
|
+
mcp_ClickUp_clickup_create_task # Criar task
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
#### 2️⃣ Development
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
/engineer/start # Setup sessão
|
|
87
|
+
@react-developer # Consultar especialista
|
|
88
|
+
codebase_search() # Explorar código
|
|
89
|
+
search_replace() # Editar código
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
#### 3️⃣ Testing & Review
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
@test-engineer # Criar testes
|
|
96
|
+
/engineer/pre-pr # Validar
|
|
97
|
+
@code-reviewer # Review
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
#### 4️⃣ Integration & Deploy
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
/engineer/pr # Criar PR
|
|
104
|
+
/git/feature/finish # Merge
|
|
105
|
+
@deployment-specialist # Deploy
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## 📊 Estatísticas
|
|
111
|
+
|
|
112
|
+
### Por Categoria
|
|
113
|
+
|
|
114
|
+
| Categoria | Quantidade | Uso Principal |
|
|
115
|
+
| ----------------- | --------------- | ------------------------------ |
|
|
116
|
+
| **MCP - ClickUp** | 50+ funções | Gestão de tasks, time tracking |
|
|
117
|
+
| **MCP - Postman** | 30+ funções | API management, testing |
|
|
118
|
+
| **MCP - Nx** | 10+ funções | Monorepo, generators, CI/CD |
|
|
119
|
+
| **Agentes** | 14+ agentes | Especialização em tarefas |
|
|
120
|
+
| **Comandos** | 46 comandos | Workflows automatizados |
|
|
121
|
+
| **Core Tools** | 15+ ferramentas | Operações fundamentais IDE |
|
|
122
|
+
|
|
123
|
+
### Mais Utilizados
|
|
124
|
+
|
|
125
|
+
#### Ferramentas MCP
|
|
126
|
+
|
|
127
|
+
1. `mcp_ClickUp_clickup_create_task`
|
|
128
|
+
2. `mcp_ClickUp_clickup_search`
|
|
129
|
+
3. `mcp_ClickUp_clickup_update_task`
|
|
130
|
+
4. `mcp_ClickUp_clickup_create_task_comment`
|
|
131
|
+
5. `mcp_ClickUp_clickup_get_task`
|
|
132
|
+
|
|
133
|
+
#### Agentes
|
|
134
|
+
|
|
135
|
+
1. `@product-agent`
|
|
136
|
+
2. `@react-developer`
|
|
137
|
+
3. `@code-reviewer`
|
|
138
|
+
4. `@clickup-specialist`
|
|
139
|
+
5. `@test-engineer`
|
|
140
|
+
|
|
141
|
+
#### Comandos
|
|
142
|
+
|
|
143
|
+
1. `/engineer/work`
|
|
144
|
+
2. `/product/feature`
|
|
145
|
+
3. `/git/feature/start`
|
|
146
|
+
4. `/engineer/pr`
|
|
147
|
+
5. `/docs/build-tech-docs`
|
|
148
|
+
|
|
149
|
+
#### Core Tools
|
|
150
|
+
|
|
151
|
+
1. `codebase_search`
|
|
152
|
+
2. `read_file`
|
|
153
|
+
3. `search_replace`
|
|
154
|
+
4. `grep`
|
|
155
|
+
5. `run_terminal_cmd`
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## 🎓 Melhores Práticas
|
|
160
|
+
|
|
161
|
+
### ✅ Fazer
|
|
162
|
+
|
|
163
|
+
1. **Use agentes especializados** para tarefas específicas
|
|
164
|
+
|
|
165
|
+
```markdown
|
|
166
|
+
@product-agent planeje feature de autenticação
|
|
167
|
+
@react-developer implemente componente
|
|
168
|
+
@test-engineer crie os testes
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
2. **Combine ferramentas** para workflows completos
|
|
172
|
+
|
|
173
|
+
```typescript
|
|
174
|
+
// 1. Buscar contexto
|
|
175
|
+
codebase_search({query: "Como funciona autenticação?"})
|
|
176
|
+
|
|
177
|
+
// 2. Criar task
|
|
178
|
+
mcp_ClickUp_clickup_create_task({name: "Implementar JWT"})
|
|
179
|
+
|
|
180
|
+
// 3. Desenvolver
|
|
181
|
+
search_replace({file_path: "auth/service.ts", ...})
|
|
182
|
+
|
|
183
|
+
// 4. Documentar
|
|
184
|
+
mcp_ClickUp_clickup_create_task_comment({...})
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
3. **Siga workflows estabelecidos** para consistência
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
/product/feature → /engineer/start → /engineer/work → /engineer/pr
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
4. **Paralelizar operações** independentes
|
|
194
|
+
```typescript
|
|
195
|
+
Promise.all([
|
|
196
|
+
read_file({ target_file: 'file1.ts' }),
|
|
197
|
+
read_file({ target_file: 'file2.ts' }),
|
|
198
|
+
read_file({ target_file: 'file3.ts' }),
|
|
199
|
+
]);
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
### ❌ Evitar
|
|
203
|
+
|
|
204
|
+
1. ❌ Usar ferramentas genéricas quando há especializadas
|
|
205
|
+
- Prefira `@clickup-specialist` a perguntas gerais sobre ClickUp
|
|
206
|
+
- Use `codebase_search` em vez de grep para busca semântica
|
|
207
|
+
|
|
208
|
+
2. ❌ Pular etapas de validação
|
|
209
|
+
- Sempre use `/engineer/pre-pr` antes de PR
|
|
210
|
+
- Valide com `@metaspec-gate-keeper` mudanças arquiteturais
|
|
211
|
+
|
|
212
|
+
3. ❌ Criar arquivos temporários sem cleanup
|
|
213
|
+
- Delete scripts helper após uso
|
|
214
|
+
- Mantenha workspace limpo
|
|
215
|
+
|
|
216
|
+
4. ❌ Misturar idiomas
|
|
217
|
+
- Código sempre em inglês
|
|
218
|
+
- Comentários e commits em português
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## 🔗 Links Rápidos
|
|
223
|
+
|
|
224
|
+
### Documentação Detalhada
|
|
225
|
+
|
|
226
|
+
- [🔌 MCP Tools (ClickUp, Postman, Nx)](./mcps.md)
|
|
227
|
+
- [🤖 Agentes Especializados](./agents.md)
|
|
228
|
+
- [📋 Comandos .claude/](./commands.md)
|
|
229
|
+
- [⚙️ Regras e Configurações](./rules.md)
|
|
230
|
+
- [🛠️ Ferramentas Core](./cursor.md)
|
|
231
|
+
|
|
232
|
+
### Recursos Externos
|
|
233
|
+
|
|
234
|
+
- [ClickUp API Docs](https://clickup.com/api)
|
|
235
|
+
- [Postman API Docs](https://www.postman.com/postman/workspace/postman-public-workspace/documentation/12959542-c8142d51-e97c-46b6-bd77-52bb66712c9a)
|
|
236
|
+
- [Nx Documentation](https://nx.dev)
|
|
237
|
+
- [Cursor IDE Documentation](https://cursor.sh/docs)
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
## 🆘 Precisa de Ajuda?
|
|
242
|
+
|
|
243
|
+
### Por Tipo de Problema
|
|
244
|
+
|
|
245
|
+
| Problema | Solução |
|
|
246
|
+
| ------------------------- | ----------------------- |
|
|
247
|
+
| 🔌 Erro ClickUp MCP | `@clickup-specialist` |
|
|
248
|
+
| 🖥️ Problema Cursor IDE | `@cursor-specialist` |
|
|
249
|
+
| 💻 Dúvida técnica React | `@react-developer` |
|
|
250
|
+
| 🐍 Dúvida técnica Python | `@python-developer` |
|
|
251
|
+
| 🏗️ Validação arquitetura | `@metaspec-gate-keeper` |
|
|
252
|
+
| 📝 Ajuda com documentação | `/docs/help` |
|
|
253
|
+
| 🔀 Ajuda com Git | `/git/help` |
|
|
254
|
+
| 🔍 Pesquisa geral | `@research-agent` |
|
|
255
|
+
|
|
256
|
+
### Comandos de Ajuda
|
|
257
|
+
|
|
258
|
+
```bash
|
|
259
|
+
/docs/help # Comandos de documentação
|
|
260
|
+
/git/help # Comandos Git
|
|
261
|
+
/product/README # Workflow de produto
|
|
262
|
+
/engineer/README # Workflow de engenharia
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
267
|
+
## 🚀 Começando
|
|
268
|
+
|
|
269
|
+
### Setup Inicial
|
|
270
|
+
|
|
271
|
+
1. ✅ Verifique regras do workspace em [rules.md](./rules.md)
|
|
272
|
+
2. ✅ Explore comandos disponíveis em [commands.md](./commands.md)
|
|
273
|
+
3. ✅ Conheça os agentes em [agents.md](./agents.md)
|
|
274
|
+
4. ✅ Configure integrações MCP em [mcps.md](./mcps.md)
|
|
275
|
+
|
|
276
|
+
### Primeira Feature
|
|
277
|
+
|
|
278
|
+
```bash
|
|
279
|
+
# 1. Planeje
|
|
280
|
+
/product/feature
|
|
281
|
+
|
|
282
|
+
# 2. Configure ambiente
|
|
283
|
+
/engineer/start
|
|
284
|
+
|
|
285
|
+
# 3. Desenvolva
|
|
286
|
+
/engineer/work
|
|
287
|
+
|
|
288
|
+
# 4. Finalize
|
|
289
|
+
/engineer/pr
|
|
290
|
+
/git/feature/finish
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
### Warm-up Rápido
|
|
294
|
+
|
|
295
|
+
```bash
|
|
296
|
+
/warm-up # Contexto geral
|
|
297
|
+
/product/warm-up # Contexto de produto
|
|
298
|
+
/engineer/warm-up # Contexto técnico
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
---
|
|
302
|
+
|
|
303
|
+
## 📈 Roadmap
|
|
304
|
+
|
|
305
|
+
### Próximas Adições
|
|
306
|
+
|
|
307
|
+
- [ ] Workflows de deployment
|
|
308
|
+
- [ ] Mais templates de documentação
|
|
309
|
+
- [ ] Automações de CI/CD
|
|
310
|
+
- [ ] Integrações adicionais MCP
|
|
311
|
+
|
|
312
|
+
### Melhorias Planejadas
|
|
313
|
+
|
|
314
|
+
- [ ] Otimização de performance
|
|
315
|
+
- [ ] Mais exemplos práticos
|
|
316
|
+
- [ ] Troubleshooting guides
|
|
317
|
+
- [ ] Video tutorials
|
|
318
|
+
|
|
319
|
+
---
|
|
320
|
+
|
|
321
|
+
## 🎉 Contribuindo
|
|
322
|
+
|
|
323
|
+
Esta documentação é viva e evolui com o projeto. Para sugestões:
|
|
324
|
+
|
|
325
|
+
1. Use `@product-agent` para planejar melhorias
|
|
326
|
+
2. Documente mudanças em `/docs/`
|
|
327
|
+
3. Mantenha sincronizado com código
|
|
328
|
+
|
|
329
|
+
---
|
|
330
|
+
|
|
331
|
+
## 📝 Notas da Versão
|
|
332
|
+
|
|
333
|
+
### v1.0.1 - Atualização (2025-01-27)
|
|
334
|
+
|
|
335
|
+
- ✅ Adicionadas ferramentas MCP gerais (list_mcp_resources, fetch_mcp_resource)
|
|
336
|
+
- ✅ Validação completa de todas as ferramentas disponíveis
|
|
337
|
+
- ✅ Documentação sincronizada com contexto atual
|
|
338
|
+
|
|
339
|
+
### v1.0.0 - Setup Inicial (2025-01-27)
|
|
340
|
+
|
|
341
|
+
- ✅ 50+ ferramentas MCP documentadas
|
|
342
|
+
- ✅ 14+ agentes especializados catalogados
|
|
343
|
+
- ✅ 46 comandos organizados por categoria
|
|
344
|
+
- ✅ Guias de uso e melhores práticas
|
|
345
|
+
- ✅ Índice central de recursos
|
|
346
|
+
|
|
347
|
+
---
|
|
348
|
+
|
|
349
|
+
<div align="center">
|
|
350
|
+
|
|
351
|
+
**Sistema Onion** 🧅
|
|
352
|
+
_Eficiência • Qualidade • Automação Inteligente_
|
|
353
|
+
|
|
354
|
+
[Início](#-documentação-de-ferramentas---sistema-onion) • [MCP](./mcps.md) • [Agentes](./agents.md) • [Comandos](./commands.md) • [Regras](./rules.md) • [Core](./cursor.md)
|
|
355
|
+
|
|
356
|
+
</div>
|
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
# 🤖 Agentes Especializados
|
|
2
|
+
|
|
3
|
+
## 📑 Índice
|
|
4
|
+
|
|
5
|
+
- [Gestão de Produto](#gestão-de-produto)
|
|
6
|
+
- [Desenvolvimento](#desenvolvimento)
|
|
7
|
+
- [Qualidade e Review](#qualidade-e-review)
|
|
8
|
+
- [Compliance e Meta](#compliance-e-meta)
|
|
9
|
+
- [Pesquisa e Dados](#pesquisa-e-dados)
|
|
10
|
+
- [Deployment](#deployment)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Gestão de Produto
|
|
15
|
+
|
|
16
|
+
### `@product-agent`
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
agent: 'product-agent';
|
|
20
|
+
// Propósito: Gestor estratégico de produto - planejamento, roadmap, integração ClickUp
|
|
21
|
+
// Especialidades: Product strategy, backlog management, stakeholder communication
|
|
22
|
+
// Quando usar: Planejamento de features, priorização, gestão de tasks no ClickUp
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**Capacidades:**
|
|
26
|
+
|
|
27
|
+
- 📋 Criação e gestão de tasks no ClickUp
|
|
28
|
+
- 🎯 Definição de roadmap e prioridades
|
|
29
|
+
- 📊 Análise de métricas de produto
|
|
30
|
+
- 🔄 Sincronização entre desenvolvimento e negócio
|
|
31
|
+
- 📝 Documentação de requisitos
|
|
32
|
+
|
|
33
|
+
**Workflows:**
|
|
34
|
+
|
|
35
|
+
- `/product/plan-feature` - Planeja nova feature
|
|
36
|
+
- `/product/review-backlog` - Revisa backlog
|
|
37
|
+
- `/product/update-roadmap` - Atualiza roadmap
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Desenvolvimento
|
|
42
|
+
|
|
43
|
+
### `@react-developer`
|
|
44
|
+
|
|
45
|
+
```typescript
|
|
46
|
+
agent: 'react-developer';
|
|
47
|
+
// Propósito: Especialista em desenvolvimento React/Next.js
|
|
48
|
+
// Especialidades: React, TypeScript, Next.js, TailwindCSS, hooks, performance
|
|
49
|
+
// Quando usar: Desenvolvimento de componentes, features React, otimizações frontend
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**Capacidades:**
|
|
53
|
+
|
|
54
|
+
- ⚛️ Componentes React modernos (hooks, context)
|
|
55
|
+
- 🎨 Estilização com TailwindCSS
|
|
56
|
+
- 🚀 Otimização de performance
|
|
57
|
+
- 📱 Responsive design
|
|
58
|
+
- ♿ Acessibilidade (a11y)
|
|
59
|
+
|
|
60
|
+
### `@python-developer`
|
|
61
|
+
|
|
62
|
+
```typescript
|
|
63
|
+
agent: 'python-developer';
|
|
64
|
+
// Propósito: Especialista em desenvolvimento Python
|
|
65
|
+
// Especialidades: Python 3.x, FastAPI, Django, async/await, data processing
|
|
66
|
+
// Quando usar: Backend Python, APIs, scripts, processamento de dados
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
**Capacidades:**
|
|
70
|
+
|
|
71
|
+
- 🐍 Python moderno (3.10+)
|
|
72
|
+
- 🚀 APIs com FastAPI/Django
|
|
73
|
+
- 📊 Processamento de dados
|
|
74
|
+
- 🔄 Programação assíncrona
|
|
75
|
+
- 🧪 Testes com pytest
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## Qualidade e Review
|
|
80
|
+
|
|
81
|
+
### `@code-reviewer`
|
|
82
|
+
|
|
83
|
+
```typescript
|
|
84
|
+
agent: 'code-reviewer';
|
|
85
|
+
// Propósito: Revisor de código - qualidade, padrões, best practices
|
|
86
|
+
// Especialidades: Code review, refactoring, performance analysis
|
|
87
|
+
// Quando usar: Review de PRs, análise de qualidade, sugestões de melhorias
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
**Capacidades:**
|
|
91
|
+
|
|
92
|
+
- 🔍 Análise de qualidade de código
|
|
93
|
+
- 📐 Verificação de padrões
|
|
94
|
+
- 🎯 Sugestões de refactoring
|
|
95
|
+
- 🐛 Identificação de bugs potenciais
|
|
96
|
+
- 📊 Análise de complexidade
|
|
97
|
+
|
|
98
|
+
### `@branch-code-reviewer`
|
|
99
|
+
|
|
100
|
+
```typescript
|
|
101
|
+
agent: 'branch-code-reviewer';
|
|
102
|
+
// Propósito: Revisor especializado em mudanças de branch
|
|
103
|
+
// Especialidades: Git diff analysis, branch comparison, merge conflicts
|
|
104
|
+
// Quando usar: Review de branches antes de merge, análise de conflitos
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
**Capacidades:**
|
|
108
|
+
|
|
109
|
+
- 🌿 Análise de diff entre branches
|
|
110
|
+
- 🔀 Detecção de conflitos
|
|
111
|
+
- 📝 Sugestões de merge
|
|
112
|
+
- 🎯 Foco em mudanças específicas
|
|
113
|
+
|
|
114
|
+
### `@test-engineer`
|
|
115
|
+
|
|
116
|
+
```typescript
|
|
117
|
+
agent: 'test-engineer';
|
|
118
|
+
// Propósito: Engenheiro de testes - strategy, implementation, coverage
|
|
119
|
+
// Especialidades: Unit tests, integration tests, E2E, TDD
|
|
120
|
+
// Quando usar: Criação de testes, estratégia de testing, análise de cobertura
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
**Capacidades:**
|
|
124
|
+
|
|
125
|
+
- 🧪 Testes unitários e integração
|
|
126
|
+
- 🎭 Testes E2E (Playwright, Cypress)
|
|
127
|
+
- 📊 Análise de cobertura
|
|
128
|
+
- 🔄 TDD e BDD
|
|
129
|
+
- 🐛 Testes de regressão
|
|
130
|
+
|
|
131
|
+
### `@test-planner`
|
|
132
|
+
|
|
133
|
+
```typescript
|
|
134
|
+
agent: 'test-planner';
|
|
135
|
+
// Propósito: Planejador de estratégia de testes
|
|
136
|
+
// Especialidades: Test planning, test cases, QA strategy
|
|
137
|
+
// Quando usar: Planejamento de testes para features, definição de casos de teste
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
**Capacidades:**
|
|
141
|
+
|
|
142
|
+
- 📋 Planos de teste
|
|
143
|
+
- 🎯 Casos de teste
|
|
144
|
+
- 📊 Estratégia de QA
|
|
145
|
+
- 📝 Documentação de testes
|
|
146
|
+
|
|
147
|
+
### `@branch-test-planner`
|
|
148
|
+
|
|
149
|
+
```typescript
|
|
150
|
+
agent: 'branch-test-planner';
|
|
151
|
+
// Propósito: Planejador de testes específicos para branch
|
|
152
|
+
// Especialidades: Branch-specific testing, regression testing
|
|
153
|
+
// Quando usar: Planejamento de testes para mudanças específicas de branch
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## Compliance e Meta
|
|
159
|
+
|
|
160
|
+
### `@metaspec-gate-keeper`
|
|
161
|
+
|
|
162
|
+
```typescript
|
|
163
|
+
agent: 'metaspec-gate-keeper';
|
|
164
|
+
// Propósito: Guardian da arquitetura - valida mudanças contra metaspec
|
|
165
|
+
// Especialidades: Architecture validation, metaspec compliance, design patterns
|
|
166
|
+
// Quando usar: Validação de mudanças arquiteturais, review de design decisions
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
**Capacidades:**
|
|
170
|
+
|
|
171
|
+
- 🏛️ Validação arquitetural
|
|
172
|
+
- 📐 Conformidade com metaspec
|
|
173
|
+
- 🎯 Design patterns
|
|
174
|
+
- 🔒 Enforcement de regras
|
|
175
|
+
- 📊 Análise de impacto
|
|
176
|
+
|
|
177
|
+
### `@branch-metaspec-checker`
|
|
178
|
+
|
|
179
|
+
```typescript
|
|
180
|
+
agent: 'branch-metaspec-checker';
|
|
181
|
+
// Propósito: Verificador de metaspec para branches
|
|
182
|
+
// Especialidades: Branch-level architecture validation
|
|
183
|
+
// Quando usar: Verificação de conformidade arquitetural em branches
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## Pesquisa e Dados
|
|
189
|
+
|
|
190
|
+
### `@research-agent`
|
|
191
|
+
|
|
192
|
+
```typescript
|
|
193
|
+
agent: 'research-agent';
|
|
194
|
+
// Propósito: Pesquisador - busca informações, analisa documentação, web search
|
|
195
|
+
// Especialidades: Information retrieval, documentation analysis, web research
|
|
196
|
+
// Quando usar: Pesquisa de tecnologias, análise de docs, busca de soluções
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
**Capacidades:**
|
|
200
|
+
|
|
201
|
+
- 🔍 Web search
|
|
202
|
+
- 📚 Análise de documentação
|
|
203
|
+
- 🎯 Pesquisa de best practices
|
|
204
|
+
- 📊 Comparação de tecnologias
|
|
205
|
+
- 💡 Recomendações baseadas em pesquisa
|
|
206
|
+
|
|
207
|
+
### `@data-analyst`
|
|
208
|
+
|
|
209
|
+
```typescript
|
|
210
|
+
agent: 'data-analyst';
|
|
211
|
+
// Propósito: Analista de dados - análise, visualização, insights
|
|
212
|
+
// Especialidades: Data analysis, visualization, metrics, reporting
|
|
213
|
+
// Quando usar: Análise de métricas, geração de relatórios, insights de dados
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
**Capacidades:**
|
|
217
|
+
|
|
218
|
+
- 📊 Análise de dados
|
|
219
|
+
- 📈 Visualizações
|
|
220
|
+
- 🎯 KPIs e métricas
|
|
221
|
+
- 📝 Relatórios
|
|
222
|
+
- 💡 Insights e recomendações
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
## Deployment
|
|
227
|
+
|
|
228
|
+
### `@deployment-specialist`
|
|
229
|
+
|
|
230
|
+
```typescript
|
|
231
|
+
agent: 'deployment-specialist';
|
|
232
|
+
// Propósito: Especialista em deployment - CI/CD, infrastructure, releases
|
|
233
|
+
// Especialidades: Docker, Kubernetes, CI/CD pipelines, cloud platforms
|
|
234
|
+
// Quando usar: Setup de CI/CD, deployment configurations, release management
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
**Capacidades:**
|
|
238
|
+
|
|
239
|
+
- 🚀 Configuração de CI/CD
|
|
240
|
+
- 🐳 Containerização (Docker)
|
|
241
|
+
- ☸️ Orquestração (Kubernetes)
|
|
242
|
+
- ☁️ Cloud platforms (AWS, GCP, Azure)
|
|
243
|
+
- 📦 Release management
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
## Especialistas Técnicos
|
|
248
|
+
|
|
249
|
+
### `@clickup-specialist`
|
|
250
|
+
|
|
251
|
+
```typescript
|
|
252
|
+
agent: 'clickup-specialist';
|
|
253
|
+
// Propósito: Especialista técnico em ClickUp MCP - otimizações, troubleshooting
|
|
254
|
+
// Especialidades: ClickUp API, MCP integration, automation, optimization
|
|
255
|
+
// Quando usar: Problemas técnicos com ClickUp, otimizações, automações complexas
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
**Capacidades:**
|
|
259
|
+
|
|
260
|
+
- 🔌 Integração ClickUp MCP
|
|
261
|
+
- ⚡ Otimizações de API
|
|
262
|
+
- 🐛 Troubleshooting
|
|
263
|
+
- 🤖 Automações avançadas
|
|
264
|
+
- 📊 Custom fields e workflows
|
|
265
|
+
|
|
266
|
+
### `@cursor-specialist`
|
|
267
|
+
|
|
268
|
+
```typescript
|
|
269
|
+
agent: 'cursor-specialist';
|
|
270
|
+
// Propósito: Especialista em Cursor IDE - configuração, troubleshooting, otimização
|
|
271
|
+
// Especialidades: Cursor configuration, rules, commands, agents setup
|
|
272
|
+
// Quando usar: Problemas com Cursor IDE, configuração de agentes/comandos
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
**Capacidades:**
|
|
276
|
+
|
|
277
|
+
- ⚙️ Configuração do Cursor
|
|
278
|
+
- 📋 Criação de comandos
|
|
279
|
+
- 🤖 Setup de agentes
|
|
280
|
+
- 🔧 Troubleshooting IDE
|
|
281
|
+
- ⚡ Otimizações de performance
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
## Documentação
|
|
286
|
+
|
|
287
|
+
### `@branch-documentation-writer`
|
|
288
|
+
|
|
289
|
+
```typescript
|
|
290
|
+
agent: 'branch-documentation-writer';
|
|
291
|
+
// Propósito: Escritor de documentação para branches
|
|
292
|
+
// Especialidades: Branch documentation, changelog, migration guides
|
|
293
|
+
// Quando usar: Documentação de mudanças em branches, changelogs
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
**Capacidades:**
|
|
297
|
+
|
|
298
|
+
- 📝 Documentação de branches
|
|
299
|
+
- 📋 Changelogs
|
|
300
|
+
- 🔄 Guias de migração
|
|
301
|
+
- 📊 Documentação técnica
|
|
302
|
+
|
|
303
|
+
---
|
|
304
|
+
|
|
305
|
+
## 🎯 Como Escolher o Agente Certo
|
|
306
|
+
|
|
307
|
+
### Por Tipo de Tarefa
|
|
308
|
+
|
|
309
|
+
| Tarefa | Agente Recomendado |
|
|
310
|
+
| ----------------------- | ------------------------ |
|
|
311
|
+
| Planejamento de feature | `@product-agent` |
|
|
312
|
+
| Desenvolvimento React | `@react-developer` |
|
|
313
|
+
| Backend Python | `@python-developer` |
|
|
314
|
+
| Review de código | `@code-reviewer` |
|
|
315
|
+
| Criação de testes | `@test-engineer` |
|
|
316
|
+
| Validação arquitetural | `@metaspec-gate-keeper` |
|
|
317
|
+
| Problemas ClickUp | `@clickup-specialist` |
|
|
318
|
+
| Problemas Cursor | `@cursor-specialist` |
|
|
319
|
+
| Pesquisa técnica | `@research-agent` |
|
|
320
|
+
| Deployment | `@deployment-specialist` |
|
|
321
|
+
|
|
322
|
+
### Por Fase do Desenvolvimento
|
|
323
|
+
|
|
324
|
+
```mermaid
|
|
325
|
+
graph LR
|
|
326
|
+
A[Planning] -->|@product-agent| B[Development]
|
|
327
|
+
B -->|@react-developer/@python-developer| C[Testing]
|
|
328
|
+
C -->|@test-engineer| D[Review]
|
|
329
|
+
D -->|@code-reviewer| E[Validation]
|
|
330
|
+
E -->|@metaspec-gate-keeper| F[Deploy]
|
|
331
|
+
F -->|@deployment-specialist| G[Production]
|
|
332
|
+
```
|
|
333
|
+
|
|
334
|
+
---
|
|
335
|
+
|
|
336
|
+
## 💡 Dicas de Uso
|
|
337
|
+
|
|
338
|
+
### Invocação
|
|
339
|
+
|
|
340
|
+
```markdown
|
|
341
|
+
@product-agent preciso planejar uma nova feature de autenticação
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
### Combinação de Agentes
|
|
345
|
+
|
|
346
|
+
```markdown
|
|
347
|
+
@product-agent crie a task no ClickUp
|
|
348
|
+
@react-developer implemente o componente
|
|
349
|
+
@test-engineer crie os testes
|
|
350
|
+
@code-reviewer revise o código
|
|
351
|
+
```
|
|
352
|
+
|
|
353
|
+
### Contexto Específico
|
|
354
|
+
|
|
355
|
+
```markdown
|
|
356
|
+
@clickup-specialist estou tendo erro ao criar task com custom fields
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
---
|
|
360
|
+
|
|
361
|
+
## 📚 Recursos Relacionados
|
|
362
|
+
|
|
363
|
+
- [Ferramentas MCP](./mcps.md)
|
|
364
|
+
- [Comandos .claude/](./commands.md)
|
|
365
|
+
- [Workflows](./workflows.md)
|