Skip to content

Production-Ready AI Skill Engineering

awesome-skills

Not just prompt templates. A traceable five-layer system for designing, evaluating, and integrating Claude Code skills into real engineering workflows.

51 Installable
Skills
24 Design +
Eval Docs
13 Five-Layer
Complete
347x Dev-Time
ROI
Evidence

Quantitative, Not Anecdotal

Trigger accuracy, task performance, and token cost-effectiveness — measured across real scenarios with deterministic regression tests.

go-code-reviewer
347x
developer-time ROI
+36 pp signal-to-noise in subtle defect scenarios
Read report →
google-search
+74pp
assertion pass rate
Structured evidence chains vs. unstructured ad-hoc search
Read report →
unit-test
+38pp
assertion pass rate
Table-driven tests with boundary and concurrency hunting
Read report →
Skills

51 Installable Skills

24 ship paired design rationale and evaluation reports; 14 have complete five-layer coverage with real output examples. A selection is shown below.

Integration

A Complete Engineering Pipeline

Backend skills compose into an end-to-end flow from first line of code to merged PR.

Coding
Write / Fix Tests
unit-test · tdd-workflow · api-integration-test · e2e-test
make fmt / lint
go-makefile-writer
git commit
git-commit
create PR
create-pr
CI + Review
go-ci-workflow · go-code-reviewer · security-review
Human Review + Merge
Quick Start

Three Steps to Your First Skill

01

Browse and choose a skill

Find a skill in the grid above, or start with google-search. Every skill is a plain SKILL.md — a small frontmatter contract plus a body of mandatory gates:

---
name: google-search
description: Use when the user wants help finding information through
  Google-style web search and expects more than raw links … classify
  the goal, generate precise queries, cross-check key claims, return a
  concise conclusion plus reusable search strings.
allowed-tools: Read, Grep, Glob, WebFetch
---

## Mandatory Gates
Gates execute in strict serial order. Any gate failure blocks the next.

### 1) Scope Classification Gate
### 2) Ambiguity Resolution Gate
### 3) Evidence Requirements Gate
### 4) Language Detection Gate
…                       # 8 gates total

Read the paired rationale doc to see why it is built this way.

02

Install it

# Recommended — skills CLI (Claude Code, Cursor, Copilot, 15+ agents)
npx skills add johnqtcg/awesome-skills --skill <name> -g

# Or copy the directory manually
cp -r skills/<name> .claude/skills/<name>      # this project
cp -r skills/<name> ~/.claude/skills/<name>    # all projects
03

Claude Code activates it automatically

When the task matches, Claude Code invokes the skill — no manual configuration. For a deeper study, read the full methodology: Best Practice →

Recommended Path

Where to Start Reading

  1. 1
    bestpractice/README.md Build the overall picture of the methodology
  2. 2
    rationale/google-search/design.md Read the design rationale for a concrete skill
  3. 3
    skills/google-search/SKILL.md Open the executable skill artifact itself
  4. 4
    evaluate/google-search-skill-eval-report.md Read the quantitative evaluation report

中文版请从这里开始 →