From workspace
Manages tasks, goals, projects, and brain dumps in Mission Control JSON files. Create, update, query entries with kanban status, assign agents, and regenerate AI context.
npx claudepluginhub meisnerdan/mission-controlThis skill uses the workspace's default tool permissions.
All data lives in `mission-control/data/` as JSON files. Read and write these directly.
Defines conventions for TASKS.md files: structure with optional sections, status symbols ([ ] todo, [/] ongoing, [x] done, [-] backlog), task descriptions, and testable acceptance criteria. Use for creating, editing, updating tasks or tracking progress.
Manages tasks-plans/ workspace by adding actionable items to backlog, ideas for exploration, or dated references. Organizes files by topic into subfolders, processes queued work via subcommands.
Guides project creation, milestone and task management, and progress tracking using fireauto MCP tools like project-create, project-milestone-create, and project-status.
Share bugs, ideas, or general feedback.
All data lives in mission-control/data/ as JSON files. Read and write these directly.
mission-control/data/ai-context.md (read this FIRST for a snapshot)mission-control/data/tasks.jsonmission-control/data/goals.jsonmission-control/data/projects.jsonmission-control/data/brain-dump.jsonRequired fields: id, title, description, importance, urgency, kanban, assignedTo
{
"id": "task_{Date.now()}",
"title": "Action-oriented title",
"description": "What needs to be done",
"importance": "important",
"urgency": "urgent",
"kanban": "not-started",
"projectId": "proj_001",
"milestoneId": "mile_001",
"assignedTo": "developer",
"dailyActions": [],
"tags": ["tag1"],
"notes": "",
"createdAt": "ISO-8601",
"updatedAt": "ISO-8601",
"completedAt": null
}
updatedAt to current ISO timestamp"done": set completedAt to current ISO timestamp"done": set completedAt to null"developer""researcher""marketer""business-analyst""me"Run pnpm gen:context in mission-control/ to regenerate ai-context.md