mirror of
https://github.com/affaan-m/ECC.git
synced 2026-09-18 07:37:59 +02:00
* feat: add read-only coordination inventory and overlap evaluation * test: make coordination process fixtures platform explicit * test: report bounded Stop wrapper failure diagnostics * test: clean up failed memory MCP sessions deterministically * fix: update js-yaml to patched 4.3.2 * feat(coordination): distinguish declared goals from open sessions
19 lines
880 B
JSON
19 lines
880 B
JSON
{
|
|
"version": 1,
|
|
"repositories": [{ "id": "repo", "sources": { "src/a.js": "require('../lib/b')", "lib/b.js": "" } }],
|
|
"tasks": [
|
|
{ "id": "a", "repoId": "repo", "paths": ["src/a.js"], "status": "running" },
|
|
{ "id": "b", "repoId": "repo", "paths": ["lib/b.js"], "parentId": "a" }
|
|
],
|
|
"goals": [
|
|
{ "id": "goal-active", "taskId": "a", "kind": "native", "status": "active", "updatedAt": "2026-09-08T06:30:00.000Z" },
|
|
{ "id": "goal-complete", "taskId": "b", "kind": "native", "status": "complete", "updatedAt": "2026-09-08T06:30:00.000Z" }
|
|
],
|
|
"sessions": [
|
|
{ "id": "session-active", "taskId": "a", "goalId": "goal-active", "status": "open", "updatedAt": "2026-09-08T06:30:00.000Z" },
|
|
{ "id": "session-open-complete", "taskId": "b", "goalId": "goal-complete", "status": "open" },
|
|
{ "id": "terminal-only", "status": "open" }
|
|
],
|
|
"leases": []
|
|
}
|