Dashboard stores task data and configuration in JSON files.
dashboard/
โโโ data/
โ โโโ dashboard_order.json # Card display order
โโโ tasks/
โโโ affiliate.json # Affiliate project tasks
โโโ futures-screener.json # Futures Screener tasks
โโโ ideas.json # Ideas/Feature requests
โโโ openclaw.json # OpenClaw Agent tasks
โโโ options.json # Options project tasks
โโโ piewell.json # Piewell.com tasks
โโโ system.json # System/Infrastructure tasks
Controls the order of project cards on the dashboard.
{
"order": [
"options",
"piewell",
"futures-screener",
"affiliate"
],
"updatedAt": "2026-02-23T03:50:25.525Z"
}
Kanban-style tasks for each project.
{
"project": "piewell",
"tasks": [
{
"id": "task-1",
"title": "Fix SEO meta tags",
"description": "Add proper meta descriptions to all posts",
"status": "todo", // todo | in-progress | done
"priority": "high", // low | medium | high | critical
"category": "SEO",
"tags": ["wordpress", "seo"],
"createdAt": "2026-02-23",
"updatedAt": "2026-02-23"
}
]
}
Returns tasks for a specific project.
Response:
{
"project": "piewell",
"tasks": [
{ ... },
{ ... }
],
"stats": {
"total": 5,
"todo": 2,
"inProgress": 1,
"done": 2
}
}
Add or update a task.
Source: /home/app/dashboard-old/
Migrated: 2026-02-25
Status: โ
All data preserved
All task data was copied from the legacy dashboard during React refactor.
Last Updated: 2026-02-25