A curated collection of AI skills for supercharging LLM-powered workflows.
Structured prompts, reference frameworks, and automation scripts — ready to plug into your AI coding editor or chat interface.
Catalog • Quick Start • How It Works • Compatibility • Create Your Own • License
Skills are structured instruction sets that give AI assistants specialized capabilities. Each skill is a self-contained folder with:
- A
SKILL.mdfile — the core instructions and decision logic - Optional
references/— detailed frameworks, templates, and checklists - Optional
scripts/— executable code for file manipulation, testing, or automation
Instead of writing long prompts every time, you point your AI to a skill and it instantly gains expert-level capability in that domain.
| Skill | Description |
|---|---|
| market-researcher | God-level internet research and data synthesis — compare products, analyze markets, evaluate opportunities, and deliver verified insights with source citations |
| business-strategist | End-to-end business strategy — business models, financial projections, go-to-market plans, pricing strategy, pitch decks, and fundraising guidance |
| Skill | Description |
|---|---|
| docx | Create, read, edit, and manipulate Word documents (.docx) with professional formatting and track changes |
| pptx | Create, read, edit, and manipulate PowerPoint presentations (.pptx) with layouts, charts, and animations |
| Read, create, merge, split, fill forms, watermark, encrypt, and OCR PDF files | |
| xlsx | Create, read, edit, and manipulate spreadsheets (.xlsx, .xlsm, .csv, .tsv) with formulas and charts |
| doc-coauthoring | Structured 3-stage workflow for co-authoring documentation, proposals, specs, and decision docs |
| internal-comms | Write polished internal communications — status reports, newsletters, FAQs, and leadership updates |
| Skill | Description |
|---|---|
| frontend-design | Create distinctive, production-grade frontend interfaces with high design quality — no generic templates |
| canvas-design | Create beautiful visual art in .png and .pdf using canvas-based design philosophy and curated fonts |
| algorithmic-art | Generate algorithmic art with p5.js — seeded randomness, interactive parameters, and exportable output |
| brand-guidelines | Apply brand colors, typography, and visual identity consistently across all artifacts |
| theme-factory | Style artifacts with 10 pre-built themes or generate custom themes on the fly |
| Skill | Description |
|---|---|
| web-artifacts-builder | Build multi-component HTML artifacts using React, Tailwind CSS, and shadcn/ui |
| webapp-testing | Test and interact with local web applications using Playwright — screenshots, logs, and assertions |
| mcp-builder | Build MCP (Model Context Protocol) servers that connect LLMs to external services and APIs |
| Skill | Description |
|---|---|
| skill-creator | The skill for creating skills — a step-by-step guide for building new skills that follow best practices |
| magic-prompt-generator | Expert prompt engineering assistant that crafts world-class, production-ready prompts for any AI chatbot through intelligent questioning and framework selection |
If your editor supports a skills/instructions folder (e.g., Claude Code, Antigravity, Cursor, etc):
-
Clone the repo
git clone https://github.com/Agilkannan/skills.git
-
Point your editor to the skills folder
- Set the cloned folder as your project workspace, or
- Copy individual skill folders into your editor's designated skills directory
-
Start using skills — the AI will automatically detect and apply relevant skills based on your requests.
- Open the skill's
SKILL.mdfile on GitHub - Copy the contents and paste into your conversation as context
- For referenced files — if the SKILL.md mentions files in
references/, paste those too for full capability
Don't need all 17? Just copy the folders you want:
# Example: grab just the business skills
cp -r skills/market-researcher /your/workspace/
cp -r skills/business-strategist /your/workspace/skill-name/
├── SKILL.md # Core instructions (< 500 lines)
├── LICENSE.txt # Apache 2.0 license
├── references/ # Deep-dive frameworks and templates
│ ├── framework-a.md
│ └── framework-b.md
├── scripts/ # Executable automation code
│ ├── script-a.py
│ └── script-b.py
└── assets/ # Static resources (fonts, images, etc.)
Skills are designed to be token-efficient. The AI loads context in three levels:
| Level | What Loads | When |
|---|---|---|
| 1. Metadata | Skill name + description (from YAML frontmatter) | Always — used for skill matching |
| 2. SKILL.md body | Core instructions, decision trees, process flows | When the skill is activated |
| 3. References & Scripts | Detailed templates, frameworks, code | Only when specifically needed |
This means the AI doesn't waste context on 500 lines of financial modeling templates unless you actually ask about financial projections.
| Platform | Support Level | How to Use |
|---|---|---|
| Antigravity/VS Code | ✅ Native | Skills auto-detected from workspace |
| Cursor / Windsurf | ✅ Native | Place in project rules or instructions folder |
| ChatGPT | ⚡ Manual | Paste SKILL.md content into conversation |
| Gemini | ⚡ Manual | Paste SKILL.md content into conversation |
| Perplexity | ⚡ Manual | Paste SKILL.md content into conversation |
| Any LLM | ⚡ Manual | Skills are plain Markdown — works with anything |
Use the built-in skill-creator skill to build new skills:
- Describe what capability you want
- The skill-creator walks you through: planning → structure → writing → packaging
- Output: A complete skill folder ready to use
- SKILL.md under 500 lines — keep it focused; move details to
references/ - Decision trees over paragraphs — help the AI pick the right approach fast
- Progressive disclosure — load heavy references only when needed
- Imperative form — write instructions as commands: "Analyze the market" not "You should analyze the market"
- Anti-patterns section — explicitly list what the skill should NOT do
skills/
├── README.md
├── algorithmic-art/ # p5.js generative art
├── brand-guidelines/ # Brand identity enforcement
├── business-strategist/ # Business strategy & planning
├── canvas-design/ # Visual design (PNG/PDF)
├── doc-coauthoring/ # Collaborative doc writing
├── docx/ # Word document manipulation
├── frontend-design/ # Production-grade UI design
├── internal-comms/ # Internal communications
├── magic-prompt-generator/ # Expert prompt engineering
├── market-researcher/ # Internet research & analysis
├── mcp-builder/ # MCP server development
├── pdf/ # PDF manipulation & forms
├── pptx/ # PowerPoint manipulation
├── skill-creator/ # Meta: create new skills
├── theme-factory/ # Artifact theming system
├── web-artifacts-builder/ # React/Tailwind artifacts
├── webapp-testing/ # Playwright web testing
└── xlsx/ # Spreadsheet manipulation
Contributions are welcome! To add a new skill:
- Fork this repository
- Create a new skill using the skill-creator methodology
- Ensure your skill includes:
SKILL.mdwith proper YAML frontmatter (name,description)LICENSE.txt(Apache 2.0)- Any supporting
references/orscripts/
- Submit a pull request
-
SKILL.mdis under 500 lines - YAML frontmatter includes
nameanddescriptionwith trigger words - Instructions use imperative form
- Includes decision tree or routing logic for different user requests
- Anti-patterns section present
- References are only loaded when needed (progressive disclosure)
-
LICENSE.txtincluded
This project is licensed under the Apache License 2.0 — see any LICENSE.txt file for details.
You are free to use, modify, and distribute these skills for any purpose, including commercial use. Just keep the license file and attribution.
Built with structured thinking and a lot of Markdown.