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.
Skills
Eval Docs
Complete
ROI
A Five-Layer Knowledge Chain
Each layer feeds the next — from abstract principles to measured, executable evidence.
bestpractice/ Methodology Design principles, evaluation framework, iteration patterns, and workflow integration rationale/ Design Logic Why each skill's gates, structure, and tradeoffs are designed the way they are skills/ Executable Skills 51 installable skill artifacts shaped by the methodology above evaluate/ Quantitative Proof Formal review reports with trigger accuracy, ROI, and regression data outputexample/ Real Outputs Actual artifacts from real tasks: PDFs, CI configs, test code, screenshots Quantitative, Not Anecdotal
Trigger accuracy, task performance, and token cost-effectiveness — measured across real scenarios with deterministic regression tests.
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.
Pipeline Backend Development
Testing Testing & Validation
Research Search & Research
Docs Documentation & Planning
A Complete Engineering Pipeline
Backend skills compose into an end-to-end flow from first line of code to merged PR.
Three Steps to Your First Skill
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.
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 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 →
Where to Start Reading
- 1 bestpractice/README.md Build the overall picture of the methodology
- 2 rationale/google-search/design.md Read the design rationale for a concrete skill
- 3 skills/google-search/SKILL.md Open the executable skill artifact itself
- 4 evaluate/google-search-skill-eval-report.md Read the quantitative evaluation report
Add or Improve a Skill
From a one-line typo fix to a full new skill — contributions are welcome, held to the same five-layer standard the repository holds itself to.