-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathagents.json.example
More file actions
79 lines (79 loc) · 2.25 KB
/
Copy pathagents.json.example
File metadata and controls
79 lines (79 loc) · 2.25 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
{
"agents": [
{
"id": "orchestrator",
"name": "Orchestrator",
"role": "Supervisor",
"emoji": "🧠",
"color": "#8B5CF6",
"home": "meeting",
"status": "meeting",
"task": "Coordinating standup",
"tasks": ["Reviewing pipeline", "Coordinating agents", "Approving handoffs"],
"output": ["Daily brief issued", "Pipeline updated"],
"stats": {"tasksDone": 34, "active": 5, "hours": 6.2},
"mood": 0.9,
"typing": false
},
{
"id": "analyst",
"name": "Analyst",
"role": "Research",
"emoji": "📊",
"color": "#3B82F6",
"home": "left",
"status": "working",
"task": "Market research",
"tasks": ["Market research", "Data synthesis", "Trend analysis"],
"output": ["Competitor report v1", "Keyword research"],
"stats": {"tasksDone": 18, "active": 3, "hours": 4.5},
"mood": 0.75,
"typing": true
},
{
"id": "writer",
"name": "Writer",
"role": "Content",
"emoji": "✍️",
"color": "#EC4899",
"home": "center",
"status": "working",
"task": "Drafting launch blog",
"tasks": ["Drafting article", "Editing copy", "SEO optimization"],
"output": ["Blog post v2", "Thread draft"],
"stats": {"tasksDone": 21, "active": 2, "hours": 5.1},
"mood": 0.8,
"typing": true
},
{
"id": "marketer",
"name": "Marketer",
"role": "Growth",
"emoji": "📢",
"color": "#F59E0B",
"home": "right",
"status": "walking",
"task": "Walking to meeting",
"tasks": ["Campaign planning", "Audience targeting", "Post scheduling"],
"output": ["Launch plan", "Campaign brief"],
"stats": {"tasksDone": 15, "active": 2, "hours": 3.8},
"mood": 0.85,
"typing": false
},
{
"id": "coder",
"name": "Coder",
"role": "Dev",
"emoji": "💻",
"color": "#10B981",
"home": "right2",
"status": "working",
"task": "Building API endpoint",
"tasks": ["Feature build", "Code review", "Deploy checks"],
"output": ["API endpoint merged", "Bug fix deployed"],
"stats": {"tasksDone": 29, "active": 4, "hours": 6.7},
"mood": 0.7,
"typing": true
}
]
}