@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,269 @@
|
|
|
1
|
+
# đ Integração AutomĂĄtica de Story Points
|
|
2
|
+
|
|
3
|
+
Documentação da integração automåtica de estimativas de story points nos comandos do Sistema Onion.
|
|
4
|
+
|
|
5
|
+
## đŻ Objetivo
|
|
6
|
+
|
|
7
|
+
Automaticamente calcular e atualizar story points em todas as tarefas criadas ou modificadas pelos comandos do Sistema Onion, garantindo:
|
|
8
|
+
|
|
9
|
+
- Estimativas precisas baseadas no Framework de Story Points
|
|
10
|
+
- Rastreabilidade de mudanças (histórico)
|
|
11
|
+
- ConsistĂȘncia entre task principal e subtasks
|
|
12
|
+
- Alertas para épicos (>13 pontos)
|
|
13
|
+
|
|
14
|
+
## đ Comandos Integrados
|
|
15
|
+
|
|
16
|
+
### â
`/product/task`
|
|
17
|
+
|
|
18
|
+
**Quando:** Ao criar task com decomposição hierårquica
|
|
19
|
+
|
|
20
|
+
**AçÔes:**
|
|
21
|
+
|
|
22
|
+
1. Estima story points para **task principal** após decomposição
|
|
23
|
+
2. Estima story points para **cada subtask** individualmente
|
|
24
|
+
3. Valida consistĂȘncia (soma subtasks vs task principal)
|
|
25
|
+
4. Alerta se task > 13 pontos (épico)
|
|
26
|
+
5. Insere estimativas em custom fields e descriçÔes
|
|
27
|
+
6. Adiciona comentĂĄrio com anĂĄlise completa
|
|
28
|
+
|
|
29
|
+
**Output:**
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
đČ STORY POINTS:
|
|
33
|
+
â Task Principal: [X] pontos
|
|
34
|
+
â Subtasks: [Y] pontos ([N] subtasks)
|
|
35
|
+
â Total: [Z] pontos
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### â
`/product/collect`
|
|
39
|
+
|
|
40
|
+
**Quando:** Ao coletar nova ideia/feature/bug
|
|
41
|
+
|
|
42
|
+
**AçÔes:**
|
|
43
|
+
|
|
44
|
+
1. Estima story points apĂłs criar task
|
|
45
|
+
2. Atualiza custom field "Story Points"
|
|
46
|
+
3. Adiciona comentĂĄrio com anĂĄlise inicial
|
|
47
|
+
4. Alerta se > 13 pontos (pode precisar refinement)
|
|
48
|
+
|
|
49
|
+
**Nota:** Estimativa inicial pode ser refinada posteriormente.
|
|
50
|
+
|
|
51
|
+
### â
`/product/refine`
|
|
52
|
+
|
|
53
|
+
**Quando:** Ao refinar requisitos de uma task existente
|
|
54
|
+
|
|
55
|
+
**AçÔes:**
|
|
56
|
+
|
|
57
|
+
1. **LĂȘ estimativa anterior** (custom field + comentĂĄrios)
|
|
58
|
+
2. **Recalcula** story points com requisitos refinados
|
|
59
|
+
3. **Compara** estimativa anterior vs nova
|
|
60
|
+
4. **Documenta histórico** de mudanças
|
|
61
|
+
5. **Atualiza** custom field com nova estimativa
|
|
62
|
+
6. **Adiciona comentĂĄrio** com:
|
|
63
|
+
- Estimativa anterior
|
|
64
|
+
- Nova estimativa
|
|
65
|
+
- Delta (mudança)
|
|
66
|
+
- Motivo da mudança
|
|
67
|
+
- AnĂĄlise atualizada
|
|
68
|
+
|
|
69
|
+
**Template de HistĂłrico:**
|
|
70
|
+
|
|
71
|
+
```
|
|
72
|
+
đ HISTĂRICO DE ESTIMATIVAS:
|
|
73
|
+
| Data | Estimativa | Mudança | Motivo |
|
|
74
|
+
|------|------------|---------|--------|
|
|
75
|
+
| [data inicial] | [X] pontos | - | Criação inicial |
|
|
76
|
+
| [data refinamento] | [Y] pontos | [+/-Z] | Refinamento de requisitos |
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### â
`/product/feature`
|
|
80
|
+
|
|
81
|
+
**Quando:** Ao criar feature de backlog
|
|
82
|
+
|
|
83
|
+
**AçÔes:**
|
|
84
|
+
|
|
85
|
+
1. Estima story points apĂłs criar task
|
|
86
|
+
2. Atualiza custom field "Story Points"
|
|
87
|
+
3. Adiciona comentĂĄrio com estimativa inicial
|
|
88
|
+
4. Nota que estimativa pode ser refinada
|
|
89
|
+
|
|
90
|
+
**Nota:** Features de backlog tĂȘm estimativas iniciais para planejamento.
|
|
91
|
+
|
|
92
|
+
## đ§ Agente Utilizado
|
|
93
|
+
|
|
94
|
+
**@story-points-framework-specialist**
|
|
95
|
+
|
|
96
|
+
Este agente Ă© invocado automaticamente pelos comandos para:
|
|
97
|
+
|
|
98
|
+
- AnĂĄlise de domĂnio (tĂ©cnico/negĂłcio/infra/integração)
|
|
99
|
+
- Seleção metodológica (Planning Poker / T-Shirt / Decomposição)
|
|
100
|
+
- Aplicação de checklists (3/5/8/13 pontos)
|
|
101
|
+
- Contextualização por senioridade
|
|
102
|
+
- Detecção de épicos
|
|
103
|
+
|
|
104
|
+
**Base de Conhecimento:**
|
|
105
|
+
|
|
106
|
+
- `docs/knowbase/frameworks/framework_story_points.md`
|
|
107
|
+
|
|
108
|
+
## đ Fluxo de Estimativa
|
|
109
|
+
|
|
110
|
+
### 1. Criação de Task (`/product/task`)
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
1. Decompor hierarquicamente (task â subtasks â action items)
|
|
114
|
+
2. Estimar task principal
|
|
115
|
+
ââ @story-points-framework-specialist
|
|
116
|
+
3. Estimar cada subtask
|
|
117
|
+
ââ @story-points-framework-specialist (para cada)
|
|
118
|
+
4. Validar consistĂȘncia
|
|
119
|
+
ââ Se soma(subtasks) > principal: ajustar
|
|
120
|
+
ââ Se principal > 13: alertar Ă©pico
|
|
121
|
+
5. Criar task com estimativas
|
|
122
|
+
ââ Custom field "Story Points"
|
|
123
|
+
ââ Descrição com anĂĄlise
|
|
124
|
+
ââ ComentĂĄrio inicial
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### 2. Refinamento (`/product/refine`)
|
|
128
|
+
|
|
129
|
+
```
|
|
130
|
+
1. Ler estimativa anterior
|
|
131
|
+
ââ Custom field atual
|
|
132
|
+
ââ ComentĂĄrios anteriores
|
|
133
|
+
2. Recalcular com requisitos refinados
|
|
134
|
+
ââ @story-points-framework-specialist
|
|
135
|
+
3. Comparar e documentar
|
|
136
|
+
ââ Calcular delta
|
|
137
|
+
ââ Identificar mudanças que afetaram
|
|
138
|
+
4. Atualizar task
|
|
139
|
+
ââ Custom field atualizado
|
|
140
|
+
ââ ComentĂĄrio com histĂłrico
|
|
141
|
+
ââ Descrição atualizada
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
## đ Estrutura de Dados
|
|
145
|
+
|
|
146
|
+
### Custom Field "Story Points"
|
|
147
|
+
|
|
148
|
+
- **Tipo:** Number
|
|
149
|
+
- **Localização:** Task principal e subtasks
|
|
150
|
+
- **Atualização:** Automåtica em criação e refinamento
|
|
151
|
+
|
|
152
|
+
### ComentĂĄrios de Estimativa
|
|
153
|
+
|
|
154
|
+
**Formato PadrĂŁo:**
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
158
|
+
đ ESTIMATIVA DE STORY POINTS
|
|
159
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
160
|
+
|
|
161
|
+
đČ Story Points: [X] pontos
|
|
162
|
+
|
|
163
|
+
⥠ANĂLISE:
|
|
164
|
+
â Complexidade: [alta/mĂ©dia/baixa]
|
|
165
|
+
â Risco: [alto/mĂ©dio/baixo]
|
|
166
|
+
â Incerteza: [alta/mĂ©dia/baixa]
|
|
167
|
+
|
|
168
|
+
đĄ RECOMENDAĂĂES:
|
|
169
|
+
[lista de recomendaçÔes]
|
|
170
|
+
|
|
171
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
**Formato de HistĂłrico (Refine):**
|
|
175
|
+
|
|
176
|
+
```
|
|
177
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
178
|
+
đ ESTIMATIVA ATUALIZADA APĂS REFINAMENTO
|
|
179
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
180
|
+
|
|
181
|
+
đ
Data: [data]
|
|
182
|
+
|
|
183
|
+
đ HISTĂRICO:
|
|
184
|
+
â Estimativa anterior: [X] pontos
|
|
185
|
+
â Nova estimativa: [Y] pontos
|
|
186
|
+
â Mudança: [+/-Z] pontos
|
|
187
|
+
|
|
188
|
+
đ MUDANĂAS QUE AFETARAM A ESTIMATIVA:
|
|
189
|
+
- [mudança 1]
|
|
190
|
+
- [mudança 2]
|
|
191
|
+
|
|
192
|
+
đĄ RECOMENDAĂĂES:
|
|
193
|
+
[recomendaçÔes atualizadas]
|
|
194
|
+
|
|
195
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
## â ïž Regras e ValidaçÔes
|
|
199
|
+
|
|
200
|
+
### Validação de ConsistĂȘncia
|
|
201
|
+
|
|
202
|
+
**Regra:** Soma das subtasks nĂŁo deve ser muito diferente da task principal
|
|
203
|
+
|
|
204
|
+
```typescript
|
|
205
|
+
if (sum(subtasks) > mainTask * 1.5) {
|
|
206
|
+
// Ajustar task principal para soma das subtasks
|
|
207
|
+
mainTask = sum(subtasks);
|
|
208
|
+
log('â ïž Ajustada estimativa da task principal para consistĂȘncia');
|
|
209
|
+
}
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
### Detecção de Ăpicos
|
|
213
|
+
|
|
214
|
+
**Regra:** Tasks > 13 pontos devem ser alertadas
|
|
215
|
+
|
|
216
|
+
```typescript
|
|
217
|
+
if (storyPoints > 13) {
|
|
218
|
+
alert('â ïž Task identificada como ĂPICO');
|
|
219
|
+
suggest('Quebrar em mĂșltiplas tasks menores');
|
|
220
|
+
log('Recomendação: usar estratégia de quebra por camadas/funcionalidades');
|
|
221
|
+
}
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
### HistĂłrico ObrigatĂłrio
|
|
225
|
+
|
|
226
|
+
**Regra:** Mudanças de estimativa devem sempre manter histórico
|
|
227
|
+
|
|
228
|
+
```typescript
|
|
229
|
+
const history = {
|
|
230
|
+
date: new Date(),
|
|
231
|
+
previous: previousEstimate,
|
|
232
|
+
current: newEstimate,
|
|
233
|
+
delta: newEstimate - previousEstimate,
|
|
234
|
+
reason: 'Refinamento de requisitos',
|
|
235
|
+
changes: identifiedChanges,
|
|
236
|
+
};
|
|
237
|
+
|
|
238
|
+
// Sempre adicionar ao histĂłrico antes de atualizar
|
|
239
|
+
addToHistory(taskId, history);
|
|
240
|
+
updateEstimate(taskId, newEstimate);
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
## đ Comandos Relacionados
|
|
244
|
+
|
|
245
|
+
- `/product/estimate` - Estimativa manual/standalone
|
|
246
|
+
- `/product/task` - Criação com estimativa automåtica
|
|
247
|
+
- `/product/collect` - Coleta com estimativa inicial
|
|
248
|
+
- `/product/refine` - Refinamento com recalculo automĂĄtico
|
|
249
|
+
- `/product/feature` - Feature backlog com estimativa
|
|
250
|
+
|
|
251
|
+
## đ ReferĂȘncias
|
|
252
|
+
|
|
253
|
+
- **Agente:** @story-points-framework-specialist
|
|
254
|
+
- **Framework:** `docs/knowbase/frameworks/framework_story_points.md`
|
|
255
|
+
- **Comando de Estimativa:** `/product/estimate`
|
|
256
|
+
- **PadrÔes ClickUp:** `.claude/docs/clickup/clickup-auto-update-strategy.md`
|
|
257
|
+
|
|
258
|
+
## đ PrĂłximos Passos
|
|
259
|
+
|
|
260
|
+
1. **Configurar Custom Field:** Garantir que "Story Points" existe no ClickUp/Asana
|
|
261
|
+
2. **Calibrar Baseline:** Estabelecer histĂłrias de referĂȘncia
|
|
262
|
+
3. **Tracking de Velocity:** Implementar dashboard de velocity
|
|
263
|
+
4. **Accuracy Rate:** Calcular precisĂŁo das estimativas ao longo do tempo
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
267
|
+
**VersĂŁo:** 3.0.0
|
|
268
|
+
**Ăltima atualização:** 2025-11-24
|
|
269
|
+
**Mantido por:** Sistema Onion
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
# đČ Validação de Story Points no `/engineer/start`
|
|
2
|
+
|
|
3
|
+
Documentação sobre a validação automåtica de story points antes de iniciar desenvolvimento.
|
|
4
|
+
|
|
5
|
+
## đŻ Objetivo
|
|
6
|
+
|
|
7
|
+
Garantir que tasks tenham estimativas de story points antes de iniciar desenvolvimento, melhorando:
|
|
8
|
+
|
|
9
|
+
- Planejamento de sprints
|
|
10
|
+
- Tracking de velocity
|
|
11
|
+
- Previsibilidade de entrega
|
|
12
|
+
- ConsistĂȘncia nas estimativas
|
|
13
|
+
|
|
14
|
+
## ⥠Quando Ocorre
|
|
15
|
+
|
|
16
|
+
A validação acontece automaticamente no comando `/engineer/start` após:
|
|
17
|
+
|
|
18
|
+
1. Carregar task do gerenciador configurado
|
|
19
|
+
2. Ler custom field "Story Points"
|
|
20
|
+
3. Antes de iniciar anĂĄlise e arquitetura
|
|
21
|
+
|
|
22
|
+
## đ Tipos de Validação
|
|
23
|
+
|
|
24
|
+
### 1. Task Sem Estimativa
|
|
25
|
+
|
|
26
|
+
**Condição:** `storyPoints === null || storyPoints === 0 || storyPoints === undefined`
|
|
27
|
+
|
|
28
|
+
**Ação:**
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
32
|
+
â ïž ATENĂĂO: TASK SEM ESTIMATIVA DE STORY POINTS
|
|
33
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
34
|
+
|
|
35
|
+
đ Task: [nome da task]
|
|
36
|
+
đČ Story Points: NĂŁo estimado
|
|
37
|
+
|
|
38
|
+
đĄ RECOMENDAĂĂES:
|
|
39
|
+
â Estimar antes de iniciar desenvolvimento
|
|
40
|
+
â Usar: /product/estimate "[nome da task]"
|
|
41
|
+
â Ou: @story-points-framework-specialist
|
|
42
|
+
|
|
43
|
+
â ïž Continuar sem estimativa pode afetar:
|
|
44
|
+
- Planejamento de sprint
|
|
45
|
+
- Tracking de velocity
|
|
46
|
+
- Previsibilidade de entrega
|
|
47
|
+
|
|
48
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
**Comportamento:**
|
|
52
|
+
|
|
53
|
+
- â ïž **Alerta** (nĂŁo bloqueia)
|
|
54
|
+
- đĄ **Oferece** estimar agora
|
|
55
|
+
- â
**Permite** continuar sem estimativa (com aviso)
|
|
56
|
+
|
|
57
|
+
### 2. Task Identificada como Ăpico
|
|
58
|
+
|
|
59
|
+
**Condição:** `storyPoints > 13`
|
|
60
|
+
|
|
61
|
+
**Ação:**
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
65
|
+
â ïž ALERTA: TASK IDENTIFICADA COMO ĂPICO
|
|
66
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
67
|
+
|
|
68
|
+
đ Task: [nome da task]
|
|
69
|
+
đČ Story Points: [X] pontos (> 13)
|
|
70
|
+
|
|
71
|
+
đĄ RECOMENDAĂĂES:
|
|
72
|
+
â Considerar quebrar em mĂșltiplas tasks menores
|
|
73
|
+
â Usar: /product/refine para detalhar requisitos
|
|
74
|
+
â Verificar se realmente precisa ser uma Ășnica task
|
|
75
|
+
|
|
76
|
+
â ïž Tasks > 13 pontos tĂȘm:
|
|
77
|
+
- Maior margem de erro na estimativa
|
|
78
|
+
- Risco de nĂŁo caber no sprint
|
|
79
|
+
- Dificuldade de tracking de progresso
|
|
80
|
+
|
|
81
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Comportamento:**
|
|
85
|
+
|
|
86
|
+
- â ïž **Alerta** sobre riscos
|
|
87
|
+
- đĄ **Sugere** quebrar task
|
|
88
|
+
- â **Pergunta** se deseja continuar mesmo assim
|
|
89
|
+
- â
**Permite** continuar após confirmação
|
|
90
|
+
|
|
91
|
+
### 3. Task com Estimativa VĂĄlida
|
|
92
|
+
|
|
93
|
+
**Condição:** `storyPoints >= 1 && storyPoints <= 13`
|
|
94
|
+
|
|
95
|
+
**Ação:**
|
|
96
|
+
|
|
97
|
+
```
|
|
98
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
99
|
+
â
VALIDAĂĂO DE ESTIMATIVA
|
|
100
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
101
|
+
|
|
102
|
+
đ Task: [nome da task]
|
|
103
|
+
đČ Story Points: [X] pontos
|
|
104
|
+
|
|
105
|
+
â
Estimativa vĂĄlida para desenvolvimento
|
|
106
|
+
|
|
107
|
+
âââââââââââââââââââââââââââââââââââââââ
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
**Comportamento:**
|
|
111
|
+
|
|
112
|
+
- â
**Confirma** estimativa vĂĄlida
|
|
113
|
+
- đ **Prossegue** normalmente
|
|
114
|
+
|
|
115
|
+
## đ§ Implementação
|
|
116
|
+
|
|
117
|
+
### Código de Validação
|
|
118
|
+
|
|
119
|
+
```typescript
|
|
120
|
+
// No comando /engineer/start, apĂłs carregar task
|
|
121
|
+
const task = await taskManager.getTask(taskId);
|
|
122
|
+
const storyPoints = task.customFields?.find(
|
|
123
|
+
(f) => f.name === 'Story Points',
|
|
124
|
+
)?.value;
|
|
125
|
+
|
|
126
|
+
if (!storyPoints || storyPoints === 0) {
|
|
127
|
+
// Validação 1: Sem estimativa
|
|
128
|
+
await showWarningNoEstimate(task);
|
|
129
|
+
const shouldEstimate = await askUser(
|
|
130
|
+
'Deseja estimar story points agora? (s/n)',
|
|
131
|
+
);
|
|
132
|
+
if (shouldEstimate) {
|
|
133
|
+
await invokeStoryPointsEstimation(task);
|
|
134
|
+
}
|
|
135
|
+
} else if (storyPoints > 13) {
|
|
136
|
+
// Validação 2: Ăpico
|
|
137
|
+
await showWarningEpic(task, storyPoints);
|
|
138
|
+
const shouldContinue = await askUser('Deseja continuar mesmo assim? (s/n)');
|
|
139
|
+
if (!shouldContinue) {
|
|
140
|
+
console.log(
|
|
141
|
+
'đĄ SugestĂŁo: Use /product/refine para detalhar e quebrar a task',
|
|
142
|
+
);
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
} else {
|
|
146
|
+
// Validação 3: OK
|
|
147
|
+
await showSuccessEstimate(task, storyPoints);
|
|
148
|
+
}
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### Integração com Agente
|
|
152
|
+
|
|
153
|
+
```typescript
|
|
154
|
+
async function invokeStoryPointsEstimation(task: Task) {
|
|
155
|
+
// Invocar agente de estimativa
|
|
156
|
+
const estimate = await invokeAgent('story-points-framework-specialist', {
|
|
157
|
+
taskDescription: task.name + '\n' + task.description,
|
|
158
|
+
assigneeLevel: task.assignee?.level || 'pleno',
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
// Atualizar task com estimativa
|
|
162
|
+
await taskManager.updateTask(task.id, {
|
|
163
|
+
customFields: {
|
|
164
|
+
'Story Points': estimate.points,
|
|
165
|
+
},
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
// Adicionar comentĂĄrio
|
|
169
|
+
await taskManager.addComment(task.id, formatEstimateComment(estimate));
|
|
170
|
+
}
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
## đ Fluxo Completo
|
|
174
|
+
|
|
175
|
+
```mermaid
|
|
176
|
+
graph TD
|
|
177
|
+
A[/engineer/start] --> B[Carregar Task]
|
|
178
|
+
B --> C{Task tem Story Points?}
|
|
179
|
+
C -->|NĂŁo| D[Alerta: Sem Estimativa]
|
|
180
|
+
D --> E{Deseja estimar?}
|
|
181
|
+
E -->|Sim| F[Invocar @story-points-framework-specialist]
|
|
182
|
+
E -->|NĂŁo| G[Continuar com aviso]
|
|
183
|
+
F --> H[Atualizar Task]
|
|
184
|
+
H --> I[Prosseguir]
|
|
185
|
+
C -->|Sim| J{Story Points > 13?}
|
|
186
|
+
J -->|Sim| K[Alerta: Ăpico]
|
|
187
|
+
K --> L{Deseja continuar?}
|
|
188
|
+
L -->|Sim| I
|
|
189
|
+
L -->|NĂŁo| M[Sugerir refinement]
|
|
190
|
+
J -->|NĂŁo| N[Validar Estimativa]
|
|
191
|
+
N --> I
|
|
192
|
+
G --> I
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
## â ïž Regras Importantes
|
|
196
|
+
|
|
197
|
+
### NĂŁo Bloqueia Desenvolvimento
|
|
198
|
+
|
|
199
|
+
**PrincĂpio:** Validação Ă© **informativa**, nĂŁo bloqueante.
|
|
200
|
+
|
|
201
|
+
- â ïž Alerta sobre problemas
|
|
202
|
+
- đĄ Oferece soluçÔes
|
|
203
|
+
- â
Permite continuar após confirmação
|
|
204
|
+
|
|
205
|
+
### Estimativa Opcional mas Recomendada
|
|
206
|
+
|
|
207
|
+
**PrincĂpio:** Estimativas melhoram planejamento, mas nĂŁo sĂŁo obrigatĂłrias.
|
|
208
|
+
|
|
209
|
+
- Tasks sem estimativa podem ser desenvolvidas
|
|
210
|
+
- Sistema alerta sobre impacto
|
|
211
|
+
- UsuĂĄrio decide se estima ou nĂŁo
|
|
212
|
+
|
|
213
|
+
### Ăpicos Podem Ser Desenvolvidos
|
|
214
|
+
|
|
215
|
+
**PrincĂpio:** Tasks grandes podem existir, mas devem ser conscientes.
|
|
216
|
+
|
|
217
|
+
- Sistema alerta sobre riscos
|
|
218
|
+
- Sugere quebra quando apropriado
|
|
219
|
+
- Permite continuar após confirmação
|
|
220
|
+
|
|
221
|
+
## đ Comandos Relacionados
|
|
222
|
+
|
|
223
|
+
- `/product/estimate` - Estimar task manualmente
|
|
224
|
+
- `/product/refine` - Refinar e recalcular estimativa
|
|
225
|
+
- `/product/task` - Criar task com estimativa automĂĄtica
|
|
226
|
+
|
|
227
|
+
## đ ReferĂȘncias
|
|
228
|
+
|
|
229
|
+
- **Agente:** @story-points-framework-specialist
|
|
230
|
+
- **Framework:** `docs/knowbase/frameworks/framework_story_points.md`
|
|
231
|
+
- **Integração:** `.claude/docs/product/story-points-integration.md`
|
|
232
|
+
|
|
233
|
+
---
|
|
234
|
+
|
|
235
|
+
**VersĂŁo:** 3.0.0
|
|
236
|
+
**Ăltima atualização:** 2025-11-24
|
|
237
|
+
**Mantido por:** Sistema Onion
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
# đ RevisĂŁo de Documentação - Task Manager
|
|
2
|
+
|
|
3
|
+
**Data**: 2025-11-24
|
|
4
|
+
**Revisado por**: Sistema Onion
|
|
5
|
+
**Escopo**: Documentos relacionados ao Task Manager
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## â
**PROBLEMAS CORRIGIDOS**
|
|
10
|
+
|
|
11
|
+
### 1. **ReferĂȘncias Incorretas de Arquivos**
|
|
12
|
+
|
|
13
|
+
#### Problema Identificado
|
|
14
|
+
|
|
15
|
+
MĂșltiplos documentos referenciavam `.claude/utils/clickup-formatting.md`, mas o arquivo correto estĂĄ em `.claude/docs/clickup/clickup-formatting.md`.
|
|
16
|
+
|
|
17
|
+
#### Arquivos Corrigidos
|
|
18
|
+
|
|
19
|
+
- â
`.claude/commands/product/task.md` (linha 545)
|
|
20
|
+
- â
`.claude/docs/tools/rules.md` (linhas 143 e 168)
|
|
21
|
+
- â
`.claude/commands/git/README.md` (linha 359)
|
|
22
|
+
- â
`.claude/utils/date-time-standards.md` (linha 123)
|
|
23
|
+
|
|
24
|
+
#### Correção Aplicada
|
|
25
|
+
|
|
26
|
+
```diff
|
|
27
|
+
- **Formatação:** `.claude/utils/clickup-formatting.md`
|
|
28
|
+
+ **Formatação:** `.claude/docs/clickup/clickup-formatting.md`
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## đ **VALIDAĂĂO DE ESTRUTURA**
|
|
34
|
+
|
|
35
|
+
### Documentos do Task Manager
|
|
36
|
+
|
|
37
|
+
#### â
**Interface e Tipos**
|
|
38
|
+
|
|
39
|
+
- `.claude/utils/task-manager/interface.md` â
Bem formatado
|
|
40
|
+
- `.claude/utils/task-manager/types.md` â
Bem formatado
|
|
41
|
+
- `.claude/utils/task-manager/detector.md` â
Bem formatado
|
|
42
|
+
- `.claude/utils/task-manager/factory.md` â
Bem formatado
|
|
43
|
+
- `.claude/utils/task-manager/README.md` â
Bem formatado
|
|
44
|
+
|
|
45
|
+
#### â
**Adapters**
|
|
46
|
+
|
|
47
|
+
- `.claude/utils/task-manager/adapters/clickup.md` â
Bem formatado
|
|
48
|
+
- `.claude/utils/task-manager/adapters/asana.md` â
Bem formatado
|
|
49
|
+
- `.claude/utils/task-manager/adapters/linear.md` â
Bem formatado (stub)
|
|
50
|
+
|
|
51
|
+
#### â
**Formatação ClickUp**
|
|
52
|
+
|
|
53
|
+
- `.claude/docs/clickup/clickup-formatting.md` â
Bem formatado
|
|
54
|
+
- `.claude/commands/common/prompts/clickup-patterns.md` â
Bem formatado
|
|
55
|
+
|
|
56
|
+
#### â
**Comando Principal**
|
|
57
|
+
|
|
58
|
+
- `.claude/commands/product/task.md` â
ReferĂȘncias corrigidas
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## đ **ANĂLISE DE CONSISTĂNCIA**
|
|
63
|
+
|
|
64
|
+
### PadrÔes de Formatação
|
|
65
|
+
|
|
66
|
+
#### â
**Estratégia Dual Documentada Corretamente**
|
|
67
|
+
|
|
68
|
+
- **Descriptions**: Markdown nativo (`markdown_description`)
|
|
69
|
+
- **Comments**: Unicode visual (`comment_text`)
|
|
70
|
+
|
|
71
|
+
Ambos os documentos (`clickup-formatting.md` e `clickup-patterns.md`) estão alinhados com esta estratégia.
|
|
72
|
+
|
|
73
|
+
#### â
**Templates Consistentes**
|
|
74
|
+
|
|
75
|
+
- Templates de descriptions seguem padrĂŁo markdown
|
|
76
|
+
- Templates de comments seguem padrĂŁo Unicode visual
|
|
77
|
+
- Separadores consistentes: `ââââââââââââââ` (22 caracteres)
|
|
78
|
+
|
|
79
|
+
#### â
**ReferĂȘncias Cruzadas**
|
|
80
|
+
|
|
81
|
+
- Comando `/product/task.md` referencia corretamente:
|
|
82
|
+
- Interface do Task Manager â
|
|
83
|
+
- Adapters especĂficos â
|
|
84
|
+
- PadrĂ”es de formatação â
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## đ **ESTRUTURA DE DOCUMENTAĂĂO**
|
|
89
|
+
|
|
90
|
+
### Hierarquia Validada
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
.claude/
|
|
94
|
+
âââ utils/task-manager/ â
Abstração do Task Manager
|
|
95
|
+
â âââ interface.md â
Contrato ITaskManager
|
|
96
|
+
â âââ types.md â
Tipos compartilhados
|
|
97
|
+
â âââ detector.md â
Detecção de provedor
|
|
98
|
+
â âââ factory.md â
Factory de adapters
|
|
99
|
+
â âââ README.md â
VisĂŁo geral
|
|
100
|
+
â âââ adapters/
|
|
101
|
+
â âââ clickup.md â
Adapter ClickUp
|
|
102
|
+
â âââ asana.md â
Adapter Asana
|
|
103
|
+
â âââ linear.md â
Adapter Linear (stub)
|
|
104
|
+
â
|
|
105
|
+
âââ docs/clickup/ â
Documentação ClickUp
|
|
106
|
+
â âââ clickup-formatting.md â
Templates e padrÔes
|
|
107
|
+
â
|
|
108
|
+
âââ commands/
|
|
109
|
+
âââ product/task.md â
Comando principal
|
|
110
|
+
âââ common/prompts/
|
|
111
|
+
âââ clickup-patterns.md â
PadrÔes de formatação
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## â
**CHECKLIST DE VALIDAĂĂO**
|
|
117
|
+
|
|
118
|
+
### Formatação
|
|
119
|
+
|
|
120
|
+
- [x] Todos os documentos seguem padrĂŁo markdown consistente
|
|
121
|
+
- [x] Emojis usados de forma consistente
|
|
122
|
+
- [x] Separadores Unicode padronizados
|
|
123
|
+
- [x] Tabelas formatadas corretamente
|
|
124
|
+
|
|
125
|
+
### ReferĂȘncias
|
|
126
|
+
|
|
127
|
+
- [x] Todas as referĂȘncias de arquivos estĂŁo corretas
|
|
128
|
+
- [x] Links cruzados funcionam
|
|
129
|
+
- [x] ReferĂȘncias a adapters estĂŁo corretas
|
|
130
|
+
- [x] ReferĂȘncias a templates estĂŁo corretas
|
|
131
|
+
|
|
132
|
+
### ConteĂșdo
|
|
133
|
+
|
|
134
|
+
- [x] Estratégia dual bem documentada
|
|
135
|
+
- [x] Templates completos e consistentes
|
|
136
|
+
- [x] Exemplos de uso presentes
|
|
137
|
+
- [x] Mapeamentos de status documentados
|
|
138
|
+
|
|
139
|
+
### Estrutura
|
|
140
|
+
|
|
141
|
+
- [x] Hierarquia de arquivos lĂłgica
|
|
142
|
+
- [x] Organização por responsabilidade
|
|
143
|
+
- [x] READMEs informativos
|
|
144
|
+
- [x] Documentação completa
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## đŻ **RECOMENDAĂĂES**
|
|
149
|
+
|
|
150
|
+
### â
**Nenhuma Ação Necessåria**
|
|
151
|
+
|
|
152
|
+
Todos os documentos estĂŁo bem formatados e consistentes apĂłs as correçÔes de referĂȘncias.
|
|
153
|
+
|
|
154
|
+
### đ **ObservaçÔes**
|
|
155
|
+
|
|
156
|
+
1. **Linear Adapter**: Documentado como stub - correto para implementação futura
|
|
157
|
+
2. **Formatação Dual**: EstratĂ©gia bem documentada em mĂșltiplos lugares
|
|
158
|
+
3. **Templates**: PadrÔes consistentes entre documentos
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## đ **ESTATĂSTICAS**
|
|
163
|
+
|
|
164
|
+
- **Documentos revisados**: 12
|
|
165
|
+
- **ReferĂȘncias corrigidas**: 4
|
|
166
|
+
- **Problemas encontrados**: 4
|
|
167
|
+
- **Problemas corrigidos**: 4
|
|
168
|
+
- **Taxa de sucesso**: 100%
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
## đ **PRĂXIMOS PASSOS**
|
|
173
|
+
|
|
174
|
+
Nenhuma ação adicional necessåria. Todos os documentos estão:
|
|
175
|
+
|
|
176
|
+
- â
Bem formatados
|
|
177
|
+
- â
Consistentes entre si
|
|
178
|
+
- â
Com referĂȘncias corretas
|
|
179
|
+
- â
Estruturados logicamente
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
**RevisĂŁo concluĂda**: 2025-11-24
|
|
184
|
+
**Status**: â
APROVADO
|