Skip to content

Commit 96fe28a

Browse files
committed
docs: update README to reflect current repo structure
1 parent bb0c044 commit 96fe28a

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# project-planner
2+
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+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/project-planner
9+
```
10+
11+
## What It Can Do
12+
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+
20+
## Structure
21+
22+
```
23+
project-planner/
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
37+
```
38+
39+
## Built with
40+
41+
Built for the [gitagent](https://gitagent.sh) ecosystem.

0 commit comments

Comments
 (0)