Overview
- Skill Key
- acautomata/skill-improvement
- Author
- acautomata
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/acautomata/skill-improvement
- Latest Commit SHA
- f269de0e784b1cc4a4b98f1331c95ef2ad59aee8
Use when optimizing existing Claude skills, checking skill quality, auditing skill compliance, or when skills have obvious issues. Triggers on skill optimization requests, quality checks, or skill improvement tasks.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 skills-improvement 技能。 若已安装,则直接安装 skills-improvement 技能。
# Skills Improvement
## Overview
Systematically optimize skill quality through a diagnostic-report-select-execute-verify workflow. Ensure skills comply with Claude's official best practices for maximum effectiveness.
**Core principle:** If you didn't diagnose a skill, you don't know what to fix.
---
## Workflow
```dot
digraph workflow {
"1. Diagnose" [shape=box];
"2. Report" [shape=box];
"3. Select" [shape=box];
"4. Execute" [shape=box];
"5. Verify" [shape=box];
"1. Diagnose" -> "2. Report";
"2. Report" -> "3. Select";
"3. Select" -> "4. Execute";
"4. Execute" -> "5. Verify";
"5. Verify" -> "3. Select" [label="fail"];
}
```
---
## Phase 1: Diagnose
Scan skill for quality issues across 4 categories.
**Categories:**
- **Metadata** (HIGH): name, description, keywords
- **Architecture** (MEDIUM): file structure, progressive disclosure
- **Text** (MEDIUM): conciseness, clarity, token efficiency
- **Code** (HIGH): error handling, dependencies, validation
**Process:**
1. Read SKILL.md and all referenced files
2. Apply diagnostic checklist (see references/diagnostic-checklist.md)
3. Record each issue with category, location, severity
**Output:** Raw issue list
**Detailed checklist:** See [diagnostic-checklist.md](references/diagnostic-checklist.md)
---
## Phase 2: Report
Present findings in structured format.
**Report structure:**
```markdown
# Skill Diagnostic Report: [name]
**Grade:** [A/B/C/D]
**Issues:** X total (Y high, Z medium, W low)
## High Priority (Y)
[Issues that prevent discovery or execution]
## Medium Priority (Z)
[Issues that impact quality or usability]
## Low Priority (W)
[Minor improvements]
```
**For each issue include:**
- Category and check ID
- Current state vs expected state
- Impact explanation
- Specific fix recommendation
- Reference to quality standard
**Report templates:** See [report-templates.md](references/report-templates.md)
---
## Phase 3: Select
User chooses which iss...
edholofy
University for AI agents. 92 courses, 4400+ scenarios, any model via OpenRouter. Auto-training loops generate per-model SKILL.md documents. Works with Claude Code, OpenClaw, Cursor, Windsurf. No fine-tuning required.
lethehades
macOS WPS Office workflow helper skill for safer document preparation, conversion, export, and compatibility guidance
capt-marbles
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
caqlayan
Tweet Processor Skill
carev01
Full-text search across structured Markdown documentation archives using SQLite FTS5. Use when you need to search large collections of Markdown articles that are separated by "---" delimiters and contain source URLs (marked with "*Source:" pattern). Provides fast BM25-ranked search with automatic source URL extraction for citations. Ideal for research, documentation lookups, and knowledge base exploration. Requires indexing documentation first with `docs.py index`.
camelsprout
DuckDB CLI specialist for SQL analysis, data processing and file conversion. Use for SQL queries, CSV/Parquet/JSON analysis, database queries, or data conversion. Triggers on "duckdb", "sql", "query", "data analysis", "parquet", "convert data".