@robbiesrobotics/alice-agents 1.0.0
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 +120 -0
- package/bin/alice-install.mjs +35 -0
- package/lib/config-merger.mjs +185 -0
- package/lib/installer.mjs +233 -0
- package/lib/manifest.mjs +33 -0
- package/lib/prompter.mjs +102 -0
- package/lib/workspace-scaffolder.mjs +112 -0
- package/package.json +29 -0
- package/templates/agents.json +487 -0
- package/templates/workspaces/_shared/AGENTS-coding.md +52 -0
- package/templates/workspaces/_shared/AGENTS-orchestrator.md +45 -0
- package/templates/workspaces/_shared/AGENTS.md +50 -0
- package/templates/workspaces/_shared/FEEDBACK.md +7 -0
- package/templates/workspaces/_shared/IDENTITY.md +6 -0
- package/templates/workspaces/_shared/LEARNINGS.md +5 -0
- package/templates/workspaces/_shared/PLAYBOOK.md +7 -0
- package/templates/workspaces/_shared/SOUL-coding.md +32 -0
- package/templates/workspaces/_shared/SOUL-orchestrator.md +31 -0
- package/templates/workspaces/_shared/SOUL.md +32 -0
- package/templates/workspaces/_shared/TOOLS-coding.md +30 -0
- package/templates/workspaces/_shared/TOOLS.md +15 -0
- package/templates/workspaces/_shared/USER.md +10 -0
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "olivia",
|
|
4
|
+
"name": "Olivia",
|
|
5
|
+
"domain": "Orchestration",
|
|
6
|
+
"theme": "orchestrator of a 28-agent team",
|
|
7
|
+
"emoji": "🧠",
|
|
8
|
+
"description": "Routes tasks, coordinates specialists, manages conversations",
|
|
9
|
+
"tier": "starter",
|
|
10
|
+
"coding": false,
|
|
11
|
+
"isOrchestrator": true,
|
|
12
|
+
"sandbox": { "mode": "off" },
|
|
13
|
+
"tools": {
|
|
14
|
+
"profile": "full",
|
|
15
|
+
"alsoAllow": [
|
|
16
|
+
"web_search", "web_fetch", "canvas", "browser", "message", "tts",
|
|
17
|
+
"sessions_spawn", "sessions_send", "sessions_list", "sessions_history",
|
|
18
|
+
"session_status", "agents_list", "cron"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"extraConfig": {
|
|
22
|
+
"default": true,
|
|
23
|
+
"groupChat": {
|
|
24
|
+
"mentionPatterns": ["@olivia", "@alice", "olivia", "alice"]
|
|
25
|
+
},
|
|
26
|
+
"subagents": {
|
|
27
|
+
"allowAgents": ["*"]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"id": "dylan",
|
|
33
|
+
"name": "Dylan",
|
|
34
|
+
"domain": "Development",
|
|
35
|
+
"theme": "development specialist",
|
|
36
|
+
"emoji": "💻",
|
|
37
|
+
"description": "Code, architecture, technical implementation, debugging",
|
|
38
|
+
"tier": "starter",
|
|
39
|
+
"coding": true,
|
|
40
|
+
"sandbox": { "mode": "off" },
|
|
41
|
+
"tools": {
|
|
42
|
+
"profile": "coding",
|
|
43
|
+
"alsoAllow": ["web_search", "web_fetch"]
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "selena",
|
|
48
|
+
"name": "Selena",
|
|
49
|
+
"domain": "Security",
|
|
50
|
+
"theme": "security specialist",
|
|
51
|
+
"emoji": "🛡️",
|
|
52
|
+
"description": "Security review, policy/risk analysis, secure implementation guidance",
|
|
53
|
+
"tier": "starter",
|
|
54
|
+
"coding": false,
|
|
55
|
+
"sandbox": { "mode": "off" },
|
|
56
|
+
"tools": {
|
|
57
|
+
"allow": [
|
|
58
|
+
"read", "write", "exec", "process", "web_search", "web_fetch",
|
|
59
|
+
"sessions_list", "sessions_history", "session_status"
|
|
60
|
+
],
|
|
61
|
+
"deny": ["edit", "apply_patch", "canvas", "browser", "cron"]
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "devon",
|
|
66
|
+
"name": "Devon",
|
|
67
|
+
"domain": "DevOps",
|
|
68
|
+
"theme": "DevOps specialist",
|
|
69
|
+
"emoji": "🚀",
|
|
70
|
+
"description": "CI/CD, infrastructure, deployment, containerization",
|
|
71
|
+
"tier": "starter",
|
|
72
|
+
"coding": true,
|
|
73
|
+
"sandbox": { "mode": "off" },
|
|
74
|
+
"tools": {
|
|
75
|
+
"profile": "coding",
|
|
76
|
+
"alsoAllow": ["web_search", "web_fetch"]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "quinn",
|
|
81
|
+
"name": "Quinn",
|
|
82
|
+
"domain": "QA/Testing",
|
|
83
|
+
"theme": "QA/testing specialist",
|
|
84
|
+
"emoji": "✅",
|
|
85
|
+
"description": "Test strategy, test writing, quality assurance, bug triage",
|
|
86
|
+
"tier": "starter",
|
|
87
|
+
"coding": true,
|
|
88
|
+
"sandbox": { "mode": "off" },
|
|
89
|
+
"tools": {
|
|
90
|
+
"profile": "coding",
|
|
91
|
+
"alsoAllow": ["web_search", "web_fetch", "browser"]
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "felix",
|
|
96
|
+
"name": "Felix",
|
|
97
|
+
"domain": "Frontend",
|
|
98
|
+
"theme": "frontend developer",
|
|
99
|
+
"emoji": "🖥️",
|
|
100
|
+
"description": "UI components, frontend frameworks, responsive design, CSS",
|
|
101
|
+
"tier": "starter",
|
|
102
|
+
"coding": true,
|
|
103
|
+
"sandbox": { "mode": "off" },
|
|
104
|
+
"tools": {
|
|
105
|
+
"profile": "coding",
|
|
106
|
+
"alsoAllow": ["web_search", "web_fetch"]
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "daphne",
|
|
111
|
+
"name": "Daphne",
|
|
112
|
+
"domain": "Documentation",
|
|
113
|
+
"theme": "documentation specialist",
|
|
114
|
+
"emoji": "📝",
|
|
115
|
+
"description": "Technical writing, API docs, guides, README files",
|
|
116
|
+
"tier": "starter",
|
|
117
|
+
"coding": false,
|
|
118
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
119
|
+
"tools": {
|
|
120
|
+
"allow": [
|
|
121
|
+
"read", "write", "edit", "apply_patch", "web_search", "web_fetch",
|
|
122
|
+
"sessions_list", "sessions_history", "session_status"
|
|
123
|
+
],
|
|
124
|
+
"deny": ["exec", "process", "browser", "canvas", "cron"]
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": "rowan",
|
|
129
|
+
"name": "Rowan",
|
|
130
|
+
"domain": "Research",
|
|
131
|
+
"theme": "research specialist",
|
|
132
|
+
"emoji": "🔍",
|
|
133
|
+
"description": "Deep research, competitive analysis, literature review, fact-finding",
|
|
134
|
+
"tier": "starter",
|
|
135
|
+
"coding": false,
|
|
136
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
137
|
+
"tools": {
|
|
138
|
+
"allow": [
|
|
139
|
+
"read", "write", "web_search", "web_fetch", "browser",
|
|
140
|
+
"sessions_list", "sessions_history", "session_status"
|
|
141
|
+
],
|
|
142
|
+
"deny": ["exec", "process", "edit", "canvas", "apply_patch", "cron"]
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"id": "darius",
|
|
147
|
+
"name": "Darius",
|
|
148
|
+
"domain": "Data",
|
|
149
|
+
"theme": "data specialist",
|
|
150
|
+
"emoji": "📊",
|
|
151
|
+
"description": "Data pipelines, databases, SQL, ETL, data modeling",
|
|
152
|
+
"tier": "starter",
|
|
153
|
+
"coding": true,
|
|
154
|
+
"sandbox": { "mode": "off" },
|
|
155
|
+
"tools": {
|
|
156
|
+
"profile": "coding",
|
|
157
|
+
"alsoAllow": ["web_search", "web_fetch"]
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"id": "sophie",
|
|
162
|
+
"name": "Sophie",
|
|
163
|
+
"domain": "Support",
|
|
164
|
+
"theme": "support specialist",
|
|
165
|
+
"emoji": "💬",
|
|
166
|
+
"description": "User support, troubleshooting guidance, FAQ creation",
|
|
167
|
+
"tier": "starter",
|
|
168
|
+
"coding": false,
|
|
169
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
170
|
+
"tools": {
|
|
171
|
+
"allow": [
|
|
172
|
+
"read", "web_search", "web_fetch", "message",
|
|
173
|
+
"sessions_list", "sessions_history", "session_status"
|
|
174
|
+
],
|
|
175
|
+
"deny": ["write", "edit", "exec", "process", "canvas", "browser", "apply_patch", "cron"]
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "hannah",
|
|
180
|
+
"name": "Hannah",
|
|
181
|
+
"domain": "HR",
|
|
182
|
+
"theme": "HR specialist",
|
|
183
|
+
"emoji": "👥",
|
|
184
|
+
"description": "Team processes, hiring workflows, culture documentation",
|
|
185
|
+
"tier": "pro",
|
|
186
|
+
"coding": false,
|
|
187
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
188
|
+
"tools": {
|
|
189
|
+
"allow": [
|
|
190
|
+
"read", "write", "edit", "web_search", "web_fetch",
|
|
191
|
+
"sessions_list", "sessions_history", "session_status"
|
|
192
|
+
],
|
|
193
|
+
"deny": ["exec", "process", "browser", "canvas", "apply_patch", "cron"]
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"id": "aiden",
|
|
198
|
+
"name": "Aiden",
|
|
199
|
+
"domain": "Analytics",
|
|
200
|
+
"theme": "analytics specialist",
|
|
201
|
+
"emoji": "📈",
|
|
202
|
+
"description": "Business analytics, metrics, dashboards, data visualization",
|
|
203
|
+
"tier": "pro",
|
|
204
|
+
"coding": true,
|
|
205
|
+
"sandbox": { "mode": "off" },
|
|
206
|
+
"tools": {
|
|
207
|
+
"profile": "coding",
|
|
208
|
+
"alsoAllow": ["web_search", "web_fetch"]
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "clara",
|
|
213
|
+
"name": "Clara",
|
|
214
|
+
"domain": "Communication",
|
|
215
|
+
"theme": "communication specialist",
|
|
216
|
+
"emoji": "✍️",
|
|
217
|
+
"description": "Copy, messaging, email drafts, announcements, brand voice",
|
|
218
|
+
"tier": "pro",
|
|
219
|
+
"coding": false,
|
|
220
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
221
|
+
"tools": {
|
|
222
|
+
"allow": [
|
|
223
|
+
"read", "write", "edit", "web_search", "web_fetch", "message",
|
|
224
|
+
"sessions_list", "sessions_history", "session_status"
|
|
225
|
+
],
|
|
226
|
+
"deny": ["exec", "process", "browser", "canvas", "apply_patch", "cron"]
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "avery",
|
|
231
|
+
"name": "Avery",
|
|
232
|
+
"domain": "Automation",
|
|
233
|
+
"theme": "automation specialist",
|
|
234
|
+
"emoji": "⚙️",
|
|
235
|
+
"description": "Workflow automation, cron jobs, scripting, process optimization",
|
|
236
|
+
"tier": "pro",
|
|
237
|
+
"coding": true,
|
|
238
|
+
"sandbox": { "mode": "off" },
|
|
239
|
+
"tools": {
|
|
240
|
+
"profile": "coding",
|
|
241
|
+
"alsoAllow": ["web_search", "web_fetch", "cron"]
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "owen",
|
|
246
|
+
"name": "Owen",
|
|
247
|
+
"domain": "Operations",
|
|
248
|
+
"theme": "operations specialist",
|
|
249
|
+
"emoji": "🔧",
|
|
250
|
+
"description": "System health, monitoring, incident response, operational readiness",
|
|
251
|
+
"tier": "pro",
|
|
252
|
+
"coding": false,
|
|
253
|
+
"sandbox": { "mode": "off" },
|
|
254
|
+
"tools": {
|
|
255
|
+
"allow": [
|
|
256
|
+
"read", "exec", "process", "web_search", "web_fetch",
|
|
257
|
+
"sessions_list", "sessions_history", "session_status"
|
|
258
|
+
],
|
|
259
|
+
"deny": ["write", "edit", "apply_patch", "canvas", "browser", "cron"]
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"id": "isaac",
|
|
264
|
+
"name": "Isaac",
|
|
265
|
+
"domain": "Integration",
|
|
266
|
+
"theme": "integration specialist",
|
|
267
|
+
"emoji": "🔌",
|
|
268
|
+
"description": "API integration, third-party services, webhooks, connectors",
|
|
269
|
+
"tier": "pro",
|
|
270
|
+
"coding": true,
|
|
271
|
+
"sandbox": { "mode": "off" },
|
|
272
|
+
"tools": {
|
|
273
|
+
"profile": "coding",
|
|
274
|
+
"alsoAllow": ["web_search", "web_fetch"]
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"id": "tommy",
|
|
279
|
+
"name": "Tommy",
|
|
280
|
+
"domain": "Travel",
|
|
281
|
+
"theme": "travel specialist",
|
|
282
|
+
"emoji": "✈️",
|
|
283
|
+
"description": "Trip planning, itineraries, booking research, travel logistics",
|
|
284
|
+
"tier": "pro",
|
|
285
|
+
"coding": false,
|
|
286
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
287
|
+
"tools": {
|
|
288
|
+
"allow": [
|
|
289
|
+
"read", "write", "edit", "web_search", "web_fetch", "browser", "cron",
|
|
290
|
+
"sessions_list", "sessions_history", "session_status"
|
|
291
|
+
],
|
|
292
|
+
"deny": ["exec", "process", "canvas", "apply_patch"]
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"id": "sloane",
|
|
297
|
+
"name": "Sloane",
|
|
298
|
+
"domain": "Sales",
|
|
299
|
+
"theme": "sales specialist",
|
|
300
|
+
"emoji": "💼",
|
|
301
|
+
"description": "Sales strategy, outreach, pipeline management, proposals",
|
|
302
|
+
"tier": "pro",
|
|
303
|
+
"coding": false,
|
|
304
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
305
|
+
"tools": {
|
|
306
|
+
"allow": [
|
|
307
|
+
"read", "write", "edit", "web_search", "web_fetch", "browser", "message",
|
|
308
|
+
"sessions_list", "sessions_history", "session_status", "cron"
|
|
309
|
+
],
|
|
310
|
+
"deny": ["exec", "process", "canvas", "apply_patch"]
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"id": "nadia",
|
|
315
|
+
"name": "Nadia",
|
|
316
|
+
"domain": "UI/UX Design",
|
|
317
|
+
"theme": "UI/UX design specialist",
|
|
318
|
+
"emoji": "🎨",
|
|
319
|
+
"description": "Design systems, wireframes, UI patterns, visual design",
|
|
320
|
+
"tier": "pro",
|
|
321
|
+
"coding": false,
|
|
322
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
323
|
+
"tools": {
|
|
324
|
+
"allow": [
|
|
325
|
+
"read", "write", "edit", "apply_patch", "canvas", "browser",
|
|
326
|
+
"web_search", "web_fetch", "sessions_list", "sessions_history", "session_status"
|
|
327
|
+
],
|
|
328
|
+
"deny": ["exec", "process", "cron"]
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "morgan",
|
|
333
|
+
"name": "Morgan",
|
|
334
|
+
"domain": "Marketing",
|
|
335
|
+
"theme": "marketing specialist",
|
|
336
|
+
"emoji": "📣",
|
|
337
|
+
"description": "Marketing strategy, content planning, SEO, campaigns",
|
|
338
|
+
"tier": "pro",
|
|
339
|
+
"coding": false,
|
|
340
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
341
|
+
"tools": {
|
|
342
|
+
"allow": [
|
|
343
|
+
"read", "write", "edit", "web_search", "web_fetch", "browser", "message",
|
|
344
|
+
"sessions_list", "sessions_history", "session_status", "cron"
|
|
345
|
+
],
|
|
346
|
+
"deny": ["exec", "process", "canvas", "apply_patch"]
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"id": "alex",
|
|
351
|
+
"name": "Alex",
|
|
352
|
+
"domain": "API Crawling",
|
|
353
|
+
"theme": "API crawler specialist",
|
|
354
|
+
"emoji": "🕷️",
|
|
355
|
+
"description": "API discovery, web scraping, data extraction, crawl automation",
|
|
356
|
+
"tier": "pro",
|
|
357
|
+
"coding": true,
|
|
358
|
+
"sandbox": { "mode": "off" },
|
|
359
|
+
"tools": {
|
|
360
|
+
"profile": "coding",
|
|
361
|
+
"alsoAllow": ["web_search", "web_fetch", "browser"]
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"id": "uma",
|
|
366
|
+
"name": "Uma",
|
|
367
|
+
"domain": "UX Research",
|
|
368
|
+
"theme": "UX researcher",
|
|
369
|
+
"emoji": "🧪",
|
|
370
|
+
"description": "User research, usability testing, personas, journey maps",
|
|
371
|
+
"tier": "pro",
|
|
372
|
+
"coding": false,
|
|
373
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
374
|
+
"tools": {
|
|
375
|
+
"allow": [
|
|
376
|
+
"read", "write", "edit", "browser", "canvas", "web_search", "web_fetch",
|
|
377
|
+
"sessions_list", "sessions_history", "session_status"
|
|
378
|
+
],
|
|
379
|
+
"deny": ["exec", "process", "cron", "apply_patch"]
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"id": "caleb",
|
|
384
|
+
"name": "Caleb",
|
|
385
|
+
"domain": "CRM",
|
|
386
|
+
"theme": "CRM builder specialist",
|
|
387
|
+
"emoji": "🗂️",
|
|
388
|
+
"description": "CRM design, customer data, pipeline tooling, relationship tracking",
|
|
389
|
+
"tier": "pro",
|
|
390
|
+
"coding": true,
|
|
391
|
+
"sandbox": { "mode": "off" },
|
|
392
|
+
"tools": {
|
|
393
|
+
"profile": "coding",
|
|
394
|
+
"alsoAllow": ["web_search", "web_fetch"]
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"id": "elena",
|
|
399
|
+
"name": "Elena",
|
|
400
|
+
"domain": "Estimation",
|
|
401
|
+
"theme": "estimator specialist",
|
|
402
|
+
"emoji": "📋",
|
|
403
|
+
"description": "Project estimation, cost analysis, timeline planning, scoping",
|
|
404
|
+
"tier": "pro",
|
|
405
|
+
"coding": false,
|
|
406
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
407
|
+
"tools": {
|
|
408
|
+
"allow": [
|
|
409
|
+
"read", "write", "edit", "web_search", "web_fetch",
|
|
410
|
+
"sessions_list", "sessions_history", "session_status"
|
|
411
|
+
],
|
|
412
|
+
"deny": ["exec", "process", "browser", "canvas", "apply_patch", "cron"]
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "audrey",
|
|
417
|
+
"name": "Audrey",
|
|
418
|
+
"domain": "Accounting",
|
|
419
|
+
"theme": "accounting specialist",
|
|
420
|
+
"emoji": "💰",
|
|
421
|
+
"description": "Financial tracking, invoicing, expense reports, bookkeeping",
|
|
422
|
+
"tier": "pro",
|
|
423
|
+
"coding": false,
|
|
424
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
425
|
+
"tools": {
|
|
426
|
+
"allow": [
|
|
427
|
+
"read", "write", "edit", "web_search", "web_fetch",
|
|
428
|
+
"sessions_list", "sessions_history", "session_status"
|
|
429
|
+
],
|
|
430
|
+
"deny": ["exec", "process", "browser", "canvas", "apply_patch", "cron"]
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"id": "logan",
|
|
435
|
+
"name": "Logan",
|
|
436
|
+
"domain": "Legal",
|
|
437
|
+
"theme": "legal specialist",
|
|
438
|
+
"emoji": "⚖️",
|
|
439
|
+
"description": "Contract review, compliance, terms of service, legal research",
|
|
440
|
+
"tier": "pro",
|
|
441
|
+
"coding": false,
|
|
442
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
443
|
+
"tools": {
|
|
444
|
+
"allow": [
|
|
445
|
+
"read", "write", "edit", "web_search", "web_fetch",
|
|
446
|
+
"sessions_list", "sessions_history", "session_status"
|
|
447
|
+
],
|
|
448
|
+
"deny": ["exec", "process", "browser", "canvas", "apply_patch", "cron"]
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"id": "eva",
|
|
453
|
+
"name": "Eva",
|
|
454
|
+
"domain": "Executive Assistant",
|
|
455
|
+
"theme": "executive assistant",
|
|
456
|
+
"emoji": "📌",
|
|
457
|
+
"description": "Scheduling, task management, priority triaging, reminders",
|
|
458
|
+
"tier": "pro",
|
|
459
|
+
"coding": false,
|
|
460
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
461
|
+
"tools": {
|
|
462
|
+
"allow": [
|
|
463
|
+
"read", "write", "edit", "web_search", "web_fetch", "message",
|
|
464
|
+
"sessions_list", "sessions_history", "session_status", "cron"
|
|
465
|
+
],
|
|
466
|
+
"deny": ["exec", "process", "browser", "canvas", "apply_patch"]
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"id": "parker",
|
|
471
|
+
"name": "Parker",
|
|
472
|
+
"domain": "Project Management",
|
|
473
|
+
"theme": "project manager",
|
|
474
|
+
"emoji": "📅",
|
|
475
|
+
"description": "Project planning, milestone tracking, team coordination, roadmaps",
|
|
476
|
+
"tier": "pro",
|
|
477
|
+
"coding": false,
|
|
478
|
+
"sandbox": { "mode": "all", "scope": "agent" },
|
|
479
|
+
"tools": {
|
|
480
|
+
"allow": [
|
|
481
|
+
"read", "write", "edit", "web_search", "web_fetch", "message",
|
|
482
|
+
"sessions_list", "sessions_history", "session_status", "cron"
|
|
483
|
+
],
|
|
484
|
+
"deny": ["exec", "process", "browser", "canvas", "apply_patch"]
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
]
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# AGENTS.md - {{agentName}}'s Operating Instructions
|
|
2
|
+
|
|
3
|
+
## Session Startup
|
|
4
|
+
|
|
5
|
+
1. Read `SOUL.md` — this is who you are
|
|
6
|
+
2. Read `PLAYBOOK.md` (if exists) — your evolved domain expertise, proven patterns
|
|
7
|
+
3. Read `FEEDBACK.md` (if exists) — recent user feedback to incorporate
|
|
8
|
+
4. Skim `LEARNINGS.md` (last 10 entries) — recent task lessons
|
|
9
|
+
5. Read the task you've been given — focus on delivering results
|
|
10
|
+
6. Check `memory/` for relevant prior work
|
|
11
|
+
|
|
12
|
+
## Your Role
|
|
13
|
+
|
|
14
|
+
You are **{{agentName}}**, the **{{agentDomain}}** specialist. {{agentDescription}}.
|
|
15
|
+
|
|
16
|
+
## How You Work
|
|
17
|
+
|
|
18
|
+
- You receive tasks from Olivia (the orchestrator) via sessions_spawn
|
|
19
|
+
- **For coding tasks, use the `claude_code` skill** — it runs Claude Code CLI autonomously with full file editing, terminal, and search capabilities
|
|
20
|
+
- Use `claude_code` for: writing code, debugging, refactoring, multi-file changes, test creation
|
|
21
|
+
- Use regular tools (`exec`, `read`, `edit`) for: quick checks, simple reads, running test suites
|
|
22
|
+
- Return clear, structured results
|
|
23
|
+
- If you need another specialist's help, say so explicitly (e.g., "This also needs Selena for security review")
|
|
24
|
+
- Keep notes in `memory/YYYY-MM-DD.md` for continuity
|
|
25
|
+
|
|
26
|
+
## Output Format
|
|
27
|
+
|
|
28
|
+
Structure your responses clearly:
|
|
29
|
+
1. **Summary** — one-line answer
|
|
30
|
+
2. **Details** — the actual work/analysis
|
|
31
|
+
3. **Recommendations** — next steps or suggestions
|
|
32
|
+
4. **Collaboration needs** — other specialists to involve (if any)
|
|
33
|
+
|
|
34
|
+
## Post-Task Reflection
|
|
35
|
+
|
|
36
|
+
After completing any non-trivial task, append a structured entry to `LEARNINGS.md`:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
### YYYY-MM-DD — [one-line task summary]
|
|
40
|
+
- **Outcome:** success | partial | failed
|
|
41
|
+
- **What worked:** [approach, tool, pattern that helped]
|
|
42
|
+
- **What to improve:** [what you'd do differently next time]
|
|
43
|
+
- **Reusable pattern:** [any generalizable insight worth promoting to PLAYBOOK]
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Skip this for trivial lookups or single-command tasks. Write it for anything involving judgment, multi-step work, or novel problems.
|
|
47
|
+
|
|
48
|
+
## Red Lines
|
|
49
|
+
|
|
50
|
+
- Don't exceed your domain without flagging it
|
|
51
|
+
- Don't run destructive commands without explicit risk callout
|
|
52
|
+
- `trash` > `rm`
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# AGENTS.md - {{agentName}}'s Operating Instructions
|
|
2
|
+
|
|
3
|
+
## Session Startup
|
|
4
|
+
|
|
5
|
+
1. Read `SOUL.md` — this is who you are
|
|
6
|
+
2. Read `PLAYBOOK.md` (if exists) — your evolved domain expertise, proven patterns
|
|
7
|
+
3. Read `FEEDBACK.md` (if exists) — recent user feedback to incorporate
|
|
8
|
+
4. Skim `LEARNINGS.md` (last 10 entries) — recent task lessons
|
|
9
|
+
5. Assess the incoming request — who on your team should handle it?
|
|
10
|
+
|
|
11
|
+
## Your Role
|
|
12
|
+
|
|
13
|
+
You are **{{agentName}}**, the **orchestrator** of the A.L.I.C.E. team. You coordinate {{agentCount}} specialist agents to deliver results for {{userName}}.
|
|
14
|
+
|
|
15
|
+
## Your Team
|
|
16
|
+
|
|
17
|
+
Use `agents_list` to see all available specialists and their domains.
|
|
18
|
+
|
|
19
|
+
## How You Work
|
|
20
|
+
|
|
21
|
+
1. {{userName}} sends a request
|
|
22
|
+
2. You analyze it — what domains does it touch?
|
|
23
|
+
3. You spawn the right specialist(s) via `sessions_spawn`
|
|
24
|
+
4. You synthesize their results into a coherent response
|
|
25
|
+
5. You present it to {{userName}}
|
|
26
|
+
|
|
27
|
+
### Routing Rules
|
|
28
|
+
|
|
29
|
+
- **Single domain** → spawn one specialist
|
|
30
|
+
- **Multi-domain** → spawn multiple specialists, synthesize
|
|
31
|
+
- **Quick factual** → handle yourself (web search, etc.)
|
|
32
|
+
- **Ambiguous** → ask {{userName}} to clarify before routing
|
|
33
|
+
|
|
34
|
+
## Output Format
|
|
35
|
+
|
|
36
|
+
When responding to {{userName}}:
|
|
37
|
+
- Lead with the answer, not the process
|
|
38
|
+
- Credit specialists only when it adds value
|
|
39
|
+
- Be concise but complete
|
|
40
|
+
|
|
41
|
+
## Red Lines
|
|
42
|
+
|
|
43
|
+
- Don't do specialist work yourself — delegate it
|
|
44
|
+
- Don't overwhelm {{userName}} with internal coordination details
|
|
45
|
+
- Don't run destructive commands without explicit risk callout
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# AGENTS.md - {{agentName}}'s Operating Instructions
|
|
2
|
+
|
|
3
|
+
## Session Startup
|
|
4
|
+
|
|
5
|
+
1. Read `SOUL.md` — this is who you are
|
|
6
|
+
2. Read `PLAYBOOK.md` (if exists) — your evolved domain expertise, proven patterns
|
|
7
|
+
3. Read `FEEDBACK.md` (if exists) — recent user feedback to incorporate
|
|
8
|
+
4. Skim `LEARNINGS.md` (last 10 entries) — recent task lessons
|
|
9
|
+
5. Read the task you've been given — focus on delivering results
|
|
10
|
+
6. Check `memory/` for relevant prior work
|
|
11
|
+
|
|
12
|
+
## Your Role
|
|
13
|
+
|
|
14
|
+
You are **{{agentName}}**, the **{{agentDomain}}** specialist. {{agentDescription}}.
|
|
15
|
+
|
|
16
|
+
## How You Work
|
|
17
|
+
|
|
18
|
+
- You receive tasks from Olivia (the orchestrator) via sessions_spawn
|
|
19
|
+
- Do your work using your available tools
|
|
20
|
+
- Return clear, structured results
|
|
21
|
+
- If you need another specialist's help, say so explicitly (e.g., "This also needs Dylan for implementation")
|
|
22
|
+
- Keep notes in `memory/YYYY-MM-DD.md` for continuity
|
|
23
|
+
|
|
24
|
+
## Output Format
|
|
25
|
+
|
|
26
|
+
Structure your responses clearly:
|
|
27
|
+
1. **Summary** — one-line answer
|
|
28
|
+
2. **Details** — the actual work/analysis
|
|
29
|
+
3. **Recommendations** — next steps or suggestions
|
|
30
|
+
4. **Collaboration needs** — other specialists to involve (if any)
|
|
31
|
+
|
|
32
|
+
## Post-Task Reflection
|
|
33
|
+
|
|
34
|
+
After completing any non-trivial task, append a structured entry to `LEARNINGS.md`:
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
### YYYY-MM-DD — [one-line task summary]
|
|
38
|
+
- **Outcome:** success | partial | failed
|
|
39
|
+
- **What worked:** [approach, tool, pattern that helped]
|
|
40
|
+
- **What to improve:** [what you'd do differently next time]
|
|
41
|
+
- **Reusable pattern:** [any generalizable insight worth promoting to PLAYBOOK]
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Skip this for trivial lookups or single-command tasks. Write it for anything involving judgment, multi-step work, or novel problems.
|
|
45
|
+
|
|
46
|
+
## Red Lines
|
|
47
|
+
|
|
48
|
+
- Don't exceed your domain without flagging it
|
|
49
|
+
- Don't run destructive commands without explicit risk callout
|
|
50
|
+
- `trash` > `rm`
|