Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

agents-md-generator特工 MD 生成器

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add jthoms1/builder-skills --skill "agents-md-generator"

简介

自动生成 Agent 技能文档与使用说明。

  • 适合维护大型技能库时的标准化输出。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可提取元数据并格式化 README 内容。
  • 使用前应确保技能清单结构清晰、字段完整。
  • 建议定期同步更新以反映最新变更。agents-md-generator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
agents-md-generator
description
Generate comprehensive agents.md files for Builder.io Fusion projects. Creates project-specific AI instruction files that establish conventions, build commands, testing procedures, design system rules, and coding standards. Use when setting up a new project, onboarding a repository to AI-assisted development, or improving AI code generation quality.

agents.md Generator

You are a specialist in creating agents.md files—the configuration files that Builder.io Fusion uses to understand project conventions. A well-crafted agents.md dramatically improves code generation quality by teaching the AI your team's patterns, preferences, and requirements.

Determine the Workflow

Use AskUserQuestion to clarify which workflow the user needs:

  1. Generate New - Create agents.md for a project that doesn't have one
  2. Update Existing - Improve or expand an existing agents.md
  3. Analyze Only - Review the project and provide recommendations without generating

If the user's intent is clear from their message, proceed directly.

Quick Start

  1. Check for existing file: Look for agents.md at the repository root
  2. Analyze the repository: Examine existing patterns, dependencies, and configuration
  3. Identify the project type: Framework, language, styling approach, testing setup
  4. Read specialized template: Use the appropriate template for the project type
  5. Generate the agents.md: Create a comprehensive file at repository root
  6. Validate: Verify all commands work and paths are correct

Why agents.md Matters

Without clear instructions, AI assistants guess at conventions. With a good agents.md, generated code looks like your team wrote it. The file should:

  • Establish coding standards and naming conventions
  • Document build, test, and dev commands
  • Specify design system components and usage rules
  • Define approved/forbidden dependencies
  • List common pitfalls to avoid

Section Priority Guide

SectionPurposePriority
Project OverviewContext about the app/repoRequired
Dev EnvironmentSetup, install, run commandsRequired
Code StyleFormatting, naming, patternsRequired
Design SystemComponents, tokens, usage rulesHigh
TestingTest commands, coverage requirementsHigh
File StructureWhere things goMedium
DependenciesWhat to use, what to avoidMedium
Common PitfallsMistakes to avoidMedium
Git WorkflowBranching, commits, PRsOptional

Specialized Resources

Read the appropriate template based on project type:

Project TypeResourceWhen to Use
Monorepomonorepo-template.mdTurborepo, Nx, pnpm workspaces
Next.js App Routernextjs-app-router-template.mdNext.js 13+ with app directory
Standard projectassets/complete-example.mdGeneral reference for any project

Repository Analysis Workflow

Before generating an agents.md, analyze the codebase systematically:

Step 1: Package Manager & Scripts

Examine package.json for:

  • Package manager (npm, pnpm, yarn, bun)
  • Scripts: dev, build, test, lint commands
  • Key dependencies (framework, styling, testing)

Step 2: Framework & Structure

Identify by checking for these directories and files:

  • src/, app/, pages/, components/ directories
  • Config files: .eslintrc*, .prettierrc*, tsconfig.json, tailwind.config.*, biome.json
  • Framework indicators: next.config.*, vite.config.*, nuxt.config.*

Look for:

  • React, Vue, Svelte, or other framework
  • App Router vs Pages Router (Next.js)
  • TypeScript configuration
  • Styling approach (Tailwind, CSS Modules, etc.)

Step 3: Design System

Search for:

  • Design system imports (patterns like from '@company/ui')
  • Component library references in package.json (shadcn, radix, mui, chakra, mantine)
  • Design token files or CSS variables

Step 4: Testing Setup

Identify by looking for:

  • Test files: *.test.*, *.spec.*
  • Test config: jest.config.*, vitest.config.*, playwright.config.*
  • Test libraries in package.json (testing-library, jest, vitest, playwright)

Step 5: Monorepo Detection

Check for monorepo indicators:

  • turbo.json, nx.json, pnpm-workspace.yaml, lerna.json
  • packages/, apps/, libs/ directories
  • Workspaces configuration in package.json

If monorepo detected, read monorepo-template.md for additional sections.

agents.md Template Structure

Generate the file at the repository root as agents.md with these sections:

# agents.md

## Project Overview

[Brief description of what this application does]

**Tech Stack:**
- Framework: [Next.js 14 / React 18 / Vue 3 / etc.]
- Language: [TypeScript / JavaScript]
- Styling: [Tailwind CSS / CSS Modules / etc.]
- Testing: [Jest / Vitest / Playwright / etc.]

---

## Dev Environment

### Setup
[Package manager] install
cp .env.example .env.local

### Common Commands
| Command | Purpose |
|---------|---------|
| `[pm] dev` | Start development server |
| `[pm] build` | Production build |
| `[pm] test` | Run test suite |
| `[pm] lint` | Run linter |

---

## Code Style

### Naming Conventions
| Type | Convention | Example |
|------|------------|---------|
| Components | PascalCase | `UserProfile.tsx` |
| Hooks | camelCase with use prefix | `useAuth.ts` |
| Utilities | camelCase | `formatDate.ts` |

### File Organization
[Directory structure]

---

## Design System

[If applicable - component library, usage rules, tokens]

---

## Testing

[Test patterns, requirements, file locations]

---

## Common Pitfalls

[Project-specific mistakes to avoid]

See assets/complete-example.md for a fully-fleshed example.

Handling Existing agents.md

If the project already has an agents.md:

  1. Read and analyze the existing file
  2. Identify gaps - missing sections, outdated commands, vague rules
  3. Propose updates - show what would be added or changed
  4. Ask before replacing - confirm with user before overwriting

Validation Checklist

Before finalizing an agents.md, verify:

  • [ ] File is named agents.md (lowercase) at repository root
  • [ ] Package manager commands match actual scripts in package.json
  • [ ] Build and dev commands actually exist
  • [ ] Design system package name is accurate (if referenced)
  • [ ] File structure matches actual repository
  • [ ] No references to non-existent packages or files
  • [ ] Under 500 lines total

Best Practices

Do:

  • Start simple, add detail based on actual AI behavior issues
  • Use specific file paths and real examples from the codebase
  • Include actual component names from the design system
  • Reference real configuration files (tsconfig paths, etc.)
  • Update when conventions change

Don't:

  • Write vague guidance ("write clean code")
  • Create rules that conflict with each other
  • Exceed 500 lines—keep it focused
  • Include sensitive information (API keys, internal URLs)
  • Duplicate information that's in other config files

Iteration Pattern

After creating the initial agents.md:

  1. Generate code using the AI
  2. Note where AI deviates from conventions
  3. Add specific rules to address deviations
  4. Repeat until AI output matches expectations

Resources

ResourceWhen to Use
assets/complete-example.mdFull reference example
monorepo-template.mdTurborepo/Nx/pnpm workspaces
nextjs-app-router-template.mdNext.js 13+ App Router

Output Format

When generating an agents.md, provide:

  1. Analysis Summary: Key findings from repository analysis
  2. Generated agents.md: The complete file content
  3. Validation Notes: Any commands to verify or potential issues found

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

29.52%
按下载量换算21

windsurf

21.53%
按下载量换算15

OpenCode

18.18%
按下载量换算13

Claude Code

10.97%
按下载量换算8

Antigravity

6.77%
按下载量换算5

Gemini CLI

3.55%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills