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

review-agents-md审查 Agent 人 MD

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

56

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/richtabor/agent-skills --skill review-agents-md

简介

review-agents-md 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果。

  • 支持多文档交叉比对与内容一致性检查。
  • 通过关键词或主题输入触发,返回相关段落与修订建议。
  • 安装前应核实权限范围,避免越权访问私有文档。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

AGENTS.md Skill

Overview

Creates and refactors AGENTS.md files following progressive disclosure principles. Keeps files minimal and focused—avoiding the "ball of mud" that hurts agent performance.

When to Use

  • Proactively when a project has no AGENTS.md at the root — check for this when starting work in a new project
  • Creating a new AGENTS.md from scratch
  • Refactoring a bloated AGENTS.md
  • Reviewing an existing file for best practices
  • Setting up AGENTS.md for a monorepo
  • When AGENTS.md exists but CLAUDE.md is missing (should be symlinked)

Core Principles

  1. Minimal by default: Only include what's relevant to every single task
  2. Progressive disclosure: Point to separate files, external docs, or agent skills for domain-specific rules
  3. Never document file structure: It goes stale fast and poisons agent context
  4. Describe capabilities, not locations: "Auth uses JWT" not "Auth is in src/auth/"

The Instruction Budget

Frontier LLMs can follow ~150-200 instructions with reasonable consistency. Every token in AGENTS.md loads on every request, regardless of relevance. The ideal file should be as small as possible.

Why Files Get Bloated

Agent does something wrong → you add a rule → repeat hundreds of times → "ball of mud." Different developers add conflicting opinions. Nobody does a full style pass. Auto-generated files make this worse by prioritizing comprehensiveness over restraint.

Stale Docs Poison Context

Humans can be skeptical of outdated docs. Agents can't — they trust what they read on every request. File paths are especially dangerous since they change constantly. Describe capabilities and domain concepts instead.

Process

Phase 0: Detect Missing Files

Check the project root for AGENTS.md and CLAUDE.md:

  1. If neither exists, offer to create AGENTS.md and symlink CLAUDE.md to it
  2. If AGENTS.md exists but CLAUDE.md does not, create the symlink: ln -s AGENTS.md CLAUDE.md
  3. If CLAUDE.md exists but AGENTS.md does not, rename it to AGENTS.md and create a symlink: mv CLAUDE.md AGENTS.md && ln -s AGENTS.md CLAUDE.md
  4. If both exist but CLAUDE.md is not a symlink to AGENTS.md, merge any unique content into AGENTS.md, remove the standalone CLAUDE.md, and create the symlink

Phase 1: Assess Current State

For new projects:

  • Ask about the project's purpose (one sentence)
  • Ask about package manager (if not npm)
  • Ask about non-standard build commands

For existing files:

  • Read the current AGENTS.md
  • Count lines and estimate token cost
  • Identify content that belongs elsewhere

Phase 2: Apply the Essential Test

Only these belong in root AGENTS.md:

IncludeWhy
One-sentence project descriptionAnchors every agent decision
Package manager (if not npm)Prevents wrong commands
Non-standard build/test commandsSaves trial and error
Links to domain-specific docsProgressive disclosure

Everything else goes in separate files or gets deleted.

Phase 3: Identify Anti-Patterns

Flag these for removal or relocation:

  • File tree structures: Always go stale, waste tokens
  • Obvious instructions: "Write clean code", "Use meaningful names"
  • Contradictory rules: Often from multiple contributors
  • Language-specific conventions: Move to docs/TYPESCRIPT.md etc.
  • Workflow instructions: Move to docs/GIT.md or docs/TESTING.md

Phase 4: Create Progressive Disclosure Structure

For content that shouldn't be deleted:

docs/
├── TYPESCRIPT.md    # TS conventions
├── TESTING.md       # Test patterns
├── API.md           # API design rules
└── GIT.md           # Commit/PR conventions

Reference these from AGENTS.md with light-touch pointers. Keep the tone conversational — no "ALWAYS," no all-caps forcing:

For TypeScript conventions, see docs/TYPESCRIPT.md

Each file can reference the next — agents walk the tree on demand, only loading what's relevant.

Link to external docs when they're the authoritative source rather than restating them:

For database migrations, follow the Prisma migration guide.

Agent skills are another layer of progressive disclosure. Instead of embedding procedures in AGENTS.md, package them as skills the agent pulls in when needed. The root file stays focused on *what* and *where*; skills handle *how*.

Phase 5: Handle Monorepos

For monorepos, use nested AGENTS.md files:

Root AGENTS.md:

Monorepo for [purpose]. Uses [pnpm/yarn] workspaces.
See each package's AGENTS.md for specifics.

Package AGENTS.md (e.g., packages/api/AGENTS.md):

GraphQL API using Prisma. See docs/API_CONVENTIONS.md for patterns.

Phase 6: Output

Provide:

  1. The new/refactored AGENTS.md content
  2. Any new files created for progressive disclosure
  3. List of removed content with reasoning

Output Format

When creating a new AGENTS.md:

# [Project Name]

[One-sentence description of what this project does.]

[Package manager if not npm]

[Non-standard commands if any]

[Light-touch pointers to separate docs if needed]

Example: Minimal AGENTS.md

# Acme Dashboard

React admin dashboard for managing customer accounts and billing.

Uses pnpm. Run `pnpm check` for type checking.

For API conventions, see docs/API.md
For component patterns, see docs/COMPONENTS.md

That's 6 lines. Every token earns its place.

Refactoring Prompt

When refactoring an existing bloated file, follow these steps:

  1. Find contradictions: Identify conflicting instructions. Ask which to keep.
  2. Identify essentials: Extract only what belongs in root — project description, package manager, non-standard commands, content relevant to every task.
  3. Group the rest: Organize into logical categories. Create separate files.
  4. Create structure: Output minimal root AGENTS.md with links to separate files.
  5. Flag for deletion: Identify instructions that are redundant, vague, or obvious.

Decision Framework

Before adding anything to AGENTS.md:

LocationWhen to use
Root AGENTS.mdRelevant to every single task
Separate fileRelevant to one domain
Nested docsFits hierarchical organization
Delete itObvious, redundant, or vague

Cross-Tool Compatibility

AGENTS.md is an open standard supported by 20+ tools including:

  • GitHub Copilot (Coding Agent)
  • Cursor
  • Codex (OpenAI)
  • Gemini CLI (Google)
  • Windsurf, Devin (Cognition)
  • Zed, Warp, VS Code
  • Aider, goose, RooCode

Claude Code uses CLAUDE.md instead. AGENTS.md is always the source of truth. CLAUDE.md must always be a symlink pointing to it:

ln -s AGENTS.md CLAUDE.md

Never create a standalone CLAUDE.md. Never put content in CLAUDE.md that isn't in AGENTS.md.

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.8%
按下载量换算72

Claude

29.48%
按下载量换算63

Cursor

21.79%
按下载量换算47

Gemini CLI

9.48%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills