Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

claude-md-enhancerClaude MD enhancer 搜索

Agent Skill

claude-md-enhancer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,273

周安装

52

GitHub Stars

737

下载量

412
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claude-md-enhancer(Claude MD enhancer 搜索)
来源仓库:https://github.com/alirezarezvani/claude-code-skill-factory
仓库路径:skills/claude-md-enhancer
安装命令:
npx skills add https://github.com/alirezarezvani/claude-code-skill-factory --skill claude-md-enhancer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/alirezarezvani/claude-code-skill-factory --skill claude-md-enhancer

简介

claude-md-enhancer 增强现有 CLAUDE.md 文件的合规性与实用性。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中优化项目指导文档质量。
  • 通过 GitHub 仓库安装,提供交互式初始化和格式校验功能。
  • 使用前建议备份原文件以防意外覆盖。
  • 注意生成的内容仍需人工评估与项目匹配度。

SKILL.md

CLAUDE.md File Enhancer

This skill provides comprehensive CLAUDE.md file generation and enhancement for Claude Code projects. It analyzes existing files, validates against best practices, and generates customized guidelines tailored to your project type, tech stack, and team size.

Capabilities

  • 🆕 Interactive Initialization: Intelligent workflow that explores your repository, detects project type and tech stack, asks for confirmation, then creates customized CLAUDE.md files
  • ✨ 100% Native Format Compliance: All generated files follow official Claude Code format with project structure diagrams, setup instructions, architecture sections, and file structure explanations (matching /update-claude-md slash command)
  • Analyze Existing Files: Scan and evaluate current CLAUDE.md files for structure, completeness, and quality
  • Validate Best Practices: Check against Anthropic guidelines (file length, required sections, formatting standards)
  • Generate New Files: Create complete CLAUDE.md files from scratch for new projects
  • Enhance Existing Files: Add missing sections, improve structure, and update to latest best practices
  • Modular Architecture: Support context-specific CLAUDE.md files in subdirectories (backend/, frontend/, docs/)
  • Tech Stack Customization: Tailor guidelines to specific technologies (TypeScript, Python, Go, React, Vue, etc.)
  • Team Size Adaptation: Adjust complexity based on team size (solo, small <10, large 10+)
  • Template Selection: Choose appropriate template based on project complexity and development phase

Input Requirements

For Analysis and Enhancement

Provide existing CLAUDE.md file content or file path:

{
  "mode": "enhance",
  "file_path": "CLAUDE.md",
  "content": "[existing CLAUDE.md content]",
  "project_context": {
    "type": "web_app",
    "tech_stack": ["typescript", "react", "node", "postgresql"],
    "team_size": "small",
    "phase": "mvp"
  }
}

For New File Generation

Provide project context:

{
  "mode": "create",
  "project_context": {
    "type": "api",
    "tech_stack": ["python", "fastapi", "postgresql", "docker"],
    "team_size": "medium",
    "phase": "production",
    "workflows": ["tdd", "cicd", "documentation_first"]
  },
  "modular": true,
  "subdirectories": ["backend", "database", "docs"]
}

Context Parameters

  • type: Project type (web_app, api, fullstack, cli, library, mobile, desktop)
  • tech_stack: Array of technologies (e.g., ["typescript", "react", "node"])
  • team_size: solo, small (<10), medium (10-50), large (50+)
  • phase: Development phase (prototype, mvp, production, enterprise)
  • workflows: Key workflows (tdd, cicd, documentation_first, agile, etc.)

Output Formats

Analysis Report

{
  "analysis": {
    "file_size": 450,
    "line_count": 320,
    "sections_found": [
      "Quick Navigation",
      "Core Principles",
      "Tech Stack",
      "Workflow Instructions"
    ],
    "missing_sections": [
      "Testing Requirements",
      "Error Handling Patterns"
    ],
    "issues": [
      {
        "type": "length_warning",
        "severity": "medium",
        "message": "File exceeds recommended 300 lines (320 lines)"
      },
      {
        "type": "missing_section",
        "severity": "low",
        "message": "Consider adding 'Testing Requirements' section"
      }
    ],
    "quality_score": 75,
    "recommendations": [
      "Split into modular files (backend/CLAUDE.md, frontend/CLAUDE.md)",
      "Add testing requirements section",
      "Reduce root file to <150 lines"
    ]
  }
}

Generated Content

Complete CLAUDE.md file content or specific sections to add:

# CLAUDE.md

This file provides guidance for Claude Code when working with this project.

## Quick Navigation

- [Backend Guidelines](backend/CLAUDE.md)
- [Frontend Guidelines](frontend/CLAUDE.md)
- [Database Operations](database/CLAUDE.md)
- [CI/CD Workflows](.github/CLAUDE.md)

## Core Principles

1. **Test-Driven Development**: Write tests before implementation
2. **Type Safety First**: Use TypeScript strict mode throughout
3. **Component Composition**: Favor small, reusable components
4. **Error Handling**: Always handle errors with proper logging
5. **Documentation Updates**: Keep docs in sync with code changes

[... additional sections based on template ...]

How to Use

Example 1: Initialize CLAUDE.md for New Project (Interactive)

Hey Claude—I just added the "claude-md-enhancer" skill. I don't have a CLAUDE.md file yet. Can you help me create one for this project?

What Happens:

  1. Claude checks if CLAUDE.md exists (it doesn't)
  2. Claude explores your repository using built-in commands
  3. Claude analyzes: project type, tech stack, team size, workflows
  4. Claude shows discoveries and asks for confirmation
  5. You confirm the settings
  6. Claude creates customized CLAUDE.md file(s)
  7. Claude enhances with best practices

Interactive Flow:

  • ✋ User must confirm before creation
  • 🔍 Full visibility into what was discovered
  • ⚙️ Option to adjust settings before proceeding

Example 2: Analyze Existing CLAUDE.md

Hey Claude—I just added the "claude-md-enhancer" skill. Can you analyze my current CLAUDE.md file and tell me what's missing or could be improved?

Example 2: Generate New CLAUDE.md for TypeScript Project

Hey Claude—I just added the "claude-md-enhancer" skill. Can you create a CLAUDE.md file for my TypeScript React project with a team of 5 developers? We use PostgreSQL, Docker, and follow TDD practices.

Example 3: Enhance Existing File

Hey Claude—I just added the "claude-md-enhancer" skill. Can you enhance my existing CLAUDE.md by adding missing sections and improving the structure? Here's my current file: [paste content]

Example 4: Generate Modular Architecture

Hey Claude—I just added the "claude-md-enhancer" skill. Can you create a modular CLAUDE.md setup for my full-stack project? I need separate files for backend (Python/FastAPI), frontend (React), and database (PostgreSQL).

Initialization Workflow (New Projects)

When CLAUDE.md doesn't exist in your project, this skill provides an intelligent initialization workflow:

Workflow Steps

Step 1: Detection

  • Skill checks if CLAUDE.md exists in project root
  • If not found, initialization workflow begins

Step 2: Repository Exploration

  • Uses Claude Code's built-in explore command
  • Analyzes project structure, files, and directories
  • Examines configuration files (package.json, requirements.txt, go.mod, etc.)
  • Reviews existing documentation

Step 3: Intelligent Analysis

  • Project Type Detection: web_app, api, fullstack, cli, library, mobile, desktop
  • Tech Stack Detection: TypeScript, Python, React, FastAPI, PostgreSQL, Docker, etc.
  • Team Size Estimation: Based on project complexity (solo, small, medium, large)
  • Development Phase: prototype, mvp, production, enterprise
  • Workflow Detection: TDD, CI/CD, documentation-first, agile
  • Structure Recommendation: Single file vs. modular architecture

Step 4: User Confirmation

  • Displays all discoveries in clear format
  • Shows recommended CLAUDE.md structure
  • Asks user to confirm or adjust settings
  • User must explicitly approve before proceeding

Step 5: File Creation

  • Generates customized CLAUDE.md based on confirmed settings
  • Creates modular files if recommended (backend/, frontend/, etc.)
  • Applies tech-specific best practices

Step 6: Enhancement

  • Validates generated content
  • Adds quality improvements
  • Ensures completeness

Step 7: Summary

  • Shows what files were created
  • Provides next steps
  • Ready for immediate use

Interactive Example

User: "I need a CLAUDE.md for this project"

Claude: "I'll explore your repository first to understand the project.
        [Explores using built-in commands]

        Based on my exploration, here's what I discovered:

        Project Type: Full-Stack Application
        Tech Stack: TypeScript, React, Node.js, PostgreSQL, Docker
        Team Size: Small (2-9 developers)
        Development Phase: MVP
        Workflows: TDD, CI/CD

        Recommended Structure: Modular architecture
        - Root CLAUDE.md (navigation hub)
        - backend/CLAUDE.md (API guidelines)
        - frontend/CLAUDE.md (React guidelines)

        Would you like me to create these files?"

User: "Yes, please proceed"

Claude: "Creating customized CLAUDE.md files...
        ✅ Created CLAUDE.md (100 lines)
        ✅ Created backend/CLAUDE.md (150 lines)
        ✅ Created frontend/CLAUDE.md (175 lines)

        Your project is ready for AI-assisted development!"

Scripts

workflow.py

Manages the interactive initialization workflow for new projects.

Key Functions:

  • check_claude_md_exists() - Detect if CLAUDE.md exists
  • generate_exploration_prompt() - Guide Claude to explore repository
  • analyze_discoveries() - Analyze exploration results
  • generate_confirmation_prompt() - Create user confirmation prompt
  • get_workflow_steps() - Get complete workflow steps

analyzer.py

Analyzes existing CLAUDE.md files to identify structure, sections, and quality issues.

Key Functions:

  • analyze_file() - Parse and analyze CLAUDE.md structure
  • detect_sections() - Identify present and missing sections
  • calculate_quality_score() - Score file quality (0-100)
  • generate_recommendations() - Provide actionable improvement suggestions

validator.py

Validates CLAUDE.md files against best practices and Anthropic guidelines.

Key Functions:

  • validate_length() - Check file length (warn if >300 lines)
  • validate_structure() - Verify required sections present
  • validate_formatting() - Check markdown formatting quality
  • validate_completeness() - Ensure critical information included

generator.py

Generates new CLAUDE.md content or missing sections based on templates.

Key Functions:

  • generate_root_file() - Create main CLAUDE.md orchestrator
  • generate_context_file() - Create context-specific files (backend, frontend, etc.)
  • generate_section() - Generate individual sections (tech stack, workflows, etc.)
  • merge_with_existing() - Add new sections to existing files

template_selector.py

Selects appropriate template based on project context.

Key Functions:

  • select_template() - Choose template based on project type and team size
  • customize_template() - Adapt template to tech stack
  • determine_complexity() - Calculate appropriate detail level
  • recommend_modular_structure() - Suggest subdirectory organization

Best Practices

Critical Validation Rule ⚠️

"Always validate your output against official native examples before declaring complete."

Before finalizing any CLAUDE.md generation:

  1. Compare output against /update-claude-md slash command format
  2. Check official Claude Code documentation for required sections
  3. Verify all native format sections are present (Overview, Project Structure, File Structure, Setup & Installation, Architecture, etc.)
  4. Cross-check against reference examples in examples/ folder

For New Projects

  1. Start with minimal template (50-100 lines) and grow as needed
  2. Use modular architecture for projects with >3 major components
  3. Include tech stack reference immediately
  4. Add workflow instructions before team grows beyond 5 people

For Enhancement

  1. Analyze before modifying - understand current structure first
  2. Preserve custom content - only enhance, don't replace
  3. Validate after changes - ensure improvements don't break existing patterns
  4. Test with Claude Code - verify guidelines work as intended

General Guidelines

  1. Keep root file concise - Max 150 lines, use as navigation hub
  2. Use context-specific files - backend/CLAUDE.md, frontend/CLAUDE.md, etc.
  3. Avoid duplication - Each guideline should appear once
  4. Link to external docs - Don't copy official documentation
  5. Update regularly - Review guidelines quarterly or when stack changes

Limitations

Technical Constraints

  • Requires valid project context for accurate template selection
  • Tech stack detection is based on keywords, may need manual refinement
  • Modular file generation assumes standard directory structure

Scope Boundaries

  • Focuses on CLAUDE.md structure, not project-specific business logic
  • Best practice recommendations are general, may need industry-specific customization
  • Validation is guideline-based, not enforcement (no automated fixes without approval)

When NOT to Use

  • For non-Claude AI tools (this is Claude Code specific)
  • For projects that don't use Claude Code or similar AI assistants
  • When you need highly specialized domain guidelines (legal, medical compliance)

Template Categories

By Size

  • Minimal (50 lines) - Solo developers, prototypes, hackathons
  • Core (100-150 lines) - Small teams, MVPs, standard projects
  • Detailed (200-300 lines) - Large teams, production systems, enterprise

By Project Type

  • Web App - Frontend-focused (React, Vue, Angular)
  • API - Backend services (REST, GraphQL, microservices)
  • Full-Stack - Integrated frontend + backend
  • CLI - Command-line tools and utilities
  • Library - Reusable packages and frameworks
  • Mobile - React Native, Flutter, native iOS/Android

By Tech Stack

  • TypeScript/Node - Modern JavaScript ecosystem
  • Python - Django, FastAPI, Flask
  • Go - Gin, Echo, native services
  • Java/Kotlin - Spring Boot, enterprise Java
  • Ruby - Rails, Sinatra

Quality Metrics

File Quality Score (0-100)

Calculated based on:

  • Length appropriateness (25 points) - Not too short or long
  • Section completeness (25 points) - Required sections present
  • Formatting quality (20 points) - Proper markdown structure
  • Content specificity (15 points) - Tailored to project, not generic
  • Modular organization (15 points) - Uses subdirectory files when appropriate

Recommendations Priority

  • Critical - Missing required sections, file too long (>400 lines)
  • High - Missing important sections, formatting issues
  • Medium - Could add optional sections, minor improvements
  • Low - Nice-to-have enhancements, stylistic suggestions

Advanced Features

Modular Architecture Support

Automatically generates context-specific files:

project-root/
├── CLAUDE.md                 # Root orchestrator (100-150 lines)
├── backend/
│   └── CLAUDE.md            # Backend-specific (150-200 lines)
├── frontend/
│   └── CLAUDE.md            # Frontend-specific (150-200 lines)
├── database/
│   └── CLAUDE.md            # Database operations (100-150 lines)
└── .github/
    └── CLAUDE.md            # CI/CD workflows (100-150 lines)

Tech Stack Detection

Automatically detects technologies from:

  • package.json (Node.js/TypeScript)
  • requirements.txt or pyproject.toml (Python)
  • go.mod (Go)
  • Cargo.toml (Rust)
  • pom.xml or build.gradle (Java)

Team Size Adaptation

Adjusts detail level:

  • Solo: Minimal guidelines, focus on efficiency
  • Small (<10): Core guidelines, workflow basics
  • Medium (10-50): Detailed guidelines, team coordination
  • Large (50+): Comprehensive guidelines, process enforcement

References

  • Anthropic Claude Code Docs: https://docs.claude.com/en/docs/claude-code
  • CLAUDE.md Best Practices: Based on community patterns and Anthropic guidance
  • Example CLAUDE.md Files: See examples/ folder for 6 reference implementations covering different project types and team sizes

Version

Version: 1.0.0 Last Updated: November 2025 Compatible: Claude Code 2.0+, Claude Apps, Claude API

Remember: The goal is to make Claude more efficient and context-aware, not to create bureaucracy. Start simple, iterate based on real usage, and automate quality checks where possible.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.17%
按下载量换算124

trae

23.99%
按下载量换算99

Antigravity

17.99%
按下载量换算74

Gemini CLI

13.87%
按下载量换算57

OpenCode

7.84%
按下载量换算32

Cursor

4.17%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills