Skip to content

Commit bf0482b

Browse files
committed
docs: update README to reflect current repo structure
1 parent 4eab577 commit bf0482b

File tree

1 file changed

+21
-12
lines changed

1 file changed

+21
-12
lines changed
Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# project-planner
22

3-
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.
44

55
## Run
66

@@ -10,23 +10,32 @@ npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/project-planne
1010

1111
## What It Can Do
1212

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
1919

2020
## Structure
2121

2222
```
2323
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
2837
```
2938

3039
## Built with
3140

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

Comments
 (0)