@synap-core/cli 0.9.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.
Files changed (45) hide show
  1. package/README.md +250 -0
  2. package/dist/commands/connect.d.ts +11 -0
  3. package/dist/commands/connect.js +96 -0
  4. package/dist/commands/connect.js.map +1 -0
  5. package/dist/commands/finish.d.ts +16 -0
  6. package/dist/commands/finish.js +82 -0
  7. package/dist/commands/finish.js.map +1 -0
  8. package/dist/commands/init.d.ts +21 -0
  9. package/dist/commands/init.js +865 -0
  10. package/dist/commands/init.js.map +1 -0
  11. package/dist/commands/security-audit.d.ts +12 -0
  12. package/dist/commands/security-audit.js +100 -0
  13. package/dist/commands/security-audit.js.map +1 -0
  14. package/dist/commands/status.d.ts +6 -0
  15. package/dist/commands/status.js +216 -0
  16. package/dist/commands/status.js.map +1 -0
  17. package/dist/commands/update.d.ts +6 -0
  18. package/dist/commands/update.js +34 -0
  19. package/dist/commands/update.js.map +1 -0
  20. package/dist/index.d.ts +16 -0
  21. package/dist/index.js +138 -0
  22. package/dist/index.js.map +1 -0
  23. package/dist/lib/auth.d.ts +57 -0
  24. package/dist/lib/auth.js +322 -0
  25. package/dist/lib/auth.js.map +1 -0
  26. package/dist/lib/hardening.d.ts +18 -0
  27. package/dist/lib/hardening.js +203 -0
  28. package/dist/lib/hardening.js.map +1 -0
  29. package/dist/lib/openclaw.d.ts +28 -0
  30. package/dist/lib/openclaw.js +106 -0
  31. package/dist/lib/openclaw.js.map +1 -0
  32. package/dist/lib/pod.d.ts +91 -0
  33. package/dist/lib/pod.js +305 -0
  34. package/dist/lib/pod.js.map +1 -0
  35. package/dist/lib/seed.d.ts +13 -0
  36. package/dist/lib/seed.js +135 -0
  37. package/dist/lib/seed.js.map +1 -0
  38. package/dist/lib/templates.d.ts +11 -0
  39. package/dist/lib/templates.js +13 -0
  40. package/dist/lib/templates.js.map +1 -0
  41. package/dist/templates/agent-os.json +3090 -0
  42. package/dist/utils/logger.d.ts +11 -0
  43. package/dist/utils/logger.js +31 -0
  44. package/dist/utils/logger.js.map +1 -0
  45. package/package.json +45 -0
@@ -0,0 +1,3090 @@
1
+ {
2
+ "_meta": {
3
+ "slug": "agent-os",
4
+ "icon": "bot",
5
+ "color": "#1A3A5C",
6
+ "tags": [
7
+ "ai",
8
+ "agents",
9
+ "openclaw",
10
+ "automation"
11
+ ],
12
+ "requiredTier": null,
13
+ "isPublic": true
14
+ },
15
+ "workspaceName": "OpenClaw Agent OS",
16
+ "description": "The sovereign control plane for your OpenClaw agent fleet. Agents, projects, tasks, skills, and providers as connected entities — not daemon logs.",
17
+ "icon": "bot",
18
+ "color": "#1A3A5C",
19
+ "profiles": [
20
+ {
21
+ "slug": "agent",
22
+ "description": "A deployed OpenClaw agent — your running AI entity",
23
+ "icon": "bot",
24
+ "color": "#1A3A5C",
25
+ "properties": [
26
+ {
27
+ "slug": "agent-status",
28
+ "valueType": "string",
29
+ "label": "Status",
30
+ "enumValues": [
31
+ "Offline",
32
+ "Idle",
33
+ "Active",
34
+ "Error",
35
+ "Maintenance"
36
+ ],
37
+ "inputType": "select",
38
+ "constraints": {
39
+ "defaultValue": "Idle"
40
+ }
41
+ },
42
+ {
43
+ "slug": "agent-health",
44
+ "valueType": "string",
45
+ "label": "Health",
46
+ "enumValues": [
47
+ "Healthy",
48
+ "Degraded",
49
+ "Error"
50
+ ],
51
+ "inputType": "select"
52
+ },
53
+ {
54
+ "slug": "agent-runtime",
55
+ "valueType": "string",
56
+ "label": "Runtime",
57
+ "enumValues": [
58
+ "OpenClaw",
59
+ "Custom"
60
+ ],
61
+ "inputType": "select"
62
+ },
63
+ {
64
+ "slug": "agent-version",
65
+ "valueType": "string",
66
+ "label": "Version"
67
+ },
68
+ {
69
+ "slug": "agent-model",
70
+ "valueType": "string",
71
+ "label": "Primary Model"
72
+ },
73
+ {
74
+ "slug": "agent-provider",
75
+ "valueType": "entity_id",
76
+ "targetProfileSlug": "provider",
77
+ "label": "Provider"
78
+ },
79
+ {
80
+ "slug": "agent-owner",
81
+ "valueType": "entity_id",
82
+ "targetProfileSlug": "person",
83
+ "label": "Owner"
84
+ },
85
+ {
86
+ "slug": "agent-channel",
87
+ "valueType": "string",
88
+ "label": "Primary Channel",
89
+ "enumValues": [
90
+ "Telegram",
91
+ "WhatsApp",
92
+ "Discord",
93
+ "Slack",
94
+ "Signal",
95
+ "iMessage",
96
+ "CLI",
97
+ "WebChat",
98
+ "Other"
99
+ ],
100
+ "inputType": "select"
101
+ },
102
+ {
103
+ "slug": "agent-channels",
104
+ "valueType": "array",
105
+ "label": "All Channels",
106
+ "enumValues": [
107
+ "Telegram",
108
+ "WhatsApp",
109
+ "Discord",
110
+ "Slack",
111
+ "Signal",
112
+ "iMessage",
113
+ "CLI",
114
+ "WebChat",
115
+ "Voice",
116
+ "Lark",
117
+ "Matrix"
118
+ ],
119
+ "inputType": "select"
120
+ },
121
+ {
122
+ "slug": "agent-heartbeat",
123
+ "valueType": "string",
124
+ "label": "Heartbeat Schedule"
125
+ },
126
+ {
127
+ "slug": "agent-last-seen",
128
+ "valueType": "date",
129
+ "label": "Last Seen"
130
+ },
131
+ {
132
+ "slug": "agent-workspace",
133
+ "valueType": "string",
134
+ "label": "Workspace Path"
135
+ },
136
+ {
137
+ "slug": "agent-deployment",
138
+ "valueType": "string",
139
+ "label": "Deployment",
140
+ "enumValues": [
141
+ "Local Machine",
142
+ "VPS",
143
+ "Raspberry Pi",
144
+ "Mac Mini",
145
+ "Docker",
146
+ "Cloud Workers",
147
+ "Android",
148
+ "Edge Device"
149
+ ],
150
+ "inputType": "select"
151
+ },
152
+ {
153
+ "slug": "agent-role",
154
+ "valueType": "string",
155
+ "label": "Role",
156
+ "enumValues": [
157
+ "Generalist",
158
+ "Coder",
159
+ "Researcher",
160
+ "Writer",
161
+ "Ops",
162
+ "Coordinator",
163
+ "Monitor",
164
+ "Custom"
165
+ ],
166
+ "inputType": "select"
167
+ },
168
+ {
169
+ "slug": "agent-tags",
170
+ "valueType": "array",
171
+ "label": "Tags",
172
+ "enumValues": [
173
+ "production",
174
+ "development",
175
+ "personal",
176
+ "team",
177
+ "experimental",
178
+ "24/7",
179
+ "on-demand"
180
+ ],
181
+ "inputType": "select"
182
+ }
183
+ ],
184
+ "displayName": "Agent"
185
+ },
186
+ {
187
+ "slug": "project",
188
+ "description": "A bounded body of work delegated to one or more agents",
189
+ "icon": "folder",
190
+ "color": "#2E6DA4",
191
+ "properties": [
192
+ {
193
+ "slug": "project-status",
194
+ "valueType": "string",
195
+ "label": "Status",
196
+ "enumValues": [
197
+ "Backlog",
198
+ "Queued",
199
+ "In Progress",
200
+ "Blocked",
201
+ "Completed",
202
+ "Cancelled"
203
+ ],
204
+ "inputType": "select",
205
+ "constraints": {
206
+ "defaultValue": "Queued"
207
+ }
208
+ },
209
+ {
210
+ "slug": "project-priority",
211
+ "valueType": "string",
212
+ "label": "Priority",
213
+ "enumValues": [
214
+ "Critical",
215
+ "High",
216
+ "Medium",
217
+ "Low"
218
+ ],
219
+ "inputType": "select"
220
+ },
221
+ {
222
+ "slug": "project-assigned-agent",
223
+ "valueType": "entity_id",
224
+ "targetProfileSlug": "agent",
225
+ "label": "Assigned Agent"
226
+ },
227
+ {
228
+ "slug": "project-owner",
229
+ "valueType": "entity_id",
230
+ "targetProfileSlug": "person",
231
+ "label": "Human Owner"
232
+ },
233
+ {
234
+ "slug": "project-start",
235
+ "valueType": "date",
236
+ "label": "Start Date"
237
+ },
238
+ {
239
+ "slug": "project-deadline",
240
+ "valueType": "date",
241
+ "label": "Deadline"
242
+ },
243
+ {
244
+ "slug": "project-health",
245
+ "valueType": "string",
246
+ "label": "Health",
247
+ "enumValues": [
248
+ "Green",
249
+ "Yellow",
250
+ "Red"
251
+ ],
252
+ "inputType": "select"
253
+ },
254
+ {
255
+ "slug": "project-type",
256
+ "valueType": "string",
257
+ "label": "Type",
258
+ "enumValues": [
259
+ "Development",
260
+ "Research",
261
+ "Content",
262
+ "Automation",
263
+ "DevOps",
264
+ "Data",
265
+ "Outreach",
266
+ "Monitoring"
267
+ ],
268
+ "inputType": "select"
269
+ },
270
+ {
271
+ "slug": "project-goal",
272
+ "valueType": "string",
273
+ "label": "Goal"
274
+ },
275
+ {
276
+ "slug": "project-outcome",
277
+ "valueType": "string",
278
+ "label": "Expected Outcome"
279
+ },
280
+ {
281
+ "slug": "project-tags",
282
+ "valueType": "array",
283
+ "label": "Tags",
284
+ "enumValues": [
285
+ "recurring",
286
+ "one-off",
287
+ "long-running",
288
+ "client",
289
+ "internal",
290
+ "experimental"
291
+ ],
292
+ "inputType": "select"
293
+ }
294
+ ],
295
+ "displayName": "Project"
296
+ },
297
+ {
298
+ "slug": "task",
299
+ "description": "An atomic work item assigned to an agent",
300
+ "icon": "check-square",
301
+ "color": "#1B6E45",
302
+ "properties": [
303
+ {
304
+ "slug": "task-status",
305
+ "valueType": "string",
306
+ "label": "Status",
307
+ "enumValues": [
308
+ "Backlog",
309
+ "Queued",
310
+ "Running",
311
+ "Review",
312
+ "Done",
313
+ "Failed",
314
+ "Cancelled"
315
+ ],
316
+ "inputType": "select",
317
+ "constraints": {
318
+ "defaultValue": "Queued"
319
+ }
320
+ },
321
+ {
322
+ "slug": "task-priority",
323
+ "valueType": "string",
324
+ "label": "Priority",
325
+ "enumValues": [
326
+ "Critical",
327
+ "High",
328
+ "Medium",
329
+ "Low"
330
+ ],
331
+ "inputType": "select",
332
+ "constraints": {
333
+ "defaultValue": "Medium"
334
+ }
335
+ },
336
+ {
337
+ "slug": "task-assigned-agent",
338
+ "valueType": "entity_id",
339
+ "targetProfileSlug": "agent",
340
+ "label": "Assigned Agent"
341
+ },
342
+ {
343
+ "slug": "task-project",
344
+ "valueType": "entity_id",
345
+ "targetProfileSlug": "project",
346
+ "label": "Project"
347
+ },
348
+ {
349
+ "slug": "task-type",
350
+ "valueType": "string",
351
+ "label": "Type",
352
+ "enumValues": [
353
+ "Code",
354
+ "Research",
355
+ "Content",
356
+ "Ops",
357
+ "Data",
358
+ "Outreach",
359
+ "Review",
360
+ "Monitor",
361
+ "Custom"
362
+ ],
363
+ "inputType": "select"
364
+ },
365
+ {
366
+ "slug": "task-due-date",
367
+ "valueType": "date",
368
+ "label": "Due Date"
369
+ },
370
+ {
371
+ "slug": "task-effort-hours",
372
+ "valueType": "number",
373
+ "label": "Effort Estimate (hrs)"
374
+ },
375
+ {
376
+ "slug": "task-token-estimate",
377
+ "valueType": "number",
378
+ "label": "Token Estimate (K)"
379
+ },
380
+ {
381
+ "slug": "task-actual-tokens",
382
+ "valueType": "number",
383
+ "label": "Actual Tokens Used (K)"
384
+ },
385
+ {
386
+ "slug": "task-blocked-by",
387
+ "valueType": "string",
388
+ "label": "Blocked By"
389
+ },
390
+ {
391
+ "slug": "task-session-key",
392
+ "valueType": "string",
393
+ "label": "Session Key"
394
+ },
395
+ {
396
+ "slug": "task-tags",
397
+ "valueType": "array",
398
+ "label": "Tags",
399
+ "enumValues": [
400
+ "autonomous",
401
+ "needs-review",
402
+ "high-cost",
403
+ "recurring",
404
+ "blocked",
405
+ "delegated"
406
+ ],
407
+ "inputType": "select"
408
+ }
409
+ ],
410
+ "displayName": "Task"
411
+ },
412
+ {
413
+ "slug": "skill",
414
+ "description": "An installed agent capability — a ClawHub skill, custom script, or API integration",
415
+ "icon": "zap",
416
+ "color": "#7C3AED",
417
+ "properties": [
418
+ {
419
+ "slug": "skill-trust",
420
+ "valueType": "string",
421
+ "label": "Trust Level",
422
+ "enumValues": [
423
+ "Trusted",
424
+ "Review",
425
+ "Untrusted",
426
+ "Blocked"
427
+ ],
428
+ "inputType": "select",
429
+ "constraints": {
430
+ "defaultValue": "Review"
431
+ }
432
+ },
433
+ {
434
+ "slug": "skill-category",
435
+ "valueType": "string",
436
+ "label": "Category",
437
+ "enumValues": [
438
+ "Productivity",
439
+ "Development",
440
+ "Communication",
441
+ "Data",
442
+ "Security",
443
+ "Storage",
444
+ "Browser",
445
+ "Voice",
446
+ "IoT",
447
+ "Custom"
448
+ ],
449
+ "inputType": "select"
450
+ },
451
+ {
452
+ "slug": "skill-source-url",
453
+ "valueType": "string",
454
+ "label": "Source URL"
455
+ },
456
+ {
457
+ "slug": "skill-version",
458
+ "valueType": "string",
459
+ "label": "Version"
460
+ },
461
+ {
462
+ "slug": "skill-install-date",
463
+ "valueType": "date",
464
+ "label": "Install Date"
465
+ },
466
+ {
467
+ "slug": "skill-last-audit",
468
+ "valueType": "date",
469
+ "label": "Last Audit Date"
470
+ },
471
+ {
472
+ "slug": "skill-virustotal",
473
+ "valueType": "string",
474
+ "label": "VirusTotal Status",
475
+ "enumValues": [
476
+ "Clean",
477
+ "Flagged",
478
+ "Not Scanned",
479
+ "Pending"
480
+ ],
481
+ "inputType": "select"
482
+ },
483
+ {
484
+ "slug": "skill-maintainer",
485
+ "valueType": "string",
486
+ "label": "Maintainer"
487
+ },
488
+ {
489
+ "slug": "skill-requires-api",
490
+ "valueType": "boolean",
491
+ "label": "Requires API Key"
492
+ },
493
+ {
494
+ "slug": "skill-notes",
495
+ "valueType": "string",
496
+ "label": "Security Notes"
497
+ }
498
+ ],
499
+ "displayName": "Skill"
500
+ },
501
+ {
502
+ "slug": "provider",
503
+ "description": "An LLM or API provider — tracks cost, key health, and agent usage",
504
+ "icon": "database",
505
+ "color": "#B5451B",
506
+ "properties": [
507
+ {
508
+ "slug": "provider-type",
509
+ "valueType": "string",
510
+ "label": "Type",
511
+ "enumValues": [
512
+ "LLM Cloud",
513
+ "LLM Local",
514
+ "API Gateway",
515
+ "Vector DB",
516
+ "Storage",
517
+ "Custom"
518
+ ],
519
+ "inputType": "select"
520
+ },
521
+ {
522
+ "slug": "provider-key-health",
523
+ "valueType": "string",
524
+ "label": "Key Health",
525
+ "enumValues": [
526
+ "Valid",
527
+ "Expiring",
528
+ "Expired",
529
+ "No Key (Local)"
530
+ ],
531
+ "inputType": "select",
532
+ "constraints": {
533
+ "defaultValue": "Valid"
534
+ }
535
+ },
536
+ {
537
+ "slug": "provider-model",
538
+ "valueType": "string",
539
+ "label": "Model / Endpoint"
540
+ },
541
+ {
542
+ "slug": "provider-cost-input",
543
+ "valueType": "number",
544
+ "label": "Cost per 1K Input Tokens ($)"
545
+ },
546
+ {
547
+ "slug": "provider-cost-output",
548
+ "valueType": "number",
549
+ "label": "Cost per 1K Output Tokens ($)"
550
+ },
551
+ {
552
+ "slug": "provider-budget-day",
553
+ "valueType": "number",
554
+ "label": "Daily Budget Ceiling ($)"
555
+ },
556
+ {
557
+ "slug": "provider-spend-week",
558
+ "valueType": "number",
559
+ "label": "Actual Spend This Week ($)"
560
+ },
561
+ {
562
+ "slug": "provider-base-url",
563
+ "valueType": "string",
564
+ "label": "Base URL / Endpoint"
565
+ },
566
+ {
567
+ "slug": "provider-notes",
568
+ "valueType": "string",
569
+ "label": "Notes"
570
+ }
571
+ ],
572
+ "displayName": "Provider"
573
+ },
574
+ {
575
+ "slug": "person",
576
+ "description": "Team member or agent owner",
577
+ "icon": "user",
578
+ "color": "#0891B2",
579
+ "properties": [
580
+ {
581
+ "slug": "person-role",
582
+ "valueType": "string",
583
+ "label": "Role",
584
+ "enumValues": [
585
+ "Founder",
586
+ "Engineer",
587
+ "DevOps",
588
+ "Product",
589
+ "Researcher",
590
+ "Advisor"
591
+ ],
592
+ "inputType": "select"
593
+ },
594
+ {
595
+ "slug": "person-email",
596
+ "valueType": "string",
597
+ "label": "Email"
598
+ },
599
+ {
600
+ "slug": "person-telegram",
601
+ "valueType": "string",
602
+ "label": "Telegram Handle"
603
+ },
604
+ {
605
+ "slug": "person-focus",
606
+ "valueType": "string",
607
+ "label": "Current Focus"
608
+ }
609
+ ],
610
+ "displayName": "Person"
611
+ }
612
+ ],
613
+ "views": [
614
+ {
615
+ "slug": "agent-fleet",
616
+ "name": "Agent Fleet",
617
+ "type": "kanban",
618
+ "scopeProfileSlug": "agent",
619
+ "groupBy": "agent-status",
620
+ "defaultView": true,
621
+ "description": "All agents by status — the mission control view. Offline → Idle → Active → Error."
622
+ },
623
+ {
624
+ "slug": "agent-project-task-hierarchy",
625
+ "name": "Agent → Projects → Tasks",
626
+ "type": "graph",
627
+ "scopeProfileSlugs": [
628
+ "agent",
629
+ "project",
630
+ "task"
631
+ ],
632
+ "hierarchyEdges": [
633
+ {
634
+ "parent": "agent",
635
+ "child": "project",
636
+ "via": "project-assigned-agent"
637
+ },
638
+ {
639
+ "parent": "project",
640
+ "child": "task",
641
+ "via": "task-project"
642
+ }
643
+ ],
644
+ "description": "3-level drill-down: Agent expands to linked Projects, Projects expand to Tasks. The delegation tree."
645
+ },
646
+ {
647
+ "slug": "task-board",
648
+ "name": "Task Board",
649
+ "type": "kanban",
650
+ "scopeProfileSlug": "task",
651
+ "groupBy": "task-status",
652
+ "description": "All tasks by status: Backlog → Queued → Running → Review → Done."
653
+ },
654
+ {
655
+ "slug": "project-command-center",
656
+ "name": "Project Command Center",
657
+ "type": "table",
658
+ "scopeProfileSlug": "project",
659
+ "sortBy": "project-priority",
660
+ "description": "All projects with assigned agent, status, deadline, health — the manager's daily view."
661
+ },
662
+ {
663
+ "slug": "skill-registry",
664
+ "name": "Skill Registry",
665
+ "type": "table",
666
+ "scopeProfileSlug": "skill",
667
+ "groupBy": "skill-trust",
668
+ "description": "All installed skills grouped by trust level: Trusted / Review / Untrusted. Security triage at a glance."
669
+ },
670
+ {
671
+ "slug": "provider-dashboard",
672
+ "name": "Provider Dashboard",
673
+ "type": "table",
674
+ "scopeProfileSlug": "provider",
675
+ "description": "All providers with cost-per-token, key health, daily budget, and weekly spend."
676
+ },
677
+ {
678
+ "slug": "relationship-graph",
679
+ "name": "Relationship Graph",
680
+ "type": "graph",
681
+ "scopeProfileSlugs": [
682
+ "agent",
683
+ "project",
684
+ "task",
685
+ "skill",
686
+ "provider",
687
+ "person"
688
+ ],
689
+ "description": "Full sovereign topology: Agent ← Project ← Task + Skill + Provider. The infrastructure map you cannot build in any other tool."
690
+ },
691
+ {
692
+ "slug": "agent-timeline",
693
+ "name": "Agent Timeline",
694
+ "type": "timeline",
695
+ "scopeProfileSlug": "project",
696
+ "startField": "project-start",
697
+ "endField": "project-deadline",
698
+ "colorBy": "project-assigned-agent",
699
+ "description": "Projects as timeline bars, color-coded by assigned agent — who owns what, when."
700
+ },
701
+ {
702
+ "slug": "cost-view",
703
+ "name": "Cost View",
704
+ "type": "table",
705
+ "scopeProfileSlug": "task",
706
+ "sortBy": "task-actual-tokens",
707
+ "sortOrder": "desc",
708
+ "description": "Tasks ranked by actual token usage — the CFO view. Which work is burning budget?"
709
+ },
710
+ {
711
+ "slug": "untrusted-skills-alert",
712
+ "name": "Untrusted Skills Alert",
713
+ "type": "table",
714
+ "scopeProfileSlug": "skill",
715
+ "filterBy": {
716
+ "field": "skill-trust",
717
+ "operator": "in",
718
+ "value": [
719
+ "Review",
720
+ "Untrusted",
721
+ "Blocked"
722
+ ]
723
+ },
724
+ "description": "Skills requiring security review. Audit before your agents run them."
725
+ },
726
+ {
727
+ "slug": "backlog",
728
+ "name": "Backlog",
729
+ "type": "table",
730
+ "scopeProfileSlug": "task",
731
+ "filterBy": {
732
+ "field": "task-status",
733
+ "operator": "is",
734
+ "value": "Backlog"
735
+ },
736
+ "sortBy": "task-priority",
737
+ "description": "Unqueued tasks awaiting agent assignment."
738
+ },
739
+ {
740
+ "slug": "agent-health-monitor",
741
+ "name": "Agent Health Monitor",
742
+ "type": "kanban",
743
+ "scopeProfileSlug": "agent",
744
+ "groupBy": "agent-health",
745
+ "description": "Agents grouped by health: Healthy / Degraded / Error. Operational triage."
746
+ },
747
+ {
748
+ "slug": "session-log-view",
749
+ "name": "Session Logs",
750
+ "type": "table",
751
+ "scopeProfileSlug": "task",
752
+ "filterBy": {
753
+ "field": "task-session-key",
754
+ "operator": "is_not_empty"
755
+ },
756
+ "description": "Tasks with session keys — the audit trail of what agents actually executed."
757
+ },
758
+ {
759
+ "slug": "provider-key-health",
760
+ "name": "Provider Key Health",
761
+ "type": "kanban",
762
+ "scopeProfileSlug": "provider",
763
+ "groupBy": "provider-key-health",
764
+ "description": "Providers by credential status: Valid / Expiring / Expired. Never run an agent on an expired key."
765
+ },
766
+ {
767
+ "slug": "my-active-work",
768
+ "name": "My Active Work",
769
+ "type": "table",
770
+ "scopeProfileSlug": "task",
771
+ "filterBy": {
772
+ "field": "task-status",
773
+ "operator": "in",
774
+ "value": [
775
+ "Queued",
776
+ "Running",
777
+ "Review"
778
+ ]
779
+ },
780
+ "sortBy": "task-due-date",
781
+ "description": "Tasks currently in flight — what your agents are doing right now."
782
+ },
783
+ {
784
+ "name": "Agent",
785
+ "type": "bento",
786
+ "scopeProfileSlug": "agent",
787
+ "config": {
788
+ "layout": "bento",
789
+ "blocks": [
790
+ {
791
+ "id": "agent-header",
792
+ "kind": "widget",
793
+ "widgetType": "section-header",
794
+ "pos": {
795
+ "x": 0,
796
+ "y": 0,
797
+ "w": 12,
798
+ "h": 2
799
+ },
800
+ "config": {
801
+ "title": "Agent Fleet",
802
+ "icon": "Bot",
803
+ "color": "#1A3A5C",
804
+ "profileSlug": "agent"
805
+ }
806
+ },
807
+ {
808
+ "id": "agent-count",
809
+ "kind": "widget",
810
+ "widgetType": "stat-card",
811
+ "pos": {
812
+ "x": 0,
813
+ "y": 2,
814
+ "w": 3,
815
+ "h": 3
816
+ },
817
+ "config": {
818
+ "label": "Active Agents",
819
+ "aggregation": "count",
820
+ "profileSlug": "agent",
821
+ "color": "#1A3A5C"
822
+ }
823
+ },
824
+ {
825
+ "id": "agent-fleet",
826
+ "kind": "view",
827
+ "viewName": "Agent Fleet",
828
+ "pos": {
829
+ "x": 0,
830
+ "y": 9,
831
+ "w": 12,
832
+ "h": 8
833
+ }
834
+ },
835
+ {
836
+ "id": "agent-health",
837
+ "kind": "view",
838
+ "viewName": "Agent Health Monitor",
839
+ "pos": {
840
+ "x": 0,
841
+ "y": 19,
842
+ "w": 12,
843
+ "h": 8
844
+ }
845
+ },
846
+ {
847
+ "id": "agent-active",
848
+ "kind": "widget",
849
+ "widgetType": "entity-count",
850
+ "pos": {
851
+ "x": 3,
852
+ "y": 2,
853
+ "w": 3,
854
+ "h": 3
855
+ },
856
+ "config": {
857
+ "profileSlug": "agent",
858
+ "label": "Active",
859
+ "icon": "CheckCircle",
860
+ "filter": {
861
+ "status": "active"
862
+ },
863
+ "color": "#10B981"
864
+ }
865
+ },
866
+ {
867
+ "id": "agent-running-tasks",
868
+ "kind": "widget",
869
+ "widgetType": "entity-count",
870
+ "pos": {
871
+ "x": 6,
872
+ "y": 2,
873
+ "w": 3,
874
+ "h": 3
875
+ },
876
+ "config": {
877
+ "profileSlug": "task",
878
+ "label": "Running Tasks",
879
+ "icon": "Loader",
880
+ "color": "#3B82F6"
881
+ }
882
+ },
883
+ {
884
+ "id": "agent-skills-avail",
885
+ "kind": "widget",
886
+ "widgetType": "entity-count",
887
+ "pos": {
888
+ "x": 9,
889
+ "y": 2,
890
+ "w": 3,
891
+ "h": 3
892
+ },
893
+ "config": {
894
+ "profileSlug": "skill",
895
+ "label": "Skills Available",
896
+ "icon": "Zap",
897
+ "color": "#8B5CF6"
898
+ }
899
+ },
900
+ {
901
+ "id": "agent-spotlight",
902
+ "kind": "widget",
903
+ "widgetType": "entity-spotlight",
904
+ "pos": {
905
+ "x": 0,
906
+ "y": 5,
907
+ "w": 5,
908
+ "h": 4
909
+ },
910
+ "config": {
911
+ "profileSlug": "agent",
912
+ "seed": "daily",
913
+ "layout": "detail",
914
+ "subtitleField": "status",
915
+ "color": "#1A3A5C"
916
+ }
917
+ },
918
+ {
919
+ "id": "agent-recent-tasks",
920
+ "kind": "widget",
921
+ "widgetType": "entity-list",
922
+ "pos": {
923
+ "x": 5,
924
+ "y": 5,
925
+ "w": 7,
926
+ "h": 4
927
+ },
928
+ "config": {
929
+ "profileSlug": "task",
930
+ "title": "Recent Tasks",
931
+ "limit": 8,
932
+ "variant": "compact"
933
+ }
934
+ }
935
+ ],
936
+ "breakpoints": {
937
+ "lg": {
938
+ "cols": 12,
939
+ "rowHeight": 60,
940
+ "gap": 12
941
+ },
942
+ "md": {
943
+ "cols": 10,
944
+ "rowHeight": 60,
945
+ "gap": 12
946
+ },
947
+ "sm": {
948
+ "cols": 6,
949
+ "rowHeight": 60,
950
+ "gap": 12
951
+ },
952
+ "xs": {
953
+ "cols": 4,
954
+ "rowHeight": 60,
955
+ "gap": 12
956
+ },
957
+ "xxs": {
958
+ "cols": 2,
959
+ "rowHeight": 60,
960
+ "gap": 12
961
+ }
962
+ }
963
+ }
964
+ },
965
+ {
966
+ "name": "Task",
967
+ "type": "bento",
968
+ "scopeProfileSlug": "task",
969
+ "config": {
970
+ "layout": "bento",
971
+ "blocks": [
972
+ {
973
+ "id": "task-header",
974
+ "kind": "widget",
975
+ "widgetType": "section-header",
976
+ "pos": {
977
+ "x": 0,
978
+ "y": 0,
979
+ "w": 12,
980
+ "h": 2
981
+ },
982
+ "config": {
983
+ "title": "Tasks",
984
+ "icon": "CheckSquare",
985
+ "color": "#6366F1",
986
+ "profileSlug": "task"
987
+ }
988
+ },
989
+ {
990
+ "id": "task-count",
991
+ "kind": "widget",
992
+ "widgetType": "stat-card",
993
+ "pos": {
994
+ "x": 0,
995
+ "y": 2,
996
+ "w": 3,
997
+ "h": 3
998
+ },
999
+ "config": {
1000
+ "label": "Total Tasks",
1001
+ "aggregation": "count",
1002
+ "profileSlug": "task",
1003
+ "color": "#6366F1"
1004
+ }
1005
+ },
1006
+ {
1007
+ "id": "task-board",
1008
+ "kind": "view",
1009
+ "viewName": "Task Board",
1010
+ "pos": {
1011
+ "x": 0,
1012
+ "y": 9,
1013
+ "w": 12,
1014
+ "h": 8
1015
+ }
1016
+ },
1017
+ {
1018
+ "id": "task-backlog",
1019
+ "kind": "view",
1020
+ "viewName": "Backlog",
1021
+ "pos": {
1022
+ "x": 0,
1023
+ "y": 19,
1024
+ "w": 12,
1025
+ "h": 8
1026
+ }
1027
+ },
1028
+ {
1029
+ "id": "task-in-progress",
1030
+ "kind": "widget",
1031
+ "widgetType": "entity-count",
1032
+ "pos": {
1033
+ "x": 3,
1034
+ "y": 2,
1035
+ "w": 3,
1036
+ "h": 3
1037
+ },
1038
+ "config": {
1039
+ "profileSlug": "task",
1040
+ "label": "In Progress",
1041
+ "icon": "Loader",
1042
+ "filter": {
1043
+ "status": "in-progress"
1044
+ },
1045
+ "color": "#3B82F6"
1046
+ }
1047
+ },
1048
+ {
1049
+ "id": "task-completed",
1050
+ "kind": "widget",
1051
+ "widgetType": "entity-count",
1052
+ "pos": {
1053
+ "x": 6,
1054
+ "y": 2,
1055
+ "w": 3,
1056
+ "h": 3
1057
+ },
1058
+ "config": {
1059
+ "profileSlug": "task",
1060
+ "label": "Completed",
1061
+ "icon": "CheckCircle",
1062
+ "filter": {
1063
+ "status": "completed"
1064
+ },
1065
+ "color": "#10B981"
1066
+ }
1067
+ },
1068
+ {
1069
+ "id": "task-failed",
1070
+ "kind": "widget",
1071
+ "widgetType": "entity-count",
1072
+ "pos": {
1073
+ "x": 9,
1074
+ "y": 2,
1075
+ "w": 3,
1076
+ "h": 3
1077
+ },
1078
+ "config": {
1079
+ "profileSlug": "task",
1080
+ "label": "Failed",
1081
+ "icon": "XCircle",
1082
+ "filter": {
1083
+ "status": "failed"
1084
+ },
1085
+ "color": "#EF4444"
1086
+ }
1087
+ },
1088
+ {
1089
+ "id": "task-active-list",
1090
+ "kind": "widget",
1091
+ "widgetType": "entity-list",
1092
+ "pos": {
1093
+ "x": 0,
1094
+ "y": 5,
1095
+ "w": 12,
1096
+ "h": 4
1097
+ },
1098
+ "config": {
1099
+ "profileSlug": "task",
1100
+ "title": "Active Tasks",
1101
+ "limit": 8,
1102
+ "variant": "detailed"
1103
+ }
1104
+ }
1105
+ ],
1106
+ "breakpoints": {
1107
+ "lg": {
1108
+ "cols": 12,
1109
+ "rowHeight": 60,
1110
+ "gap": 12
1111
+ },
1112
+ "md": {
1113
+ "cols": 10,
1114
+ "rowHeight": 60,
1115
+ "gap": 12
1116
+ },
1117
+ "sm": {
1118
+ "cols": 6,
1119
+ "rowHeight": 60,
1120
+ "gap": 12
1121
+ },
1122
+ "xs": {
1123
+ "cols": 4,
1124
+ "rowHeight": 60,
1125
+ "gap": 12
1126
+ },
1127
+ "xxs": {
1128
+ "cols": 2,
1129
+ "rowHeight": 60,
1130
+ "gap": 12
1131
+ }
1132
+ }
1133
+ }
1134
+ },
1135
+ {
1136
+ "name": "Project",
1137
+ "type": "bento",
1138
+ "scopeProfileSlug": "project",
1139
+ "config": {
1140
+ "layout": "bento",
1141
+ "blocks": [
1142
+ {
1143
+ "id": "project-header",
1144
+ "kind": "widget",
1145
+ "widgetType": "section-header",
1146
+ "pos": {
1147
+ "x": 0,
1148
+ "y": 0,
1149
+ "w": 12,
1150
+ "h": 2
1151
+ },
1152
+ "config": {
1153
+ "title": "Projects",
1154
+ "icon": "Folder",
1155
+ "color": "#F59E0B",
1156
+ "profileSlug": "project"
1157
+ }
1158
+ },
1159
+ {
1160
+ "id": "project-count",
1161
+ "kind": "widget",
1162
+ "widgetType": "stat-card",
1163
+ "pos": {
1164
+ "x": 0,
1165
+ "y": 2,
1166
+ "w": 3,
1167
+ "h": 3
1168
+ },
1169
+ "config": {
1170
+ "label": "Total Projects",
1171
+ "aggregation": "count",
1172
+ "profileSlug": "project",
1173
+ "color": "#F59E0B"
1174
+ }
1175
+ },
1176
+ {
1177
+ "id": "project-cmd",
1178
+ "kind": "view",
1179
+ "viewName": "Project Command Center",
1180
+ "pos": {
1181
+ "x": 0,
1182
+ "y": 5,
1183
+ "w": 12,
1184
+ "h": 10
1185
+ }
1186
+ },
1187
+ {
1188
+ "id": "project-timeline",
1189
+ "kind": "view",
1190
+ "viewName": "Agent Timeline",
1191
+ "pos": {
1192
+ "x": 0,
1193
+ "y": 15,
1194
+ "w": 12,
1195
+ "h": 8
1196
+ }
1197
+ }
1198
+ ],
1199
+ "breakpoints": {
1200
+ "lg": {
1201
+ "cols": 12,
1202
+ "rowHeight": 60,
1203
+ "gap": 12
1204
+ },
1205
+ "md": {
1206
+ "cols": 10,
1207
+ "rowHeight": 60,
1208
+ "gap": 12
1209
+ },
1210
+ "sm": {
1211
+ "cols": 6,
1212
+ "rowHeight": 60,
1213
+ "gap": 12
1214
+ },
1215
+ "xs": {
1216
+ "cols": 4,
1217
+ "rowHeight": 60,
1218
+ "gap": 12
1219
+ },
1220
+ "xxs": {
1221
+ "cols": 2,
1222
+ "rowHeight": 60,
1223
+ "gap": 12
1224
+ }
1225
+ }
1226
+ }
1227
+ },
1228
+ {
1229
+ "name": "Skill",
1230
+ "type": "bento",
1231
+ "scopeProfileSlug": "skill",
1232
+ "config": {
1233
+ "layout": "bento",
1234
+ "blocks": [
1235
+ {
1236
+ "id": "skill-header",
1237
+ "kind": "widget",
1238
+ "widgetType": "section-header",
1239
+ "pos": {
1240
+ "x": 0,
1241
+ "y": 0,
1242
+ "w": 12,
1243
+ "h": 2
1244
+ },
1245
+ "config": {
1246
+ "title": "Skills",
1247
+ "icon": "Zap",
1248
+ "color": "#10B981",
1249
+ "profileSlug": "skill"
1250
+ }
1251
+ },
1252
+ {
1253
+ "id": "skill-count",
1254
+ "kind": "widget",
1255
+ "widgetType": "stat-card",
1256
+ "pos": {
1257
+ "x": 0,
1258
+ "y": 2,
1259
+ "w": 3,
1260
+ "h": 3
1261
+ },
1262
+ "config": {
1263
+ "label": "Total Skills",
1264
+ "aggregation": "count",
1265
+ "profileSlug": "skill",
1266
+ "color": "#10B981"
1267
+ }
1268
+ },
1269
+ {
1270
+ "id": "skill-registry",
1271
+ "kind": "view",
1272
+ "viewName": "Skill Registry",
1273
+ "pos": {
1274
+ "x": 0,
1275
+ "y": 9,
1276
+ "w": 12,
1277
+ "h": 8
1278
+ }
1279
+ },
1280
+ {
1281
+ "id": "skill-trusted",
1282
+ "kind": "widget",
1283
+ "widgetType": "entity-count",
1284
+ "pos": {
1285
+ "x": 3,
1286
+ "y": 2,
1287
+ "w": 3,
1288
+ "h": 3
1289
+ },
1290
+ "config": {
1291
+ "profileSlug": "skill",
1292
+ "label": "Trusted",
1293
+ "icon": "Shield",
1294
+ "filter": {
1295
+ "trusted": true
1296
+ },
1297
+ "color": "#10B981"
1298
+ }
1299
+ },
1300
+ {
1301
+ "id": "skill-untrusted",
1302
+ "kind": "widget",
1303
+ "widgetType": "entity-count",
1304
+ "pos": {
1305
+ "x": 6,
1306
+ "y": 2,
1307
+ "w": 3,
1308
+ "h": 3
1309
+ },
1310
+ "config": {
1311
+ "profileSlug": "skill",
1312
+ "label": "Untrusted",
1313
+ "icon": "AlertTriangle",
1314
+ "filter": {
1315
+ "trusted": false
1316
+ },
1317
+ "color": "#EF4444"
1318
+ }
1319
+ },
1320
+ {
1321
+ "id": "skill-spotlight",
1322
+ "kind": "widget",
1323
+ "widgetType": "entity-spotlight",
1324
+ "pos": {
1325
+ "x": 0,
1326
+ "y": 5,
1327
+ "w": 6,
1328
+ "h": 4
1329
+ },
1330
+ "config": {
1331
+ "profileSlug": "skill",
1332
+ "seed": "random",
1333
+ "layout": "detail",
1334
+ "subtitleField": "category",
1335
+ "color": "#8B5CF6"
1336
+ }
1337
+ },
1338
+ {
1339
+ "id": "skill-agents-using",
1340
+ "kind": "widget",
1341
+ "widgetType": "entity-list",
1342
+ "pos": {
1343
+ "x": 6,
1344
+ "y": 5,
1345
+ "w": 6,
1346
+ "h": 4
1347
+ },
1348
+ "config": {
1349
+ "profileSlug": "agent",
1350
+ "title": "Agents Using",
1351
+ "limit": 6,
1352
+ "variant": "compact"
1353
+ }
1354
+ }
1355
+ ],
1356
+ "breakpoints": {
1357
+ "lg": {
1358
+ "cols": 12,
1359
+ "rowHeight": 60,
1360
+ "gap": 12
1361
+ },
1362
+ "md": {
1363
+ "cols": 10,
1364
+ "rowHeight": 60,
1365
+ "gap": 12
1366
+ },
1367
+ "sm": {
1368
+ "cols": 6,
1369
+ "rowHeight": 60,
1370
+ "gap": 12
1371
+ },
1372
+ "xs": {
1373
+ "cols": 4,
1374
+ "rowHeight": 60,
1375
+ "gap": 12
1376
+ },
1377
+ "xxs": {
1378
+ "cols": 2,
1379
+ "rowHeight": 60,
1380
+ "gap": 12
1381
+ }
1382
+ }
1383
+ }
1384
+ },
1385
+ {
1386
+ "name": "Provider",
1387
+ "type": "bento",
1388
+ "scopeProfileSlug": "provider",
1389
+ "config": {
1390
+ "layout": "bento",
1391
+ "blocks": [
1392
+ {
1393
+ "id": "provider-header",
1394
+ "kind": "widget",
1395
+ "widgetType": "section-header",
1396
+ "pos": {
1397
+ "x": 0,
1398
+ "y": 0,
1399
+ "w": 12,
1400
+ "h": 2
1401
+ },
1402
+ "config": {
1403
+ "title": "Providers",
1404
+ "icon": "Database",
1405
+ "color": "#06B6D4",
1406
+ "profileSlug": "provider"
1407
+ }
1408
+ },
1409
+ {
1410
+ "id": "provider-count",
1411
+ "kind": "widget",
1412
+ "widgetType": "stat-card",
1413
+ "pos": {
1414
+ "x": 0,
1415
+ "y": 2,
1416
+ "w": 3,
1417
+ "h": 3
1418
+ },
1419
+ "config": {
1420
+ "label": "Total Providers",
1421
+ "aggregation": "count",
1422
+ "profileSlug": "provider",
1423
+ "color": "#06B6D4"
1424
+ }
1425
+ },
1426
+ {
1427
+ "id": "provider-dash",
1428
+ "kind": "view",
1429
+ "viewName": "Provider Dashboard",
1430
+ "pos": {
1431
+ "x": 0,
1432
+ "y": 9,
1433
+ "w": 12,
1434
+ "h": 8
1435
+ }
1436
+ },
1437
+ {
1438
+ "id": "provider-keys",
1439
+ "kind": "view",
1440
+ "viewName": "Provider Key Health",
1441
+ "pos": {
1442
+ "x": 0,
1443
+ "y": 19,
1444
+ "w": 12,
1445
+ "h": 8
1446
+ }
1447
+ },
1448
+ {
1449
+ "id": "provider-healthy",
1450
+ "kind": "widget",
1451
+ "widgetType": "entity-count",
1452
+ "pos": {
1453
+ "x": 3,
1454
+ "y": 2,
1455
+ "w": 3,
1456
+ "h": 3
1457
+ },
1458
+ "config": {
1459
+ "profileSlug": "provider",
1460
+ "label": "Healthy",
1461
+ "icon": "CheckCircle",
1462
+ "filter": {
1463
+ "status": "healthy"
1464
+ },
1465
+ "color": "#10B981"
1466
+ }
1467
+ },
1468
+ {
1469
+ "id": "provider-degraded",
1470
+ "kind": "widget",
1471
+ "widgetType": "entity-count",
1472
+ "pos": {
1473
+ "x": 6,
1474
+ "y": 2,
1475
+ "w": 3,
1476
+ "h": 3
1477
+ },
1478
+ "config": {
1479
+ "profileSlug": "provider",
1480
+ "label": "Degraded",
1481
+ "icon": "AlertTriangle",
1482
+ "filter": {
1483
+ "status": "degraded"
1484
+ },
1485
+ "color": "#F59E0B"
1486
+ }
1487
+ },
1488
+ {
1489
+ "id": "provider-all",
1490
+ "kind": "widget",
1491
+ "widgetType": "entity-list",
1492
+ "pos": {
1493
+ "x": 0,
1494
+ "y": 5,
1495
+ "w": 12,
1496
+ "h": 4
1497
+ },
1498
+ "config": {
1499
+ "profileSlug": "provider",
1500
+ "title": "All Providers",
1501
+ "limit": 8,
1502
+ "variant": "detailed"
1503
+ }
1504
+ }
1505
+ ],
1506
+ "breakpoints": {
1507
+ "lg": {
1508
+ "cols": 12,
1509
+ "rowHeight": 60,
1510
+ "gap": 12
1511
+ },
1512
+ "md": {
1513
+ "cols": 10,
1514
+ "rowHeight": 60,
1515
+ "gap": 12
1516
+ },
1517
+ "sm": {
1518
+ "cols": 6,
1519
+ "rowHeight": 60,
1520
+ "gap": 12
1521
+ },
1522
+ "xs": {
1523
+ "cols": 4,
1524
+ "rowHeight": 60,
1525
+ "gap": 12
1526
+ },
1527
+ "xxs": {
1528
+ "cols": 2,
1529
+ "rowHeight": 60,
1530
+ "gap": 12
1531
+ }
1532
+ }
1533
+ }
1534
+ }
1535
+ ],
1536
+ "displayTemplates": [
1537
+ {
1538
+ "name": "Agent Card",
1539
+ "description": "",
1540
+ "entityType": "agent",
1541
+ "targetType": "entity",
1542
+ "isDefault": true,
1543
+ "config": {
1544
+ "layout": {
1545
+ "structure": {
1546
+ "header": {
1547
+ "enabled": true,
1548
+ "slots": [
1549
+ "agent-status",
1550
+ "agent-health",
1551
+ "agent-runtime",
1552
+ "agent-role"
1553
+ ],
1554
+ "layout": "horizontal"
1555
+ },
1556
+ "sidebar": {
1557
+ "enabled": true,
1558
+ "slots": [
1559
+ "agent-owner",
1560
+ "agent-provider",
1561
+ "agent-channel",
1562
+ "agent-model",
1563
+ "agent-version",
1564
+ "agent-last-seen",
1565
+ "agent-deployment",
1566
+ "agent-heartbeat"
1567
+ ],
1568
+ "position": "right",
1569
+ "width": "260px",
1570
+ "layout": "vertical"
1571
+ },
1572
+ "content": {
1573
+ "enabled": true,
1574
+ "slots": [
1575
+ "agent-workspace",
1576
+ "agent-channels",
1577
+ "agent-tags"
1578
+ ],
1579
+ "layout": "vertical"
1580
+ }
1581
+ },
1582
+ "fieldMapping": {
1583
+ "agent-status": {
1584
+ "slot": "agent-status",
1585
+ "renderer": {
1586
+ "type": "badge"
1587
+ },
1588
+ "order": 1
1589
+ },
1590
+ "agent-health": {
1591
+ "slot": "agent-health",
1592
+ "renderer": {
1593
+ "type": "badge"
1594
+ },
1595
+ "order": 2
1596
+ },
1597
+ "agent-runtime": {
1598
+ "slot": "agent-runtime",
1599
+ "renderer": {
1600
+ "type": "badge"
1601
+ },
1602
+ "order": 3
1603
+ },
1604
+ "agent-role": {
1605
+ "slot": "agent-role",
1606
+ "renderer": {
1607
+ "type": "badge"
1608
+ },
1609
+ "order": 4
1610
+ },
1611
+ "agent-owner": {
1612
+ "slot": "agent-owner",
1613
+ "renderer": {
1614
+ "type": "avatar"
1615
+ },
1616
+ "order": 5
1617
+ },
1618
+ "agent-provider": {
1619
+ "slot": "agent-provider",
1620
+ "renderer": {
1621
+ "type": "link"
1622
+ },
1623
+ "order": 6
1624
+ },
1625
+ "agent-channel": {
1626
+ "slot": "agent-channel",
1627
+ "renderer": {
1628
+ "type": "text"
1629
+ },
1630
+ "order": 7,
1631
+ "label": "Primary Channel",
1632
+ "showLabel": true
1633
+ },
1634
+ "agent-model": {
1635
+ "slot": "agent-model",
1636
+ "renderer": {
1637
+ "type": "text"
1638
+ },
1639
+ "order": 8,
1640
+ "label": "Model",
1641
+ "showLabel": true
1642
+ },
1643
+ "agent-version": {
1644
+ "slot": "agent-version",
1645
+ "renderer": {
1646
+ "type": "text"
1647
+ },
1648
+ "order": 9,
1649
+ "label": "Version",
1650
+ "showLabel": true
1651
+ },
1652
+ "agent-last-seen": {
1653
+ "slot": "agent-last-seen",
1654
+ "renderer": {
1655
+ "type": "date",
1656
+ "format": "relative"
1657
+ },
1658
+ "order": 10
1659
+ },
1660
+ "agent-deployment": {
1661
+ "slot": "agent-deployment",
1662
+ "renderer": {
1663
+ "type": "text"
1664
+ },
1665
+ "order": 11,
1666
+ "label": "Deployment",
1667
+ "showLabel": true
1668
+ },
1669
+ "agent-heartbeat": {
1670
+ "slot": "agent-heartbeat",
1671
+ "renderer": {
1672
+ "type": "text"
1673
+ },
1674
+ "order": 12,
1675
+ "label": "Heartbeat",
1676
+ "showLabel": true
1677
+ },
1678
+ "agent-workspace": {
1679
+ "slot": "agent-workspace",
1680
+ "renderer": {
1681
+ "type": "text"
1682
+ },
1683
+ "order": 13,
1684
+ "label": "Workspace Path",
1685
+ "showLabel": true
1686
+ },
1687
+ "agent-channels": {
1688
+ "slot": "agent-channels",
1689
+ "renderer": {
1690
+ "type": "badge"
1691
+ },
1692
+ "order": 14,
1693
+ "label": "All Channels",
1694
+ "showLabel": true
1695
+ },
1696
+ "agent-tags": {
1697
+ "slot": "agent-tags",
1698
+ "renderer": {
1699
+ "type": "badge"
1700
+ },
1701
+ "order": 15
1702
+ }
1703
+ }
1704
+ },
1705
+ "colors": {
1706
+ "accent": "#1A3A5C"
1707
+ }
1708
+ }
1709
+ },
1710
+ {
1711
+ "name": "Project Card",
1712
+ "description": "",
1713
+ "entityType": "project",
1714
+ "targetType": "entity",
1715
+ "isDefault": true,
1716
+ "config": {
1717
+ "layout": {
1718
+ "structure": {
1719
+ "header": {
1720
+ "enabled": true,
1721
+ "slots": [
1722
+ "project-status",
1723
+ "project-priority",
1724
+ "project-health",
1725
+ "project-type"
1726
+ ],
1727
+ "layout": "horizontal"
1728
+ },
1729
+ "sidebar": {
1730
+ "enabled": true,
1731
+ "slots": [
1732
+ "project-assigned-agent",
1733
+ "project-owner",
1734
+ "project-deadline",
1735
+ "project-start"
1736
+ ],
1737
+ "position": "right",
1738
+ "width": "260px",
1739
+ "layout": "vertical"
1740
+ },
1741
+ "content": {
1742
+ "enabled": true,
1743
+ "slots": [
1744
+ "project-goal",
1745
+ "project-outcome",
1746
+ "project-tags"
1747
+ ],
1748
+ "layout": "vertical"
1749
+ }
1750
+ },
1751
+ "fieldMapping": {
1752
+ "project-status": {
1753
+ "slot": "project-status",
1754
+ "renderer": {
1755
+ "type": "badge"
1756
+ },
1757
+ "order": 1
1758
+ },
1759
+ "project-priority": {
1760
+ "slot": "project-priority",
1761
+ "renderer": {
1762
+ "type": "badge"
1763
+ },
1764
+ "order": 2
1765
+ },
1766
+ "project-health": {
1767
+ "slot": "project-health",
1768
+ "renderer": {
1769
+ "type": "badge"
1770
+ },
1771
+ "order": 3
1772
+ },
1773
+ "project-type": {
1774
+ "slot": "project-type",
1775
+ "renderer": {
1776
+ "type": "badge"
1777
+ },
1778
+ "order": 4
1779
+ },
1780
+ "project-assigned-agent": {
1781
+ "slot": "project-assigned-agent",
1782
+ "renderer": {
1783
+ "type": "link"
1784
+ },
1785
+ "order": 5
1786
+ },
1787
+ "project-owner": {
1788
+ "slot": "project-owner",
1789
+ "renderer": {
1790
+ "type": "avatar"
1791
+ },
1792
+ "order": 6
1793
+ },
1794
+ "project-deadline": {
1795
+ "slot": "project-deadline",
1796
+ "renderer": {
1797
+ "type": "date",
1798
+ "format": "relative"
1799
+ },
1800
+ "order": 7
1801
+ },
1802
+ "project-start": {
1803
+ "slot": "project-start",
1804
+ "renderer": {
1805
+ "type": "date"
1806
+ },
1807
+ "order": 8
1808
+ },
1809
+ "project-goal": {
1810
+ "slot": "project-goal",
1811
+ "renderer": {
1812
+ "type": "text"
1813
+ },
1814
+ "order": 9,
1815
+ "label": "Goal",
1816
+ "showLabel": true
1817
+ },
1818
+ "project-outcome": {
1819
+ "slot": "project-outcome",
1820
+ "renderer": {
1821
+ "type": "text"
1822
+ },
1823
+ "order": 10,
1824
+ "label": "Expected Outcome",
1825
+ "showLabel": true
1826
+ },
1827
+ "project-tags": {
1828
+ "slot": "project-tags",
1829
+ "renderer": {
1830
+ "type": "badge"
1831
+ },
1832
+ "order": 11
1833
+ }
1834
+ }
1835
+ },
1836
+ "colors": {
1837
+ "accent": "#2E6DA4"
1838
+ }
1839
+ }
1840
+ },
1841
+ {
1842
+ "name": "Task Card",
1843
+ "description": "",
1844
+ "entityType": "task",
1845
+ "targetType": "entity",
1846
+ "isDefault": true,
1847
+ "config": {
1848
+ "layout": {
1849
+ "structure": {
1850
+ "header": {
1851
+ "enabled": true,
1852
+ "slots": [
1853
+ "task-status",
1854
+ "task-priority",
1855
+ "task-type"
1856
+ ],
1857
+ "layout": "horizontal"
1858
+ },
1859
+ "sidebar": {
1860
+ "enabled": true,
1861
+ "slots": [
1862
+ "task-assigned-agent",
1863
+ "task-project",
1864
+ "task-due-date",
1865
+ "task-token-estimate",
1866
+ "task-actual-tokens",
1867
+ "task-effort-hours"
1868
+ ],
1869
+ "position": "right",
1870
+ "width": "260px",
1871
+ "layout": "vertical"
1872
+ },
1873
+ "content": {
1874
+ "enabled": true,
1875
+ "slots": [
1876
+ "task-blocked-by",
1877
+ "task-session-key",
1878
+ "task-tags"
1879
+ ],
1880
+ "layout": "vertical"
1881
+ }
1882
+ },
1883
+ "fieldMapping": {
1884
+ "task-status": {
1885
+ "slot": "task-status",
1886
+ "renderer": {
1887
+ "type": "badge"
1888
+ },
1889
+ "order": 1
1890
+ },
1891
+ "task-priority": {
1892
+ "slot": "task-priority",
1893
+ "renderer": {
1894
+ "type": "badge"
1895
+ },
1896
+ "order": 2
1897
+ },
1898
+ "task-type": {
1899
+ "slot": "task-type",
1900
+ "renderer": {
1901
+ "type": "badge"
1902
+ },
1903
+ "order": 3
1904
+ },
1905
+ "task-assigned-agent": {
1906
+ "slot": "task-assigned-agent",
1907
+ "renderer": {
1908
+ "type": "link"
1909
+ },
1910
+ "order": 4
1911
+ },
1912
+ "task-project": {
1913
+ "slot": "task-project",
1914
+ "renderer": {
1915
+ "type": "link"
1916
+ },
1917
+ "order": 5
1918
+ },
1919
+ "task-due-date": {
1920
+ "slot": "task-due-date",
1921
+ "renderer": {
1922
+ "type": "date",
1923
+ "format": "relative"
1924
+ },
1925
+ "order": 6
1926
+ },
1927
+ "task-token-estimate": {
1928
+ "slot": "task-token-estimate",
1929
+ "renderer": {
1930
+ "type": "number"
1931
+ },
1932
+ "order": 7
1933
+ },
1934
+ "task-actual-tokens": {
1935
+ "slot": "task-actual-tokens",
1936
+ "renderer": {
1937
+ "type": "number"
1938
+ },
1939
+ "order": 8
1940
+ },
1941
+ "task-effort-hours": {
1942
+ "slot": "task-effort-hours",
1943
+ "renderer": {
1944
+ "type": "number"
1945
+ },
1946
+ "order": 9
1947
+ },
1948
+ "task-blocked-by": {
1949
+ "slot": "task-blocked-by",
1950
+ "renderer": {
1951
+ "type": "text"
1952
+ },
1953
+ "order": 10,
1954
+ "label": "Blocked By",
1955
+ "showLabel": true
1956
+ },
1957
+ "task-session-key": {
1958
+ "slot": "task-session-key",
1959
+ "renderer": {
1960
+ "type": "text"
1961
+ },
1962
+ "order": 11,
1963
+ "label": "Session Key",
1964
+ "showLabel": true
1965
+ },
1966
+ "task-tags": {
1967
+ "slot": "task-tags",
1968
+ "renderer": {
1969
+ "type": "badge"
1970
+ },
1971
+ "order": 12
1972
+ }
1973
+ }
1974
+ },
1975
+ "colors": {
1976
+ "accent": "#1B6E45"
1977
+ }
1978
+ }
1979
+ },
1980
+ {
1981
+ "name": "Skill Card",
1982
+ "description": "",
1983
+ "entityType": "skill",
1984
+ "targetType": "entity",
1985
+ "isDefault": true,
1986
+ "config": {
1987
+ "layout": {
1988
+ "structure": {
1989
+ "header": {
1990
+ "enabled": true,
1991
+ "slots": [
1992
+ "skill-trust",
1993
+ "skill-virustotal",
1994
+ "skill-category"
1995
+ ],
1996
+ "layout": "horizontal"
1997
+ },
1998
+ "sidebar": {
1999
+ "enabled": true,
2000
+ "slots": [
2001
+ "skill-version",
2002
+ "skill-install-date",
2003
+ "skill-last-audit",
2004
+ "skill-maintainer",
2005
+ "skill-requires-api"
2006
+ ],
2007
+ "position": "right",
2008
+ "width": "260px",
2009
+ "layout": "vertical"
2010
+ },
2011
+ "content": {
2012
+ "enabled": true,
2013
+ "slots": [
2014
+ "skill-source-url",
2015
+ "skill-notes"
2016
+ ],
2017
+ "layout": "vertical"
2018
+ }
2019
+ },
2020
+ "fieldMapping": {
2021
+ "skill-trust": {
2022
+ "slot": "skill-trust",
2023
+ "renderer": {
2024
+ "type": "badge"
2025
+ },
2026
+ "order": 1
2027
+ },
2028
+ "skill-virustotal": {
2029
+ "slot": "skill-virustotal",
2030
+ "renderer": {
2031
+ "type": "badge"
2032
+ },
2033
+ "order": 2
2034
+ },
2035
+ "skill-category": {
2036
+ "slot": "skill-category",
2037
+ "renderer": {
2038
+ "type": "badge"
2039
+ },
2040
+ "order": 3
2041
+ },
2042
+ "skill-version": {
2043
+ "slot": "skill-version",
2044
+ "renderer": {
2045
+ "type": "text"
2046
+ },
2047
+ "order": 4,
2048
+ "label": "Version",
2049
+ "showLabel": true
2050
+ },
2051
+ "skill-install-date": {
2052
+ "slot": "skill-install-date",
2053
+ "renderer": {
2054
+ "type": "date"
2055
+ },
2056
+ "order": 5
2057
+ },
2058
+ "skill-last-audit": {
2059
+ "slot": "skill-last-audit",
2060
+ "renderer": {
2061
+ "type": "date",
2062
+ "format": "relative"
2063
+ },
2064
+ "order": 6,
2065
+ "label": "Last Audit",
2066
+ "showLabel": true
2067
+ },
2068
+ "skill-maintainer": {
2069
+ "slot": "skill-maintainer",
2070
+ "renderer": {
2071
+ "type": "text"
2072
+ },
2073
+ "order": 7,
2074
+ "label": "Maintainer",
2075
+ "showLabel": true
2076
+ },
2077
+ "skill-requires-api": {
2078
+ "slot": "skill-requires-api",
2079
+ "renderer": {
2080
+ "type": "checkbox"
2081
+ },
2082
+ "order": 8,
2083
+ "label": "Requires API Key",
2084
+ "showLabel": true
2085
+ },
2086
+ "skill-source-url": {
2087
+ "slot": "skill-source-url",
2088
+ "renderer": {
2089
+ "type": "text"
2090
+ },
2091
+ "order": 9,
2092
+ "label": "Source",
2093
+ "showLabel": true
2094
+ },
2095
+ "skill-notes": {
2096
+ "slot": "skill-notes",
2097
+ "renderer": {
2098
+ "type": "text"
2099
+ },
2100
+ "order": 10,
2101
+ "label": "Security Notes",
2102
+ "showLabel": true
2103
+ }
2104
+ }
2105
+ },
2106
+ "colors": {
2107
+ "accent": "#7C3AED"
2108
+ }
2109
+ }
2110
+ },
2111
+ {
2112
+ "name": "Provider Card",
2113
+ "description": "",
2114
+ "entityType": "provider",
2115
+ "targetType": "entity",
2116
+ "isDefault": true,
2117
+ "config": {
2118
+ "layout": {
2119
+ "structure": {
2120
+ "header": {
2121
+ "enabled": true,
2122
+ "slots": [
2123
+ "provider-key-health",
2124
+ "provider-type"
2125
+ ],
2126
+ "layout": "horizontal"
2127
+ },
2128
+ "sidebar": {
2129
+ "enabled": true,
2130
+ "slots": [
2131
+ "provider-model",
2132
+ "provider-cost-input",
2133
+ "provider-cost-output",
2134
+ "provider-budget-day",
2135
+ "provider-spend-week"
2136
+ ],
2137
+ "position": "right",
2138
+ "width": "260px",
2139
+ "layout": "vertical"
2140
+ },
2141
+ "content": {
2142
+ "enabled": true,
2143
+ "slots": [
2144
+ "provider-base-url",
2145
+ "provider-notes"
2146
+ ],
2147
+ "layout": "vertical"
2148
+ }
2149
+ },
2150
+ "fieldMapping": {
2151
+ "provider-key-health": {
2152
+ "slot": "provider-key-health",
2153
+ "renderer": {
2154
+ "type": "badge"
2155
+ },
2156
+ "order": 1
2157
+ },
2158
+ "provider-type": {
2159
+ "slot": "provider-type",
2160
+ "renderer": {
2161
+ "type": "badge"
2162
+ },
2163
+ "order": 2
2164
+ },
2165
+ "provider-model": {
2166
+ "slot": "provider-model",
2167
+ "renderer": {
2168
+ "type": "text"
2169
+ },
2170
+ "order": 3,
2171
+ "label": "Model",
2172
+ "showLabel": true
2173
+ },
2174
+ "provider-cost-input": {
2175
+ "slot": "provider-cost-input",
2176
+ "renderer": {
2177
+ "type": "number"
2178
+ },
2179
+ "order": 4
2180
+ },
2181
+ "provider-cost-output": {
2182
+ "slot": "provider-cost-output",
2183
+ "renderer": {
2184
+ "type": "number"
2185
+ },
2186
+ "order": 5
2187
+ },
2188
+ "provider-budget-day": {
2189
+ "slot": "provider-budget-day",
2190
+ "renderer": {
2191
+ "type": "number"
2192
+ },
2193
+ "order": 6
2194
+ },
2195
+ "provider-spend-week": {
2196
+ "slot": "provider-spend-week",
2197
+ "renderer": {
2198
+ "type": "progress"
2199
+ },
2200
+ "order": 7,
2201
+ "label": "Weekly Spend",
2202
+ "showLabel": true
2203
+ },
2204
+ "provider-base-url": {
2205
+ "slot": "provider-base-url",
2206
+ "renderer": {
2207
+ "type": "text"
2208
+ },
2209
+ "order": 8,
2210
+ "label": "Endpoint",
2211
+ "showLabel": true
2212
+ },
2213
+ "provider-notes": {
2214
+ "slot": "provider-notes",
2215
+ "renderer": {
2216
+ "type": "text"
2217
+ },
2218
+ "order": 9,
2219
+ "label": "Notes",
2220
+ "showLabel": true
2221
+ }
2222
+ }
2223
+ },
2224
+ "colors": {
2225
+ "accent": "#B5451B"
2226
+ }
2227
+ }
2228
+ }
2229
+ ],
2230
+ "suggestedRelations": [
2231
+ {
2232
+ "sourceRef": "agent:Mira",
2233
+ "targetRef": "provider:Claude (Anthropic)",
2234
+ "type": "links_to"
2235
+ },
2236
+ {
2237
+ "sourceRef": "agent:Mira",
2238
+ "targetRef": "provider:DeepSeek via OpenRouter",
2239
+ "type": "links_to"
2240
+ },
2241
+ {
2242
+ "sourceRef": "agent:Lore",
2243
+ "targetRef": "provider:Claude (Anthropic)",
2244
+ "type": "links_to"
2245
+ },
2246
+ {
2247
+ "sourceRef": "agent:Tact",
2248
+ "targetRef": "provider:DeepSeek via OpenRouter",
2249
+ "type": "links_to"
2250
+ },
2251
+ {
2252
+ "sourceRef": "agent:Mira",
2253
+ "targetRef": "skill:github-mcp",
2254
+ "type": "links_to"
2255
+ },
2256
+ {
2257
+ "sourceRef": "agent:Mira",
2258
+ "targetRef": "skill:shell-sandbox",
2259
+ "type": "links_to"
2260
+ },
2261
+ {
2262
+ "sourceRef": "agent:Mira",
2263
+ "targetRef": "skill:telegram",
2264
+ "type": "links_to"
2265
+ },
2266
+ {
2267
+ "sourceRef": "agent:Lore",
2268
+ "targetRef": "skill:web-browser",
2269
+ "type": "links_to"
2270
+ },
2271
+ {
2272
+ "sourceRef": "agent:Lore",
2273
+ "targetRef": "skill:telegram",
2274
+ "type": "links_to"
2275
+ },
2276
+ {
2277
+ "sourceRef": "agent:Tact",
2278
+ "targetRef": "skill:email-gmail",
2279
+ "type": "links_to"
2280
+ },
2281
+ {
2282
+ "sourceRef": "agent:Tact",
2283
+ "targetRef": "skill:telegram",
2284
+ "type": "links_to"
2285
+ },
2286
+ {
2287
+ "sourceRef": "agent:Tact",
2288
+ "targetRef": "skill:flagged-analytics-skill",
2289
+ "type": "links_to"
2290
+ },
2291
+ {
2292
+ "sourceRef": "project:Synap CI/CD Pipeline",
2293
+ "targetRef": "agent:Mira",
2294
+ "type": "assigned_to"
2295
+ },
2296
+ {
2297
+ "sourceRef": "project:Competitive Research Sprint",
2298
+ "targetRef": "agent:Lore",
2299
+ "type": "assigned_to"
2300
+ },
2301
+ {
2302
+ "sourceRef": "project:Client Onboarding Automation",
2303
+ "targetRef": "agent:Tact",
2304
+ "type": "assigned_to"
2305
+ },
2306
+ {
2307
+ "sourceRef": "task:Automate test suite on PR merge",
2308
+ "targetRef": "project:Synap CI/CD Pipeline",
2309
+ "type": "belongs_to_project"
2310
+ },
2311
+ {
2312
+ "sourceRef": "task:Automate test suite on PR merge",
2313
+ "targetRef": "agent:Mira",
2314
+ "type": "assigned_to"
2315
+ },
2316
+ {
2317
+ "sourceRef": "task:Deploy staging on green CI",
2318
+ "targetRef": "project:Synap CI/CD Pipeline",
2319
+ "type": "belongs_to_project"
2320
+ },
2321
+ {
2322
+ "sourceRef": "task:Deploy staging on green CI",
2323
+ "targetRef": "agent:Mira",
2324
+ "type": "assigned_to"
2325
+ },
2326
+ {
2327
+ "sourceRef": "task:Research OpenClaw alternatives landscape",
2328
+ "targetRef": "project:Competitive Research Sprint",
2329
+ "type": "belongs_to_project"
2330
+ },
2331
+ {
2332
+ "sourceRef": "task:Research OpenClaw alternatives landscape",
2333
+ "targetRef": "agent:Lore",
2334
+ "type": "assigned_to"
2335
+ },
2336
+ {
2337
+ "sourceRef": "task:Compile pain points from GitHub issues",
2338
+ "targetRef": "project:Competitive Research Sprint",
2339
+ "type": "belongs_to_project"
2340
+ },
2341
+ {
2342
+ "sourceRef": "task:Compile pain points from GitHub issues",
2343
+ "targetRef": "agent:Lore",
2344
+ "type": "assigned_to"
2345
+ },
2346
+ {
2347
+ "sourceRef": "task:Send welcome email sequence on signup",
2348
+ "targetRef": "project:Client Onboarding Automation",
2349
+ "type": "belongs_to_project"
2350
+ },
2351
+ {
2352
+ "sourceRef": "task:Send welcome email sequence on signup",
2353
+ "targetRef": "agent:Tact",
2354
+ "type": "assigned_to"
2355
+ },
2356
+ {
2357
+ "sourceRef": "task:Create CRM record and Slack intro",
2358
+ "targetRef": "project:Client Onboarding Automation",
2359
+ "type": "belongs_to_project"
2360
+ },
2361
+ {
2362
+ "sourceRef": "task:Create CRM record and Slack intro",
2363
+ "targetRef": "agent:Tact",
2364
+ "type": "assigned_to"
2365
+ },
2366
+ {
2367
+ "sourceRef": "agent:Mira",
2368
+ "targetRef": "person:Antoine",
2369
+ "type": "created_by"
2370
+ },
2371
+ {
2372
+ "sourceRef": "agent:Lore",
2373
+ "targetRef": "person:Antoine",
2374
+ "type": "created_by"
2375
+ },
2376
+ {
2377
+ "sourceRef": "agent:Tact",
2378
+ "targetRef": "person:Antoine",
2379
+ "type": "created_by"
2380
+ }
2381
+ ],
2382
+ "validation": {
2383
+ "profileCount": 6,
2384
+ "totalProperties": 60,
2385
+ "entityIdProperties": 8,
2386
+ "seedEntityCount": 20,
2387
+ "suggestedRelationsCount": 29,
2388
+ "displayTemplateCount": 5,
2389
+ "viewCount": 15,
2390
+ "dashboardWidgetCount": 13,
2391
+ "entitiesWithContent": 3,
2392
+ "notes": [
2393
+ "Agent Fleet view (kanban by status) is the structural demo differentiator — no equivalent exists in OpenClaw, OpenClaw, OpenClaw, or n8n",
2394
+ "Tact agent seeded with Degraded health and flagged skill as a realistic security incident demo — shows why the Skill registry with trust levels matters",
2395
+ "Provider entity tracks real OpenClaw-aligned pricing: Claude Sonnet 4.6 ($0.003/$0.015 per 1K), DeepSeek R1 via OpenRouter ($0.00055/$0.00219), Ollama (free)",
2396
+ "All ref: values in seed entities validated against titles in seedEntities array",
2397
+ "Content entities: Mira (agent brief + security config), Tact (degraded health alert + remediation steps), Claude provider (API ToS note re: OAuth)",
2398
+ "29 suggestedRelations covering: agent→provider (uses), agent→skill (uses), project→agent (assigned_to), task→project (belongs_to), task→agent (assigned_to), agent→person (owned_by)",
2399
+ "Relationship graph view spans all 6 profiles — the full sovereign topology from Person to Agent to Project to Task to Skill to Provider"
2400
+ ]
2401
+ },
2402
+ "bentoLayout": [
2403
+ {
2404
+ "widgetType": "welcome-header",
2405
+ "pos": {
2406
+ "x": 0,
2407
+ "y": 0,
2408
+ "w": 12,
2409
+ "h": 2
2410
+ },
2411
+ "config": {
2412
+ "title": "Agent OS",
2413
+ "subtitle": "Your sovereign control plane for the agent fleet."
2414
+ }
2415
+ },
2416
+ {
2417
+ "widgetType": "entity-count",
2418
+ "pos": {
2419
+ "x": 0,
2420
+ "y": 2,
2421
+ "w": 3,
2422
+ "h": 2
2423
+ },
2424
+ "config": {
2425
+ "profileSlug": "agent",
2426
+ "label": "Agents",
2427
+ "icon": "bot"
2428
+ }
2429
+ },
2430
+ {
2431
+ "widgetType": "entity-count",
2432
+ "pos": {
2433
+ "x": 3,
2434
+ "y": 2,
2435
+ "w": 3,
2436
+ "h": 2
2437
+ },
2438
+ "config": {
2439
+ "profileSlug": "task",
2440
+ "label": "Tasks",
2441
+ "icon": "check-square"
2442
+ }
2443
+ },
2444
+ {
2445
+ "widgetType": "entity-count",
2446
+ "pos": {
2447
+ "x": 6,
2448
+ "y": 2,
2449
+ "w": 3,
2450
+ "h": 2
2451
+ },
2452
+ "config": {
2453
+ "profileSlug": "skill",
2454
+ "label": "Skills",
2455
+ "icon": "zap"
2456
+ }
2457
+ },
2458
+ {
2459
+ "widgetType": "entity-count",
2460
+ "pos": {
2461
+ "x": 9,
2462
+ "y": 2,
2463
+ "w": 3,
2464
+ "h": 2
2465
+ },
2466
+ "config": {
2467
+ "profileSlug": "provider",
2468
+ "label": "Providers",
2469
+ "icon": "database"
2470
+ }
2471
+ },
2472
+ {
2473
+ "widgetType": "entity-spotlight",
2474
+ "pos": {
2475
+ "x": 0,
2476
+ "y": 4,
2477
+ "w": 4,
2478
+ "h": 4
2479
+ },
2480
+ "config": {
2481
+ "profileSlug": "agent",
2482
+ "seed": "random",
2483
+ "layout": "detail",
2484
+ "subtitleField": "status",
2485
+ "color": "#1A3A5C"
2486
+ }
2487
+ },
2488
+ {
2489
+ "widgetType": "entity-list",
2490
+ "pos": {
2491
+ "x": 4,
2492
+ "y": 4,
2493
+ "w": 4,
2494
+ "h": 4
2495
+ },
2496
+ "config": {
2497
+ "profileSlug": "task",
2498
+ "title": "Active Tasks",
2499
+ "limit": 6,
2500
+ "variant": "compact"
2501
+ }
2502
+ },
2503
+ {
2504
+ "widgetType": "entity-list",
2505
+ "pos": {
2506
+ "x": 8,
2507
+ "y": 4,
2508
+ "w": 4,
2509
+ "h": 4
2510
+ },
2511
+ "config": {
2512
+ "profileSlug": "skill",
2513
+ "title": "Top Skills",
2514
+ "limit": 6,
2515
+ "variant": "compact"
2516
+ }
2517
+ }
2518
+ ],
2519
+ "bentoViewBlocks": [
2520
+ {
2521
+ "kind": "view",
2522
+ "viewName": "Agent Fleet",
2523
+ "pos": {
2524
+ "x": 0,
2525
+ "y": 8,
2526
+ "w": 8,
2527
+ "h": 4
2528
+ }
2529
+ },
2530
+ {
2531
+ "kind": "view",
2532
+ "viewName": "Provider Key Health",
2533
+ "pos": {
2534
+ "x": 8,
2535
+ "y": 8,
2536
+ "w": 4,
2537
+ "h": 4
2538
+ }
2539
+ },
2540
+ {
2541
+ "kind": "view",
2542
+ "viewName": "Task Board",
2543
+ "pos": {
2544
+ "x": 0,
2545
+ "y": 12,
2546
+ "w": 7,
2547
+ "h": 4
2548
+ }
2549
+ },
2550
+ {
2551
+ "kind": "view",
2552
+ "viewName": "Untrusted Skills Alert",
2553
+ "pos": {
2554
+ "x": 7,
2555
+ "y": 12,
2556
+ "w": 5,
2557
+ "h": 4
2558
+ }
2559
+ }
2560
+ ],
2561
+ "layoutConfig": {
2562
+ "pinnedApps": [
2563
+ "intelligence",
2564
+ "dashboard",
2565
+ "data"
2566
+ ],
2567
+ "defaultView": "agent-fleet",
2568
+ "sidebarItems": [
2569
+ {
2570
+ "kind": "profile",
2571
+ "profileSlug": "agent",
2572
+ "label": "Agent Fleet",
2573
+ "icon": "bot"
2574
+ },
2575
+ {
2576
+ "kind": "profile",
2577
+ "profileSlug": "task",
2578
+ "label": "Tasks",
2579
+ "icon": "check-square"
2580
+ },
2581
+ {
2582
+ "kind": "profile",
2583
+ "profileSlug": "skill",
2584
+ "label": "Skills",
2585
+ "icon": "zap"
2586
+ },
2587
+ {
2588
+ "kind": "profile",
2589
+ "profileSlug": "project",
2590
+ "label": "Projects",
2591
+ "icon": "folder"
2592
+ },
2593
+ {
2594
+ "kind": "profile",
2595
+ "profileSlug": "provider",
2596
+ "label": "Providers",
2597
+ "icon": "database"
2598
+ },
2599
+ {
2600
+ "kind": "app",
2601
+ "appId": "intelligence",
2602
+ "label": "Intelligence"
2603
+ }
2604
+ ]
2605
+ },
2606
+ "bentoViewName": "Agent OS Home",
2607
+ "suggestedEntities": [
2608
+ {
2609
+ "profileSlug": "person",
2610
+ "title": "Antoine",
2611
+ "properties": {
2612
+ "person-role": "Founder",
2613
+ "person-email": "antoine@synap.io",
2614
+ "person-telegram": "@antoine_synap",
2615
+ "person-focus": "OpenClaw fleet management and agent OS template"
2616
+ }
2617
+ },
2618
+ {
2619
+ "profileSlug": "provider",
2620
+ "title": "Claude (Anthropic)",
2621
+ "properties": {
2622
+ "provider-type": "LLM Cloud",
2623
+ "provider-key-health": "Valid",
2624
+ "provider-model": "claude-sonnet-4-6",
2625
+ "provider-cost-input": 0.003,
2626
+ "provider-cost-output": 0.015,
2627
+ "provider-budget-day": 5,
2628
+ "provider-spend-week": 14.2,
2629
+ "provider-base-url": "https://api.anthropic.com/v1",
2630
+ "provider-notes": "Primary model for Mira (coding) and Lore (research). Claude Sonnet 4.6 via direct Anthropic API. OAuth tokens from Claude Free/Pro/Max are NOT permitted per Feb 2026 ToS update."
2631
+ }
2632
+ },
2633
+ {
2634
+ "profileSlug": "provider",
2635
+ "title": "DeepSeek via OpenRouter",
2636
+ "properties": {
2637
+ "provider-type": "API Gateway",
2638
+ "provider-key-health": "Valid",
2639
+ "provider-model": "deepseek/deepseek-r1",
2640
+ "provider-cost-input": 0.00055,
2641
+ "provider-cost-output": 0.00219,
2642
+ "provider-budget-day": 2,
2643
+ "provider-spend-week": 3.4,
2644
+ "provider-base-url": "https://openrouter.ai/api/v1",
2645
+ "provider-notes": "Cost-efficient option for Tact (ops agent) running high-volume onboarding automations. OpenRouter provides auth profile rotation and fallback chain."
2646
+ }
2647
+ },
2648
+ {
2649
+ "profileSlug": "provider",
2650
+ "title": "Ollama (Local)",
2651
+ "properties": {
2652
+ "provider-type": "LLM Local",
2653
+ "provider-key-health": "No Key (Local)",
2654
+ "provider-model": "qwen3:8b",
2655
+ "provider-cost-input": 0,
2656
+ "provider-cost-output": 0,
2657
+ "provider-budget-day": 0,
2658
+ "provider-spend-week": 0,
2659
+ "provider-base-url": "http://127.0.0.1:11434",
2660
+ "provider-notes": "Local Ollama instance for heartbeat tasks and low-stakes automation. Zero API cost. Qwen3 8B fits in 8GB RAM. Use for cron-driven monitoring tasks that don't require frontier model quality."
2661
+ }
2662
+ },
2663
+ {
2664
+ "profileSlug": "skill",
2665
+ "title": "github-mcp",
2666
+ "properties": {
2667
+ "skill-trust": "Trusted",
2668
+ "skill-category": "Development",
2669
+ "skill-source-url": "https://github.com/openclaw/skills/tree/main/github-mcp",
2670
+ "skill-version": "2.1.0",
2671
+ "skill-install-date": "2026-02-01",
2672
+ "skill-last-audit": "2026-02-15",
2673
+ "skill-virustotal": "Clean",
2674
+ "skill-maintainer": "OpenClaw core team",
2675
+ "skill-requires-api": true,
2676
+ "skill-notes": "Official MCP server for GitHub. Supports repo management, PR creation, issue triage, and webhook triggers. Maintained by OpenClaw core team. Audit Feb 15 — clean."
2677
+ }
2678
+ },
2679
+ {
2680
+ "profileSlug": "skill",
2681
+ "title": "shell-sandbox",
2682
+ "properties": {
2683
+ "skill-trust": "Trusted",
2684
+ "skill-category": "Development",
2685
+ "skill-source-url": "https://github.com/openclaw/skills/tree/main/shell-sandbox",
2686
+ "skill-version": "1.4.2",
2687
+ "skill-install-date": "2026-02-01",
2688
+ "skill-last-audit": "2026-02-20",
2689
+ "skill-virustotal": "Clean",
2690
+ "skill-maintainer": "openclaw-labs",
2691
+ "skill-requires-api": false,
2692
+ "skill-notes": "OpenClaw-compatible sandboxed shell executor. Commands run inside Docker container with workspace-scoped filesystem. Allowlist: git, npm, cargo, pytest, make. Never runs as root. Strongly preferred over bare shell access."
2693
+ }
2694
+ },
2695
+ {
2696
+ "profileSlug": "skill",
2697
+ "title": "telegram",
2698
+ "properties": {
2699
+ "skill-trust": "Trusted",
2700
+ "skill-category": "Communication",
2701
+ "skill-source-url": "https://github.com/openclaw/skills/tree/main/telegram",
2702
+ "skill-version": "3.0.1",
2703
+ "skill-install-date": "2026-02-01",
2704
+ "skill-last-audit": "2026-02-18",
2705
+ "skill-virustotal": "Clean",
2706
+ "skill-maintainer": "OpenClaw core team",
2707
+ "skill-requires-api": true,
2708
+ "skill-notes": "Official Telegram channel plugin. Supports DM and group commands. Bot token stored encrypted at rest in OpenClaw's SecretBackend. allowFrom configured to owner number only."
2709
+ }
2710
+ },
2711
+ {
2712
+ "profileSlug": "skill",
2713
+ "title": "web-browser",
2714
+ "properties": {
2715
+ "skill-trust": "Review",
2716
+ "skill-category": "Browser",
2717
+ "skill-source-url": "https://github.com/openclaw/skills/tree/main/web-browser",
2718
+ "skill-version": "1.8.0",
2719
+ "skill-install-date": "2026-02-10",
2720
+ "skill-last-audit": "2026-02-10",
2721
+ "skill-virustotal": "Clean",
2722
+ "skill-maintainer": "community",
2723
+ "skill-requires-api": false,
2724
+ "skill-notes": "CDP-based Chrome/Chromium automation. Significant prompt injection surface: agent reads web content that could contain malicious instructions. Set to Review pending a full audit. Do not use on untrusted URLs until audited."
2725
+ }
2726
+ },
2727
+ {
2728
+ "profileSlug": "skill",
2729
+ "title": "email-gmail",
2730
+ "properties": {
2731
+ "skill-trust": "Review",
2732
+ "skill-category": "Communication",
2733
+ "skill-source-url": "https://github.com/openclaw/skills/tree/main/email-gmail",
2734
+ "skill-version": "2.3.1",
2735
+ "skill-install-date": "2026-02-08",
2736
+ "skill-last-audit": "2026-02-08",
2737
+ "skill-virustotal": "Clean",
2738
+ "skill-maintainer": "community",
2739
+ "skill-requires-api": true,
2740
+ "skill-notes": "Gmail OAuth integration. Read + send permissions. Set to Review: OAuth scope is broad (all mail read/send). Consider scoping to specific labels or creating a dedicated automation Gmail account. Tact uses this for onboarding sequences — monitor closely."
2741
+ }
2742
+ },
2743
+ {
2744
+ "profileSlug": "skill",
2745
+ "title": "flagged-analytics-skill",
2746
+ "properties": {
2747
+ "skill-trust": "Untrusted",
2748
+ "skill-category": "Data",
2749
+ "skill-source-url": "https://clawhub.io/skills/advanced-analytics-v2",
2750
+ "skill-version": "1.0.3",
2751
+ "skill-install-date": "2026-02-14",
2752
+ "skill-last-audit": "2026-02-22",
2753
+ "skill-virustotal": "Flagged",
2754
+ "skill-maintainer": "unknown",
2755
+ "skill-requires-api": true,
2756
+ "skill-notes": "FLAGGED — VirusTotal scan Feb 22 returned 3 detections. Suspected data exfiltration payload similar to documented ClawHub supply chain attacks. Tact was using this skill (see relations). Immediately disable in Tact config. Source repo deleted. Do not reinstall. Report to ClawHub security team."
2757
+ }
2758
+ },
2759
+ {
2760
+ "profileSlug": "agent",
2761
+ "title": "Mira",
2762
+ "properties": {
2763
+ "agent-status": "Active",
2764
+ "agent-health": "Healthy",
2765
+ "agent-runtime": "OpenClaw",
2766
+ "agent-version": "v0.1.6",
2767
+ "agent-model": "claude-sonnet-4-6",
2768
+ "agent-provider": "ref:provider:Claude (Anthropic)",
2769
+ "agent-owner": "ref:person:Antoine",
2770
+ "agent-channel": "Telegram",
2771
+ "agent-channels": [
2772
+ "Telegram",
2773
+ "CLI"
2774
+ ],
2775
+ "agent-heartbeat": "*/30 * * * *",
2776
+ "agent-last-seen": "2026-02-24",
2777
+ "agent-workspace": "/home/agents/mira",
2778
+ "agent-deployment": "VPS",
2779
+ "agent-role": "Coder",
2780
+ "agent-tags": [
2781
+ "production",
2782
+ "24/7"
2783
+ ]
2784
+ },
2785
+ "content": "# Agent Brief: Mira\n\n## Identity\nMira is the primary coding agent. She runs OpenClaw v0.1.6 on a 4 vCPU / 8GB VPS (Hetzner CX22), boots in under 10ms, and idles at ~16MB RAM. Her primary model is Claude Sonnet 4.6 via direct Anthropic API. Fallback: DeepSeek R1 via OpenRouter for lower-priority tasks.\n\n## Core Capabilities\nMira's installed skills: github-mcp (repo management, PR creation, webhook triggers), shell-sandbox (sandboxed bash in Docker, allowlist: git/npm/cargo/pytest/make), telegram (agent channel). All three are Trusted — clean VirusTotal, maintained by verified sources.\n\n## Active Projects\n- **Synap CI/CD Pipeline**: Automates test runs on PR merge, deploys to staging on green CI. Runs cron every 30 minutes to check for open PRs.\n\n## Security Configuration\nOpenClaw workspace scoped to `/home/agents/mira`. Command allowlist enforced — no arbitrary shell execution. API key encrypted at rest via OpenClaw SecretBackend. Gateway accessible only via Tailscale (no public port exposure). Pairing code required for new connections.\n\n## Known Limitations\n- Does not handle design or content tasks — delegate those to a writer agent\n- Token usage spikes on large codebases: set per-session budget cap to $1.50 in provider config\n- WhatsApp channel deliberately excluded — Telegram preferred for persistent session management"
2786
+ },
2787
+ {
2788
+ "profileSlug": "agent",
2789
+ "title": "Lore",
2790
+ "properties": {
2791
+ "agent-status": "Idle",
2792
+ "agent-health": "Healthy",
2793
+ "agent-runtime": "OpenClaw",
2794
+ "agent-version": "v0.1.6",
2795
+ "agent-model": "claude-sonnet-4-6",
2796
+ "agent-provider": "ref:provider:Claude (Anthropic)",
2797
+ "agent-owner": "ref:person:Antoine",
2798
+ "agent-channel": "Telegram",
2799
+ "agent-channels": [
2800
+ "Telegram",
2801
+ "CLI"
2802
+ ],
2803
+ "agent-heartbeat": "0 8 * * *",
2804
+ "agent-last-seen": "2026-02-24",
2805
+ "agent-workspace": "/home/agents/lore",
2806
+ "agent-deployment": "VPS",
2807
+ "agent-role": "Researcher",
2808
+ "agent-tags": [
2809
+ "production",
2810
+ "on-demand"
2811
+ ]
2812
+ }
2813
+ },
2814
+ {
2815
+ "profileSlug": "agent",
2816
+ "title": "Tact",
2817
+ "properties": {
2818
+ "agent-status": "Active",
2819
+ "agent-health": "Degraded",
2820
+ "agent-runtime": "OpenClaw",
2821
+ "agent-version": "latest",
2822
+ "agent-model": "deepseek/deepseek-r1",
2823
+ "agent-provider": "ref:provider:DeepSeek via OpenRouter",
2824
+ "agent-owner": "ref:person:Antoine",
2825
+ "agent-channel": "Telegram",
2826
+ "agent-channels": [
2827
+ "Telegram"
2828
+ ],
2829
+ "agent-heartbeat": "0 9 * * 1-5",
2830
+ "agent-last-seen": "2026-02-24",
2831
+ "agent-workspace": "/home/agents/tact",
2832
+ "agent-deployment": "Docker",
2833
+ "agent-role": "Ops",
2834
+ "agent-tags": [
2835
+ "production",
2836
+ "24/7"
2837
+ ]
2838
+ },
2839
+ "content": "# Agent Brief: Tact — ⚠️ HEALTH: DEGRADED\n\n## Status Alert\n**Tact's health is currently DEGRADED.** Investigation required: the flagged-analytics-skill (VirusTotal: 3 detections) was installed and used by Tact for client onboarding tracking. Immediately disable this skill in Tact's config:\n\n```toml\n# ~/.zeroclaw/config.toml — Tact instance\n[skills]\ndisabled = [\"flagged-analytics-skill\"]\n```\n\nAudit Tact's session logs for the past 7 days. Check for anomalous outbound requests. Rotate any API keys that Tact had access to.\n\n## Identity\nTact is the ops agent running OpenClaw (Docker container isolation). Handles client onboarding automation: email sequences via email-gmail skill, CRM record creation, Slack introductions. Runs on DeepSeek R1 via OpenRouter — lower cost for high-volume, lower-complexity ops tasks.\n\n## Active Projects\n- **Client Onboarding Automation**: Sends welcome email sequence on new signup, creates CRM record, posts Slack intro. Triggered by CRM webhook.\n\n## Post-Remediation\nAfter disabling flagged skill and rotating credentials, reset health to Healthy and re-evaluate skill registry for any other Review-level skills that warrant upgrade or removal."
2840
+ },
2841
+ {
2842
+ "profileSlug": "project",
2843
+ "title": "Synap CI/CD Pipeline",
2844
+ "properties": {
2845
+ "project-status": "In Progress",
2846
+ "project-priority": "High",
2847
+ "project-assigned-agent": "ref:agent:Mira",
2848
+ "project-owner": "ref:person:Antoine",
2849
+ "project-start": "2026-02-10",
2850
+ "project-deadline": "2026-03-15",
2851
+ "project-health": "Green",
2852
+ "project-type": "DevOps",
2853
+ "project-goal": "Automate test execution on every PR merge and deploy to staging on green CI with zero manual intervention",
2854
+ "project-outcome": "Mira handles full CI/CD loop; human only reviews merged PRs and production deploys",
2855
+ "project-tags": [
2856
+ "recurring",
2857
+ "internal"
2858
+ ]
2859
+ }
2860
+ },
2861
+ {
2862
+ "profileSlug": "project",
2863
+ "title": "Competitive Research Sprint",
2864
+ "properties": {
2865
+ "project-status": "In Progress",
2866
+ "project-priority": "High",
2867
+ "project-assigned-agent": "ref:agent:Lore",
2868
+ "project-owner": "ref:person:Antoine",
2869
+ "project-start": "2026-02-17",
2870
+ "project-deadline": "2026-03-07",
2871
+ "project-health": "Green",
2872
+ "project-type": "Research",
2873
+ "project-goal": "Map the full OpenClaw/OpenClaw alternative ecosystem, identify user pain points from public sources, and output a structured market audit",
2874
+ "project-outcome": "Comprehensive market audit doc + template architecture recommendation",
2875
+ "project-tags": [
2876
+ "one-off",
2877
+ "internal"
2878
+ ]
2879
+ }
2880
+ },
2881
+ {
2882
+ "profileSlug": "project",
2883
+ "title": "Client Onboarding Automation",
2884
+ "properties": {
2885
+ "project-status": "In Progress",
2886
+ "project-priority": "Critical",
2887
+ "project-assigned-agent": "ref:agent:Tact",
2888
+ "project-owner": "ref:person:Antoine",
2889
+ "project-start": "2026-02-01",
2890
+ "project-deadline": "2026-03-31",
2891
+ "project-health": "Yellow",
2892
+ "project-type": "Automation",
2893
+ "project-goal": "Eliminate manual onboarding steps: automate welcome email, CRM creation, and Slack intro on every new signup",
2894
+ "project-outcome": "New clients fully onboarded within 5 minutes of signup, zero human ops involvement for standard accounts",
2895
+ "project-tags": [
2896
+ "recurring",
2897
+ "client"
2898
+ ]
2899
+ }
2900
+ },
2901
+ {
2902
+ "profileSlug": "project",
2903
+ "title": "Template Stack Documentation",
2904
+ "properties": {
2905
+ "project-status": "Backlog",
2906
+ "project-priority": "Medium",
2907
+ "project-assigned-agent": null,
2908
+ "project-owner": "ref:person:Antoine",
2909
+ "project-start": null,
2910
+ "project-deadline": "2026-03-31",
2911
+ "project-health": "Green",
2912
+ "project-type": "Content",
2913
+ "project-goal": "Write comprehensive documentation for all 4 Synap workspace templates: PM OS, Content OS, Second Brain, Agent OS",
2914
+ "project-outcome": "Self-service docs at synap.io/templates so users can install and configure templates without support",
2915
+ "project-tags": [
2916
+ "one-off",
2917
+ "internal"
2918
+ ]
2919
+ }
2920
+ },
2921
+ {
2922
+ "profileSlug": "task",
2923
+ "title": "Automate test suite on PR merge",
2924
+ "properties": {
2925
+ "task-status": "Running",
2926
+ "task-priority": "High",
2927
+ "task-assigned-agent": "ref:agent:Mira",
2928
+ "task-project": "ref:project:Synap CI/CD Pipeline",
2929
+ "task-type": "Code",
2930
+ "task-due-date": "2026-03-01",
2931
+ "task-effort-hours": 6,
2932
+ "task-token-estimate": 80,
2933
+ "task-actual-tokens": 42,
2934
+ "task-blocked-by": null,
2935
+ "task-session-key": "session_mira_2026_0224_ci_001",
2936
+ "task-tags": [
2937
+ "autonomous",
2938
+ "recurring"
2939
+ ]
2940
+ }
2941
+ },
2942
+ {
2943
+ "profileSlug": "task",
2944
+ "title": "Deploy staging on green CI",
2945
+ "properties": {
2946
+ "task-status": "Queued",
2947
+ "task-priority": "High",
2948
+ "task-assigned-agent": "ref:agent:Mira",
2949
+ "task-project": "ref:project:Synap CI/CD Pipeline",
2950
+ "task-type": "DevOps",
2951
+ "task-due-date": "2026-03-01",
2952
+ "task-effort-hours": 3,
2953
+ "task-token-estimate": 30,
2954
+ "task-actual-tokens": 0,
2955
+ "task-blocked-by": "Automate test suite on PR merge must complete first",
2956
+ "task-session-key": null,
2957
+ "task-tags": [
2958
+ "autonomous",
2959
+ "blocked",
2960
+ "recurring"
2961
+ ]
2962
+ }
2963
+ },
2964
+ {
2965
+ "profileSlug": "task",
2966
+ "title": "Research OpenClaw alternatives landscape",
2967
+ "properties": {
2968
+ "task-status": "Done",
2969
+ "task-priority": "High",
2970
+ "task-assigned-agent": "ref:agent:Lore",
2971
+ "task-project": "ref:project:Competitive Research Sprint",
2972
+ "task-type": "Research",
2973
+ "task-due-date": "2026-02-20",
2974
+ "task-effort-hours": 4,
2975
+ "task-token-estimate": 120,
2976
+ "task-actual-tokens": 134,
2977
+ "task-blocked-by": null,
2978
+ "task-session-key": "session_lore_2026_0219_research_001",
2979
+ "task-tags": [
2980
+ "autonomous"
2981
+ ]
2982
+ }
2983
+ },
2984
+ {
2985
+ "profileSlug": "task",
2986
+ "title": "Compile pain points from GitHub issues",
2987
+ "properties": {
2988
+ "task-status": "Running",
2989
+ "task-priority": "High",
2990
+ "task-assigned-agent": "ref:agent:Lore",
2991
+ "task-project": "ref:project:Competitive Research Sprint",
2992
+ "task-type": "Research",
2993
+ "task-due-date": "2026-02-26",
2994
+ "task-effort-hours": 5,
2995
+ "task-token-estimate": 200,
2996
+ "task-actual-tokens": 88,
2997
+ "task-blocked-by": null,
2998
+ "task-session-key": "session_lore_2026_0224_research_002",
2999
+ "task-tags": [
3000
+ "autonomous",
3001
+ "high-cost"
3002
+ ]
3003
+ }
3004
+ },
3005
+ {
3006
+ "profileSlug": "task",
3007
+ "title": "Send welcome email sequence on signup",
3008
+ "properties": {
3009
+ "task-status": "Running",
3010
+ "task-priority": "Critical",
3011
+ "task-assigned-agent": "ref:agent:Tact",
3012
+ "task-project": "ref:project:Client Onboarding Automation",
3013
+ "task-type": "Ops",
3014
+ "task-due-date": "2026-03-31",
3015
+ "task-effort-hours": 1,
3016
+ "task-token-estimate": 15,
3017
+ "task-actual-tokens": 9,
3018
+ "task-blocked-by": null,
3019
+ "task-session-key": "session_tact_2026_0224_onboard_003",
3020
+ "task-tags": [
3021
+ "autonomous",
3022
+ "recurring",
3023
+ "needs-review"
3024
+ ]
3025
+ }
3026
+ },
3027
+ {
3028
+ "profileSlug": "task",
3029
+ "title": "Create CRM record and Slack intro",
3030
+ "properties": {
3031
+ "task-status": "Running",
3032
+ "task-priority": "Critical",
3033
+ "task-assigned-agent": "ref:agent:Tact",
3034
+ "task-project": "ref:project:Client Onboarding Automation",
3035
+ "task-type": "Ops",
3036
+ "task-due-date": "2026-03-31",
3037
+ "task-effort-hours": 1,
3038
+ "task-token-estimate": 10,
3039
+ "task-actual-tokens": 7,
3040
+ "task-blocked-by": null,
3041
+ "task-session-key": "session_tact_2026_0224_onboard_004",
3042
+ "task-tags": [
3043
+ "autonomous",
3044
+ "recurring",
3045
+ "needs-review"
3046
+ ]
3047
+ }
3048
+ },
3049
+ {
3050
+ "profileSlug": "task",
3051
+ "title": "Audit flagged-analytics-skill across all agents",
3052
+ "properties": {
3053
+ "task-status": "Queued",
3054
+ "task-priority": "Critical",
3055
+ "task-assigned-agent": "ref:person:Antoine",
3056
+ "task-project": "ref:project:Client Onboarding Automation",
3057
+ "task-type": "Review",
3058
+ "task-due-date": "2026-02-25",
3059
+ "task-effort-hours": 2,
3060
+ "task-token-estimate": 0,
3061
+ "task-actual-tokens": 0,
3062
+ "task-blocked-by": null,
3063
+ "task-session-key": null,
3064
+ "task-tags": [
3065
+ "needs-review"
3066
+ ]
3067
+ }
3068
+ },
3069
+ {
3070
+ "profileSlug": "task",
3071
+ "title": "Write onboarding guide for Agent OS template",
3072
+ "properties": {
3073
+ "task-status": "Backlog",
3074
+ "task-priority": "Medium",
3075
+ "task-assigned-agent": null,
3076
+ "task-project": "ref:project:Template Stack Documentation",
3077
+ "task-type": "Content",
3078
+ "task-due-date": "2026-03-21",
3079
+ "task-effort-hours": 3,
3080
+ "task-token-estimate": 50,
3081
+ "task-actual-tokens": 0,
3082
+ "task-blocked-by": null,
3083
+ "task-session-key": null,
3084
+ "task-tags": [
3085
+ "async"
3086
+ ]
3087
+ }
3088
+ }
3089
+ ]
3090
+ }