-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathworkflows.json
More file actions
217 lines (217 loc) · 7.03 KB
/
workflows.json
File metadata and controls
217 lines (217 loc) · 7.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
{
"workflows": {
"newProjectSetup": {
"description": "Generates User Stories, Task List, and Rules based on a product description.",
"inputSchema": {
"productDescription": "string"
},
"steps": [
{
"id": "step1_user_stories",
"toolName": "user-stories-generator",
"params": {
"productDescription": "{workflow.input.productDescription}"
}
},
{
"id": "step2_task_list",
"toolName": "task-list-generator",
"params": {
"productDescription": "{workflow.input.productDescription}",
"userStories": "{steps.step1_user_stories.output.content[0].text}"
}
},
{
"id": "step3_rules",
"toolName": "rules-generator",
"params": {
"productDescription": "{workflow.input.productDescription}",
"userStories": "{steps.step1_user_stories.output.content[0].text}"
}
}
],
"output": {
"summary": "Workflow 'newProjectSetup' completed. Generated artifacts are stored in workflow-agent-files.",
"details": [
"User Stories generated based on product description.",
"Task List generated based on description and generated user stories.",
"Development Rules generated based on description and generated user stories."
]
}
},
"researchAndPlan": {
"description": "Research a topic and create comprehensive planning documents.",
"inputSchema": {
"topic": "string",
"projectType": "string"
},
"steps": [
{
"id": "step1_research",
"toolName": "research",
"params": {
"query": "{workflow.input.topic}"
}
},
{
"id": "step2_prd",
"toolName": "prd-generator",
"params": {
"productDescription": "{workflow.input.projectType}",
"researchContext": "{steps.step1_research.output.content[0].text}"
}
},
{
"id": "step3_user_stories",
"toolName": "user-stories-generator",
"params": {
"productDescription": "{steps.step2_prd.output.content[0].text}"
}
}
],
"output": {
"summary": "Research and planning workflow completed.",
"details": [
"Research conducted on specified topic.",
"PRD generated based on research findings.",
"User stories created from PRD requirements."
]
}
},
"codebaseAnalysis": {
"description": "Analyze codebase and create development context.",
"inputSchema": {
"projectPath": "string",
"analysisGoal": "string"
},
"steps": [
{
"id": "step1_map_codebase",
"toolName": "map-codebase",
"params": {
"path": "{workflow.input.projectPath}",
"output_format": "markdown"
}
},
{
"id": "step2_curate_context",
"toolName": "curate-context",
"params": {
"goal": "{workflow.input.analysisGoal}",
"codebaseMap": "{steps.step1_map_codebase.output.content[0].text}"
}
},
{
"id": "step3_generate_tasks",
"toolName": "task-list-generator",
"params": {
"productDescription": "{workflow.input.analysisGoal}",
"codebaseContext": "{steps.step2_curate_context.output.content[0].text}"
}
}
],
"output": {
"summary": "Codebase analysis workflow completed.",
"details": [
"Codebase mapped and analyzed.",
"Context curated for development goals.",
"Task list generated based on analysis."
]
}
},
"agentCoordination": {
"description": "Register agents and distribute tasks for multi-agent development.",
"inputSchema": {
"projectName": "string",
"agentCapabilities": "array"
},
"steps": [
{
"id": "step1_register_agents",
"toolName": "register-agent",
"params": {
"agentId": "coordinator-{workflow.input.projectName}",
"capabilities": "{workflow.input.agentCapabilities}",
"transport": "stdio"
}
},
{
"id": "step2_get_tasks",
"toolName": "get-agent-tasks",
"params": {
"agentId": "coordinator-{workflow.input.projectName}",
"maxTasks": 5
}
},
{
"id": "step3_create_project",
"toolName": "vibe-task-manager",
"params": {
"command": "create project \"{workflow.input.projectName}\" \"Multi-agent coordinated project\""
}
}
],
"output": {
"summary": "Agent coordination workflow completed.",
"details": [
"Agents registered with specified capabilities.",
"Tasks retrieved and assigned to agents.",
"Project created in task manager for coordination."
]
}
},
"fullStackSetup": {
"description": "Complete full-stack project setup with research, planning, and scaffolding.",
"inputSchema": {
"projectName": "string",
"frontend": "string",
"backend": "string",
"features": "array"
},
"steps": [
{
"id": "step1_research_stack",
"toolName": "research",
"params": {
"query": "best practices for {workflow.input.frontend} and {workflow.input.backend} integration"
}
},
{
"id": "step2_generate_starter",
"toolName": "fullstack-starter-kit-generator",
"params": {
"projectName": "{workflow.input.projectName}",
"frontend": "{workflow.input.frontend}",
"backend": "{workflow.input.backend}",
"features": "{workflow.input.features}",
"researchContext": "{steps.step1_research_stack.output.content[0].text}"
}
},
{
"id": "step3_create_tasks",
"toolName": "task-list-generator",
"params": {
"productDescription": "{workflow.input.projectName} with {workflow.input.frontend} frontend and {workflow.input.backend} backend",
"features": "{workflow.input.features}"
}
},
{
"id": "step4_setup_project",
"toolName": "vibe-task-manager",
"params": {
"command": "create project \"{workflow.input.projectName}\" \"Full-stack project with {workflow.input.frontend} and {workflow.input.backend}\""
}
}
],
"output": {
"summary": "Full-stack project setup completed.",
"details": [
"Research conducted on technology stack best practices.",
"Starter kit generated with specified technologies.",
"Development tasks created for project implementation.",
"Project initialized in task manager."
]
}
}
}
}