Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

agents-md特工 MD

Agent Skill

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

总安装

3,362

周安装

136

GitHub Stars

33

下载量

1,055
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

agents-md 用于查找、检索和筛选相关信息,支持关键词定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要快速定位候选结果时使用。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的 skill。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • agents-md 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AGENTS.md Audit

AGENTS.md is the source of truth for agent instructions. Always write to AGENTS.md, never directly to CLAUDE.md. Symlink CLAUDE.md so Claude Code loads it:

ln -s AGENTS.md CLAUDE.md

AGENTS.md files are execution contracts, not knowledge bases.

Litmus test for every line: "Would removing this cause the agent to make a mistake?" If no, cut it. Bloated instruction files cause agents to ignore actual rules.

Reference Files

FileRead When
references/quick-checklist.mdDefault: fast triage (10 checks, target >= 8/10)
references/quality-criteria.mdFull audit mode or when quick audit fails
references/refactor-workflow.mdFile is bloated (>150 lines) or low-signal
references/root-content-guidance.mdDeciding what stays in root vs separate files
references/templates.mdDrafting new file or rebuilding from scratch

Quick Example

Input: AGENTS.md with stale commands and generic advice Quick audit result: 5/10 (Fail) Key issues: Missing test command, generic "follow best practices" advice, dead link to deleted folder Fix: Add npm test, replace generic advice with specific gotcha, remove dead link After: 9/10 (Pass)

How to Use

Default path:

  • Start with quick audit using references/quick-checklist.md (10 checks)
  • Escalate to full audit (references/quality-criteria.md) only when quick audit fails, file is high-risk, or user requests it
  • Apply edits only after reporting findings and getting confirmation

Progressive loading:

  • Always load the checklist for the selected audit mode
  • Load references/refactor-workflow.md only for low-signal files (below target score, stale commands, or root file over ~150 lines)
  • Load references/templates.md only when drafting a new file or rebuilding from scratch
  • Load references/root-content-guidance.md only when deciding what stays in root vs moved out

Audit Workflow

Copy this checklist to track progress:

Audit Progress:
- [ ] Step 1: Discover files
- [ ] Step 2: Select audit mode (quick or full)
- [ ] Step 3: Run audit against checklist
- [ ] Step 4: Report findings with score table
- [ ] Step 5: Propose minimal diffs
- [ ] Step 6: Validate changes
- [ ] Step 7: Apply and verify

Step 1: Discover files

Run:

find . \( -name "AGENTS.md" -o -name "CLAUDE.md" -o -name "CLAUDE.local.md" \) 2>/dev/null | sort

Also check for a home-level file: ~/.claude/CLAUDE.md (applies to all sessions).

AGENTS.md is the source of truth. If a project has a CLAUDE.md that is not a symlink to AGENTS.md, recommend renaming it to AGENTS.md and creating the symlink:

mv CLAUDE.md AGENTS.md
ln -s AGENTS.md CLAUDE.md

Instruction files can exist at multiple levels — project root, parent directories, and child directories are all loaded automatically. CLAUDE.local.md is the gitignored personal variant. Audit each level independently.

For monorepos, include workspace-level AGENTS.md files.

Step 2: Select audit mode

  • Quick audit: Default for most files (10 checks, target >= 8/10)
  • Full audit: When quick audit fails, file is high-risk, or user requests full scoring

Step 3: Run audit

  • Quick audit target: >= 8/10 checks from references/quick-checklist.md
  • Full audit file-quality target: >= 91% of applicable points from references/quality-criteria.md
  • Full audit execution target: 2/2 when producing an edit proposal
  • Score each root file independently

Step 4: Report findings

Output a concise report before edits:

## AGENTS.md Audit Report

| File | Mode | Score | Grade | Key Issues |
|------|------|-------|-------|------------|
| ./AGENTS.md | Quick | 6/10 | Fail | Missing test command, stale path, doc-heavy section |

Step 5: Propose minimal diffs

  • Fix broken/stale commands first
  • Remove generic, duplicate, or obsolete guidance
  • Move deep detail into linked files using @path/to/file.md import syntax
  • Use emphasis ("IMPORTANT:", "YOU MUST") on critical rules that agents tend to skip
  • Keep rewrites incremental and preserve useful wording when possible

Show each proposed change with rationale and a diff snippet.

Step 6: Validate changes

Validation loop:

  1. Run smoke checks for core commands (dev, test, build, lint/typecheck) when applicable
  2. If commands cannot be run, verify script existence and note the limitation
  3. Check that linked paths resolve
  4. Confirm no contradictory rules remain
  5. If issues found → revise → validate again
  6. Only proceed when validation passes

Step 7: Apply and verify

  • Apply approved edits
  • After each PR, add at most one new gotcha only if it prevented or fixed a real mistake
  • Verify changes by re-running relevant commands

Gotchas

  • Don't rewrite the entire file when targeted edits would pass audit — incremental fixes preserve useful wording and reduce review burden.
  • Don't add gotchas that aren't grounded in a real failure — hypothetical warnings become noise the agent learns to ignore.
  • Don't audit CLAUDE.local.md the same way as AGENTS.md — local files are personal and not committed, so enforce less strictly.
  • Don't remove emphasis markers (IMPORTANT, YOU MUST) from rules agents consistently skip — these exist because the default phrasing was not enough.
  • Don't treat a high quick-audit score as permission to skip validation — stale commands can hide behind passing checklists.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.76%
按下载量换算377

Claude

29.86%
按下载量换算315

Cursor

18.4%
按下载量换算194

Gemini CLI

8.8%
按下载量换算93

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills