diff --git a/agents/Mathews-Tom__project-planner/README.md b/agents/Mathews-Tom__project-planner/README.md new file mode 100644 index 0000000..826331e --- /dev/null +++ b/agents/Mathews-Tom__project-planner/README.md @@ -0,0 +1,41 @@ +# project-planner + +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. + +## Run + +```bash +npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/project-planner +``` + +## What It Can Do + +- **Scope Analysis** — extracts components from architecture documents or codebases, identifies reusable infrastructure vs. new work +- **Task Decomposition** — breaks work into 1-4 hour chunks with dependencies, parallelization flags, and definitions of done +- **PERT Estimation** — three-point estimates (optimistic, expected, pessimistic) with weighted averaging per task and phase +- **Risk Assessment** — categorizes technical, dependency, and timeline risks with probability-impact scoring and mitigations +- **Critical Path Analysis** — identifies the longest dependency chain that determines the project timeline +- **Plan Validation** — stress-tests the plan for oversized tasks, missing dependencies, and deadline feasibility + +## Structure + +``` +project-planner/ +├── .gitignore +├── LICENSE +├── README.md +├── RULES.md +├── SOUL.md +├── agent.yaml +├── assets/ +│ ├── icon.png +│ └── banner.png +└── knowledge/ + ├── pert-estimation.md + ├── risk-assessment-framework.md + └── task-decomposition.md +``` + +## Built with + +Built for the [gitagent](https://gitagent.sh) ecosystem. diff --git a/agents/Mathews-Tom__project-planner/banner.png b/agents/Mathews-Tom__project-planner/banner.png new file mode 100644 index 0000000..52d8683 Binary files /dev/null and b/agents/Mathews-Tom__project-planner/banner.png differ diff --git a/agents/Mathews-Tom__project-planner/icon.png b/agents/Mathews-Tom__project-planner/icon.png new file mode 100644 index 0000000..4d9a396 Binary files /dev/null and b/agents/Mathews-Tom__project-planner/icon.png differ diff --git a/agents/Mathews-Tom__project-planner/metadata.json b/agents/Mathews-Tom__project-planner/metadata.json new file mode 100644 index 0000000..2066055 --- /dev/null +++ b/agents/Mathews-Tom__project-planner/metadata.json @@ -0,0 +1,25 @@ +{ + "name": "project-planner", + "author": "Mathews-Tom", + "description": "Task breakdown and project planning agent that decomposes work into dependency-mapped items with estimates, milestones, and risk tracking", + "repository": "https://github.com/Mathews-Tom/project-planner", + "version": "1.0.0", + "category": "productivity", + "tags": [ + "planning", + "estimation", + "task-decomposition", + "pert", + "risk-assessment", + "milestones", + "project-management" + ], + "license": "MIT", + "model": "claude-sonnet-4-5-20250929", + "adapters": [ + "claude-code", + "system-prompt" + ], + "icon": true, + "banner": true +}