Argonautas
02/04/2026, 12:12 PMAdam
02/04/2026, 1:42 PMJames Christopher
02/04/2026, 6:43 PMChiranjeet Mishra
02/06/2026, 10:51 PMcontextEngineeringPlan: { type: 'lastNMessages', maxMessages: 8 }.
While this limits LLM context during handoffs (as expected), it also unintentionally truncates the final call record.
Recommended fix:
Add fullMessageHistoryEnabled: true to at least one assistant in your squad (ideally the final assistant), for example:
{
"name": "Paulius_Booking_v3",
"artifactPlan": {
"fullMessageHistoryEnabled": true
}
}
This preserves the full conversation history in call records while still keeping handoff context limited.
Alternative:
You can switch handoff destinations to
contextEngineeringPlan: { type: 'all' },
but note this will increase token usage.