Skip to content

For Resource Managers

You allocate people across projects and need to spot conflicts before they become problems. TruePPM gives you per-task resource assignment within projects today, with cross-project visibility on the enterprise roadmap.

The clearest thing to try is capacity preflight. When a sprint is activated, TruePPM checks the committed story points against the team’s available hours and flags anyone who is over-allocated — before the sprint starts, not on day 8 when it’s too late. It’s the project-scoped version of the conflict warning you’re really after.

Assignments carry fractional units and work hours, so a person can be 60% on a task rather than simply on or off. When someone’s daily load within a project crosses 100%, TruePPM flags the over-allocation automatically.

In the web app you assign people to tasks from the task drawer. If you’d rather build allocation reports the way you build spreadsheets, every resource and task-resource has a full REST endpoint:

Terminal window
# Assign a resource to a task
curl -s -X POST http://localhost:8000/api/v1/task-resources/ \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"task": "<task-id>", "resource": "<resource-id>"}'

When a scheduler changes the plan — re-sequences tasks or adjusts durations — the schedule recalculates automatically and connected clients get a WebSocket update. You see allocation changes as they happen.

Seed the demo (seed_demo_project --with-personas) and sign in as sarah — the resource-manager persona (password demo).

  1. Open the sprint’s capacity preflight. It surfaces an over-allocated member before the sprint is activated. That’s your core test — catch the conflict before it’s locked in — at project scope.
  2. Look at an assignment. Units and work hours are fractional, not a binary 100% / 0%.

Be clear-eyed about the gap. Your top two criteria — one view of a person across all their projects, and a pre-commit warning that fires across projects — land in 0.5. Today the conflict check is per-project. A pre-0.5 evaluation should expect that; it’s sequenced on the roadmap, not an oversight.

TruePPM’s resource management is single-project in scope today:

  • No cross-project view yet — resource assignments are per-project; there is no single dashboard showing a person’s load across all their projects
  • No cross-project conflict detection yet — overlapping assignments across projects aren’t flagged (planned for 0.5)

The cross-project pieces are the heart of your job, and they are prioritized on the roadmap for 0.5.

FeatureStatusEdition
Resource allocation percentagesShipped (0.2)Community
Resource view (per-project)PlannedCommunity
Cross-project resource view (within a program)PlannedCommunity
Cross-program resource levelingPlannedEnterprise
Resource heat map (cross-portfolio)PlannedEnterprise
Capacity forecasting (portfolio scope)PlannedEnterprise
Conflict detection and alertsPlannedCommunity
  1. Ask your admin to set up a TruePPM instance
  2. Walk through the Quickstart to understand the API
  3. Explore the API reference — see the Resources and Task-Resources endpoints
  4. Review the RBAC model — Admin role (300) or above is needed to manage resources