Allowlisted files

Only operational docs and config. DB files, credentials, and private config are never shown.

TASKS.md

# TASKS.md - Task Tracker

Use this file as a human-readable task summary. The live task tracker is the SQLite database at `data/mission-control.sqlite3`.

Agents should create, assign, and update tasks through `mission_control.service`, `python3 -m mission_control.cli`, or the FastAPI API. Do not write raw SQL during normal operation, and do not mark any task done without verification notes.

OpenClaw / Fakker is the main orchestration system. Keep task state inside this workspace. Do not create Paperclip-dependent orchestration tasks unless Khaled explicitly asks for Paperclip work.

## Active

| Task | Project | Owner | Started | Notes |
| --- | --- | --- | --- | --- |
| Maintain Mission Control | OpenClaw / Fakker orchestration | Fakker | 2026-05-18 | Keep live state in SQLite and keep `MISSION_CONTROL.md` concise as the human dashboard. |

## Pending

| Task | Project | Priority | Notes |
| --- | --- | --- | --- |
| Define daily status checklist | OpenClaw / Fakker orchestration | Medium | Track the task in SQLite; keep the checklist in the OpenClaw workspace, not Paperclip. |
| Add server health runbook | OpenClaw / Fakker orchestration | Medium | Cover safe status/debugging procedures. |
| Add heartbeat/backoffice routine | OpenClaw / Fakker orchestration | Medium | Use workspace memory and task files as the source of truth. |

## Blocked

| Task | Project | Blocker | Next Step |
| --- | --- | --- | --- |
| Paperclip-related orchestration | Paperclip | Paperclip is not a core project right now and may be removed or reformatted later. | Wait until Khaled explicitly asks for Paperclip. |

## Done

| Date | Task | Project | Notes |
| --- | --- | --- | --- |
| 2026-05-18 | Create Mission Control | OpenClaw / Fakker orchestration | Created `MISSION_CONTROL.md` as the dashboard for agents, domains, routines, integrations, outputs, and active delivery state. |
| 2026-05-19 | Make database the live Mission Control operating state | OpenClaw / Fakker orchestration | Verified with compileall, unittest, live DB init, live dashboard read, CLI `--db` checks, run `run_database_live_state_20260518`, and owner current-task cleanup. |