Claudemd Architect — AI skill for Claude Code
Generate production-grade CLAUDE.md files that steer AI coding agents.
How to install Claudemd Architect
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open keskinonur/claudemd-architect and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Claudemd Architect does
Generate production-grade CLAUDE.md files that steer AI coding agents. Incorporates LLM reasoning failure mitigations to prevent architectural drift and silent bugs.
Alternatives in AI
- Deepreasoning — A high-performance LLM inference API and Chat UI that integrates DeepSeek R1's CoT reasoning traces with Anthr 5.4k ★
- Sentrux — Real-time architectural sensor that helps AI agents close the feedback loop, enabling recursive self-improveme 2.9k ★
- Claude Code Configs — A comprehensive collection of production-grade Claude Code configurations, specialized agents, and automation 624 ★
README
claudemd-architect
Generate production-grade CLAUDE.md files that steer AI coding agents. Incorporates LLM reasoning failure mitigations to prevent architectural drift, scope creep, and silent bugs in Claude Code sessions.
Based on [Large Language Model Reasoning Failures](https://arxiv.org/abs/2602.06176) (Song et al., TMLR 2026).
The Problem
A CLAUDE.md is not just documentation — it's a **steering mechanism** for an AI coding agent. A poorly written one leads to:
- 🔀 Architectural drift — the AI gradually deviates from your intended design
- 🐛 Silent bugs — errors that compile and run but produce incorrect results
- 📦 Scope creep — unauthorized frameworks, abstractions, and "helpful" additions
- 🔄 Wasted iterations — fixing AI mistakes that a better prompt would have prevented
The Solution
This skill produces CLAUDE.md files designed around **five LLM failure prevention principles:**
| Principle | What It Does | Which Failure It Prevents |
|---|---|---|
| Constraints over suggestions | MUST / MUST NOT rules, not recommendations |
Confirmation bias, proactive initiative |
| Rationale with every decision | ADRs with "why" and rejected alternatives | Reasoning drift, inverse inference |
| Concrete code examples | Exact patterns, not abstract descriptions | Compositional reasoning failures |
| Explicit anti-patterns | What NOT to do, mapped to failure categories | All failure modes |
| Verification checkpoints | Stop-and-verify gates at phase boundaries | Working memory limitations |
Installation
Claude Code (global — recommended)
git clone https://github.com/keskinonur/claudemd-architect.git
cp -r claudemd-architect ~/.claude/skills/claudemd-architect
Now available in all your Claude Code projects as `/claudemd-architect` or triggered automatically when you mention creating a CLAUDE.md.
Claude Code (project-specific)
cp -r claudemd-architect /path/to/your/proje
Related Skills
Claude Failures
Documented failure modes from working with Claude Code. Post-mortems of real incidents where the AI agent assu
Unofficial Claude Code Prompt Playbook
Unofficial playbook for production-grade LLM system prompt architecture, derived from local analysis of Claude
Memory Lancedb Pro
Production-grade long-term memory system (v1.1.0-beta.8) for OpenClaw AI agents. Provides persistent, intellig
Oracle Infogenius
description: Generate AI Architect-grade Oracle Cloud architecture visuals
Autonomous Code Review Agent
A production-style AI code review platform that uses Claude to analyze uploaded source code, identify potentia
Prompt Architect
Open-source AI prompt engineering workspace — production-ready Next.js SaaS with conversational refinement, mu
Related Agents
Decision Pre Mortem
Pre-mortem analysis of a planned decision or project -- imagines failure, traces failure modes to root causes,
Timps AI Safety Agent
Audit LLM applications against OWASP LLM Top 10 (LLM01-LLM10) with mitigations. Use the timps_ai_safety_agent
Python Security Auditor
Production-grade Python security auditor eliminating os.execv() vulnerability, bare exception handlers, and si