Claude Code Structure That Survived Multiple Real Projects

What Worked After Multiple Projects
A developer on r/ClaudeAI shared their Claude Code structure that didn't break after implementing it across 2-3 real projects. This setup held up once they added multiple skills, MCP servers, and agents, moving beyond simple demos.
Key Structural Decisions
- Use CLAUDE MD: Skipping CLAUDE MD early on led to inconsistent results. Once they defined conventions, testing rules, and naming standards, outputs became more predictable.
- Split skills by intent: Organizing skills as
code-review/,security-audit/,text-writer/worked better than dumping logic into one place. This made activation cleaner. - Implement hooks: Not using hooks initially was a mistake. PreToolUse and PostToolUse hooks helped catch bad commands and messy outputs, and were useful for small automations.
- Separate agents: The single-agent approach didn't scale well. Having dedicated reviewer, writer, and auditor agents proved more predictable.
- Manage context usage: When context usage goes too high, quality drops. Keeping it under approximately 60% made a noticeable difference.
- Separate concerns: Mixing config, skills, and runtime logic made debugging painful. Keeping these separated made everything easier to reason about.
MCP Integration
MCP (Model Context Protocol) integration with GitHub, Postgres, and filesystem access changed how Claude behaves completely. According to the developer, this is where the setup stopped feeling like a toy and started behaving more like a development assistant rather than just prompt → output.
The developer notes they're still figuring out the cleanest way to structure agents, but this setup is currently working well for projects that grow beyond simple demos.
📖 Read the full source: r/ClaudeAI
👀 See Also

Building a Fully Local Multi-Agent Assistant with OpenClaw and Ollama
A developer shares their stack for a fully local personal AI assistant using OpenClaw and Ollama, including models qwen3.5:35b-a3b, gemma3:4b, mistral:7b, MCP servers for Home Assistant and Gmail, and a Telegram Bot interface.

OpenClaw Memory Plugin Analysis: Lossless Claw + LanceDB Recommended
A developer tested OpenClaw memory plugins and found that the default setup causes token bloat, while Lossless Claw paired with LanceDB provides optimal performance for maintaining agent context without high costs.

Practical OpenClaw Advice: Starting Small, Avoiding Common Pitfalls
A developer shares lessons from building a personal health tracker with OpenClaw, emphasizing narrow scope, deterministic workflows, and sticking to one LLM. The post includes specific model observations comparing ChatGPT and Gemini.

Camoufox Cookie Injection: Browse Reddit as Yourself While Your Agent Does the Work
A detailed walkthrough on bypassing Reddit bot detection by extracting Firefox cookies and injecting them into Camoufox via Playwright.