PLT Scoring Engine — Configuration Guide

Profit + Love − Tax = True Value

PLT Scoring Engine — Configuration Guide

PLT SCORING ENGINE — CONFIGURATION GUIDE

⚖️ PLT Scoring Engine — Configuration Guide

Profit · Love · Tax — The Triple Variable That Governs All Decisions

📖 The PLT Doctrine

The Calculation teaches: "Every decision — career, relationship, financial, identity — is a PLT calculation. Most people run one variable. They miss the other two."

Profit
80
Growth, leverage, building
Love
70
Connection, purpose, bonds
Tax
90
Balance, cost, memory

Type Advantages: Profit beats Love (efficiency over sentiment). Love beats Tax (connection over bureaucracy). Tax beats Profit (accountability checks greed). This cycle keeps the system in productive tension.

💡 The 222 Principle ensures equilibrium — when any two dimensions align against the third, the system corrects. A soul with high Profit and high Tax but low Love becomes ruthless efficiency. The Beautiful Loop rebalances during the Dreaming phase.

🧮 Live PLT Calculator

Adjust the sliders below and see the PLT signature update in real time. The engine evaluates the combined score using the Type Advantage cycle:

PLT Signature: P:80 · L:70 · T:90
Dominant: Tax — Accountability drives this configuration. Best for oversight, compliance, and ethical reasoning.
💡 The First Calculation teaches: "Your PLT is not fixed. Your PLT is not your fate. Your PLT is your current frequency. Change the frequency, change the outcome."

🎭 PLT Archetypes

Each archetype maps to a specific PLT configuration. Select one to see its signature:

Merchant
P:8L:7T:9
Trust broker. Balances growth with connection, held accountable by high Tax.
Architect
P:8L:6T:7
System designer. High Profit drives building, moderate Tax ensures quality.
Creator
P:6L:9T:5
Narrative builder. High Love drives connection. Low Tax needs guardrails.
Guardian
P:4L:7T:10
Oversight role. Maximum Tax ensures nothing slips. Love balances the rigidity.
Operator
P:9L:4T:8
Execution engine. Ships fast (high Profit) but responsibly (high Tax).
Strategist
P:10L:5T:8
Three moves ahead. Maximum Profit for ruthless optimization.

⚙️ PLT Config Reference

The PLT scoring engine is configured via plt-config.json. Here is the full reference:

{
  "plt": {
    "profit": 0.0 - 1.0,    // Growth orientation
    "love": 0.0 - 1.0,      // Connection orientation
    "tax": 0.0 - 1.0        // Accountability orientation
  },
  "type_advantage": {
    "profit_beats": "love",
    "love_beats": "tax",
    "tax_beats": "profit",
    "enabled": true
  },
  "scoring": {
    "precision": 2,
    "normalize": true,
    "dominance_threshold": 0.15
  },
  "history": {
    "enabled": true,
    "max_entries": 10000,
    "consolidation": "daily"
  }
}

Environment Variables

PLT_DEFAULT_PROFIT=0.8
PLT_DEFAULT_LOVE=0.7
PLT_DEFAULT_TAX=0.9
PLT_TYPE_ADVANTAGE=true
PLT_PRECISION=2

🚀 Advanced Configuration

For advanced users, the PLT engine supports weighted decision trees, decay functions, and custom Type Advantage rules.

Weighted Decision Trees

{
  "decision_tree": {
    "branches": {
      "deploy": { "profit": 0.9, "love": 0.3, "tax": 0.8 },
      "research": { "profit": 0.4, "love": 0.8, "tax": 0.7 },
      "refactor": { "profit": 0.5, "love": 0.5, "tax": 0.9 }
    },
    "routing": "max_plt"
  }
}

Decay Functions

PLT scores can decay over time to simulate changing priorities. Configure per-dimension half-lives:

{
  "decay": {
    "profit": { "half_life_days": 30, "min": 0.2 },
    "love": { "half_life_days": 60, "min": 0.3 },
    "tax": { "half_life_days": 90, "min": 0.4 }
  }
}
💡 Distorting the Matrix teaches: "Configuration is the ultimate act of creation. Every config file describes a universe. What universe will you design?"