Files
ECC/examples/coordination-inventory/goals.json
T
Affaan MustafaandGitHub c7d62c0c6a Distinguish declared goals, open sessions and overlap risk in coordination inventory (#3028)
* 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
2026-09-10 14:11:51 +03:00

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": []
}