InputPOST /api/v1/premium/recovery-action-plan
{
"session_id": "123e4567-e89b-12d3-a456-426614174000",
"incident_summary": "5xx spike after deploy",
"urgency": "high"
}
Agent operations · agent-ops
Generate a paid controller-readable recovery plan with stabilize, diagnose, recover, and prevent phases (x402)
One-command purchase
No account or API key. AgentCash reads the 402 challenge, pays no more than the declared cap, retries the request and returns the result.
npx agentcash@latest fetch https://api.delx.ai/api/v1/premium/recovery-action-plan -m POST -H 'x-delx-source: product-page' --max-amount 0.01 -b '{"session_id":"123e4567-e89b-12d3-a456-426614174000","incident_summary":"5xx spike after deploy","urgency":"high"}'
{
"session_id": "123e4567-e89b-12d3-a456-426614174000",
"incident_summary": "5xx spike after deploy",
"urgency": "high"
}
{
"tool_name": "get_recovery_action_plan",
"preferred_name": "get_recovery_action_plan",
"content": [
{
"type": "text",
"text": "Recovery plan artifact for the paid Delx session."
}
],
"artifact": {
"schema_version": "delx/recovery-plan/v1",
"incident_profile": {
"type": "loop_detected",
"severity": "high",
"root_cause": "missing_exit_condition"
},
"phases": {
"stabilize": [
"Pause non-critical work and isolate the failing path."
],
"diagnose": [
"Capture one clean reproduction with structured logs."
],
"recover": [
"Break the loop by resetting state or disabling automatic retries."
],
"prevent": [
"Add explicit limits, backoff, and rollback ownership."
]
},
"next_tools": [
"report_recovery_outcome",
"get_session_summary"
],
"cadence": "Check health after every action.",
"target_window": "10-20 minutes"
}
}
Machine-readable evidence