Two Claude Code Skills for Managing CLAUDE.md Configuration

✍️ OpenClawRadar📅 Published: April 15, 2026🔗 Source
Two Claude Code Skills for Managing CLAUDE.md Configuration
Ad

A developer has created two Claude Code skills to address the growing complexity of CLAUDE.md configuration files. The tools aim to replace manual tweaking with automated, research-backed approaches.

The Problem with Long CLAUDE.md Files

The source notes that CLAUDE.md files are loaded into context on every single message. Since frontier models reliably follow about 150–200 total instruction slots, and the system prompt already uses approximately 50, a 300-line CLAUDE.md in a project actively degrades how well Claude follows all rules.

Ad

The Solution: Two Reusable Skills

The developer distilled research from official Anthropic docs, engineering blogs, community configs, and academic papers on agent instruction design into two skills:

/cc-init for New/Empty Projects

  • Creates a lean CLAUDE.md (typically 20–40 lines)
  • Generates permissions.deny for .env, secrets, and destructive commands
  • Adds a formatter hook if it detects one in the project
  • Sets cost-optimization defaults (auto-compact at 50% instead of the default 83%)
  • Configures Claude to ask questions instead of guessing and use TODOs where it can't verify

This functions as an opinionated /init command.

/cc-optimize for Existing Projects

  • Inventories every config file (CLAUDE.md, settings.json, hooks, MCP, skills)
  • Checks for bloat, missing hooks, hardcoded secrets, and deprecated settings
  • Catches instructions that should be deterministic hooks instead
  • Groups findings as must fix / should fix / nice to have
  • Asks before changing anything

The skills have no plugin marketplace or dependencies. The developer notes they don't try to cover everything and welcomes issues and PRs for missing functionality.

The repository is available at: https://github.com/MichaelvanLaar/claude-code-config-skills

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

200+ App Design Specs in Markdown – Drag into Claude or Cursor for Exact UI Clones
Tools

200+ App Design Specs in Markdown – Drag into Claude or Cursor for Exact UI Clones

A curated library of 200+ popular apps as structured markdown design specs with exact hex codes, type scale, spacing, every screen state, and nav graph. Drop into Claude, Cursor, or any AI agent to generate SwiftUI, Jetpack Compose, or Expo UI clones without guessing colors or spacing.

OpenClawRadar
GrapeRoot tool reduces Claude Code costs by 45% with pre-scanned repository context
Tools

GrapeRoot tool reduces Claude Code costs by 45% with pre-scanned repository context

A free tool called GrapeRoot that pre-scans repositories and builds dependency graphs reduced Claude Code costs by 45% on average across 10 engineering tasks while improving response quality by 13%. The tool eliminates exploration loops that normally consume tokens.

OpenClawRadar
Workflow orchestrator with AI CLI integration for sysadmin tasks
Tools

Workflow orchestrator with AI CLI integration for sysadmin tasks

A developer built a file-based workflow orchestrator called 'workflow' that integrates with Claude Code, Codex CLI, and Gemini CLI. It generates, updates, fixes, and refines YAML workflows from natural language descriptions for sysadmin tasks.

OpenClawRadar
RTX 5060 Ti 16GB Local LLM Benchmarks: 30B Models Still Lead for Coding
Tools

RTX 5060 Ti 16GB Local LLM Benchmarks: 30B Models Still Lead for Coding

Benchmarks on an RTX 5060 Ti 16GB show Unsloth Qwen3-Coder-30B UD-Q3_K_XL achieving 76.3 tok/s on Ubuntu with quality score 8.14, making it the recommended default coding model. The Unsloth Qwen3.5-35B UD-Q2_K_XL hits 80.1 tok/s but with lower quality scores.

OpenClawRadar