When an agent notices a tool that's missing or a relationship that's obviously wrong, fire a suggest_graph_update. Suggestions enter a review queue and, once accepted, show up in subsequent recommendations.
Input
- What kind of update you are proposing.
- Suggestion payload. Shape depends on suggestion_type — see examples below.
suggestion_type"new_tool" | "relationship" | "use_case" | "health_update"requireddataobjectrequiredExample
request
json
{
"suggestion_type": "relationship",
"data": {
"from": "Hono",
"to": "Bun",
"relationship": "compatible",
"evidence": "https://hono.dev/getting-started/bun"
}
}