mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-12 12:06:29 +03:00
* feat: add research-grounded technical project management skill * test: retain isolated project coordination regression evidence
12 lines
400 B
JSON
12 lines
400 B
JSON
{
|
|
"schema_version": 1,
|
|
"unit": "working_days",
|
|
"deadline": 5,
|
|
"tasks": [
|
|
{"id": "design", "duration": 2, "depends_on": []},
|
|
{"id": "build", "duration": 3, "depends_on": ["design"], "resource": "specialist"},
|
|
{"id": "review-prep", "duration": 1, "depends_on": ["design"], "resource": "specialist"},
|
|
{"id": "accept", "duration": 1, "depends_on": ["build", "review-prep"]}
|
|
]
|
|
}
|