OAuth retry loops are fixed in v2.1.123. Narrow bug, practical win.
Make better calls on AI tools.
In three minutes: scan the calls, make one judgment yourself, and learn one technical idea you can reuse tomorrow.
Today's 3 calls
Skim firstDo not trust model support on paper. Run latency, VRAM, streaming, and response-shape checks.
Care only if the change touches your model, backend, hardware, or quantization path.
Make the call before you read ours.
Pick a raw signal, decide what you would do, then compare your call with the expert read. This is the part that makes you sharper.
One concept
Make it stickRetries are not automatically safe.
Plain English: if an AI workflow tries again after a timeout, that can be helpful. But if the action sends an invoice, payment, email, or database write, trying again can accidentally do it twice.
Engineer read: retryable tool calls need idempotency keys, bounded retries, attempt logs, and clear side-effect rules.
Pick the missing safety check.
One decision, one skill, one sentence.
Test claims before adopting them.
Model support, tool calling, and memory claims are starting points, not proof.
Read small fixes as system signals.
A retry fix may reveal where the whole agent stack is heading.
Agents need recovery, not just autonomy.
That is the useful takeaway to bring into a product, engineering, or vendor conversation.