Open-Sourced CLAUDE.md Keeps Claude Code Agents Productive for Hours, Not Looping

If you've run autonomous Claude Code sessions, you've hit the wall: agent starts sharp, drifts into narration by hour 2, loops on the same fix by hour 3, then dies with nothing shipped. One developer who burned through hundreds of sessions found the culprit wasn't a framework or tool — it was a missing CLAUDE.md file in the project root.
What the Operating File Does
The file is 70 lines, MIT licensed, and sits at ./CLAUDE.md. Claude Code reads it at startup and behavior shifts immediately. The core directives:
- Forces action over narration. If the agent catches itself writing "I will now" instead of calling a tool, it stops and fires the tool.
- Requires evidence before claiming done. No "should be fixed" without test output.
- Kills planning language. The only valid outputs are completed actions, questions, or summaries.
- Self-audits on context pressure instead of silently degrading.
Impact on Sessions
With the file in place, sessions went from 3-hour narration loops to full productive lifecycles. The agent ships code, verifies it landed, and keeps going until context pressure hits. Then it saves state and the next session picks up clean.
How to Use
Copy the file from the GitHub repo into your project root. No setup, no dependencies. Claude Code reads it automatically. The repo contains the exact CLAUDE.md — grab it and drop it in.
📖 Read the full source: r/ClaudeAI
👀 See Also

Offline Voice-to-Text Tool for macOS Using Local Whisper via MLX
A developer has open-sourced whisper-dictate, a macOS tool that provides fully offline voice-to-text transcription with real-time translation capabilities using Whisper running locally through MLX on Apple Silicon. Transcription takes about 500ms after speaking stops.

Skill Studio: Open-Source Desktop App for Managing Claude AI Agent Skills
Skill Studio is a free, open-source macOS desktop app that lets developers browse community skill repositories, preview documentation with markdown rendering, and install skills with one-click commands like npx skills add.

Testing δ-Mem on Apple Silicon: MLX Implementation and Benchmarks
δ-mem paper implemented via mlx on a MacMini 64GB shows mixed but promising local benchmarks, with gains in realistic replay scenarios.

Open-source Claude Code plugin captures books and converts them to structured Markdown
A developer has open-sourced a Claude Code plugin that automatically captures book pages via screenshots, performs OCR with macOS Vision, and generates structured Markdown files organized by theme rather than chapter order. The tool supports Kindle, Apple Books, Kindle Cloud Reader, and scanned PDFs on macOS.