by Prat011
A curated list of awesome LLM and AI Agent Skills, resources and tools for customising AI Agent workflows - that works with Claude Code, Codex, Gemini CLI and your custom AI Agents
# Add to your Claude Code skills
git clone https://github.com/Prat011/awesome-llm-skillsNo comments yet. Be the first to share your thoughts!
LLM Skills are customizable workflows that teach LLM how to perform specific tasks according to your unique requirements. Skills enable LLM to execute tasks in a repeatable, standardized manner across all LLM platforms.
Create a project-local or user-level skill folder Use one of these discovery paths so Claude Code finds it automatically:
.claude/skills/webapp-testing/~/.claude/skills/webapp-testing/Add SKILL.md (required)
Basic Skill Template:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it.
---
# My Skill Name
Detailed description of the skill's purpose and capabilities.
## When to Use This Skill
- Use case 1
- Use case 2
- Use case 3
## Instructions
[Detailed instructions for LLMs on how to execute this skill]
## Examples
[Real-world examples showing the skill in action]
Keep supporting files small
Add only what's needed (e.g., small fixtures in resources/, helper scripts). This keeps skills snappy to load and easier for Claude to apply.
**Load t...