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

Troubleshooting OpenClaw: A Minimalist Reset Method
A Reddit user shares a five-step method to fix unstable OpenClaw setups by removing all skills, switching to Claude Sonnet, clearing sessions, simplifying SOUL.md, and testing with basic commands.

Understanding AI Agent Architecture: Deterministic vs Probabilistic Layers
A Reddit user shares a mental model for AI agent systems that separates deterministic layers (scripts, commands, APIs) from probabilistic layers (LLM reasoning and decisions). The key insight: push as much work as possible to the deterministic side.

NemoClaw Windows Setup Issues and Fixes
NemoClaw installations on Windows fail with three specific errors: unsupported environment on Git Bash, port 18789 already in use, and Docker build failing on OpenClaw install. The root cause is that NemoClaw wasn't built with Windows in mind, requiring WSL2 Ubuntu for successful setup.

Method for Transferring User Context from ChatGPT to Claude
A Reddit user shares a two-prompt method for extracting a detailed cognitive profile from ChatGPT and creating a portable AI constitution to transfer to Claude, addressing the difficulty of porting between AI systems.