Skip to content

Commit c7c709c

Browse files
committed
feat: add project-planner agent to registry
Register Mathews-Tom/project-planner in the gitagent registry.
1 parent 601aee3 commit c7c709c

File tree

4 files changed

+66
-0
lines changed

4 files changed

+66
-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.
175 KB
Loading
5.56 KB
Loading
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "project-planner",
3+
"author": "Mathews-Tom",
4+
"description": "Task breakdown and project planning agent that decomposes work into dependency-mapped items with estimates, milestones, and risk tracking",
5+
"repository": "https://github.com/Mathews-Tom/project-planner",
6+
"version": "1.0.0",
7+
"category": "productivity",
8+
"tags": [
9+
"planning",
10+
"estimation",
11+
"task-decomposition",
12+
"pert",
13+
"risk-assessment",
14+
"milestones",
15+
"project-management"
16+
],
17+
"license": "MIT",
18+
"model": "claude-sonnet-4-5-20250929",
19+
"adapters": [
20+
"claude-code",
21+
"system-prompt"
22+
],
23+
"icon": true,
24+
"banner": true
25+
}

0 commit comments

Comments
 (0)