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

self-improve-prompt-design自我提升提示设计

Agent Skill

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

总安装

333

周安装

14

GitHub Stars

61

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

self-improve-prompt-design 用于辅助界面设计、视觉规范和交互体验优化。

  • 适合整理页面结构、生成 UI 方案或检查视觉一致性。
  • 通过 npx skills add 命令安装,建议结合品牌和设计系统使用。
  • 涉及真实页面改动时应通过截图或预览检查文本溢出和对齐。
  • 不应只堆装饰元素,需结合用户任务和产品目标。

SKILL.md

Self-Improve Prompt Design

Guide for writing self-improve prompts that maintain expertise file accuracy.

Core Purpose

Self-improve prompts teach agents HOW to learn. They:

  • Validate expertise against actual codebase (source of truth)
  • Identify drift between mental model and reality
  • Update expertise files automatically
  • Enforce line limits to prevent context bloat
  • Run after every ACT step in Act-Learn-Reuse

When to Use

  • Creating maintenance workflows for agent experts
  • Designing validation logic for expertise files
  • Implementing the LEARN step of Act-Learn-Reuse
  • Writing self-improve prompts for new domains
  • Reviewing or debugging existing self-improve prompts
  • Setting up git diff conditional checks for efficiency

Self-Improve Prompt Template

---
description: Sync {domain} expertise with codebase reality
argument-hint: [check-git-diff]
---

# Self-Improve: {Domain} Expert

Maintain expertise accuracy by validating against codebase implementation.

## Arguments

- `$1`: check_git_diff flag (optional, default: "true")
  - "true": Only check files changed in git diff
  - "false": Full rescan of all domain files

## Configuration

- **EXPERTISE_FILE**: `.claude/commands/experts/{domain}/expertise.yaml`
- **MAX_LINES**: 1000
- **DOMAIN_PATHS**: ["path/to/domain/files/"]

## Workflow

### Step 1: Check Git Diff (Conditional)

If `$1` is "true" or not provided:

1. Run `git diff --name-only HEAD~1` to get changed files
2. Filter to files in DOMAIN_PATHS
3. If no relevant changes, report "No domain changes detected" and exit
4. Continue with changed files only

If `$1` is "false":
- Skip git diff check
- Process all files in DOMAIN_PATHS

### Step 2: Read Current Expertise

1. Load EXPERTISE_FILE
2. Parse YAML structure
3. Note current line count
4. Identify sections present

### Step 3: Validate Against Codebase

For each section in expertise:

**core_implementation:**
- Verify all file paths exist
- Check line counts are approximately correct
- Confirm key exports still exist

**key_operations:**
- Verify function names exist
- Check signatures match
- Validate file locations

**schema_structure:** (if applicable)
- Compare against actual schema definitions
- Check field names and types

**best_practices:**
- Ensure still relevant to current patterns

**known_issues:**
- Check if any resolved
- Look for new issues in domain

### Step 4: Identify Discrepancies

Create a list of findings:

| Section | Issue | Action |
| --- | --- | --- |
| core_implementation | file.ext renamed | Update path |
| key_operations | new function added | Add entry |
| known_issues | issue #123 resolved | Remove entry |

### Step 5: Update Expertise File

Apply changes:

1. Update outdated information
2. Add new discoveries
3. Remove stale entries
4. Maintain YAML structure

### Step 6: Enforce Line Limit

If line count > MAX_LINES:

1. Identify lowest priority sections
2. Summarize verbose entries
3. Remove least critical items
4. Continue until under limit

Priority order (highest to lowest):
1. core_implementation
2. key_operations
3. best_practices
4. known_issues
5. patterns_and_conventions
6. testing_notes

### Step 7: Validation Check

1. Parse updated YAML (ensure valid syntax)
2. Verify line count: {current}/{MAX_LINES}
3. Run quick sanity checks on paths/names

## Output Report

Self-Improve Complete: {domain}

Summary

  • Files scanned: X
  • Changes detected: Y
  • Updates applied: Z

Changes Made

SectionChangeReason
.........

Expertise Health

MetricValue
Line countX/1000
Files validatedX/X exist
Functions verifiedX/X accurate
Schema accuracyX%

Recommendations

  • [Any manual review suggestions]

## Notes

- Mental model is NOT source of truth - codebase is
- Run after every ACT (build, fix, modify)
- Check git diff by default to save time
- Full rescan periodically or when drift suspected

Key Design Principles

1. Conditional Git Diff Check

Always include git diff optimization:

If check_git_diff is true:
  - Only process changed files
  - Exit early if no relevant changes
  - Saves time on routine syncs

2. Line Limit Enforcement

Must be explicit and prioritized:

MAX_LINES: 1000

If over limit:
  1. Summarize verbose sections
  2. Remove lowest priority items
  3. Never exceed limit

3. Validation Before Update

Always validate before writing:

Before writing updated expertise:
  1. Parse as YAML (catch syntax errors)
  2. Count lines
  3. Verify critical paths exist

4. Actionable Output

Report should enable follow-up:

## Changes Made
| Section | Change | Reason |
| --- | --- | --- |

## Recommendations
- Items requiring human review
- Potential issues to investigate

Validation Patterns

File Path Validation

For each file path in expertise:
  1. Check if file exists at path
  2. If not, search for file by name
  3. If found elsewhere, update path
  4. If not found, mark for removal

Function Validation

For each function in key_operations:
  1. Search file for function definition
  2. Compare signature if found
  3. Update or flag discrepancy

Schema Validation

For each table/entity in schema_structure:
  1. Find schema definition file
  2. Compare fields and types
  3. Note additions/removals

Anti-Patterns

Anti-PatternProblemSolution
No git diff optionWastes time on no-opsAlways include conditional check
No line limitContext overflowEnforce MAX_LINES strictly
Silent failuresDrift undetectedReport all validation results
Manual editsHuman time wastedSelf-improve only updates
No validationBad YAML writtenAlways parse before save

Integration with Act-Learn-Reuse

┌─────────────────────────────────────────────┐
│ ACT: Build, Fix, or Answer                  │
│      (Agent performs useful work)           │
└──────────────────┬──────────────────────────┘
                   │
                   ▼
┌─────────────────────────────────────────────┐
│ LEARN: Self-Improve Prompt                  │
│      • Check git diff                       │
│      • Validate expertise against code      │
│      • Update mental model                  │
│      • Enforce line limits                  │
└──────────────────┬──────────────────────────┘
                   │
                   ▼
┌─────────────────────────────────────────────┐
│ REUSE: Next Execution                       │
│      (Agent reads updated expertise first)  │
└─────────────────────────────────────────────┘

Testing Self-Improve Prompts

To validate a self-improve prompt works correctly:

  1. Initial state: Run against seeded expertise
  2. Introduce change: Modify a file in domain
  3. Run self-improve: Check it detects change
  4. Verify update: Confirm expertise updated correctly
  5. Line limit test: Add content until limit hit, verify truncation

Related Skills

  • expertise-file-design: Structure of expertise files
  • agent-expert-creation: Full agent expert workflow
  • meta-agentic-creation: Self-improving at scale

Last Updated: 2025-12-15

Version History

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

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34%
按下载量换算39

Claude

29.74%
按下载量换算34

Cursor

18.17%
按下载量换算21

Gemini CLI

10.55%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills