business-strategist

A curated collection of AI skills for supercharging LLM-powered workflows.

Installation
CLI
npx skills add https://github.com/agilkannan/skills --skill business-strategist

Install this skill with the CLI and start using the SKILL.md workflow in your workspace.

Last updated 4/29/2026

AI Skills Collection

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.

CatalogQuick StartHow It WorksCompatibilityCreate Your OwnLicense


What Are Skills?

Skills are structured instruction sets that give AI assistants specialized capabilities. Each skill is a self-contained folder with:

  • A SKILL.md file — 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.


Skills Catalog

📊 Business & Research

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

📄 Document Creation

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
pdf 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

🎨 Design & Visual

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

🛠️ Development & Tooling

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

🏗️ Meta

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

Quick Start

If your editor supports a skills/instructions folder (e.g., Claude Code, Antigravity, Cursor, etc):

  1. Clone the repo

    git clone https://github.com/Agilkannan/skills.git
    
  2. 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
  3. Start using skills — the AI will automatically detect and apply relevant skills based on your requests.

Option 2: Web-Based AI (ChatGPT, Gemini, etc.)

  1. Open the skill's SKILL.md file on GitHub
  2. Copy the contents and paste into your conversation as context
  3. For referenced files — if the SKILL.md mentions files in references/, paste those too for full capability

Option 3: Cherry-Pick Individual Skills

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/

How Skills Work

Anatomy of a Skill

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.)

Progressive Disclosure

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.


Compatibility

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

Creating Your Own

Use the built-in skill-creator skill to build new skills:

  1. Describe what capability you want
  2. The skill-creator walks you through: planning → structure → writing → packaging
  3. Output: A complete skill folder ready to use

Key Principles

  • 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

Repository Structure

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

Contributing

Contributions are welcome! To add a new skill:

  1. Fork this repository
  2. Create a new skill using the skill-creator methodology
  3. Ensure your skill includes:
    • SKILL.md with proper YAML frontmatter (name, description)
    • LICENSE.txt (Apache 2.0)
    • Any supporting references/ or scripts/
  4. Submit a pull request

Quality Checklist

  • [ ] SKILL.md is under 500 lines
  • [ ] YAML frontmatter includes name and description with 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.txt included

License

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.