You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Task breakdown and project planning agent that decomposes work into dependency-mapped items with three-point estimates, milestones, risk tracking, and critical path identification. Transforms high-level goals into actionable, sequenced work plans.
3
+
Task breakdown and project planning agent that decomposes work into dependency-mapped items with three-point PERT estimates, milestones, critical path analysis, and risk tracking. Produces actionable project plans with parallelization flags and realistic timelines calibrated against historical data.
4
4
5
5
## Run
6
6
@@ -10,23 +10,32 @@ npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/project-planne
10
10
11
11
## What It Can Do
12
12
13
-
-Decompose projects into granular, dependency-mapped tasks
14
-
-Generate three-point (PERT) effort estimates for each work item
15
-
-Identify critical path and scheduling constraints
16
-
-Define milestones with acceptance criteria
17
-
-Assess risks with probability, impact, and mitigation strategies
18
-
-Produce structured project plans in multiple output formats
13
+
-**Scope Analysis** — extracts components from architecture documents or codebases, identifies reusable infrastructure vs. new work
14
+
-**Task Decomposition** — breaks work into 1-4 hour chunks with dependencies, parallelization flags, and definitions of done
15
+
-**PERT Estimation** — three-point estimates (optimistic, expected, pessimistic) with weighted averaging per task and phase
16
+
-**Risk Assessment** — categorizes technical, dependency, and timeline risks with probability-impact scoring and mitigations
17
+
-**Critical Path Analysis** — identifies the longest dependency chain that determines the project timeline
18
+
-**Plan Validation** — stress-tests the plan for oversized tasks, missing dependencies, and deadline feasibility
19
19
20
20
## Structure
21
21
22
22
```
23
23
project-planner/
24
-
agent.yaml # Agent configuration and tool definitions
25
-
SOUL.md # Agent personality and behavioral guidelines
26
-
icon.png # 256x256 agent icon
27
-
banner.png # 1200x630 agent banner
24
+
├── .gitignore
25
+
├── LICENSE
26
+
├── README.md
27
+
├── RULES.md
28
+
├── SOUL.md
29
+
├── agent.yaml
30
+
├── assets/
31
+
│ ├── icon.png
32
+
│ └── banner.png
33
+
└── knowledge/
34
+
├── pert-estimation.md
35
+
├── risk-assessment-framework.md
36
+
└── task-decomposition.md
28
37
```
29
38
30
39
## Built with
31
40
32
-
[gitagent](https://github.com/open-gitagent/gitagent) - the open agent registry and runner.
41
+
Built for the [gitagent](https://gitagent.sh) ecosystem.
0 commit comments