Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

claude-md-managerClaude MD manager 命令行

Agent Skill

claude-md-manager 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

682

周安装

29

GitHub Stars

22

下载量

239
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tdimino/claude-code-minoan --skill claude-md-manager

简介

claude-md-manager 创建和维护配置 Claude Code 行为的 CLAUDE.md 文件。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中标准化项目开发规范。
  • 通过 GitHub 仓库安装,支持新建和刷新两种工作模式。
  • 使用前需分析项目结构和技术栈特征。
  • 注意生成的文档应聚焦关键差异点而非重复通用知识。

SKILL.md

CLAUDE.md Manager

Create and maintain effective CLAUDE.md files that configure Claude Code's project behavior.

Core Workflow

1. Determine the Mode

Creating new CLAUDE.md:

  • Analyze project structure, tech stack, and conventions
  • Generate focused documentation using WHAT/WHY/HOW framework
  • Target under 100 lines (max 300)

Refreshing existing CLAUDE.md:

  • Audit current content for bloat, staleness, and anti-patterns
  • Identify instructions that should be externalized
  • Optimize for conciseness and relevance

2. Project Analysis (for new files)

Examine:

  • package.json, Cargo.toml, pyproject.toml, etc. for stack
  • Directory structure for architecture patterns
  • Existing README.md for project context
  • .github/, Makefile, scripts for workflows
  • Test directories for testing conventions

3. Apply the WHAT/WHY/HOW Framework

WHAT - Technical reality:

  • Tech stack and key dependencies
  • Directory structure and architecture
  • Key files and entry points

WHY - Context and purpose:

  • What the project does
  • Why certain patterns exist
  • Functional purpose of directories

HOW - Practical workflows:

  • Build commands (package manager specifics)
  • Test execution
  • Development workflow
  • Deployment process

4. Validation Review Pass

After creating or refreshing CLAUDE.md, validate claims against the actual codebase using OSGrep. This catches stale commands, incorrect paths, and drifted conventions.

Validation Steps

1. Validate Commands

# For each command documented, verify it exists
osgrep "dev server startup configuration" -p $REPO -m 3
osgrep "test runner setup" -p $REPO -m 3
osgrep "build script configuration" -p $REPO -m 3

2. Validate Directory Structure

# Verify directories contain what's documented
osgrep "component definitions" -p $REPO/src/components -m 3
osgrep "API route handlers" -p $REPO/src/routes -m 3

3. Validate @import References

# Check each @path/to/file reference exists
test -f $REPO/docs/architecture.md && echo "EXISTS" || echo "MISSING"

4. Validate Conventions

# Verify conventions match actual code patterns
osgrep "error handling patterns" -p $REPO -m 5
osgrep "state management approach" -p $REPO -m 5

Validation Report Format

## Validation Report
- [x] `pnpm dev` - Verified in package.json scripts
- [x] `/src/components` - Contains 23 .tsx files
- [ ] `/src/services` - **EMPTY** - No files found
- [ ] `@agent_docs/testing.md` - **MISSING**
- [ ] "No class components" - **VIOLATION**: Found 2 in /src/legacy/

Deep Validation with /review (Optional)

For large codebases or quarterly audits, run multi-agent review:

/compounding-engineering:workflows:review CLAUDE.md

This invokes architecture-strategist and pattern-recognition-specialist agents to thoroughly verify structure claims and convention accuracy.

Conciseness Rules

Context budget: Claude's context window is shared. Every line in CLAUDE.md competes with conversation history and system prompts. LLMs can follow ~150-200 instructions consistently; the system prompt already uses ~50.

Targets:

  • Ideal: Under 60 lines (like HumanLayer's production file)
  • Good: Under 100 lines
  • Maximum: 300 lines (refactor if exceeded)

Techniques:

  • Use file:line references instead of copying code
  • Externalize task-specific docs to agent_docs/
  • Remove anything Claude can infer from code
  • Delete obvious instructions (Claude reads code patterns)

Progressive Disclosure Pattern

When CLAUDE.md grows beyond 100 lines, split into focused files:

agent_docs/
├── building.md          # Build process details
├── testing.md           # Test conventions and execution
├── code-conventions.md  # Style and patterns
├── architecture.md      # System design decisions
└── deployment.md        # Release process

Reference in CLAUDE.md:

# Detailed Guides
- Building: @agent_docs/building.md
- Testing: @agent_docs/testing.md
- Architecture: @agent_docs/architecture.md

Claude loads these only when relevant.

Beyond agent_docs/

Three additional progressive disclosure mechanisms complement agent_docs/:

  • **.claude/rules/*.md** — Path-scoped modular instructions with YAML frontmatter paths: globs. Load conditionally when matching files are in context. Use for instructions that apply only to specific file paths. See references/memory-hierarchy.md for the full rules reference.
  • Skills (.claude/skills/) — Domain knowledge that is only sometimes relevant. CLAUDE.md loads every session; skills load on demand with zero context cost when inactive.
  • Custom subagents (.claude/agents/*.md) — Agent-specific instructions belong in agent definitions, not in CLAUDE.md. Agent files support tool restrictions and model selection.

File Import Syntax

CLAUDE.md supports @path/to/file imports:

  • @README.md - Import from project root
  • @docs/guide.md - Import from subdirectory
  • @~/.claude/personal.md - Personal preferences (not committed)
  • Works recursively up to 5 levels
  • Not evaluated inside code blocks
  • Start imported files at ## heading level to avoid hierarchy conflicts with the main CLAUDE.md

Anti-Patterns to Avoid

Avoid these patterns:

  1. Linting via LLM - CLAUDE.md instructions are advisory (the agent may ignore under context pressure). Use hooks for guaranteed execution: # WRONG - Don't add to CLAUDE.md: "Always run eslint before committing" # RIGHT - Use a hook instead (deterministic, runs every time)
  2. Auto-generated CLAUDE.md - /init produces suboptimal results. Craft manually.
  3. Exhaustive style guides - Claude learns from existing code patterns.
  4. Task-specific instructions in root file - Use agent_docs/ instead.
  5. Inline code snippets - Use file:line references that stay current.
  6. Secrets or credentials - CLAUDE.md should be treated as public.
  7. Negative-only constraints - Bare prohibitions ("never do X") with no alternative cause stuck agents. Every "never X" should end with "— do Y instead."
  8. Bare file references - Naked @path imports without context get ignored. Pitch each import: explain when and why to read it (e.g., @agent_docs/testing.md — test conventions and coverage thresholds. Read when writing or modifying tests.).

Template Structure

# Project Name

Brief description of what this project does.

## Stack
- [Framework] with [Key libraries]
- [Database/Storage]
- [Key tooling]

## Structure
- `/src` - Application code
- `/tests` - Test suites
- `/docs` - Documentation

## Commands
- Dev: `npm run dev`
- Test: `npm test`
- Build: `npm run build`

## Conventions
- [Critical convention 1]
- [Critical convention 2]

## Workflow
- Branch naming: `feature/description`
- Commits: Conventional Commits format
- PR: Rebase before merge

## Architecture Notes
@docs/architecture.md (if complex)

Audit Checklist (for refresh)

When reviewing existing CLAUDE.md:

  • Under 100 lines? If not, identify extraction candidates
  • Using file:line refs instead of inline code?
  • Task-specific docs in agent_docs/?
  • No linting/style enforcement (use hooks)?
  • No credentials or secrets?
  • No obvious/inferable instructions?
  • All commands actually work?
  • Architecture info still accurate?
  • OSGrep validation run? (commands, directories, conventions)
  • File references still valid?
  • Negative instructions paired with alternatives?
  • File imports pitched (explain when/why to read)?
  • Path-specific instructions in .claude/rules/ instead of root CLAUDE.md?

Global Registration

When creating or refreshing a project CLAUDE.md, ensure the project has an entry in ~/.claude/agent_docs/active-projects.md with its directory and active plan.

Hierarchical Files

For monorepos, use CLAUDE.md at multiple levels:

/CLAUDE.md              # Repo-wide conventions
/frontend/CLAUDE.md     # Frontend-specific
/backend/CLAUDE.md      # Backend-specific
/services/auth/CLAUDE.md # Service-specific

Each file is concise and scope-appropriate.

Resources

  • references/best-practices.md - Deep dive on effectiveness patterns
  • references/memory-hierarchy.md - Instruction placement, .claude/rules/, CLAUDE.local.md
  • references/templates.md - Project-type-specific templates (9 variants)
  • scripts/analyze_project.py - Automated project structure analysis

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.39%
按下载量换算85

Claude

33.28%
按下载量换算80

Cursor

18.72%
按下载量换算45

Gemini CLI

10.48%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills