intel_get_action_plan
Get a prioritized action plan following agronomic triage principles. Provide identified yield limiting factors and receive an ordered intervention sequence with rationale.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
yieldLimitingFactors | array | Yes | Array of { type, severity } objects |
budgetPerAcre | number | No | Budget constraint in dollars per acre |
Factor Types
drainage, compaction, ph, nitrogen, phosphorus, potassium, micronutrients, variety, management
Severity Levels
low, moderate, severe
Usage
{
"yieldLimitingFactors": [
{ "type": "drainage", "severity": "moderate" },
{ "type": "nitrogen", "severity": "severe" },
{ "type": "ph", "severity": "low" }
],
"budgetPerAcre": 150
}Response
{
"error": false,
"data": {
"prioritizedActions": [
{
"priority": 1,
"type": "drainage",
"severity": "moderate",
"rationale": "Per DEC-001: Drainage is highest priority (physical limitation)",
"prerequisitesMet": true
},
{
"priority": 2,
"type": "ph",
"severity": "low",
"rationale": "Per DEC-001: Correct pH before fertilizer application",
"prerequisitesMet": true
},
{
"priority": 3,
"type": "nitrogen",
"severity": "severe",
"rationale": "Per DEC-001: Address macronutrients after physical and pH issues",
"prerequisitesMet": true
}
],
"triggeredRules": [
{
"ruleId": "DEC-001",
"name": "Yield Limiting Factor Triage",
"message": "Prioritized 3 factors using agronomic triage hierarchy"
}
],
"budgetConstraint": "moderate",
"dataQuality": "COMPLETE"
}
}Triage Hierarchy (DEC-001)
Actions are prioritized following this agronomic principle: address physical issues before chemical, chemical before biological.
| Priority | Factor | Rationale |
|---|---|---|
| 1 | Drainage | Physical limitation — nothing else works if water can't drain |
| 2 | Compaction | Physical limitation — restricts root growth |
| 3 | pH | Chemical availability — nutrients are locked out at wrong pH |
| 4 | Nitrogen | Macronutrient |
| 5 | Phosphorus | Macronutrient |
| 6 | Potassium | Macronutrient |
| 7 | Micronutrients | Secondary nutrients |
| 8 | Variety | Genetic potential |
| 9 | Management | Agronomic practices |
| Parameter | Type | Required | Description |
|---|---|---|---|
| yieldLimitingFactors | array | Required | List of identified yield limiting factors |
| budgetPerAcre | number | Optional | Available budget per acre |
Try it
intel_get_action_planSign in to try this tool
Sign in