Skip to content

Monday, March 23, 2026

Daily picks

30

articles scored

#1 GOLDGuideReddit r/ClaudeAI

Orchestration -- the exact prompts I use to get 3-4 hour agentic runs

  • The entire system is a 25-line PLAN.md file that tells Claude *how* to plan AND *how* to implement — not a complex multi-agent framework, something anyone can write themselves
  • Planning phase (~30 min): Claude asks a few questions upfront, then generates a milestone-specific plan file that embeds its own implementation instructions
  • Execution phase (2-4 hours): a fresh Claude agent reads that plan file and runs fully autonomously — implementation, validation, and self-correction all baked into the file's instructions
  • Built-in code review: 4 separate second-opinion calls to a different agent (Claude/Codex) covering KISS, style, correctness, and goal fulfillment — Claude *must* address objections before it ships
  • Author links to the actual PLAN.md and a real PLAN-M3.md on GitHub so you can copy the format directly into your own projects
#2 SILVERGuideReddit r/ClaudeCode

Hook-Based Context Injection for Coding Agents

  • Instead of dumping everything into CLAUDE.md at session start (where it gets buried 20 minutes later), inject only the *relevant* conventions the moment Claude touches a specific file — via PreToolUse hooks
  • A billing file gets billing-specific docs injected; a frontend component gets component conventions — all-match routing, general first, domain-specific last, landing at the recency end of the context window
  • PostToolUse runs grep-based architecture checks that block basic violations (wrong logger, fetch outside hooks, etc.) before Claude can move on
  • Tested on 15-file context decay runs with both Haiku and Sonnet: 108/108, zero degradation from file 1 to file 15
#3 BRONZEGuideReddit r/ClaudeCode

PSA for heavy daily use Claude Code users: give yourself a gift and get 'claude-devtools'

  • claude-devtools reads the log files Claude Code already writes to ~/.claude/ and turns them into something readable — no wrapper, no changed behavior, just visibility
  • Token breakdown across 7 categories (CLAUDE.md files, tool inputs/outputs, thinking tokens, skill activations, user text, etc.) — finally see exactly what's eating your context window
  • Full subagent tree: when Claude spawns sub-agents, you see each one's prompts, tool calls, cost, and duration as a nested tree — including agents that spawn more agents

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