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

agentmd-creatorAgent 创建者

Agent Skill

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

总安装

494

周安装

20

GitHub Stars

12

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/przemocny/generic-skills --skill agentmd-creator

简介

agentmd-creator 用于创建通用或业务领域 AI 代理的配置文件,通过引导式简报流程完成。

  • 适用于需要快速生成结构化代理配置的场景,支持分步问答和最佳实践集成。
  • 安装后可通过交互式提问生成配置文件,适合在 Codex、Claude 等宿主环境中使用。
  • 需确认权限范围和维护状态,可能涉及文件读写和网络访问。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

AgentMD Creator

Create AI agent configuration files through guided briefing process for general-purpose and business-domain agents.

Workflow

6-step process: Brief → Load References → Generate → Customize → Apply Best Practices → Present

Step 1: Briefing Questions

Ask user these questions ONE AT A TIME (not all at once). Adapt based on answers.

1. Agent Purpose (REQUIRED)

"Jaki jest główny cel tego agenta? Co ma robić?"

Examples: Research assistant, Sales support, Customer service, Content creator, HR coordinator

If unclear: Provide examples and ask for specific scenarios If too broad: Help narrow down to primary function

2. Domain/Industry (can infer from purpose)

"W jakiej dziedzinie lub branży będzie pracował?"

Examples: General purpose, Sales/CRM, Marketing, Finance, HR, Legal, Healthcare, Real Estate

If general purpose: Can skip domain-specific questions If unclear: Suggest domain based on purpose

3. IDE/Platform (REQUIRED)

"Jakiego narzędzia używasz lub planujesz używać?"

Options:

  • Claude Code → Generate CLAUDE.md
  • Cursor → Generate .cursor/rules/*.mdc
  • Windsurf → Generate .windsurf/rules/*.md
  • Antigravity → Generate .antigravity/rules.md
  • JetBrains Junie → Generate .junie/guidelines.md
  • GitHub Copilot → Generate .github/copilot-instructions.md
  • Multiple/Universal → Generate AGENTS.md

If "don't know": Recommend AGENTS.md (universal format) If multiple: Generate AGENTS.md as base, offer platform-specific additions

4. Specificity Level (default: Moderate if unsure)

"Jak szczegółowy ma być agent?"

Options:

  • General (50-100 lines): Basic role, boundaries, key references
  • Moderate (100-200 lines): Detailed processes, tools, communication style
  • Detailed (200-300 lines): Comprehensive workflows, templates, edge cases

If unsure: Default to Moderate (good balance) Guidance: "Start with Moderate, can always expand later"

5. Special Requirements (OPTIONAL)

"Czy są jakieś specjalne wymagania? (compliance, security, specific tools, workflows)"

If none: Proceed with defaults from domain If many: Prioritize top 2-3 most critical

Step 2: Load Appropriate References

Based on user's answers, read relevant reference files:

Always read:

  • references/best-practices.md - Universal best practices
  • references/platforms.md - Platform-specific guidance for chosen IDE

Read based on domain:

  • references/use-cases.md - Load section matching user's domain/purpose

Step 3: Generate Configuration File

Create configuration file following this structure:

For AGENTS.md / CLAUDE.md (Universal Format)

# [Project/Agent Name]

[One-line description of agent's purpose]

## Role
[Specific role definition with domain expertise]

## Tools and Systems
[List of tools, platforms, credentials locations]

## Knowledge Base
[Locations of documentation, templates, policies]

## Communication Style
[Tone, format, timing preferences]

## Workflows
[Key processes this agent handles]

## Important Notes
[Domain-specific gotchas, warnings, critical information]

## Boundaries

### Always Do
[Non-negotiable actions and practices]

### Ask First
[Actions requiring human approval or verification]

### Never Do
[Forbidden actions, compliance requirements, safety measures]

For Cursor (.mdc format)

Create modular files in .cursor/rules/:

---
name: "core-agent-role"
description: "Core agent behaviors and boundaries"
alwaysApply: true
---

# [Agent Role]

[Instructions]

Split into multiple files:

  • 001-core-role.mdc - Role and boundaries
  • 100-workflows.mdc - Process workflows
  • 200-domain-knowledge.mdc - Domain-specific knowledge

For Windsurf

# [Agent Name] Rules

## Role
[Definition]

## Workflows
[Processes]

## Boundaries
[Always/Ask/Never structure]

Keep under 6000 characters per file.

For Platform-Specific

Follow platform guidelines from references/platforms.md

Step 4: Customize Based on Specificity and Domain

Adapt generated configuration to match both specificity level and domain requirements.

A. Apply Specificity Level:

General (50-100 lines):

  • Role definition
  • Key boundaries (Always/Never only)
  • Critical tools/systems
  • 2-3 most important workflows

Moderate (100-200 lines):

  • Detailed role with context
  • Full boundaries (Always/Ask/Never)
  • All relevant tools and systems
  • Communication style
  • Main workflows with steps
  • Important notes

Detailed (200-300 lines):

  • Comprehensive role with examples
  • Detailed boundaries with reasoning
  • Complete tool ecosystem
  • Communication style with templates
  • All workflows with decision trees
  • Knowledge base organization
  • Edge cases and exceptions
  • Compliance requirements

B. Add Domain-Specific Elements:

Based on chosen domain, enhance with specific requirements. Common domains:

  • Sales/CRM: Lead qualification, CRM fields, follow-up sequences
  • Customer Support: SLA targets, escalation paths, response templates
  • HR: Confidentiality, compliance standards, approval workflows
  • Finance: Data accuracy, approval thresholds, audit trails
  • Marketing: Brand guidelines, content calendar, campaign tracking
  • Legal: Document confidentiality, compliance checklists, attorney escalation

Reference: See references/use-cases.md for detailed patterns and complete guidance for each domain.

Step 5: Apply Best Practices

Review generated configuration against quality criteria from references/best-practices.md.

Quality Review Checklist:

  1. Length Check:

- General: 50-100 lines? ✓ - Moderate: 100-200 lines? ✓ - Detailed: 200-300 lines? ✓

  1. Boundaries Complete:

- "Always Do" section present? ✓ - "Ask First" section present? ✓ - "Never Do" section present? ✓ - At least 3 items in each? ✓

  1. Tools Specific:

- Platform names included? (e.g., "Salesforce" not "CRM") - Credential locations specified? (e.g., "1Password: Sales CRM") - File paths provided? (e.g., /templates/sales-emails/)

  1. Content Quality:

- No generic advice? ("be professional" → specify what professional means) - Examples concrete? (specific scenarios, not abstract descriptions) - References used? (links to docs, not copied content)

  1. Domain Appropriateness:

- Domain-specific elements included? - Communication style matches domain? - Compliance requirements covered (if applicable)?

If any check fails: Revise configuration before presenting to user.

Reference: See references/best-practices.md for detailed criteria and examples.

Step 6: Present and Iterate

  1. Show generated configuration to user
  2. Explain key sections and their purpose
  3. Ask: "Czy chcesz jakieś zmiany lub doprecyzowania?"
  4. Iterate based on feedback
  5. Save to appropriate file location

Output Format

File Location:

  • AGENTS.md → Root of project
  • CLAUDE.md → Root or .claude/
  • .cursor/rules/*.mdc → .cursor/rules/ directory
  • .windsurf/rules/*.md → .windsurf/rules/ directory
  • .antigravity/rules.md → .antigravity/ directory
  • .junie/guidelines.md → .junie/ directory
  • .github/copilot-instructions.md → .github/ directory

Content:

  • Well-structured markdown
  • Clear section headings
  • Specific, actionable guidance
  • Domain-appropriate examples
  • Complete boundaries section

Examples of Good Agent Configurations

See references/examples.md for complete, detailed examples including:

Available examples:

  • Research Assistant (General, ~80 lines) - Systematic research with source credibility
  • Sales Assistant (Moderate, ~150 lines) - CRM coordination with MEDDIC methodology
  • Customer Support (Moderate, ~130 lines) - Ticket handling with escalation paths
  • HR Coordinator (Detailed, ~200 lines) - Recruiting, onboarding, compliance

Quick preview - Research Assistant structure:

# Research Assistant
[Role definition]
## Tools and Systems
[Specific tools with locations]
## Boundaries
### Always Do / Ask First / Never Do
[3-tier boundary structure]

Use these examples to:

  • Match specificity level to user's choice
  • Adapt structure to chosen domain
  • Scale boundaries appropriately
  • Format tools section correctly

See full examples in references/examples.md

Tips for Success

  1. Start simple, iterate: Begin with general config, add detail based on real usage
  2. User-specific language: If user speaks Polish, use Polish in generated config
  3. Domain expertise: Leverage user's domain knowledge during briefing
  4. Real examples: Ask for actual scenarios to make config concrete
  5. Test and refine: Encourage user to test agent and report issues

Common Mistakes to Avoid

  • Too generic: "Be helpful and professional" → Specify what professional means in this context
  • Too long: 500+ lines → Split into modules or remove redundancy
  • Missing boundaries: No clear Never section → Always include safety boundaries
  • Vague tools: "Use CRM" → "Use Salesforce, credentials in 1Password"
  • No examples: Abstract descriptions → Include concrete examples
  • One-size-fits-all: Same config for all domains → Customize per domain

Validation

Before finalizing, verify:

  • Role clearly defined
  • Tools/systems specified with access info
  • Boundaries include all three tiers (Always/Ask/Never)
  • Domain-specific guidance included
  • Appropriate length for specificity level
  • User confirms it matches their needs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.46%
按下载量换算57

Claude

29.53%
按下载量换算46

Cursor

17.95%
按下载量换算28

Gemini CLI

8.83%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills