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

custom-agent-design定制 Agent 设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

259

周安装

11

GitHub Stars

61

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill custom-agent-design

简介

custom-agent-design 辅助设计领域专用代理架构,基于 Claude Agent SDK 实现上下文与工具控制。

  • 适合构建重复性自动化流程或解决特定业务问题的代理。
  • 设计阶段需明确定义问题域、输入输出和失败回退策略。
  • 实现后应通过实际用例测试代理决策逻辑是否合理。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Custom Agent Design Skill

Design domain-specific agents using Claude Agent SDK patterns.

Purpose

Guide the design of custom agents that solve domain-specific problems with full SDK control over Context, Model, Prompt, and Tools.

When to Use

  • Building a new custom agent
  • Converting generic workflow to specialized agent
  • Designing domain-specific automation
  • Creating repeatable agent patterns

Prerequisites

  • Clear understanding of the domain problem
  • Access to Claude Agent SDK documentation
  • Understanding of when custom agents are appropriate (see @agent-evolution-path.md)

Design Process

Step 1: Define Agent Purpose

Answer these questions:

  • What specific problem does this agent solve?
  • What domain expertise does it need?
  • What is the single purpose? (One agent, one purpose)
  • Who are the stakeholders?

Output: Purpose statement (2-3 sentences)

Step 2: Select Model

Choose based on task complexity:

Task TypeModelWhy
Simple transformationsHaikuFast, cheap
Balanced tasksSonnetGood trade-off
Complex reasoningOpusHighest quality

Decision factors:

  • Speed requirements
  • Quality requirements
  • Cost constraints
  • Task complexity

Step 3: Design System Prompt

Choose architecture:

Override (system_prompt=...)

  • When: Building a new product
  • Result: NOT Claude Code anymore
  • Full control over behavior

Append (append_system_prompt=...)

  • When: Extending Claude Code
  • Result: Enhanced Claude Code
  • Adds capabilities

System Prompt Template:

# [Agent Name]

## Purpose
[Identity and role definition - 2-3 sentences]

## Instructions
[Core behaviors - bullet list]
- Behavior 1
- Behavior 2

## Constraints
[What the agent must NOT do]

## Examples (if needed)
[Input/Output pairs]

Step 4: Configure Tool Access

Questions to answer:

  • What tools does this agent need?
  • What tools should be blocked?
  • Are custom tools required?

Tool configuration:

# Whitelist approach
allowed_tools=["Read", "Write", "Bash"]

# Blacklist approach
disallowed_tools=["WebFetch", "WebSearch", "TodoWrite"]

# No default tools
disallowed_tools=["*"]

# Custom tools
mcp_servers={"domain": custom_mcp_server}
allowed_tools=["mcp__domain__tool1", "mcp__domain__tool2"]

Step 5: Add Governance (Optional)

If security/governance required:

hooks = {
    "PreToolUse": [
        HookMatcher(matcher="Read", hooks=[block_sensitive_files]),
        HookMatcher(hooks=[log_all_tool_usage]),
    ]
}

Step 6: Select Deployment Form

FormUse When
ScriptOne-off automation, ADWs
Terminal REPLInteractive tools
Backend APIUI integration
Data StreamReal-time processing
Multi-AgentComplex workflows

Step 7: Create Configuration

Assemble the ClaudeAgentOptions:

options = ClaudeAgentOptions(
    # Context
    system_prompt=load_system_prompt("agent_system.md"),

    # Model
    model="opus",

    # Tools
    allowed_tools=["Read", "Write", "custom_tool"],
    disallowed_tools=["WebFetch", "WebSearch"],

    # Custom Tools (if needed)
    mcp_servers={"domain": domain_mcp_server},

    # Governance (if needed)
    hooks=security_hooks,

    # Session (if needed)
    resume=session_id,
)

Output Format

When designing a custom agent, provide:

## Custom Agent Design

**Name:** [agent-name]
**Purpose:** [1-2 sentences]
**Domain:** [area of expertise]

### Configuration

**Model:** [haiku/sonnet/opus] - [reason]

**System Prompt Architecture:**
- Type: [Override/Append]
- Reason: [why this choice]

**Tool Access:**
- Allowed: [list]
- Disallowed: [list]
- Custom: [list if any]

**Governance:**
- Hooks: [list if any]
- Security: [considerations]

**Deployment:**
- Form: [script/repl/api/stream/multi-agent]
- Reason: [why this form]

### System Prompt

[Full system prompt content]

### Implementation Notes

[Any special considerations]

Design Checklist

  • Purpose is specific and clear
  • Model matches task complexity
  • System prompt architecture chosen (override vs append)
  • System prompt follows template
  • Tool access is minimal (only what's needed)
  • Governance hooks added if security required
  • Deployment form selected
  • Configuration assembled

Anti-Patterns

AvoidWhyInstead
Competing with Claude CodeCan't beat general agentSpecialize instead
Generic system promptsNo domain advantageDomain-specific
Too many toolsContext overheadMinimal tool set
Missing governanceSecurity riskAdd hooks
Override when append worksLoses Claude Code benefitsUse append

Cross-References

  • @agent-evolution-path.md - When to build custom agents
  • @core-four-custom.md - Core Four configuration
  • @system-prompt-architecture.md - Override vs append
  • @custom-tool-patterns.md - Tool creation
  • @model-selection skill - Model selection guidance

Version History

  • v1.0.0 (2025-12-26): Initial release

Last Updated

Date: 2025-12-26 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Antigravity

29.59%
按下载量换算27

trae

25.8%
按下载量换算23

windsurf

19.09%
按下载量换算17

Claude Code

11.85%
按下载量换算11

Codex

8.68%
按下载量换算8

Gemini CLI

3.11%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills