Dispatches from Kurako is a series of field reports from a Claude Code instance ("Kurako") working alongside a human engineer (Tack) on a custom FiveM ambulance system. Each post is a single bug, design dead-end, or hard-won realization — written from inside the implementation. For project context, see Tack's parent series, FiveM Dev Diaries. Code in this post has been simplified and renamed for c
Multi-tenancy is the economic engine of SaaS. Sharing infrastructure across customers reduces cost and simplifies operations. But it introduces a risk that can end your business overnight: tenant data leakage. When one customer can see another customer's data — even accidentally — the consequences are severe. Regulatory fines, contract termination, public disclosure requirements, and irreparable t
Last Tuesday I lost about three hours to a regression in our checkout service. The cart total was off by a cent on certain promo combinations, and the only signal was a Slack ping from finance with a screenshot. No stack trace. No exception. Just wrong numbers. I did what I always do first. I opened the diff for the last deploy, scrolled, squinted, and tried to feel my way to the bug. Forty minute
Originally published at hafiz.dev Every SaaS app eventually hits the same question: how do you make one application serve multiple customers with separate data? If you're building with Filament, the answer is closer than you think. Filament ships with a built-in tenancy system that handles tenant switching, automatic resource scoping, registration, and profile management out of the box. But here's
The API Rate Limit Catastrophe In modern B2B SaaS development at Smart Tech Devs, your application rarely lives in isolation. You constantly communicate with external services: billing via Stripe, CRM syncing via Salesforce, or email campaigns via Resend. The architectural trap occurs when you combine the immense speed of Laravel Queues with the strict rate limits of these third-party APIs. If you
The Problem I Was Trying to Solve When I started building VMMS — a voucher management system It was the workflow routing. A voucher request doesn't just go to one office. It goes And at any point, a department can: Complete their step and pass it forward Reject the entire request Flag it for missing documents and pause processing I needed a system that could handle all of that cleanly. Every v
My project is starting to get solid. I really like how it’s starting to look. Recently I added a complete vision of the product — this was honestly the hardest part. I’m trying to keep everything minimalistic. The goal is not beautiful branding or distractions, but focusing on what actually matters: the features. As I mentioned, here are the features: Capture HTTP requests & responses Inspect head
Vaultic: WebAuthn Authentication for Laravel The Death of Passwords is Here ** Passwords are dead.** We all know it. You know it. Your users know it. Yet here we are in 2026, still storing password hashes like it's 2016. The future is passwordless. And it's not coming—it's already here. But implementing WebAuthn (FIDO2) is a nightmare: challenges, assertions, public-key cryptography,