Skip to main content

The Big Picture

Canthus uses a single metaphor: mana. It represents both the energy a person has today and the energy a task will require today. The system has three core jobs:
  1. Estimate today’s budget (mana pool)
  2. Cost each task (mana cost)
  3. Show only what’s achievable (with a narrow essential-task exception)
Everything rests on one architectural rule: separate the signals.
If one bad check-in both shrinks the pool and inflates task costs, the same state is penalized twice. The system is designed to avoid this double-counting.
SignalWhat it capturesMechanismChanges how often
Condition severityHow ill the person is overallPersonal coefficientOver weeks/months
Daily variation”Today I feel worse/better than usual”Axis factorDaily
Spending patternWhat the user actually accomplishesPool EWMAOver days/weeks

Core concepts

Mana

An abstract unit of energy. The absolute number is less important than the ratio between pool and task costs.

Mana pool

Daily budget, typically between 8 and 130 depending on severity and history.

Mana cost

The cost of a specific task for this person on this day.

Check-in

Daily body, mind, mood ratings that supply context for today’s costs.

Relative cost

Effort of an activity relative to personal baseline.

Personal coefficient

Long-term severity multiplier that scales all task costs.

Axis factor

Daily multiplier from check-in that modulates costs for today.

Essential tasks

User-defined tasks that remain visible even when over pool.

System map

  1. User checks in (full, quick, momentum, or none)
  2. Engine derives axis factor from body/mind state and task weights
  3. Engine computes task costs from relative cost, duration, coefficient, and axis factor
  4. Engine computes daily pool from spending EWMA and confidence bias
  5. Engine surfaces only tasks that fit remaining pool, except essentials and temporal horizon exemptions
  6. Detection systems monitor PEM and longer pattern shifts
  7. Calibration updates slowly to preserve stability and trust

Where to go deeper