Skip to content

Wednesday, March 11, 2026

Daily picks

14

articles scored

#1 GOLDGuideReddit r/ClaudeCode

I govern my Claude Code sessions with a folder of markdown files. Here's the framework and what it changed.

  • Claude Code forgets decisions between sessions and sometimes re-builds things differently or makes choices you didn't approve — this person fixed it by creating a governance system that lives in a `.gaai/` folder with markdown files that any AI agent can read
  • The system splits the AI's work into two strict roles: "Discovery" mode for thinking through problems and logging decisions (never writes code), and "Delivery" mode for actually building code (never makes architectural choices) — you switch between them manually to enforce the boundary
  • Everything gets documented with a decision trail (labeled like DEC-001, DEC-002), so you can trace any line of code back to the decision that authorized it — after 2.5 weeks on a real project, they had 177 logged decisions that are all searchable
  • It actually gets *faster* over time because Claude remembers and reuses previous context instead of starting from scratch each session (96.9% of reads came from cache), and the system caught a real problem where unmerged PRs were stacking up and causing conflicts
  • The framework is tool-agnostic and open-source — it's just files in a folder, so it works with Claude Code now and should work with any future coding agent that can read your project files
#2 SILVERTutorialReddit r/ClaudeAI

I used Claude Code to clean up my gmail inbox

  • Someone with thousands of cluttered emails used Claude Code (an AI tool) with Google's email API to finally clean up their inbox, and it worked amazingly well—they got down to under 100 emails by having the AI help identify and batch-delete spam.
  • Claude didn't just execute commands; it taught them about spam detection along the way, explained technical concepts like batching and Big O notation, and suggested smart safeguards like moving emails to trash first (instead of permanent deletion) so they could double-check for mistakes.
  • What made this special was the conversational approach—they could ask questions naturally without feeling judged, unlike asking a coworker or posting on tech forums, and the AI combined both the technical execution and the teaching into one seamless experience.
#3 BRONZETutorialReddit r/ClaudeAI

I built AgentLens a agent context window extension using Claude

  • Someone built AgentLens, a VS Code extension that helps you see what's happening inside Claude's context window—it tracks which files are loaded, warns you before the AI loses important information due to space limits, monitors the health of your project documentation, and shows you a timeline of everything the agent did, so you're never caught off-guard by missing context.
  • The developer used Claude itself to build the extension by describing their pain points, getting Claude to create UI mockups, then iterating together through feedback loops and testing—it took over 30 versions to get right, and they've open-sourced the whole thing on GitHub so others can use it or improve it.

Made with passive-aggressive love by manoga.digital. Powered by Claude.