TTS-MCP With Local Models »

Code github.com/florianbuetow/tts-mcp How TTS-MCP fits together, from your AI agent down to your speakers When you kick off a long-running task with an autonomous agent, whether it is Claude Code, Codex, or a custom runner, you usually end up locked into the terminal. You sit …


Token Economics Playground: Single session vs. Orchestration »

The Crossover For one or two tasks, a single session is cheaper. Past that, delegating to subagents wins depending on context length and task complexity. A single session keeps everything in one growing context and takes advantage of caching that avoids reloading the context …



Driving the Guard Tool from Claude Code with this New Plugin »

What Is Guard? The Origin Story Yes, You Are Absolutely Right! Or: How I won $1000 by not reviewing any code at an international AWS AI hackathon (with guard).Continue reading … Back in February, I released Guard, an open source CLI tool written in GoLang that physically …


Tmux Auto Attach »

Auto-attach terminals to tmux sessions spawned by AI coding agents

Code https://github.com/florianbuetow/tmux-auto-attach Tmux Auto Attach is a helper script that automatically attaches idle terminals to new tmux sessions spawned by your AI coding agent. The reason to spawn sub-agents, or agents from different vendors, in tmux sessions is …


Fight Context Rot with the Progressive Disclosure Plugin for Claude Code »

Download github.com/florianbuetow/claude-code If your CLAUDE.md has grown into a monolith, every convention, every workflow rule, and every stray note inlined, it is doing the opposite of progressive disclosure. The agent loads everything at session start, burns through its …


TouchTask »

Task management meets habit tracking

LIVE DEMO TouchTask runs entirely in your browser - no account, no install. Open the live demo. Visit the GitHub repository.


Introducing /fixclaude »

Infographic: Overcomming the 8 Hidden Limitations of Claude Code People were quick to analyze the leaked Claude Code codebase and the findings are startling: Anthropic is aware of Claude Code’s “laziness” and hallucinations, but the most effective fixes are …


CHANGELOG.md Plugin for Claude Code »

Unless you already automated maintaining CHANGELOG.md in your projects, you might find this skill useful. The changelog skill reads your Git history and writes a proper CHANGELOG.md following the “Keep a Changelog” format with semantic versioning. One command. No …


Retrospective Plugin for Claude Code »

In engineering, retrospectives uncover work patterns that work well and those that can be improved. I built a Claude Code plugin that performs a retrospective based on your past Claude sessions to tell you how to make your interactions with Claude Code more effective. Run …


Stop Spoon-Feeding Your Coding Agent - Try Specs-Driven Development »

If you are still spoon-feeding your coding agent with instructions and trying to keep it on track with prompting, you need to try specs-driven development. The issue with prompts is that they hardly capture enough of your intent. Unless you’ve specified things rigorously, …


Architecture Audit Plugin for Claude Code and Codex »

SOLID covers class design. But architecture rot happens at a larger scale - tangled services, leaky abstractions, hidden coupling between modules, brittle failure propagation. By the time these problems surface, untangling them is far more expensive than fixing a single class. So …


Five Power Rangers for SOLID Code Reviews »

How to get effective code quality reviews with Claude and Codex? With the force of five Power Rangers, of course! SOLID principles are one of the most battle-tested frameworks for evaluating object-oriented design. So I encoded them into a free plugin that gives Claude Code and …


Guard Won 8th Place in the Kiro Hackathon »

Infographic: Guard on the Kiro Hackathon podium My open source Guard tool won 8th place in the international Kiro Hackathon hosted by Dynamous.ai and AWS Kiro! Guard is a CLI/TUI tool that protects your files from unauthorized modifications by AI coding agents. It gives you …


Introducing Guard - Protect Files from AI Coding Agents »

Logo: Yes, You Are Absolutely Right! 2001: A Space Odyssey predicted “I’m sorry, I can’t do that, Dave”. Instead, we got “Yes, you are absolutely right!” - which is equally frightening if you’re a software developer. I’m frankly …


IMAP Mini MCP »

My favorite workflow upgrade this week. I finally had enough of manually sifting through 100+ emails a day and creating custom rules in my email client. I tried several email MCP servers - they were either too complex for what I needed or the AI did things I absolutely …


uv - An Extremely Fast Python Package and Project Manager, Written in Rust »

There exist a broad selection of package managers that manage virtual environments and packages for us. Some of the most popular ones are conda, pip and virtualenv or virtualenvwrapper. They can almost all do the same things: Install packages Resolve dependencies Managing package …