docs: update skill counts to 233 and fix typos in descriptions

This commit is contained in:
sck_0
2026-01-21 18:09:38 +01:00
parent 1bd7db87b9
commit 57ce2dd084
6 changed files with 81 additions and 23 deletions

36
FAQ.md
View File

@@ -14,7 +14,7 @@ Skills are specialized instruction files that teach AI assistants how to handle
--- ---
### Do I need to install all 179 skills? ### Do I need to install all 233 skills?
**No!** When you clone the repository, all skills are available, but your AI only loads them when you explicitly invoke them with `@skill-name` or `/skill-name`. **No!** When you clone the repository, all skills are available, but your AI only loads them when you explicitly invoke them with `@skill-name` or `/skill-name`.
@@ -39,6 +39,7 @@ These skills work with any AI coding assistant that supports the `SKILL.md` form
### Are these skills free to use? ### Are these skills free to use?
**Yes!** This repository is licensed under MIT License, which means: **Yes!** This repository is licensed under MIT License, which means:
- ✅ Free for personal use - ✅ Free for personal use
- ✅ Free for commercial use - ✅ Free for commercial use
- ✅ You can modify them - ✅ You can modify them
@@ -49,6 +50,7 @@ These skills work with any AI coding assistant that supports the `SKILL.md` form
### Do skills work offline? ### Do skills work offline?
The skill files themselves are stored locally on your computer, but your AI assistant needs an internet connection to function. So: The skill files themselves are stored locally on your computer, but your AI assistant needs an internet connection to function. So:
- ✅ Skills are local files - ✅ Skills are local files
- ❌ AI assistant needs internet - ❌ AI assistant needs internet
@@ -65,6 +67,7 @@ git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skill
``` ```
**Tool-specific paths:** **Tool-specific paths:**
- Claude Code: `.claude/skills/` or `.agent/skills/` - Claude Code: `.claude/skills/` or `.agent/skills/`
- Gemini CLI: `.gemini/skills/` or `.agent/skills/` - Gemini CLI: `.gemini/skills/` or `.agent/skills/`
- Cursor: `.cursor/skills/` or project root - Cursor: `.cursor/skills/` or project root
@@ -78,6 +81,7 @@ git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skill
**Option 1: Global Installation** (recommended) **Option 1: Global Installation** (recommended)
Install once in your home directory, works for all projects: Install once in your home directory, works for all projects:
```bash ```bash
cd ~ cd ~
git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills
@@ -85,6 +89,7 @@ git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skill
**Option 2: Per-Project Installation** **Option 2: Per-Project Installation**
Install in each project directory: Install in each project directory:
```bash ```bash
cd /path/to/your/project cd /path/to/your/project
git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills
@@ -133,6 +138,7 @@ Use the `@` symbol followed by the skill name:
``` ```
**Examples:** **Examples:**
``` ```
@brainstorming help me design a todo app @brainstorming help me design a todo app
@stripe-integration add subscription billing @stripe-integration add subscription billing
@@ -146,14 +152,16 @@ Some tools also support `/skill-name` syntax.
### How do I know which skill to use? ### How do I know which skill to use?
**Method 1: Browse the README** **Method 1: Browse the README**
Check the [Full Skill Registry](README.md#full-skill-registry-179179) organized by category Check the [Full Skill Registry](README.md#full-skill-registry-233233) organized by category
**Method 2: Search by keyword** **Method 2: Search by keyword**
```bash ```bash
ls skills/ | grep "keyword" ls skills/ | grep "keyword"
``` ```
**Method 3: Ask your AI** **Method 3: Ask your AI**
``` ```
What skills are available for [topic]? What skills are available for [topic]?
``` ```
@@ -179,16 +187,19 @@ What skills are available for [topic]?
**Troubleshooting steps:** **Troubleshooting steps:**
1. **Check installation path** 1. **Check installation path**
```bash ```bash
ls .agent/skills/ ls .agent/skills/
``` ```
2. **Verify skill exists** 2. **Verify skill exists**
```bash ```bash
ls .agent/skills/skill-name/ ls .agent/skills/skill-name/
``` ```
3. **Check SKILL.md exists** 3. **Check SKILL.md exists**
```bash ```bash
cat .agent/skills/skill-name/SKILL.md cat .agent/skills/skill-name/SKILL.md
``` ```
@@ -247,6 +258,7 @@ Check out [CONTRIBUTING.md](CONTRIBUTING.md) for step-by-step instructions.
### What makes a good skill? ### What makes a good skill?
A good skill: A good skill:
- ✅ Solves a specific problem - ✅ Solves a specific problem
- ✅ Has clear, actionable instructions - ✅ Has clear, actionable instructions
- ✅ Includes examples - ✅ Includes examples
@@ -260,11 +272,13 @@ See [SKILL_ANATOMY.md](docs/SKILL_ANATOMY.md) for details.
### How long does it take for my contribution to be reviewed? ### How long does it take for my contribution to be reviewed?
Review times vary, but typically: Review times vary, but typically:
- **Simple fixes** (typos, docs): 1-3 days - **Simple fixes** (typos, docs): 1-3 days
- **New skills**: 3-7 days - **New skills**: 3-7 days
- **Major changes**: 1-2 weeks - **Major changes**: 1-2 weeks
You can speed this up by: You can speed this up by:
- Following the contribution guidelines - Following the contribution guidelines
- Writing clear commit messages - Writing clear commit messages
- Testing your changes - Testing your changes
@@ -286,12 +300,14 @@ The AI primarily uses `SKILL.md`, while developers read `README.md`.
### Can I use scripts or code in my skill? ### Can I use scripts or code in my skill?
**Yes!** Skills can include: **Yes!** Skills can include:
- `scripts/` - Helper scripts - `scripts/` - Helper scripts
- `examples/` - Example code - `examples/` - Example code
- `templates/` - Code templates - `templates/` - Code templates
- `references/` - Documentation - `references/` - Documentation
Reference them in your `SKILL.md`: Reference them in your `SKILL.md`:
```markdown ```markdown
Run the setup script: Run the setup script:
\`\`\`bash \`\`\`bash
@@ -304,6 +320,7 @@ bash scripts/setup.sh
### What programming languages can skills cover? ### What programming languages can skills cover?
**Any language!** Current skills cover: **Any language!** Current skills cover:
- JavaScript/TypeScript - JavaScript/TypeScript
- Python - Python
- Go - Go
@@ -338,6 +355,7 @@ python3 scripts/validate_skills.py
``` ```
This checks: This checks:
- ✅ SKILL.md exists - ✅ SKILL.md exists
- ✅ Frontmatter is valid - ✅ Frontmatter is valid
- ✅ Name matches folder name - ✅ Name matches folder name
@@ -350,16 +368,19 @@ This checks:
### Which skills should I try first? ### Which skills should I try first?
**For beginners:** **For beginners:**
- `@brainstorming` - Design before coding - `@brainstorming` - Design before coding
- `@systematic-debugging` - Fix bugs methodically - `@systematic-debugging` - Fix bugs methodically
- `@git-pushing` - Commit with good messages - `@git-pushing` - Commit with good messages
**For developers:** **For developers:**
- `@test-driven-development` - Write tests first - `@test-driven-development` - Write tests first
- `@react-best-practices` - Modern React patterns - `@react-best-practices` - Modern React patterns
- `@senior-fullstack` - Full-stack development - `@senior-fullstack` - Full-stack development
**For security:** **For security:**
- `@ethical-hacking-methodology` - Security basics - `@ethical-hacking-methodology` - Security basics
- `@burp-suite-testing` - Web app testing - `@burp-suite-testing` - Web app testing
@@ -377,6 +398,7 @@ This checks:
6. **Iterate** - Improve based on feedback 6. **Iterate** - Improve based on feedback
**Recommended skills to study:** **Recommended skills to study:**
- `skills/brainstorming/SKILL.md` - Clear structure - `skills/brainstorming/SKILL.md` - Clear structure
- `skills/systematic-debugging/SKILL.md` - Comprehensive - `skills/systematic-debugging/SKILL.md` - Comprehensive
- `skills/git-pushing/SKILL.md` - Simple and focused - `skills/git-pushing/SKILL.md` - Simple and focused
@@ -386,6 +408,7 @@ This checks:
### Are there any skills for learning AI/ML? ### Are there any skills for learning AI/ML?
**Yes!** Check out: **Yes!** Check out:
- `@rag-engineer` - RAG systems - `@rag-engineer` - RAG systems
- `@prompt-engineering` - Prompt design - `@prompt-engineering` - Prompt design
- `@langgraph` - Multi-agent systems - `@langgraph` - Multi-agent systems
@@ -435,11 +458,13 @@ We'll update it quickly!
### Can I modify skills for my own use? ### Can I modify skills for my own use?
**Yes!** The MIT License allows you to: **Yes!** The MIT License allows you to:
- ✅ Modify skills for your needs - ✅ Modify skills for your needs
- ✅ Create private versions - ✅ Create private versions
- ✅ Customize for your team - ✅ Customize for your team
**To modify:** **To modify:**
1. Copy the skill to a new location 1. Copy the skill to a new location
2. Edit the SKILL.md file 2. Edit the SKILL.md file
3. Use your modified version 3. Use your modified version
@@ -452,7 +477,7 @@ We'll update it quickly!
### How many skills are there? ### How many skills are there?
**179 skills** across 10+ categories as of the latest update. **233 skills** across 10+ categories as of the latest update.
--- ---
@@ -463,6 +488,7 @@ We'll update it quickly!
- **Updates**: When best practices change - **Updates**: When best practices change
**Stay updated:** **Stay updated:**
```bash ```bash
cd .agent/skills cd .agent/skills
git pull origin main git pull origin main
@@ -473,6 +499,7 @@ git pull origin main
### Who maintains this repository? ### Who maintains this repository?
This is a community-driven project with contributions from: This is a community-driven project with contributions from:
- Original creators - Original creators
- Open source contributors - Open source contributors
- AI coding assistant users worldwide - AI coding assistant users worldwide
@@ -504,6 +531,7 @@ See [Credits & Sources](README.md#credits--sources) for attribution.
### Can I use these skills commercially? ### Can I use these skills commercially?
**Yes!** The MIT License permits commercial use. You can: **Yes!** The MIT License permits commercial use. You can:
- ✅ Use in commercial projects - ✅ Use in commercial projects
- ✅ Use in client work - ✅ Use in client work
- ✅ Include in paid products - ✅ Include in paid products
@@ -523,6 +551,6 @@ See [Credits & Sources](README.md#credits--sources) for attribution.
--- ---
**Question not answered?** **Question not answered?**
[Open a discussion](https://github.com/sickn33/antigravity-awesome-skills/discussions) and we'll help you out! 🙌 [Open a discussion](https://github.com/sickn33/antigravity-awesome-skills/discussions) and we'll help you out! 🙌

View File

@@ -6,7 +6,7 @@
## 🤔 What Are "Skills"? ## 🤔 What Are "Skills"?
Think of skills as **specialized instruction manuals** for AI coding assistants. Think of skills as **specialized instruction manuals** for AI coding assistants.
**Simple analogy:** Just like you might hire different experts (a designer, a security expert, a marketer), these skills let your AI assistant become an expert in specific areas when you need them. **Simple analogy:** Just like you might hire different experts (a designer, a security expert, a marketer), these skills let your AI assistant become an expert in specific areas when you need them.
@@ -14,7 +14,7 @@ Think of skills as **specialized instruction manuals** for AI coding assistants.
## 📦 What's Inside This Repository? ## 📦 What's Inside This Repository?
This repo contains **179 ready-to-use skills** organized in the `skills/` folder. Each skill is a folder with at least one file: `SKILL.md` This repo contains **233 ready-to-use skills** organized in the `skills/` folder. Each skill is a folder with at least one file: `SKILL.md`
``` ```
skills/ skills/
@@ -32,6 +32,7 @@ skills/
## How Do Skills Work? ## How Do Skills Work?
### Step 1: Install Skills ### Step 1: Install Skills
Copy the skills to your AI tool's directory: Copy the skills to your AI tool's directory:
```bash ```bash
@@ -40,6 +41,7 @@ git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skill
``` ```
### Step 2: Use a Skill ### Step 2: Use a Skill
In your AI chat, mention the skill: In your AI chat, mention the skill:
``` ```
@@ -53,50 +55,65 @@ or
``` ```
### Step 3: The AI Becomes an Expert ### Step 3: The AI Becomes an Expert
The AI loads that skill's knowledge and helps you with specialized expertise! The AI loads that skill's knowledge and helps you with specialized expertise!
--- ---
## Which AI Tools Work With This? ## Which AI Tools Work With This?
| Tool | Works? | Installation Path | | Tool | Works? | Installation Path |
|------|--------|-------------------| | ------------------- | ---------- | ------------------------------------- |
| **Claude Code** | ✅ Yes | `.claude/skills/` or `.agent/skills/` | | **Claude Code** | ✅ Yes | `.claude/skills/` or `.agent/skills/` |
| **Gemini CLI** | ✅ Yes | `.gemini/skills/` or `.agent/skills/` | | **Gemini CLI** | ✅ Yes | `.gemini/skills/` or `.agent/skills/` |
| **Cursor** | ✅ Yes | `.cursor/skills/` | | **Cursor** | ✅ Yes | `.cursor/skills/` |
| **GitHub Copilot** | ⚠️ Partial | Copy to `.github/copilot/` | | **GitHub Copilot** | ⚠️ Partial | Copy to `.github/copilot/` |
| **Antigravity IDE** | ✅ Yes | `.agent/skills/` | | **Antigravity IDE** | ✅ Yes | `.agent/skills/` |
--- ---
## Skill Categories (Simplified) ## Skill Categories (Simplified)
### **Creative & Design** (10 skills) ### **Creative & Design** (10 skills)
Make beautiful things: UI design, art, themes, web components Make beautiful things: UI design, art, themes, web components
- Try: `@frontend-design`, `@canvas-design`, `@ui-ux-pro-max` - Try: `@frontend-design`, `@canvas-design`, `@ui-ux-pro-max`
### **Development** (25 skills) ### **Development** (25 skills)
Write better code: testing, debugging, React patterns, architecture Write better code: testing, debugging, React patterns, architecture
- Try: `@test-driven-development`, `@systematic-debugging`, `@react-best-practices` - Try: `@test-driven-development`, `@systematic-debugging`, `@react-best-practices`
### **Security** (50 skills) ### **Security** (50 skills)
Ethical hacking and penetration testing tools Ethical hacking and penetration testing tools
- Try: `@ethical-hacking-methodology`, `@burp-suite-testing` - Try: `@ethical-hacking-methodology`, `@burp-suite-testing`
### **AI & Agents** (30 skills) ### **AI & Agents** (30 skills)
Build AI apps: RAG, LangGraph, prompt engineering, voice agents Build AI apps: RAG, LangGraph, prompt engineering, voice agents
- Try: `@rag-engineer`, `@prompt-engineering`, `@langgraph` - Try: `@rag-engineer`, `@prompt-engineering`, `@langgraph`
### **Documents** (4 skills) ### **Documents** (4 skills)
Work with Word, Excel, PowerPoint, PDF files Work with Word, Excel, PowerPoint, PDF files
- Try: `@docx-official`, `@xlsx-official`, `@pdf-official` - Try: `@docx-official`, `@xlsx-official`, `@pdf-official`
### **Marketing** (23 skills) ### **Marketing** (23 skills)
Grow your product: SEO, copywriting, ads, email campaigns Grow your product: SEO, copywriting, ads, email campaigns
- Try: `@copywriting`, `@seo-audit`, `@page-cro` - Try: `@copywriting`, `@seo-audit`, `@page-cro`
### **Integrations** (25 skills) ### **Integrations** (25 skills)
Connect to services: Stripe, Firebase, Twilio, Discord, Slack Connect to services: Stripe, Firebase, Twilio, Discord, Slack
- Try: `@stripe-integration`, `@firebase`, `@clerk-auth` - Try: `@stripe-integration`, `@firebase`, `@clerk-auth`
--- ---
@@ -108,6 +125,7 @@ Let's try the **brainstorming** skill:
1. **Open your AI assistant** (Claude Code, Cursor, etc.) 1. **Open your AI assistant** (Claude Code, Cursor, etc.)
2. **Type this:** 2. **Type this:**
``` ```
@brainstorming I want to build a simple weather app @brainstorming I want to build a simple weather app
``` ```
@@ -125,10 +143,13 @@ Let's try the **brainstorming** skill:
## How to Find the Right Skill ## How to Find the Right Skill
### Method 1: Browse by Category ### Method 1: Browse by Category
Check the [Full Skill Registry](README.md#full-skill-registry-179179) in the main README
Check the [Full Skill Registry](README.md#full-skill-registry-233233) in the main README
### Method 2: Search by Keyword ### Method 2: Search by Keyword
Use your file explorer or terminal: Use your file explorer or terminal:
```bash ```bash
# Find skills related to "testing" # Find skills related to "testing"
ls skills/ | grep test ls skills/ | grep test
@@ -138,6 +159,7 @@ ls skills/ | grep auth
``` ```
### Method 3: Look at the Index ### Method 3: Look at the Index
Check `skills_index.json` for a machine-readable list Check `skills_index.json` for a machine-readable list
--- ---
@@ -147,33 +169,41 @@ Check `skills_index.json` for a machine-readable list
Great! Here's how: Great! Here's how:
### Option 1: Improve Documentation ### Option 1: Improve Documentation
- Make READMEs clearer - Make READMEs clearer
- Add more examples - Add more examples
- Fix typos or confusing parts - Fix typos or confusing parts
### Option 2: Create a New Skill ### Option 2: Create a New Skill
See our [CONTRIBUTING.md](CONTRIBUTING.md) for step-by-step instructions See our [CONTRIBUTING.md](CONTRIBUTING.md) for step-by-step instructions
### Option 3: Report Issues ### Option 3: Report Issues
Found something confusing? [Open an issue](https://github.com/sickn33/antigravity-awesome-skills/issues) Found something confusing? [Open an issue](https://github.com/sickn33/antigravity-awesome-skills/issues)
--- ---
## ❓ Common Questions ## ❓ Common Questions
### Q: Do I need to install all 179 skills? ### Q: Do I need to install all 233 skills?
**A:** No! Clone the whole repo, and your AI will only load skills when you use them. **A:** No! Clone the whole repo, and your AI will only load skills when you use them.
### Q: Can I create my own skills? ### Q: Can I create my own skills?
**A:** Yes! Check out the `@skill-creator` skill or read [CONTRIBUTING.md](CONTRIBUTING.md) **A:** Yes! Check out the `@skill-creator` skill or read [CONTRIBUTING.md](CONTRIBUTING.md)
### Q: What if my AI tool isn't listed? ### Q: What if my AI tool isn't listed?
**A:** If it supports the `SKILL.md` format, try `.agent/skills/` - it's the universal path. **A:** If it supports the `SKILL.md` format, try `.agent/skills/` - it's the universal path.
### Q: Are these skills free? ### Q: Are these skills free?
**A:** Yes! MIT License. Use them however you want. **A:** Yes! MIT License. Use them however you want.
### Q: Do skills work offline? ### Q: Do skills work offline?
**A:** The skill files are local, but your AI assistant needs internet to function. **A:** The skill files are local, but your AI assistant needs internet to function.
--- ---

View File

@@ -95,9 +95,9 @@ The repository is organized into several key areas of expertise:
| :-------------------------- | :----------- | :--------------------------------------------------------------------------------------------------------------------------- | | :-------------------------- | :----------- | :--------------------------------------------------------------------------------------------------------------------------- |
| **🛸 Autonomous & Agentic** | **~8** | Loki Mode (Startup-in-a-box), Subagent Driven Dev, Dispatching Parallel Agents, Planning With Files, Skill Creator/Developer | | **🛸 Autonomous & Agentic** | **~8** | Loki Mode (Startup-in-a-box), Subagent Driven Dev, Dispatching Parallel Agents, Planning With Files, Skill Creator/Developer |
| **🔌 Integrations & APIs** | **~25** | Stripe, Firebase, Supabase, Vercel, Clerk Auth, Twilio, Discord Bot, Slack Bot, GraphQL, AWS Serverless | | **🔌 Integrations & APIs** | **~25** | Stripe, Firebase, Supabase, Vercel, Clerk Auth, Twilio, Discord Bot, Slack Bot, GraphQL, AWS Serverless |
| **🛡️ Cybersecurity** | **~50** | Ethical Hacking, Metasploit, Burp Suite, SQLMap, Active Directory, AWS/Cloud Pentesting, OWASP Top 100, Red Team Tools | | **🛡️ Cybersecurity** | **~51** | Ethical Hacking, Metasploit, Burp Suite, SQLMap, Active Directory, AWS/Cloud Pentesting, OWASP Top 100, Red Team Tools |
| **🎨 Creative & Design** | **~10** | UI/UX Pro Max, Frontend Design, Canvas, Algorithmic Art, Theme Factory, D3 Viz, Web Artifacts | | **🎨 Creative & Design** | **~10** | UI/UX Pro Max, Frontend Design, Canvas, Algorithmic Art, Theme Factory, D3 Viz, Web Artifacts |
| **🛠️ Development** | **~25** | TDD, Systematic Debugging, React Patterns, Backend/Frontend Guidelines, Senior Fullstack, Software Architecture | | **🛠️ Development** | **~33** | TDD, Systematic Debugging, React Patterns, Backend/Frontend Guidelines, Senior Fullstack, Software Architecture |
| **🏗️ Infrastructure & Git** | **~8** | Linux Shell Scripting, Git Worktrees, Git Pushing, Conventional Commits, File Organization, GitHub Workflow Automation | | **🏗️ Infrastructure & Git** | **~8** | Linux Shell Scripting, Git Worktrees, Git Pushing, Conventional Commits, File Organization, GitHub Workflow Automation |
| **🤖 AI Agents & LLM** | **~30** | LangGraph, CrewAI, Langfuse, RAG Engineer, Prompt Engineer, Voice Agents, Browser Automation, Agent Memory Systems | | **🤖 AI Agents & LLM** | **~30** | LangGraph, CrewAI, Langfuse, RAG Engineer, Prompt Engineer, Voice Agents, Browser Automation, Agent Memory Systems |
| **🔄 Workflow & Planning** | **~6** | Writing Plans, Executing Plans, Concise Planning, Verification Before Completion, Code Review (Requesting/Receiving) | | **🔄 Workflow & Planning** | **~6** | Writing Plans, Executing Plans, Concise Planning, Verification Before Completion, Code Review (Requesting/Receiving) |

View File

@@ -1,10 +1,10 @@
--- ---
name: cc-skill-continuous-learning name: cc-skill-continuous-learning
description: Development skill skill from everything-claude-code description: Development skill from everything-claude-code
author: affaan-m author: affaan-m
version: "1.0" version: "1.0"
--- ---
# cc-skill-continuous-learning # cc-skill-continuous-learning
Development skill skill. Development skill skill.

View File

@@ -1,10 +1,10 @@
--- ---
name: cc-skill-strategic-compact name: cc-skill-strategic-compact
description: Development skill skill from everything-claude-code description: Development skill from everything-claude-code
author: affaan-m author: affaan-m
version: "1.0" version: "1.0"
--- ---
# cc-skill-strategic-compact # cc-skill-strategic-compact
Development skill skill. Development skill skill.

View File

@@ -399,7 +399,7 @@
"id": "cc-skill-continuous-learning", "id": "cc-skill-continuous-learning",
"path": "skills/cc-skill-continuous-learning", "path": "skills/cc-skill-continuous-learning",
"name": "cc-skill-continuous-learning", "name": "cc-skill-continuous-learning",
"description": "Development skill skill from everything-claude-code" "description": "Development skill from everything-claude-code"
}, },
{ {
"id": "cc-skill-project-guidelines-example", "id": "cc-skill-project-guidelines-example",
@@ -411,7 +411,7 @@
"id": "cc-skill-strategic-compact", "id": "cc-skill-strategic-compact",
"path": "skills/cc-skill-strategic-compact", "path": "skills/cc-skill-strategic-compact",
"name": "cc-skill-strategic-compact", "name": "cc-skill-strategic-compact",
"description": "Development skill skill from everything-claude-code" "description": "Development skill from everything-claude-code"
}, },
{ {
"id": "clean-code", "id": "clean-code",