#tools

← All writing
Sep 21, 2026

Tracing every model call: the rule only holds if a test holds it

"We trace everything" is an intention, not a guarantee: one new code path is enough to open a hole nobody sees. What holds the rule is a test that freezes the inventory of call sites — plus two traps that cost me time.

ia · process · tools · 5 min
Sep 14, 2026

Your agent isn't re-reading your prompt: the three lifetimes of an agent config

I kept editing the system prompt, kept re-running, and nothing moved. The culprit wasn't a cache: the graph is built once at startup. Three lifetimes coexist inside an agent, and knowing which one applies changes the feedback loop.

ia · process · tools · 5 min
Sep 12, 2026

Image models can't write — so I write the text before they see it

Ask an image model for an App Store screenshot and you get a beautiful visual with an unreadable headline. I inverted the order: a script draws the text, and the model isn't allowed near it. Plus the bit of arithmetic that cost me a full set of screenshots.

ia · tools · mobile · 5 min
Sep 10, 2026

Two branches, two stacks, zero collisions: the bare repo + worktrees workspace

Once you delegate to agents, you always have two or three branches in flight. A plain `git checkout` breaks everything: stash, Docker stack restart, ports fighting each other. Here's the layout that unblocked me — and what it actually costs.

tools · process · stack · 5 min
Jul 20, 2026

Perplexity is pulling back from MCP internally. Here's the POC that dodges the same wall.

Perplexity is pulling back from MCP internally, and their reasons are real. But token bloat and weak permissions are a wiring problem, not a protocol one. Here's a POC that exposes my tools once and grants each agent only its slice.

ia · tools · build · 8 min
Jul 2, 2026

I generated Ti Boug's App Store screenshots with a Claude skill

Screenshots are the #1 conversion lever on the store — and a pain to produce. Here's how a Claude skill + Nano Banana Pro got me a full, consistent, honest set in one afternoon.

claude · tools · 6 min
May 25, 2026

I turned Claude into an app-idea scout. Here's what it found on Réunion Island.

How I use Claude Skills to brainstorm 10 SaaS ideas scored out of 100, in 15 minutes — with a real run on my local niche, Réunion Island.

ia · claude · tools · indie · 9 min
May 24, 2026

The Claude Code hooks I installed that save me time every single day

Going from Claude that codes to Claude that disciplines itself. SessionStart to bootstrap the repo, PreToolUse to block sketchy commands, Stop to notify you when a task ends. Four concrete hooks running silently in my repos.

ia · claude · tools · process · 5 min
May 12, 2026

RTK: how I cut 80% of the noise eating up my Claude context

A Rust CLI proxy that sits between Claude Code and your shell commands. It compresses verbose output (git status, ls, jest...) before it ever reaches the context window. One command to install, instant payoff.

ia · claude · tools · process · 5 min