FAQ
ai-agent-skills is a Claude Code plugin with 31 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes ai-output-validation, api-design, ci-cd-pipelines. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Repo: DevelopersGlobal/ai-agent-skills
Inspired by addyosmani/agent-skills and forrestchang/andrej-karpathy-skills
๐ View the Interactive Skills Browser โ
AI agents are only as good as the instructions they follow. AI Agent Skills is a curated, battle-tested library of skill files โ structured markdown prompts โ that transform AI coding agents (Claude, Gemini, Cursor, Copilot, etc.) into disciplined, production-ready engineers.
Unlike generic prompts, these skills encode actual workflows with steps, checkpoints, verification gates, and anti-pattern guards โ the same discipline senior engineers bring to every production deployment.
THINK โ PLAN โ BUILD โ TEST โ REVIEW โ HARDEN โ SHIP
โ โ โ โ โ โ โ
Clarify Break Write Verify Quality Security Deploy
Goals Down Code Output Gates Gates Live
| Feature | This Repo | agent-skills | karpathy-skills |
|---|---|---|---|
| Production + Everyday use | โ | Production only | General |
| Multi-agent orchestration | โ | โ | โ |
| AI safety & hallucination guards | โ | โ | Partial |
| RAG / Memory skills | โ | โ | โ |
| Prompt injection defense | โ | โ | โ |
| GitHub Pages search UI | โ | โ | โ |
| 30+ curated skills | โ | 20 skills | 4 principles |
| Everyday productivity skills | โ | โ | โ |
git clone https://github.com/DevelopersGlobal/ai-agent-skills.git
Claude / Cursor / Copilot / any agent:
Copy the contents of any SKILL.md file into your agent's system prompt, instructions file, or context window.
For Claude Code โ add to your project's CLAUDE.md:
cat skills/think-before-coding/SKILL.md >> CLAUDE.md
For Cursor โ copy into .cursor/rules/:
cp skills/security-hardening/SKILL.md .cursor/rules/security-hardening.mdc
For Gemini CLI โ add to your project's GEMINI.md:
cat skills/goal-driven-execution/SKILL.md >> GEMINI.md
One-liner (any skill, any agent):
# View raw skill content, then paste into your agent
curl https://raw.githubusercontent.com/DevelopersGlobal/ai-agent-skills/main/skills/production-deployment/SKILL.md
Browse and copy skills visually โ developersglobal.github.io/ai-agent-skills
| Skill | Description |
|---|---|
| think-before-coding | Surface assumptions, manage confusion, prevent hallucination |
| goal-driven-execution | Transform tasks into verifiable goals with success criteria |
| idea-to-spec | Convert vague ideas into concrete, testable specifications |
| Skill | Description |
|---|---|
| task-decomposition | Break features into atomic, independently verifiable tasks |
| context-loading | Load minimum necessary context; avoid token bloat |
| multi-agent-orchestration | Design and coordinate multi-agent pipelines |
| Skill | Description |
|---|---|
| incremental-coding | Build in verifiable increments; never big-bang rewrites |
| simplicity-first | Minimum code that solves the problem โ nothing speculative |
| surgical-changes | Touch only what you must; leave the rest untouched |
| api-design | Design stable, versioned, self-documenting APIs |
| frontend-engineering | Accessible, performant, responsive UI patterns |
| rag-and-memory | Retrieval-Augmented Generation and agent memory patterns |
| Skill | Description |
|---|---|
| test-driven-development | Red-green-refactor with meaningful coverage |
| debugging-methodology | Systematic root cause analysis; never guess-and-check |
| integration-testing | Test real system boundaries, not mocks of mocks |
| ai-output-validation | Validate, parse, and sanitize AI-generated outputs |
| Skill | Description |
|---|---|
| code-review | Structured review checklist; correctness over style |
| performance-optimization | Measure first, optimize second; no premature optimization |
| refactoring | Safe, behavior-preserving transformation with tests |
| documentation | Document decisions, not just implementations |
| Skill | Description |
|---|---|
| security-hardening | OWASP Top 10, secrets management, least privilege |
| prompt-injection-defense | Guard AI agents against prompt injection attacks |
| hallucination-prevention | Detect and mitigate LLM hallucinations in pipelines |
| error-handling | Graceful degradation and meaningful error messages |
| observability | Structured logging, tracing, and alerting for AI systems |
| Skill | Description |
|---|---|
| production-deployment | Zero-downtime deploys with rollback plans |
| ci-cd-pipelines | Automated quality gates from commit to production |
| git-workflow | Trunk-based development, atomic commits, clean history |
| Skill | Description |
|---|---|
| code-explanation | Get clear, layered explanations of unfamiliar code |
| meeting-notes-to-tasks | Convert meeting notes into structured action items |
| research-and-summarize | Distill complex topics into actionable summaries |
Every skill follows the same battle-tested structure:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ SKILL.md โ
โ โ
โ โโ Frontmatter โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ name: kebab-case-name โ โ
โ โ description: One-line trigger description โ โ
โ โ applies-to: [claude, gemini, cursor, ...] โ โ
โ โ category: think|plan|build|test|... โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ
โ Overview โ What this skill accomplishes โ
โ When to Use โ Exact triggering conditions โ
โ Process โ Numbered, verifiable steps โ
โ Rationalizations โ Common excuses + rebuttals โ
โ Red Flags โ Warning signs the skill is needed โ
โ Verification โ Non-negotiable evidence required โ
โ References โ Supporting checklists/docs โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
We welcome contributions! The best skills are:
See CONTRIBUTING.md and docs/skill-anatomy.md.
The full skills library is browsable at developersglobal.github.io/ai-agent-skills with:
This project builds on and extends the ideas from:
MIT โ Use these skills in your projects, teams, and tools. Attribution appreciated but not required.
โญ Star this repo to help developers everywhere build better AI agents โญ
Made with โค๏ธ by DevelopersGlobal
.github/
workflows/
pages.yml
.gitignore
agents/
AGENTS.md
code-reviewer.md
security-auditor.md
test-engineer.md
CLAUDE.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
docs/
index.html
GEMINI.md
LICENSE
README.md
references/
accessibility-checklist.md
performance-checklist.md
security-checklist.md
testing-patterns.md
scripts/
generate-index.py
SKILL_TEMPLATE.md
skills/
ai-output-validation/
SKILL.md
api-design/
SKILL.md
architecture/
system-design-coach.md
ci-cd-pipelines/
SKILL.md
code-explanation/
SKILL.md
code-review/
SKILL.md
context-loading/
SKILL.md
creative/
color-palette-generator.md
naming-consultant.md
data/
csv-detective.md
data-storyteller.md
sql-query-optimizer.md
debugging-methodology/
SKILL.md
developer/
api-designer.md
bug-hunter.md
code-reviewer.md
git-commit-crafter.md
regex-wizard.md
devops/
cicd-pipeline-builder.md
dockerfile-optimizer.md
documentation/
SKILL.md
error-handling/
SKILL.md
frontend-engineering/
SKILL.md
git-workflow/
SKILL.md
goal-driven-execution/
SKILL.md
hallucination-prevention/
SKILL.md
idea-to-spec/
SKILL.md
incremental-coding/
SKILL.md
index.json
integration-testing/
SKILL.md
meeting-notes-to-tasks/
SKILL.md
multi-agent-orchestration/
SKILL.md
observability/
SKILL.md
performance-optimization/
SKILL.md
production-deployment/
SKILL.md
productivity/
email-diplomat.md
learning-path-generator.md
meeting-summarizer.md
prompt-injection-defense/
SKILL.md
rag-and-memory/
SKILL.md
refactoring/
SKILL.md
research-and-summarize/
SKILL.md
security/
security-hardening/
SKILL.md
dependency-auditor.md
security-headers-checker.md
threat-modeler.md
simplicity-first/
SKILL.md
surgical-changes/
SKILL.md
task-decomposition/
SKILL.md
test-driven-development/
SKILL.md
think-before-coding/
SKILL.md
writing/
changelog-author.md
readme-generator.md
technical-writer.mdยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic