Files
tenacitOS/data/activities.example.json
Carlos Azaustre ab2d4cb306 feat: initial public release 🚀
- OpenClaw Mission Control dashboard
- Auth with rate limiting and secure cookie handling
- API routes protected by middleware authentication
- Terminal with safe command allowlist
- File browser, cron manager, activity feed
- Office 3D view with agent avatars
- Cost tracking and analytics
- Configurable branding via env vars
2026-02-21 12:34:54 +00:00

33 lines
776 B
JSON

[
{
"id": "act-example-001",
"timestamp": "2026-01-15T10:00:00.000Z",
"type": "cron",
"description": "Health Check - All services up",
"status": "ok",
"duration_ms": 1523,
"tokens_used": null,
"metadata": { "jobId": "example-job-1" }
},
{
"id": "act-example-002",
"timestamp": "2026-01-15T09:00:00.000Z",
"type": "cron",
"description": "Data Sync completed",
"status": "ok",
"duration_ms": 8200,
"tokens_used": null,
"metadata": { "jobId": "example-job-2" }
},
{
"id": "act-example-003",
"timestamp": "2026-01-15T08:00:00.000Z",
"type": "task",
"description": "Example task executed",
"status": "success",
"duration_ms": 450,
"tokens_used": 1200,
"metadata": null
}
]