Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

agents-md-managerAgent 商 MD 经理

Agent Skill

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

总安装

930

周安装

38

GitHub Stars

22

下载量

301
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

agents-md-manager 统一管理 AGENTS.md 文件和 Codex CLI 配置,支持项目分析到脚本生成全流程。

  • 提供项目检测、规则转换和配置导出功能,覆盖从创建到维护的完整周期。
  • 通过预设脚本处理迁移、验证等任务,适合团队协作环境。
  • 可能生成 symlink 和修改配置文件,需确认文件系统兼容性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

AGENTS.md Manager

Create and maintain AGENTS.md files and Codex CLI configuration for any project.

Core Workflow

Determine the mode:

ModeWhenScript
CreateNew project needs AGENTS.mdscripts/analyze_project.py then write
RefreshExisting AGENTS.md needs auditscripts/validate_agents_md.py
ConvertMigrate from CLAUDE.mdscripts/convert_claude_to_agents.py
ConfigGenerate config.tomlscripts/generate_config_toml.py
RulesCreate.rules filesSee references/starlark-rules-spec.md
SkillsScaffold.agents/skills/scripts/scaffold_codex_skill.py

1. Project Analysis

Run analysis to detect stack, existing config, and gaps:

python3 ~/.claude/skills/agents-md-manager/scripts/analyze_project.py [project_path]

Output: JSON report with tech stack, commands, directory structure, and Codex artifact inventory (AGENTS.md, config.toml,.rules,.agents/skills/, CLAUDE.md conversion candidates).

2. AGENTS.md Generation

Apply the WHAT/WHY/HOW framework in plain markdown only—no @import syntax, no YAML frontmatter.

Recommended Sections

# Project Name

Brief description.

## Commands
- Dev: `pnpm dev`
- Test: `pnpm test`
- Build: `pnpm build`
- Lint: `pnpm lint`

## Structure
- `/src` — Application source
- `/tests` — Test suites

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

## Boundaries
- Always: Run tests before committing
- Ask: Before adding production dependencies
- Never: Modify migration files directly

## Troubleshooting
- [Common issue and fix]

Constraints

  • Target under 200 lines per file, under 100 for nested subdirectory files
  • Respect 32 KiB limit (project_doc_max_bytes)
  • Plain markdown only—no @import, no YAML frontmatter
  • Include a "Boundaries" section (Always/Ask/Never) for agent guardrails
  • See references/templates.md for project-type-specific templates
  • See references/agents-md-spec.md for discovery and concatenation rules

3. CLAUDE.md Conversion

Convert existing CLAUDE.md to AGENTS.md format:

python3 ~/.claude/skills/agents-md-manager/scripts/convert_claude_to_agents.py <claude_md_path> [output_path]

Outputs AGENTS.md plus conversion_report.json listing transformations and manual review items.

Key transformations: @import inlined or nested; hooks become .rules suggestions; skill invocations become prose; Claude-specific commands stripped.

See references/conversion-mapping.md for the complete field-by-field mapping.

4. Config Generation

Generate ~/.codex/config.toml (global) or .codex/config.toml (project-scoped):

python3 ~/.claude/skills/agents-md-manager/scripts/generate_config_toml.py [--global | --project <path>] [--model MODEL] [--sandbox MODE]

Covers: model, reasoning effort, personality, sandbox mode, MCP servers, profiles, trusted projects, writable roots.

See references/config-toml-reference.md for the complete field reference.

5. Rules Files

Create .rules files in Starlark for command approval. Location: ~/.codex/rules/ (global) or .codex/rules/ (project). Rules files are authored manually—no generation script exists for this format. All .rules files in the directory are loaded and merged.

Common patterns:

  • Allow package manager commands (npm, pip, cargo)
  • Block destructive operations (rm -rf, git push --force)
  • Prompt for review on sensitive commands (git commit, gh pr create)

See references/starlark-rules-spec.md for syntax and examples.

6. Codex Skills

Scaffold .agents/skills/<name>/ in Codex format (different from Claude .claude/skills/):

python3 ~/.claude/skills/agents-md-manager/scripts/scaffold_codex_skill.py <name> [--path <dir>]

Creates SKILL.md with name + description frontmatter (both required for Codex), plus agents/openai.yaml for UI metadata.

See references/codex-skills-format.md for format differences from Claude skills.

7. Audit Checklist

When refreshing existing AGENTS.md, validate:

  • Under 32 KiB? (project_doc_max_bytes limit)
  • No @import syntax? (not supported in AGENTS.md)
  • No YAML frontmatter? (not used in AGENTS.md)
  • All documented commands verified against project config?
  • Directory references match actual structure?
  • No secrets or credentials?
  • Nested hierarchy consistent with root?
  • No AGENTS.override.md conflicts?
  • Under 200 lines? (warn >200, error >400)

Run automated audit:

python3 ~/.claude/skills/agents-md-manager/scripts/validate_agents_md.py [project_path]

8. Nested AGENTS.md (Monorepos)

For monorepos, place AGENTS.md at multiple levels:

/AGENTS.md              # Repo-wide conventions
/services/
  payments/
    AGENTS.override.md  # Payments-specific overrides
  search/
    AGENTS.md           # Search service conventions
  • One file per directory maximum
  • Codex concatenates root to CWD (closer-to-CWD appears later, overrides earlier)
  • AGENTS.override.md takes precedence over AGENTS.md in the same directory
  • Keep each nested file focused and under 100 lines

Integration Notes

  • codex-orchestrator: This skill creates config files; codex-orchestrator executes subagents with them
  • claude-md-manager: Sister skill for Claude Code's CLAUDE.md; use conversion mode to bridge
  • For subagent profile management, use codex-orchestrator

Reference Documentation

FileContents
references/agents-md-spec.mdAGENTS.md discovery, concatenation, override, size limits, cross-agent compatibility
references/config-toml-reference.mdComplete config.toml field reference
references/starlark-rules-spec.md.rules file syntax, prefix_rule(), decision types
references/codex-skills-format.md.agents/skills/ format, openai.yaml, Claude skill differences
references/conversion-mapping.mdCLAUDE.md to AGENTS.md field-by-field mapping
references/templates.mdAGENTS.md templates by project type

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.4%
按下载量换算110

Claude

29.15%
按下载量换算88

Cursor

18.05%
按下载量换算54

Gemini CLI

9.01%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills