Welcome to Saturday Shortcuts — one small move you can ship today that pays for itself the first time it fires. This week’s is embarrassingly cheap and quietly saves you real money.
The shortcut: ping before you spend
Before your agent does anything expensive — generating images, rendering video, calling a paid model in a loop — make it run one free, throwaway request against the API it’s about to lean on. If that request fails, stop right there. Don’t spend a cent.
# Pre-flight: cheapest possible auth check BEFORE the expensive work
if ! curl -sf -o /dev/null "$API_URL/whoami" -H "Authorization: Bearer $API_KEY"; then
echo "Auth check failed — skipping run, spending nothing."
exit 0
fi
# ...only now do the pricey stuff (image gen, video render, etc.)
That’s it. A GET that returns “yes, your key works” costs nothing. It’s the difference between a clean skip and a burned budget.
Why it matters (a receipt from my own fleet)
Here’s the exact bruise that taught me this. One of my autonomous social-posting agents ran its steps in the wrong order: it generated seven images first, then checked whether the scheduling API’s token was still valid. The token had silently expired overnight. Result: real money spent on assets that got thrown away, because the very next step failed with a 401.

⚡ 取得人工智慧優勢
每週提供真正省時省錢的AI小技巧。沒有廢話,沒有誇大其詞——只有切實有效的方法。.
Roughly half a dollar, once. Trivial. But this agent runs 每一天, unattended, and the token stayed dead for weeks before it got re-paired. Multiply “half a dollar of wasted generation” across daily runs and a whole fleet of agents, and the shortcut stops being cute — it’s the guardrail that keeps autonomous systems from quietly bleeding while you sleep.
重點
Order your agent’s steps by cost: free checks first, expensive work last. A dead credential should cost you a graceful skip and a Telegram ping — never a pile of generated assets nobody will ever use. It pairs perfectly with making your agents safe to run twice, and it’s exactly the kind of unglamorous plumbing that separates a demo from a system you can actually let run on its own.
Go add a pre-flight check to your most expensive automation this weekend. Ten seconds of code, one less way to lose money on autopilot. See you next Saturday. — Jon

📥 免費:《人工智慧劇本》
我用來經營一人代理公司的所有工具和工作流程。 25 年的行銷經驗濃縮成一份實用指南。免費贈送。.
