Migrate the orchestration coordination package from v0 with full file-based mission/task lifecycle management. Adds gateway REST API at /api/coord/* and agent tools for coord queries. Package modules: - types: Mission, task, session, milestone type definitions - mission: Create, load, save missions with atomic file writes - tasks-file: TASKS.md markdown table parsing/generation with file locking - runner: Task execution subprocess spawning with session locks - status: Mission and task status queries Gateway integration: - CoordModule with CoordService wrapping coord functions - CoordController exposing status/tasks/task-detail endpoints - Agent tools: coord_mission_status, coord_list_tasks, coord_task_detail Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
528 B
JSON
27 lines
528 B
JSON
{
|
|
"name": "@mosaic/coord",
|
|
"version": "0.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint src",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@mosaic/types": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.8.0",
|
|
"vitest": "^2.0.0"
|
|
}
|
|
}
|