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

prompt-section-design提示部分设计

Agent Skill

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

总安装

339

周安装

14

GitHub Stars

61

下载量

111
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

专注于页面区块级的设计与体验优化。prompt-section-design 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 生成符合现代设计系统的 UI 组件方案。
  • 检查布局合理性、响应式适配与视觉层次。
  • 输出包含 HTML/CSS/JS 的完整可运行代码。
  • 必须结合真实浏览器预览验证呈现效果。

SKILL.md

Prompt Section Design Skill

Design composable prompt sections that work like LEGO blocks for building prompts at any level.

Purpose

Create well-structured prompt sections that are reusable, consistent, and effective for the stakeholder trifecta.

When to Use

  • Creating a new prompt
  • Restructuring existing prompt
  • Adding sections to prompt
  • Standardizing team prompts

Section Tier List

TierSectionsPriority
SWorkflowAlways include (Level 2+)
AVariables, Examples, Control Flow, Delegation, TemplateHigh value
BPurpose, High-Level, Higher Order, InstructionsSupporting
CMetadata, Codebase Structure, Relevant Files, ReportAs needed

Design Process

Step 1: Identify Prompt Purpose

Ask:

  • What does this prompt accomplish?
  • Who will use it? (you, team, agents)
  • What level is it? (1-7)
  • What inputs/outputs are needed?

Step 2: Select Required Sections

Based on level:

LevelRequiredRecommended
1Title, Prompt-
2Title, WorkflowVariables, Report
3Title, WorkflowVariables, Control Flow
4Title, WorkflowVariables, Delegation
5Title, WorkflowVariables
6Title, Workflow, TemplateVariables
7Title, Workflow, ExpertiseVariables

Step 3: Design Each Section

Metadata (Frontmatter)

---
description: Clear, searchable description
argument-hint: [arg1] [arg2]
allowed-tools: Read, Write, Edit
model: sonnet
---

Guidelines:

  • description: What does it do? When to use?
  • argument-hint: What parameters expected?
  • allowed-tools: Minimal set needed
  • model: Match to task complexity

Title

# Action-Oriented Title

Guidelines:

  • Use imperative verb: Create, Build, Generate, Analyze
  • Be specific: "Create Implementation Plan" not "Plan"
  • Keep concise: 2-5 words

Purpose

## Purpose
[1-2 sentences describing what the prompt accomplishes]

Guidelines:

  • Direct language to agent
  • Reference key sections
  • Explain the "what" and "why"

Variables

## Variables

# Dynamic (from user)
USER_PROMPT: $ARGUMENTS
FILE_PATH: $1
COUNT: $2 or 3 if not provided

# Static (fixed)
OUTPUT_DIR: specs/
MODEL: sonnet

Guidelines:

  • SCREAMING_SNAKE_CASE
  • Dynamic first, static second
  • Include defaults where appropriate
  • Clear descriptions

Workflow (S-Tier)

## Workflow

1. Validate inputs
   - Check USER_PROMPT is provided
   - If not, STOP and ask user
2. Process task
   - Sub-step detail
3. Generate output
4. Report results

Guidelines:

  • Numbered steps for sequence
  • Sub-bullets for details
  • STOP conditions explicit
  • Clear progression

Instructions

## Instructions

- IMPORTANT: Always validate before processing
- Handle edge cases gracefully
- Never modify files outside project

Guidelines:

  • Bullet points for rules
  • IMPORTANT markers for critical
  • Edge cases explicit

Report

## Report

## Task Complete

**Files:** [count]
**Status:** [status]

### Changes
- [change 1]
- [change 2]

Guidelines:

  • Template for output
  • Consistent format
  • Easy to parse

Template (Level 6)

## Specified Format

allowed-tools: <tools> description: <description>


<name>

Variables

<VAR>: $1

Workflow

<steps>


**Guidelines:**

- Complete template
- Placeholders marked clearly
- Follows prompt conventions

#### Expertise (Level 7)

Expertise

Domain Knowledge

  • Pattern 1 learned
  • Pattern 2 discovered

Discovered Patterns

  • Implementation insight 1
  • Best practice 2

**Guidelines:**

- Organized by category
- Grows over time
- Never modify Workflow

### Step 4: Validate Structure

Checklist:

- Title is action-oriented
- Workflow has numbered steps
- Variables use SCREAMING_SNAKE_CASE
- STOP conditions are explicit
- Frontmatter has description
- Sections in logical order

## Section Order Convention

[frontmatter]


[Title]

Purpose

[purpose]

Variables

[variables]

Instructions

[instructions]

Workflow

[workflow]

Report

[report format]


## Output Format

When designing sections:

Section Design

Prompt: [name] Level: [1-7]

Recommended Sections

  1. Title: [suggested title]
  1. Frontmatter:
description: ...
argument-hint: ...
allowed-tools: ...
model: ...
  1. Variables:

- Dynamic: [list] - Static: [list]

  1. Workflow: [step count] steps

- Step 1: [overview] - Step 2: [overview] ...

  1. Report: [format type]

## Anti-Patterns

| Anti-Pattern | Problem | Solution |
| --- | --- | --- |
| No Workflow section | Agent lacks direction | Always add for Level 2+ |
| Inconsistent variable names | Confusion | SCREAMING_SNAKE_CASE |
| Missing STOP conditions | Runaway execution | Explicit early exits |
| Over-detailed workflow | Reduces agent autonomy | High-level steps |
| No frontmatter | Hard to discover | Add description |

## Key Quote

> "Build libraries of reusable battle-tested agentic prompts with composable sections that work like LEGO blocks."

## Cross-References

- @prompt-sections-reference.md - Section definitions
- @seven-levels.md - Sections by level
- @variable-patterns.md - Variable conventions

## 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

30.22%
按下载量换算34

Claude Code

24.45%
按下载量换算27

windsurf

16.01%
按下载量换算18

trae

12.2%
按下载量换算14

OpenCode

7.78%
按下载量换算9

Gemini CLI

3.38%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills