mentalmodel
Apply structured mental models like First Principles, Pareto Principle, and Occam's Razor to systematically break down and solve complex problems, enhancing decision-making and reasoning.
Instructions
A tool for applying structured mental models to problem-solving. Supports various mental models including:
First Principles Thinking
Opportunity Cost Analysis
Error Propagation Understanding
Rubber Duck Debugging
Pareto Principle
Occam's Razor
Each model provides a systematic approach to breaking down and solving problems.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conclusion | No | ||
modelName | Yes | ||
problem | Yes | ||
reasoning | No | ||
steps | No |
Input Schema (JSON Schema)
{
"properties": {
"conclusion": {
"type": "string"
},
"modelName": {
"enum": [
"first_principles",
"opportunity_cost",
"error_propagation",
"rubber_duck",
"pareto_principle",
"occams_razor"
],
"type": "string"
},
"problem": {
"type": "string"
},
"reasoning": {
"type": "string"
},
"steps": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"modelName",
"problem"
],
"type": "object"
}