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."
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.
🧮 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 Archetypes
Each archetype maps to a specific PLT configuration. Select one to see its signature:
⚙️ 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 }
}
}