agents.dev 1.0.7 → 1.0.8
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/package.json +1 -1
- package/src/lib/docs.js +12 -12
package/package.json
CHANGED
package/src/lib/docs.js
CHANGED
|
@@ -19,10 +19,10 @@ O sistema segue um processo **Waterfall** para planejamento (precisão) e **Iter
|
|
|
19
19
|
## 1. 🏗️ Project Spec (@Project Architect)
|
|
20
20
|
**Role:** O Visionário.
|
|
21
21
|
**Goal:** Traduzir sua ideia vaga em uma Especificação concreta com "Project Principles" definidos.
|
|
22
|
-
- **Comando:**
|
|
22
|
+
- **Comando:** \\
|
|
23
23
|
/dev:project "Eu quero um App de Todo que..."
|
|
24
24
|
- **Saída:**
|
|
25
|
-
|
|
25
|
+
\`docs/project.md\`
|
|
26
26
|
|
|
27
27
|
## 2. 🧱 Requirements Engineering (@Requirements Engineer)
|
|
28
28
|
**Role:** O Tech Lead.
|
|
@@ -31,7 +31,7 @@ O sistema segue um processo **Waterfall** para planejamento (precisão) e **Iter
|
|
|
31
31
|
- **Comando:**
|
|
32
32
|
/dev:requirements
|
|
33
33
|
- **Saída:**
|
|
34
|
-
|
|
34
|
+
\`docs/requirements.md\`
|
|
35
35
|
|
|
36
36
|
## 3. 🗺️ Roadmap Strategy (@Milestone Manager)
|
|
37
37
|
**Role:** O Estrategista.
|
|
@@ -39,7 +39,7 @@ O sistema segue um processo **Waterfall** para planejamento (precisão) e **Iter
|
|
|
39
39
|
- **Comando:**
|
|
40
40
|
/dev:milestone
|
|
41
41
|
- **Saída:**
|
|
42
|
-
|
|
42
|
+
\`docs/milestones.md\`
|
|
43
43
|
|
|
44
44
|
## 4. 📋 Task Planning (@Task Planner)
|
|
45
45
|
**Role:** O Gerente.
|
|
@@ -48,7 +48,7 @@ O sistema segue um processo **Waterfall** para planejamento (precisão) e **Iter
|
|
|
48
48
|
- **Comando:**
|
|
49
49
|
/dev:tasks <Milestone_ID>
|
|
50
50
|
- **Saída:**
|
|
51
|
-
|
|
51
|
+
\`docs/task.md\`
|
|
52
52
|
|
|
53
53
|
## 5. 🕵️ Blueprint Audit (@Auditor)
|
|
54
54
|
**Role:** O Guardião.
|
|
@@ -56,16 +56,16 @@ O sistema segue um processo **Waterfall** para planejamento (precisão) e **Iter
|
|
|
56
56
|
- **Comando:**
|
|
57
57
|
/dev:auditor
|
|
58
58
|
- **Saída:**
|
|
59
|
-
|
|
59
|
+
\`audit_report.md\`
|
|
60
60
|
|
|
61
61
|
## 6. 💻 Implementation (@Coder)
|
|
62
62
|
**Role:** O Construtor.
|
|
63
63
|
**Goal:** Executar *uma tarefa por vez* do arquivo
|
|
64
|
-
|
|
64
|
+
\`task.md\`.
|
|
65
65
|
- **Comando:**
|
|
66
66
|
/dev:coder <Task_ID>
|
|
67
67
|
- **Buffer:**
|
|
68
|
-
|
|
68
|
+
\`work_log.md\`
|
|
69
69
|
|
|
70
70
|
## 7. ⚖️ Quality Assurance (@QA Engineer)
|
|
71
71
|
**Role:** O Inspetor.
|
|
@@ -73,17 +73,17 @@ O sistema segue um processo **Waterfall** para planejamento (precisão) e **Iter
|
|
|
73
73
|
- **Comando:**
|
|
74
74
|
/dev:review <Task_ID>
|
|
75
75
|
- **Saída:**
|
|
76
|
-
|
|
76
|
+
\`docs/logs/review_log.md\`
|
|
77
77
|
|
|
78
78
|
## 8. 📦 Release Management (@Release Manager)
|
|
79
79
|
**Role:** O Historiador.
|
|
80
80
|
**Goal:** Consolidar o
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
\`work_log.md\` em um
|
|
82
|
+
\`changelog.md\` permanente.
|
|
83
83
|
- **Comando:**
|
|
84
84
|
/dev:log
|
|
85
85
|
- **Saída:**
|
|
86
|
-
|
|
86
|
+
\`changelog.md\`
|
|
87
87
|
`;
|
|
88
88
|
|
|
89
89
|
if (!fs.existsSync(docsDir)) {
|