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

agent-skill-builderAgent 技能建设者

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

26

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/realjaymes/marketingagentskills --skill agent-skill-builder

简介

快速构建 Claude Code 新技能或转换 ChatGPT 项目结构。

  • 适用于从零搭建技能模板或迁移现有对话项目到 Claude 生态。
  • 包含 shell 命令占位符,安装前务必审查 !`command` 安全性。
  • 优先使用 /agent-skill-builder new [name] 创建标准结构体。
  • 如需深度优化描述与基准测试,应切换至 /skill-creator 工具链。

SKILL.md

Agent Skill Builder

Quickly scaffolds new Claude Code skills or translates ChatGPT projects into Claude Code format. This skill focuses on fast creation and correct structure. For iterative testing, benchmarking, and description optimization, use /skill-creator.

Two Modes

Mode 1: Create New Skill (/agent-skill-builder new [name])

Scaffolds a fresh Claude Code skill with proper structure and best practices.

Mode 2: Translate ChatGPT Project (/agent-skill-builder translate [name])

Converts an existing ChatGPT project into a Claude Code skill.


Create New Skill

Step 1: Gather Intent

Ask the user (skip what's already clear from context):

  1. Skill name: What should the /slash-command be called?
  2. Purpose: What does this skill do?
  3. Examples: How would this skill be used in practice?
  4. Triggers: What would a user say that should invoke this skill?

Step 2: Plan Resources

Analyze each example to identify what should be bundled:

  • Scripts (scripts/): Code rewritten repeatedly or needing deterministic reliability. Execute without loading into context.
  • References (references/): Documentation Claude should consult while working. Loaded on demand.
  • Assets (assets/): Files used in output (templates, images, fonts). Not loaded into context.

Step 3: Create Directory and SKILL.md

mkdir -p ~/.claude/skills/[skill-name]

Write SKILL.md following this template:

---
name: skill-name
description: "Describes what the skill does and specific triggers for when to use it. Write in third person. Include keywords users would say. Max 1024 characters. This is the PRIMARY triggering mechanism."
---

# Skill Name

[1-2 sentence description]

## Instructions

[Step-by-step guidance — use imperative form]

## Output Format

[Expected output structure]

## Constraints

[Limitations and rules]

Step 4: Add Reference Files (if needed)

For skills with multiple domains or variants, keep SKILL.md lean and split into references:

skill-name/
├── SKILL.md (overview + navigation, under 500 lines)
└── references/
    ├── variant-a.md
    └── variant-b.md

Reference from SKILL.md with clear guidance on when to read each file. Keep references one level deep.

Step 5: Test

  1. Invoke directly: /skill-name
  2. Let Claude auto-invoke by matching description keywords
  3. Check that the skill triggers when expected and stays silent when not relevant

Translate ChatGPT Project to Claude Skill

Step 1: Extract ChatGPT Components

Request from user:

  • System prompt/instructions
  • Knowledge files (PDFs, docs)
  • Conversation starters (optional)
  • Actions/API configurations (if any)

Step 2: Map Components

ChatGPT ComponentClaude Code EquivalentLocation
Namename in frontmatterSKILL.md
Descriptiondescription in frontmatterSKILL.md
InstructionsMain markdown bodySKILL.md
Knowledge filesreferences/ folder (convert to.md)Subdirectory
Conversation startersDocument in Examples section or omitSKILL.md
Actions (APIs)MCP servers~/.claude/mcp.json
Code InterpreterNative tools: Bash, Read, Write, Edit, Glob, GrepBuilt-in
MemoryNo direct equivalent. Use context files or skill background sectionsVarious

Step 3: Convert Instructions

ChatGPT PatternClaude Equivalent
"You are a [role]..."Role section or integrate into instructions
"Your task is to..."Instructions section
"Always/Never..."Constraints section
"Output format..."Output Format section
Input placeholders [text]Keep as-is or use $ARGUMENTS

Step 4: Convert Knowledge Files

  1. Convert PDFs/docs to Markdown and place in references/
  2. For large files (>10k words), include grep search patterns in SKILL.md
  3. For files >100 lines, add a table of contents at the top
  4. Templates and assets go in assets/

Step 5: Write Frontmatter

The description field is the primary triggering mechanism. Write in third person and include both what the skill does and when to use it. Be slightly "pushy" with triggers to combat undertriggering.


Frontmatter Reference

Only name and description are required. Additional fields are Claude Code-specific extensions:

FieldRequiredDescription
nameYesMax 64 chars, lowercase letters/numbers/hyphens only
descriptionYesMax 1024 chars. What + When. Third person. Primary trigger mechanism
argument-hintNoHint shown in autocomplete (e.g., "[issue-number]")
disable-model-invocationNotrue = user-only invocation (no auto-trigger)
user-invocableNofalse = Claude-only (hidden from slash command menu)
contextNofork = run in isolated subagent
agentNoSubagent type: Explore, Plan, general-purpose
allowed-toolsNoRestrict available tools: Read, Grep, Glob
modelNoOverride model for this skill

String Substitutions

VariableDescription
$ARGUMENTSEverything after /skill-name
${CLAUDE_SESSION_ID}Current session ID
`!command `Dynamic injection (runs before skill loads)

Skill Locations

LocationPathScope
Personal~/.claude/skills/[name]/All projects
Project.claude/skills/[name]/This project only

Writing Best Practices

These come from Anthropic's official skill authoring guide:

  • Concise is key. Claude is already smart. Only add context Claude doesn't already have. Prefer concise examples over verbose explanations.
  • Description is everything. Claude reads descriptions to decide which skill to use from potentially 100+ available skills. Be specific, include trigger keywords, write in third person.
  • Progressive disclosure. Keep SKILL.md under 500 lines. Move detailed references to separate files. Claude loads them only when needed.
  • Match freedom to fragility. High freedom (text instructions) for flexible tasks, low freedom (specific scripts) for fragile operations.
  • Explain the why. Explain reasoning behind instructions rather than using heavy-handed MUSTs. Claude responds better to understanding motivation than rigid rules.
  • Consistent terminology. Pick one term and use it throughout. Don't mix "API endpoint" / "URL" / "API route" / "path".
  • No extraneous files. No README.md, CHANGELOG.md, INSTALLATION_GUIDE.md. Skills contain only what an AI agent needs to do the job.
  • Forward slashes only. Use scripts/helper.py, never scripts\helper.py.

After Creation Checklist

  • SKILL.md created with name and description in frontmatter
  • Description includes what AND when (triggers), written in third person
  • SKILL.md under 500 lines
  • Knowledge files converted to Markdown in references/
  • References are one level deep from SKILL.md
  • Large reference files (>100 lines) have table of contents
  • Skill tested with /skill-name and auto-invocation
  • No extraneous documentation files

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.3%
按下载量换算23

Claude

31.81%
按下载量换算23

Cursor

17.14%
按下载量换算12

Gemini CLI

9.61%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/realjaymes/marketingagentskills --skill agent-skill-builder 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills