@nathanramorim/forge-sdd 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -25
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,22 +74,22 @@ O Forge-SDD organiza o trabalho em ciclos curtos e incrementais. O diagrama abai
|
|
|
74
74
|
|
|
75
75
|
```mermaid
|
|
76
76
|
flowchart TD
|
|
77
|
-
A([
|
|
77
|
+
A([Inicio da Sessao]) --> B["/status<br/>Entende o estado atual"]
|
|
78
78
|
B --> C{"Existe feature<br/>em andamento?"}
|
|
79
79
|
C -- Sim --> D["/proxima-feature<br/>Retoma a feature"]
|
|
80
|
-
C --
|
|
81
|
-
E --
|
|
82
|
-
E --
|
|
80
|
+
C -- Nao --> E{"Tenho uma<br/>ideia nova?"}
|
|
81
|
+
E -- Explorar --> F["/discovery<br/>Explora produto<br/>e engenharia"]
|
|
82
|
+
E -- Ja sei --> G["/nova-feature<br/>Especifica e<br/>cria a branch"]
|
|
83
83
|
F --> H{"Feature ficou<br/>muito grande?"}
|
|
84
84
|
G --> H
|
|
85
|
-
H --
|
|
86
|
-
H --
|
|
85
|
+
H -- mais de 7 tasks --> I["/split-features<br/>Quebra em<br/>feats independentes"]
|
|
86
|
+
H -- Nao --> D
|
|
87
87
|
I --> D
|
|
88
|
-
D --> J["
|
|
89
|
-
J --> K["/revisar<br/>Revisor valida<br/>
|
|
90
|
-
K -- Aprovado --> L["
|
|
88
|
+
D --> J["Builder implementa"]
|
|
89
|
+
J --> K["/revisar<br/>Revisor valida<br/>criterio de conclusao"]
|
|
90
|
+
K -- Aprovado --> L["PR via gh cli<br/>Merge na main"]
|
|
91
91
|
K -- Reprovado --> J
|
|
92
|
-
L --> M([
|
|
92
|
+
L --> M([Proximo ciclo])
|
|
93
93
|
```
|
|
94
94
|
|
|
95
95
|
---
|
|
@@ -122,14 +122,12 @@ Use quando uma feature ficou **grande demais** (mais de 7 tasks ou abrange mais
|
|
|
122
122
|
|
|
123
123
|
```mermaid
|
|
124
124
|
flowchart LR
|
|
125
|
-
A["feature-grande
|
|
126
|
-
|
|
127
|
-
B -->
|
|
128
|
-
B -->
|
|
129
|
-
B -->
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
C & D & E & F --> G["feat-XX-a\nfeat-XX-b\nfeat-XX-c"]
|
|
125
|
+
A["feature-grande<br/>12 tasks, 3 dominios"] --> B{"Criterios<br/>de quebra"}
|
|
126
|
+
B --> C["Entrega valor<br/>independente"]
|
|
127
|
+
B --> D["Sem dependencia<br/>circular"]
|
|
128
|
+
B --> E["Respeita camadas<br/>infra → dominio → UI"]
|
|
129
|
+
B --> F["Criterio de conclusao<br/>proprio"]
|
|
130
|
+
C & D & E & F --> G["feat-XX-a<br/>feat-XX-b<br/>feat-XX-c"]
|
|
133
131
|
```
|
|
134
132
|
|
|
135
133
|
### `/proxima-feature` — Implemente
|
|
@@ -153,10 +151,10 @@ Ao iniciar um projeto do zero, você pode escolher quais agentes deseja configur
|
|
|
153
151
|
|
|
154
152
|
```mermaid
|
|
155
153
|
flowchart LR
|
|
156
|
-
A["npx forge-sdd init"] --> B["/constitution
|
|
157
|
-
B --> C["/discovery
|
|
158
|
-
C --> D["/nova-feature
|
|
159
|
-
D --> E["/proxima-feature
|
|
154
|
+
A["npx forge-sdd init"] --> B["/constitution<br/>Define arquitetura<br/>e regras base"]
|
|
155
|
+
B --> C["/discovery<br/>Explora a ideia"]
|
|
156
|
+
C --> D["/nova-feature<br/>Cria as features<br/>do roadmap"]
|
|
157
|
+
D --> E["/proxima-feature<br/>Inicia a implementacao"]
|
|
160
158
|
```
|
|
161
159
|
|
|
162
160
|
1. `npx @nathanramorim/forge-sdd@latest init` (especifique os agentes: `--agent copilot`, `--agent gemini` ou `--agent claude`)
|
|
@@ -171,9 +169,9 @@ Para adotar a metodologia em um projeto existente sem alterar sua estrutura atua
|
|
|
171
169
|
|
|
172
170
|
```mermaid
|
|
173
171
|
flowchart LR
|
|
174
|
-
A["npx forge-sdd init . --yes"] --> B["/constitution
|
|
175
|
-
B --> C["/status
|
|
176
|
-
C --> D["/nova-feature
|
|
172
|
+
A["npx forge-sdd init . --yes"] --> B["/constitution<br/>Scan do codebase<br/>aprende as regras"]
|
|
173
|
+
B --> C["/status<br/>Sincroniza<br/>estado atual"]
|
|
174
|
+
C --> D["/nova-feature<br/>Mapeie a proxima<br/>evolucao"]
|
|
177
175
|
```
|
|
178
176
|
|
|
179
177
|
1. `npx @nathanramorim/forge-sdd@latest init . --yes` (especifique os agentes via flags, ex: `--agent copilot,gemini`)
|