Token导航 LogoToken导航TokenDH.com
AI 工具执行命令github未标认证来源可访问clear审计提醒

adw-design广告设计

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

61

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于辅助界面设计、视觉规范和交互体验优化,适合生成 UI 方案或检查一致性。

  • 支持页面结构整理、配色布局建议和组件层级改进,需结合品牌与用户任务使用。
  • 通过 GitHub 安装,在 Codex、Claude、Cursor 等宿主中调用,建议配合预览工具验证效果。
  • 涉及真实页面改动时需检查文本溢出和对齐,避免堆砌装饰元素,应基于现有设计系统。
  • adw-design 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ADW Design

Guide for creating AI Developer Workflows - reusable agentic workflows that combine deterministic code with non-deterministic agents.

When to Use

  • Building automated development pipelines
  • Designing AFK (Away From Keyboard) agent systems
  • Implementing the PITER framework
  • Creating micro agent architectures
  • Setting up GitHub issue → PR automation

What is an ADW?

An ADW is the highest composition level of agentic coding:

ADW = Orchestrator + Micro Agents + Triggers + Observability

Components:

  1. Orchestrator - Python/TypeScript code that coordinates the workflow
  2. Micro Agents - Specialized Claude Code invocations with single responsibilities
  3. Triggers - Webhooks, cron, or manual invocation
  4. Observability - Logging, issue comments, tracking

ADW Design Process

Step 1: Define the Workflow

Map out the phases:

Input → Classify → Branch → Plan → Implement → Review

Questions to answer:

  • What's the input source? (GitHub issues, Notion, Slack)
  • What are the phases? (classify, plan, implement, review)
  • What's the output? (PR, deployment, report)

Step 2: Design Micro Agents

For each phase, define a specialized agent:

PhaseAgentResponsibilityModel
Classifyissue_classifierDetermine work typeHaiku
Branchbranch_generatorCreate branch nameHaiku
Plansdlc_plannerGenerate implementation planSonnet
Buildsdlc_implementerImplement the solutionSonnet
CommitcommitterCreate semantic commitsHaiku
PRpr_creatorCreate pull requestHaiku

Step 3: Create Templates

Each agent needs a slash command:

  • /classify-issue - Classify issue type
  • /generate-branch-name - Create branch name
  • /chore, /bug, /feature - Generate plans
  • /implement - Execute plans
  • /commit-with-agent - Create commits
  • /pull-request - Create PRs

Step 4: Build Orchestrator

The orchestrator coordinates everything:

# Pseudocode structure
def run_adw(issue_number, adw_id):
    issue = fetch_issue(issue_number)
    issue_type = execute_agent("classifier", issue)
    branch = execute_agent("branch_generator", issue)
    plan = execute_agent("planner", issue_type, issue)
    execute_agent("implementer", plan)
    execute_agent("pr_creator", branch, issue, plan)

Step 5: Add Observability

Track everything:

  • ADW ID: 8-char UUID for correlation
  • Issue comments: Progress updates
  • Logs: Structured output per agent
  • Metrics: Success rate, duration

ADW Directory Structure

adws/
├── main_workflow.py       # Main orchestrator
├── agent.py               # Claude Code integration
├── data_types.py          # Type definitions
├── github.py              # GitHub operations
├── trigger_cron.py        # Cron trigger
├── trigger_webhook.py     # Webhook trigger
├── health_check.py        # Environment validation
└── README.md              # Documentation

Model Selection Strategy

Match model to task:

Task ComplexityModelExamples
Simple decisionHaikuClassification, branch naming
FormattingHaikuCommit messages, PR body
ReasoningSonnetPlan generation
Complex codingSonnet/OpusImplementation

ADW Quality Checklist

Before deploying:

  • Each agent has single responsibility
  • Model selection matches task complexity
  • ADW ID tracking implemented
  • Issue comments posted at each phase
  • Error handling with meaningful messages
  • Logging captures all agent outputs
  • Health check validates environment
  • Templates tested independently
  • End-to-end workflow tested

Common Patterns

Agent Executor Pattern

def execute_agent(agent_name, *args):
    prompt = build_prompt(agent_name, args)
    result = subprocess.run([
        "claude", "-p", prompt,
        "--model", get_model(agent_name),
        "--output-format", "stream-json"
    ])
    log_result(agent_name, result)
    return parse_result(result)

Issue Comment Pattern

def update_issue(issue_number, adw_id, agent_name, message):
    comment = f"[{adw_id}_{agent_name}] {message}"
    gh_issue_comment(issue_number, comment)

Error Handling Pattern

def check_error(result, phase):
    if not result.success:
        update_issue(issue, adw_id, phase, f"ERROR: {result.error}")
        sys.exit(1)

Anti-Patterns to Avoid

Monolithic Agent

Bad: One agent doing everything

Good: Micro agents with single responsibilities

Missing Observability

Bad: No logging, no issue comments

Good: ADW ID tracking, structured logs, progress comments

Wrong Model Selection

Bad: Using Opus for branch naming

Good: Match model to task complexity

No Error Handling

Bad: Silent failures

Good: Error comments, graceful degradation

Related Memory Files

  • @piter-framework.md - PITER elements for AFK agents
  • @adw-anatomy.md - ADW structure and patterns
  • @outloop-checklist.md - Deployment readiness
  • @inloop-vs-outloop.md - When to use ADWs

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

26.59%
按下载量换算26

trae

22.97%
按下载量换算23

windsurf

16.11%
按下载量换算16

Claude Code

13.24%
按下载量换算13

Codex

7.19%
按下载量换算7

Gemini CLI

3.74%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills