Find existing decisions that may conflict with this one, ranked by contest severity.
Path Parameters
decision_id*Decision Id
Query Parameters
min_contest?Min Contest
Response Body
application/json
application/json
curl -X POST "https://example.com/memory/decisions/string/conflicts"null{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Fail Plan
Mark plan as failed with reason.
Find Dead Code
Find potentially dead (unreferenced) functions in an indexed codebase. A function is considered "dead" when: - No other function calls it (no incoming CALLS edges) - It is not a test function, route handler, or dunder method - It has no entry-point decorators (route, click, celery, etc.) Returns a list of potentially unused functions sorted by file path.