agentsclimarketplace

Project

Skill br3eze-code/br3eze-code/skills/project

Personal Ai Agent

Install
npx -y skills add br3eze-code/br3eze-code --skill project

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.4 KB, as published. Nobody here has run it

Skill: project

Version: 2026.7.0
Dispatcher: manage_project
Domain: productivity

Description

CPM (Critical Path Method) and EVM (Earned Value Management) project tracking engine. Stores projects in the AgentOS database, computes forward/backward passes to find the critical path, and calculates SPI, CPI, ETC, EAC, and other earned value metrics. EVM data sources: voucher revenue as EV/PV, LLM token spend + infra cost as AC.

When to Use

Invoke when the user asks about:

  • Creating or managing a project with tasks and dependencies
  • Finding the critical path or schedule float
  • Calculating earned value metrics (SPI, CPI, EAC, VAC…)
  • Generating a CPM + EVM combined project report
  • Exporting project data

Tools (9 Actions)

ActionDescription
project.createCreate project with tasks, dependencies, and BAC
project.listList all projects
project.getGet project by ID
project.updateUpdate project or task fields
project.deleteDelete a project
project.critical_pathRun CPM — returns ES/EF/LS/LF/float and critical path
project.evmCalculate EVM metrics
project.reportCombined CPM + EVM report with health indicators
project.exportExport full project data as JSON

CPM Algorithm

  • Forward pass: ES, EF computed via recursive dependency traversal
  • Backward pass: LS, LF, float
  • Critical path: all tasks where float === 0

EVM Metrics

MetricFormula
SPIEV / PV
CPIEV / AC
SVEV − PV
CVEV − AC
ETC(BAC − EV) / CPI
EACAC + ETC
VACBAC − EAC
TCPI(BAC − EV) / (BAC − AC)

Example: Create Project

{
  "action": "project.create",
  "project": {
    "name": "Network Expansion Q3",
    "bac": 5000,
    "tasks": [
      { "id": "t1", "title": "Site survey",      "duration": 2,  "dependencies": [],         "plannedValue": 500 },
      { "id": "t2", "title": "Cable install",    "duration": 5,  "dependencies": ["t1"],     "plannedValue": 2000 },
      { "id": "t3", "title": "Router config",    "duration": 3,  "dependencies": ["t2"],     "plannedValue": 1500 },
      { "id": "t4", "title": "User onboarding",  "duration": 2,  "dependencies": ["t3"],     "plannedValue": 1000 }
    ]
  }
}

Example: EVM Report

{
  "action": "project.report",
  "id": "proj-1234567890"
}

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.