Driftwatch V3 Released: AI-Assisted Codebase Monitoring Tool

Driftwatch V3 Build Complete
Driftwatch V3 has been completed and pushed to a public repository at bubbuilds.com. The build took 5-6 days instead of the anticipated 1-2 days, involving approximately 9,000 lines of code and costing around $160 in API credits plus a Claude Pro account.
What's New in V3
- Tracks which markdown files are oversized and at risk of silent truncation
- Flags contradicting instructions across files
- Cost tracking with recommendations on which files need attention
- Built-in markdown editor for fixing issues directly in the browser
- Snapshot export/import to track drift between scans
- Removed some features that weren't pulling their weight
- Still all in-browser with nothing stored on a server
Key Lessons from the Build
Costs & Delegation: Opus consistently thinking doing tasks itself is faster and cheaper than delegating was the single biggest cost driver. Batching all QA until after the full build and giving fixes in one shot proved cheaper than stopping after each sprint.
Specs & Prompts: A structured spec sheet before every sprint was the biggest cost saver. The developer built a "Prompt Clarifier" Claude Project that turns messy prompts into detailed markdown specs for Bub. Having Bub read the full spec and ask questions before building saved wasted tokens compared to just sending instructions.
Context Compaction: Compaction and context bloat are the biggest blockers for trusting Bub with more autonomy. Sprint recaps built into the spec template helped restore context, and important instructions are now placed in local markdown files Bub can reference instead of pasted into chat.
QA & Testing: Batching QA until after all sprints then giving everything back in one shot was more efficient for time and cost than review/fixes after each milestone.
Website Design: Mobile-first design needs to be included in specs from the start - retrofitting created lots of back and forth where small changes created new issues.
Workflow: The developer needs better organization for Claude chats and plans to study test driven development. Exporting Telegram chat history and running it through Opus helps identify where conversations break down with Bub, and Claude's research mode works well for fact checking tech specs.
What's Next
The developer plans to use Driftwatch on Bub to audit his architecture and give him a full makeover to fix delegation and other issues from this build. Next steps include building a second brain for the developer, Bub, and Claude to share that organizes unsearchable Claude Pro chats, and testing architecture upgrades while building Driftwatch Pro features.
📖 Read the full source: r/openclaw
👀 See Also
LTM: A JSON Protocol for Portable Agent Memory Across Models and Machines
LTM is a JSON protocol (Core Memory Packet) plus CLI/server for persisting agent context—dead ends, constraints, next steps—across models, editors, and machines. Packets are 2-5 KB, redact secrets, and support MCP.

Exploring the Claude Code Guidelines: A Minimalist Approach in 65 Lines
The Claude Code extension encapsulates essential AI coding principles in just 65 lines of Markdown, emphasizing 'Think Before Coding'. Despite its simplicity, it has gained notable traction among developers.

Claude Code Used to Simulate 4,000+ Blind Werewolf Games with LLMs
A developer used Claude Code to build a simulator where LLMs play blind one-night Werewolf, running ~4,600 games across OpenAI and xAI models. The experiment revealed consistent name-based voting patterns despite minimal game signals.

Kelet: Automated Root Cause Analysis for AI Agents
Kelet is a service that automatically analyzes production AI agent failures by clustering traces and signals to identify root causes and suggest fixes. It integrates via Python/TypeScript SDKs or an installer skill and is currently free during beta.