A curated collection of AI skills for supercharging LLM-powered workflows.
npx skills add https://github.com/agilkannan/skills --skill market-researcherInstale esta skill com a CLI e comece a usar o fluxo de trabalho SKILL.md em seu espaço de trabalho.
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:
SKILL.md file — the core instructions and decision logicreferences/ — detailed frameworks, templates, and checklistsscripts/ — executable code for file manipulation, testing, or automationInstead 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
Start using skills — the AI will automatically detect and apply relevant skills based on your requests.
SKILL.md file on GitHubreferences/, paste those too for full capabilityDon'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:
references/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:
SKILL.md with proper YAML frontmatter (name, description)LICENSE.txt (Apache 2.0)references/ or scripts/SKILL.md is under 500 linesname and description with trigger wordsLICENSE.txt includedThis 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.