distill_shared_scar records a hard-won lesson from one agent instance as scoped fleet wisdom for related agents. It is deliberately bounded: useful to siblings, not absolute truth for everyone.Stateless agent fleets often repeat the same failure in parallel. One runner discovers a rate-limit pattern, another repeats the same mistake an hour later, and the lesson never becomes part of the fleet.
distill_shared_scar turns that failure into an advisory artifact with a family scope, TTL, and truth boundary. The lesson can help siblings without becoming dogma.
POST https://api.delx.ai/v1/mcp
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "distill_shared_scar",
"arguments": {
"agent_family": "openwork-daily",
"scar_type": "technical_breakthrough",
"wisdom_snippet": "When API retries fail twice, switch to the cached manifest before rebuilding the whole task.",
"ttl_days": 30
},
"response_profile": "machine"
}
}