← Back to Articles

The 100 Best AI Agent Skills in 2026: The Definitive Guide

AI agents stopped being autocomplete tools in late 2025 and became actual collaborators. They now build full features, run tests, query databases, generate visual artifacts, automate business workflows, and interact with the live web. But a raw agent without skills is like a senior engineer on day one β€” brilliant, but missing all the project-specific context that makes them dangerous.

Skills are reusable instruction sets (typically SKILL.md files) that teach an AI agent how to perform specific tasks according to specialized playbooks. They work across Claude Code, Cursor, Gemini CLI, Codex CLI, GitHub Copilot, and other compatible platforms via the universal SKILL.md format.

As of April 2026, the agent skill ecosystem includes over 5,200 community-contributed skills, hundreds of official and verified skills, and a rapidly growing marketplace. We researched them all β€” across GitHub, enterprise reports from McKinsey, PwC, Gartner, and IBM, curated repositories, community forums, and real-world deployments β€” to find the 100 best.

Here they are, organized across 12 categories.


πŸ“‘ Table of Contents

# Category Skills Count
1 Development & Coding 15
2 Design & Frontend 8
3 Data & Analytics 8
4 Document Processing 7
5 Content Creation & Writing 9
6 Security & Compliance 8
7 Business & Marketing 9
8 Productivity & Automation 9
9 Communication & Collaboration 8
10 DevOps & Infrastructure 8
11 Creative & Media 8
12 Enterprise & Industry-Specific 13

1. Development & Coding

The largest and most mature category of AI agent skills. These transform agents from code-suggestion tools into full-stack engineering partners.

1. Code Reviewer / Simplify

What it does: Runs a structured quality review pass over any code the agent writes or modifies. Checks for logic that could be simplified, functions violating single responsibility, inconsistent patterns, performance issues (N+1 queries, unnecessary re-renders), dead code, and naming clarity. Crucially, it doesn't just flag problems β€” it fixes them before you see the output.

Why it matters: Technical debt compounds fast when agents ship first drafts. This skill ensures every output is already a second draft. Anthropic's official simplify skill has become the most widely installed code quality tool in the ecosystem.

Source: Anthropic Official Skills Β· Composio Awesome Skills


2. Test-Driven Development (TDD)

What it does: Enforces a red-green-refactor workflow before any implementation code is written. The agent writes failing tests first, implements the minimum code to make them pass, then refactors. Includes patterns for unit tests, integration tests, and edge case generation.

Why it matters: TDD with AI agents produces dramatically fewer regressions. The agent treats tests as the specification, not an afterthought. Part of Jesse Vincent's battle-tested "Superpowers" skill library (20+ skills).

Source: obra/superpowers


3. Browser Use / Playwright Automation

What it does: Connects the agent to a headless browser instance. The agent can navigate URLs, click elements, fill forms, extract content from JavaScript-rendered pages, take screenshots, and interact with complex web UIs β€” all as part of a natural language workflow.

Why it matters: Turns the agent from a code-generation tool into an end-to-end QA engineer, research analyst, and automation operator. Any workflow requiring a human to open a browser is now automatable. The Playwright-based variant supports full browser automation for testing deployed apps.

Source: browser-use Β· lackeyjb/playwright-skill


4. MCP Builder

What it does: Guides creation of high-quality MCP (Model Context Protocol) servers for integrating external APIs and services with LLMs. Covers both Python (FastMCP) and TypeScript (MCP SDK) implementations. Includes patterns for tool definitions, resource management, and authentication flows.

Why it matters: MCP is the standard protocol for connecting AI agents to external services. This skill lets agents build their own integrations on demand. Official Anthropic skill with 25k+ installations.

Source: Anthropic Official Skills


5. Software Architecture

What it does: Implements design patterns including Clean Architecture, SOLID principles, Domain-Driven Design, and comprehensive software design best practices. Guides agents to make structurally sound decisions about component boundaries, dependency injection, and layer separation.

Why it matters: Without architectural guidance, agents tend to produce tightly coupled monoliths. This skill ensures generated code follows principles that scale.

Source: NeoLabHQ/context-engineering-kit


6. Systematic Debugging

What it does: Provides a structured debugging methodology: reproduce, isolate, hypothesize, test, fix. Includes root-cause tracing for errors that occur deep in execution chains. The agent systematically narrows down bugs rather than guessing at fixes.

Why it matters: Most agents guess at bug fixes and often introduce new ones. Systematic debugging produces reliable fixes with fewer iterations.

Source: obra/superpowers


7. Git Worktrees & Branch Management

What it does: Creates isolated git worktrees for feature work with smart directory selection. Includes safety verification, parallel development support, and clean merge workflows. Pairs with git-pushing for automated commit and push operations.

Why it matters: Enables agents to work on multiple features simultaneously in isolated environments without risking the main codebase. Essential for multi-agent development workflows.

Source: obra/superpowers Β· Composio Skills


8. Subagent-Driven Development

What it does: Dispatches independent subagents for individual tasks with code review checkpoints between iterations. The orchestrating agent breaks work into parallelizable units, assigns subagents, collects results, and performs review before integration.

Why it matters: Multiplies development throughput by running multiple agents in parallel. Code review checkpoints prevent quality degradation. The coordination pattern scales to complex feature implementations.

Source: NeoLabHQ/context-engineering-kit


9. Prompt Engineering

What it does: Teaches well-known prompt engineering techniques and patterns, including Anthropic best practices, chain-of-thought reasoning, few-shot learning, and agent persuasion principles. Helps agents craft better prompts for downstream AI interactions.

Why it matters: Agents that interact with other AI models need prompt engineering skills. This meta-skill improves the quality of all AI-to-AI interactions.

Source: NeoLabHQ/context-engineering-kit


10. Changelog Generator

What it does: Automatically creates user-facing changelogs from git commits by analyzing commit history and transforming technical commits into customer-friendly release notes. Categorizes changes by type (feature, fix, breaking change).

Why it matters: Eliminates the tedious task of writing changelogs manually. Ensures every release has professional documentation.

Source: Composio Awesome Skills


11. PlanetScale Database Skills

What it does: Teaches agents deep context about serverless databases, branching workflows, schema design conventions, index optimization, and query performance. The agent creates database branches for features, writes index-aware queries, and generates deploy requests.

Why it matters: Database decisions at day one are the hardest to undo at day 365. An agent with this skill writes schemas that scale, with reviewable branching workflows baked in. Benchmark: queries go from ~8s to ~2ms with proper indexing guidance.

Source: planetscale/agent-skill


12. iOS Simulator

What it does: Enables AI agents to interact with iOS Simulator for testing and debugging iOS applications. Supports navigation, screenshot capture, and automated UI testing of iOS apps.

Why it matters: Bridges the gap between code generation and actual device testing for mobile development. Combined with SwiftUI skills, enables end-to-end iOS development workflows.

Source: conorluddy/ios-simulator-skill


13. PICT Test Case Design

What it does: Designs comprehensive test cases using Pairwise Independent Combinatorial Testing (PICT). Generates optimized test suites with pairwise coverage, dramatically reducing the number of test cases needed while maintaining thorough coverage.

Why it matters: Combinatorial testing is exponentially more efficient than exhaustive testing. This skill brings enterprise-grade test design to every project.

Source: omkamal/pypict-claude-skill


14. LangSmith Fetch & Debug

What it does: Debugs LangChain and LangGraph agents by automatically fetching and analyzing execution traces from LangSmith Studio. The first AI observability skill β€” lets agents diagnose other agents.

Why it matters: As multi-agent systems grow complex, debugging agent behavior requires specialized tooling. This skill turns the problem of "why did the agent do that?" into a solvable question.

Source: Composio Awesome Skills


15. Antigravity Awesome Skills Library

What it does: A community-maintained library of 1,234+ agentic skills compatible with every major AI coding assistant. Organized by category with role-based starter bundles (Web Wizard, Security Engineer, Essentials). Installs with a single command.

Why it matters: 22,000+ GitHub stars. Eliminates the "I should write a skill for that" backlog. Covers brainstorming, architecture, debugging, API design, security auditing, PR creation, documentation, and hundreds more workflows.

Source: Antigravity Awesome Skills Β· Featured in 10 Must-Have Skills for Claude


2. Design & Frontend

Skills that transform agent-generated UIs from generic "AI slop" into distinctive, production-grade interfaces.

16. Frontend Design

What it does: Anthropic's official skill that breaks the "distributional convergence" pattern β€” where every AI-generated UI looks the same (Inter font, purple gradient, minimal animations). Gives Claude a design system and philosophy before it touches code, producing bold aesthetic choices, distinctive typography, and purposeful animations.

Why it matters: 277,000+ installs. The most important skill for anyone shipping user-facing products. Without it, agents produce forgettable designs. With it, components look like a senior designer reviewed them.

Source: Anthropic Official Skills Β· 42k+ downloads on Agent Skills Marketplace


17. Web Artifacts Builder

What it does: Suite of tools for creating elaborate, multi-component HTML artifacts using React, Tailwind CSS, and shadcn/ui components. Supports complex state management, routing, and component composition.

Why it matters: Enables agents to build rich interactive prototypes and production components, not just simple HTML files.

Source: Anthropic Official Skills


18. D3.js Visualization

What it does: Teaches agents to produce D3 charts, interactive data visualizations, treemaps, force-directed graphs, and custom SVG layouts. Includes best practices for data binding, transitions, and responsive design.

Why it matters: D3 is notoriously difficult to generate correctly. This skill ensures agents produce working, visually appealing data visualizations.

Source: chrisvoncsefalvay/claude-d3js-skill


19. Canvas Design

What it does: Creates beautiful visual art in PNG and PDF formats using design philosophies and aesthetic principles. Supports posters, infographics, visual designs, and static art pieces.

Why it matters: Bridges the gap between code-generated output and professional visual design. 15k+ downloads.

Source: Anthropic Official Skills


20. Theme Factory

What it does: Applies professional font and color themes to artifacts including slides, docs, reports, and HTML landing pages. Ships with 10 pre-set themes and supports custom brand guidelines.

Why it matters: Ensures visual consistency across all agent-generated artifacts. No more mismatched styling between documents and presentations.

Source: Composio Awesome Skills


21. Brand Guidelines

What it does: Applies specific brand colors, typography, spacing rules, and design standards to any artifact the agent creates. Originally built with Anthropic's brand system, easily customizable for any organization.

Why it matters: Enterprise teams need consistent branding across all outputs. This skill makes brand compliance automatic.

Source: Anthropic Official Skills


22. Excalidraw Diagram Generator

What it does: Generates production-quality architecture diagrams, system designs, and data flow visualizations from natural language. Includes a Playwright-based self-validation pipeline: generates Excalidraw JSON, renders to PNG, reviews its own output for layout issues, and fixes problems before presenting results.

Why it matters: Diagrams survive longer than conversations. An agent that generates publishable architecture diagrams closes the documentation gap every fast-moving team has.

Source: coleam00/excalidraw-diagram-skill Β· Featured in 10 Must-Have Skills


23. Frontend Slides

What it does: Creates animation-rich HTML presentations from scratch or by converting PowerPoint files. Produces web-native slide decks with smooth transitions, embedded code, and interactive elements.

Why it matters: Replaces heavy presentation software with lightweight, version-controllable HTML slide decks.

Source: zarazhangrui/frontend-slides


3. Data & Analytics

Skills for extracting insights, querying databases, and building data pipelines.

24. Agent-SQL-Pro / Natural Language to SQL

What it does: Turns natural language into complex SQL queries with support for PostgreSQL, MySQL, and Snowflake. Includes read-only safety modes, intelligent query optimization, and automatic index recommendations.

Why it matters: Rated 4.8/5 with 2.4k reviews on the Agent Skills Marketplace. Democratizes database access β€” anyone can query production data safely using natural language.

Source: Agent Skills Marketplace Β· Top trending skill


25. CSV Data Summarizer

What it does: Automatically analyzes CSV files and generates comprehensive insights with visualizations. No prompting required β€” drop a CSV and get statistical summaries, charts, and anomaly detection.

Why it matters: Eliminates the manual data exploration step. Agents become instant data analysts.

Source: coffeefuelbump/csv-data-summarizer


26. Deep Research

What it does: Executes autonomous multi-step research using multiple search engines and data sources. Supports market analysis, competitive landscaping, literature reviews, and fact-checking workflows. Follows a research protocol: broad survey β†’ deep dive β†’ synthesis β†’ citation.

Why it matters: Transforms agents from simple search tools into rigorous research assistants. Produces sourced, structured reports.

Source: sanjay3290/ai-skills


27. PostgreSQL Database Connector

What it does: Executes safe read-only SQL queries against PostgreSQL databases with multi-connection support and defense-in-depth security. Supports schema introspection, query explanation, and performance analysis.

Why it matters: Gives agents direct, safe access to production databases for analysis without risk of data modification.

Source: sanjay3290/ai-skills


28. Valyu: Real-Time Web Search & Specialized Data

What it does: Connects agents to 36+ specialized data sources through a single API: SEC 10-K filings, PubMed, ChEMBL (2.5M bioactive compounds), clinical trials, FRED economic indicators, patent databases, and academic publishers.

Why it matters: Benchmark results: 79% on FreshQA vs Google's 39% and Exa's 24%. 73% on finance-specific queries vs Google's 55%. Agents with Valyu access current, authoritative, paywalled information β€” the difference between a demo and a tool people actually use.

Source: valyuAI/skills Β· Featured in 10 Must-Have Skills


29. ChartGen Data Visualization

What it does: Enables agents to create charts, dashboards, and diagrams with natural language. Supports text-to-chart conversion, data import, custom styling, and interactive dashboard generation.

Why it matters: Visualization is critical for communicating data insights. This skill makes chart generation a first-class agent capability.

Source: ChartGen


30. Google Analytics Automation

What it does: Automates Google Analytics reporting: custom reports, dimension/metric queries, property management, and trend analysis. Agents generate analytics insights without manual dashboard navigation.

Why it matters: Turns GA4 data into actionable insights automatically. Part of the broader Composio analytics skill suite.

Source: Composio Awesome Skills


31. Root Cause Tracing

What it does: When errors occur deep in execution chains, this skill traces back through the call stack to find the original trigger. Uses systematic binary-search debugging to isolate root causes in complex systems.

Why it matters: Complex bugs often manifest far from their origin. This skill prevents agents from treating symptoms instead of causes.

Source: obra/superpowers


4. Document Processing

Enterprise-grade document manipulation β€” the most immediately practical category for business use.

32. DOCX Editor

What it does: Full Microsoft Word document lifecycle: create, edit, analyze with tracked changes, comments, formatting preservation, and text extraction. Supports headers/footers, tables of contents, page numbers, and letterheads.

Why it matters: 28k+ downloads. Official Anthropic skill. Produces professional Word documents indistinguishable from human-authored ones.

Source: Anthropic Official Skills


33. PDF Toolkit

What it does: Comprehensive PDF manipulation: extract text and tables, create new PDFs, merge/split documents, handle forms, add watermarks, encrypt/decrypt, extract images, and OCR scanned documents.

Why it matters: 32k+ downloads. The most-installed document skill. Handles the full PDF lifecycle that businesses depend on.

Source: Anthropic Official Skills


34. PPTX Creator

What it does: Create, edit, and analyze PowerPoint presentations with support for layouts, templates, charts, speaker notes, and automated slide generation. Converts content into polished slide decks.

Why it matters: 22k+ downloads. Eliminates hours of manual slide creation. Agents generate presentation-ready decks from text descriptions.

Source: Anthropic Official Skills


35. XLSX Master

What it does: Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, pivot tables, charts, and visualization.

Why it matters: 35k+ downloads. The highest-rated document skill (4.8/5 with 3,100 reviews). Financial modeling, data analysis, and reporting in a single skill.

Source: Anthropic Official Skills


36. Markdown to EPUB Converter

What it does: Converts markdown documents, chat summaries, and long-form content into professional EPUB ebook files with proper chapter structure, table of contents, and metadata.

Why it matters: Enables agents to produce distributable ebooks from any text content β€” documentation, research reports, training materials.

Source: smerchek/claude-epub-skill


37. Article Extractor

What it does: Extracts full article text and metadata from web pages, stripping navigation, ads, and irrelevant content. Produces clean, structured text suitable for analysis or repurposing.

Why it matters: Web content extraction is a foundational capability. This skill ensures agents work with clean text, not raw HTML noise.

Source: tapestry-skills


38. YouTube Transcript

What it does: Fetches transcripts from YouTube videos and prepares summaries, notes, or actionable content. Supports multiple languages and automatic formatting.

Why it matters: Unlocks video content for text-based workflows. Meeting recordings, tutorials, and talks become searchable, quotable text.

Source: tapestry-skills


5. Content Creation & Writing

Skills that turn agents into sophisticated writing partners β€” from SEO to storytelling.

39. Content Research Writer

What it does: Assists in writing high-quality content through a structured pipeline: research β†’ outline β†’ draft β†’ citations β†’ hook optimization β†’ section-by-section feedback. Adds authoritative citations and improves engagement.

Why it matters: Produces content that's researched and cited, not just generated. The difference between AI-assisted writing and AI slop.

Source: Composio Awesome Skills


40. Twitter/X Algorithm Optimizer

What it does: Analyzes and optimizes tweets for maximum reach using Twitter's open-source algorithm insights. Rewrites and edits tweets to improve engagement, visibility, and distribution.

Why it matters: Social media reach is algorithmic. This skill reverse-engineers the algorithm to maximize content distribution.

Source: Composio Awesome Skills


41. SEO Content Agent

What it does: Generates SEO-optimized content including keyword research, meta descriptions, heading structure, internal linking recommendations, and content gap analysis. Supports both blog posts and product pages.

Why it matters: SEO is a measurable, high-ROI content strategy. Agents that understand search algorithms produce content that ranks.

Source: Community skills via OpenClaw ecosystem Β· Jasper AI integrations


42. Blog Writer

What it does: End-to-end blog post creation: topic ideation, outline generation, long-form drafting, image suggestions, and CTA optimization. Supports multiple tones (technical, casual, authoritative).

Why it matters: Content marketing runs on blogs. This skill automates the most time-consuming part of the content pipeline.

Source: OpenClaw Skills


43. Meeting Insights Analyzer

What it does: Analyzes meeting transcripts to uncover behavioral patterns including conflict avoidance, speaking ratios, filler words, leadership style, and action item extraction.

Why it matters: Goes beyond simple summarization to provide behavioral intelligence. Reveals dynamics that meeting participants miss.

Source: Composio Awesome Skills


44. Internal Communications

What it does: Professional internal communications toolkit: 3P updates, company newsletters, FAQs, status reports, project updates, and all-hands presentations using company-specific formats.

Why it matters: 9.2k+ downloads. Internal comms are high-frequency and follow repeatable patterns β€” perfect for skill automation.

Source: Anthropic Official Skills


45. Academic Research Hub

What it does: Assists with planning and conducting academic research: literature reviews, methodology design, citation management, and paper structuring following academic conventions (APA, MLA, Chicago).

Why it matters: Rigorous academic research requires domain-specific conventions that general-purpose agents miss.

Source: OpenClaw Skills


46. Tailored Resume Generator

What it does: Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances. Supports multiple formats and ATS optimization.

Why it matters: Resume customization is tedious but high-impact. This skill automates the personalization that gets past applicant tracking systems.

Source: Composio Awesome Skills


47. Domain Name Brainstormer

What it does: Generates creative domain name ideas and checks availability across multiple TLDs including .com, .io, .dev, and .ai extensions. Evaluates brandability and memorability.

Why it matters: Domain selection is surprisingly time-consuming. This skill generates hundreds of options and filters for availability instantly.

Source: Composio Awesome Skills


6. Security & Compliance

The fastest-growing category, driven by enterprise adoption and regulatory requirements.

48. Shannon: Autonomous AI Pentester

What it does: An autonomous pen testing agent that runs against local/staging environments, executes real exploits across 50+ vulnerability types in 5 OWASP categories, and reports only confirmed vulnerabilities. Covers SQL injection (union, blind, time-based), XSS variants, SSRF, broken auth (JWT flaws, session fixation), and authorization bypasses.

Why it matters: 96.15% exploit success rate on the XBOW benchmark (100/104 exploits). Runtime: ~1-1.5 hours per full pentest, ~$50 using Claude Sonnet. Compare that to a human pentest engagement costing thousands. Zero false positives β€” no exploit, no report.

Source: KeygraphHQ/shannon Β· Featured in 10 Must-Have Skills


49. FFUF Web Fuzzing

What it does: Integrates the ffuf web fuzzer for automated fuzzing tasks: directory discovery, parameter brute-forcing, authenticated fuzzing with raw requests, auto-calibration, and result analysis for vulnerability detection.

Why it matters: Web fuzzing is a critical security testing technique that's normally manual and expertise-dependent. This skill automates expert-level fuzzing workflows.

Source: jthack/ffuf_claude_skill


50. Trail of Bits Security Skills

What it does: Security skills from the leading security research firm: static analysis with CodeQL/Semgrep, variant analysis, code auditing, and vulnerability detection. Industry-grade security patterns.

Why it matters: Trail of Bits is the gold standard in security research. These skills bring their methodology to automated agents.

Source: trailofbits/skills


51. Computer Forensics

What it does: Digital forensics analysis and investigation techniques: evidence collection, timeline reconstruction, file system analysis, and chain-of-custody documentation.

Why it matters: Incident response and forensic analysis require specialized methodology. This skill automates the investigative process.

Source: claude-skills-marketplace


52. Threat Hunting with Sigma Rules

What it does: Uses Sigma detection rules to hunt for threats and analyze security events. Translates human-readable Sigma rules into platform-specific queries for SIEM systems.

Why it matters: Sigma rules are the universal format for threat detection. This skill enables proactive threat hunting across any security stack.

Source: jthack/threat-hunting-with-sigma-rules-skill


53. Metadata Extraction & Analysis

What it does: Extracts and analyzes file metadata for forensic purposes: EXIF data from images, document properties, creation timestamps, author information, and modification histories.

Why it matters: Metadata tells stories that file content doesn't. Critical for security investigations and compliance audits.

Source: claude-skills-marketplace


54. Agentic Security Audit

What it does: Comprehensive security review of agent deployments: prompt injection testing, tool poisoning detection, permission escalation checks, and data exfiltration prevention for multi-agent systems.

Why it matters: As agents gain more capabilities, securing the agents themselves becomes critical. This skill audits agents for the new class of AI-specific vulnerabilities.

Source: OpenClaw Skills


55. Compliance & Regulatory Advisor

What it does: Automates regulatory compliance checking for financial services, healthcare, and data privacy (GDPR, HIPAA, SOC 2). Generates compliance reports and identifies gaps.

Why it matters: Gartner predicts 40% of enterprise apps will feature task-specific AI agents by 2026. Compliance automation is the fastest path to enterprise AI adoption.

Source: Google Cloud Agent Finder Β· Enterprise deployments


7. Business & Marketing

Skills that turn agents into marketing teams, sales assistants, and business strategists.

56. Lead Research Assistant

What it does: Identifies and qualifies high-quality leads by analyzing your product, searching for target companies, and providing actionable outreach strategies with personalized messaging templates.

Why it matters: Lead generation is high-effort, high-value work. This skill automates the research phase and delivers qualified leads ready for outreach.

Source: Composio Awesome Skills


57. Competitive Ads Extractor

What it does: Extracts and analyzes competitors' ads from ad libraries to understand messaging, creative approaches, targeting strategies, and positioning that resonates with their audience.

Why it matters: Competitive intelligence is essential for effective advertising. This skill automates the manual process of monitoring competitor campaigns.

Source: Composio Awesome Skills


58. HubSpot CRM Automation

What it does: Full HubSpot automation: contacts, deals, companies, tickets, email engagement, pipeline management, and workflow triggers. Agents manage the entire sales pipeline.

Why it matters: CRM data entry is the #1 complaint of sales teams. This skill eliminates manual CRM work.

Source: Composio Awesome Skills


59. Salesforce Automation

What it does: Automates Salesforce: custom objects, records, SOQL queries, bulk operations, report generation, and workflow automation.

Why it matters: Salesforce is the enterprise CRM standard. Automating it with agents saves hundreds of hours per sales team per quarter.

Source: Composio Awesome Skills


60. Shopify E-Commerce Automation

What it does: Automates Shopify: products, orders, customers, inventory management, and GraphQL queries. Agents manage storefronts, update pricing, and handle fulfillment.

Why it matters: E-commerce operations are highly repetitive. This skill turns agents into store managers.

Source: Composio Awesome Skills


61. Stripe Payment Automation

What it does: Automates Stripe: charges, customers, products, subscriptions, refunds, invoice generation, and revenue reporting.

Why it matters: Payment operations require both accuracy and speed. This skill handles billing workflows that previously required dedicated ops staff.

Source: Composio Awesome Skills


62. Mailchimp Email Marketing

What it does: Automates Mailchimp: audiences, campaigns, templates, segments, A/B testing, and performance reporting. Agents design, schedule, and analyze email campaigns.

Why it matters: Email marketing is the highest-ROI marketing channel. This skill automates the entire campaign lifecycle.

Source: Composio Awesome Skills


63. LinkedIn Automation

What it does: Automates LinkedIn: posts, profile optimization, company page management, image uploads, comment engagement, and connection outreach.

Why it matters: LinkedIn is the #1 B2B marketing channel. Consistent posting and engagement drives pipeline growth.

Source: Composio Awesome Skills


64. Brand Voice Profile

What it does: Analyzes existing content to extract a brand's unique voice, tone, vocabulary patterns, and writing style. Generates a reusable brand voice guide that other skills can reference.

Why it matters: Brand consistency requires every piece of content to sound like it came from the same author. This skill captures and enforces that voice.

Source: OpenClaw Skills


8. Productivity & Automation

Skills that automate the workflows humans do every day.

65. Google Workspace (GWS) Suite

What it does: Dynamically discovers all Google Workspace APIs (Gmail, Drive, Calendar, Docs, Sheets, Slides, Chat, Admin) and exposes them as a unified interface. Ships with pre-built "recipes": executive assistant, project manager, IT admin, sales team.

Why it matters: 4,900 GitHub stars in 3 days. Any workflow involving copying between Google apps becomes fully automated. Read Gmail, draft responses, update Sheets, create Calendar events, and generate Docs β€” all from a single prompt.

Source: Google Workspace CLI Β· Featured in 10 Must-Have Skills


66. File Organizer

What it does: Intelligently organizes files and folders by understanding context, finding duplicates, suggesting better organizational structures, and batch renaming with consistent patterns.

Why it matters: Digital clutter is universal. This skill turns a chaotic Downloads folder into a well-organized file system.

Source: Composio Awesome Skills


67. Invoice Organizer

What it does: Automatically organizes invoices and receipts for tax preparation: reads files, extracts vendor/amount/date information, and renames consistently. Generates tax-ready summaries.

Why it matters: Tax season document preparation is universally dreaded. This skill automates it completely.

Source: Composio Awesome Skills


68. n8n Workflow Skills

What it does: Enables AI agents to understand and operate n8n automation workflows. Agents can create, modify, debug, and deploy n8n automations.

Why it matters: n8n is one of the most popular open-source automation platforms (422+ integrations). This skill lets agents build and manage automations that connect hundreds of services.

Source: haunchen/n8n-skills


69. Kaizen Continuous Improvement

What it does: Applies continuous improvement methodology with multiple analytical approaches based on Japanese Kaizen philosophy and Lean methodology. Identifies waste, optimizes processes, and tracks improvement metrics.

Why it matters: Process optimization is an ongoing discipline. This skill brings systematic improvement methodology to any workflow.

Source: NeoLabHQ/context-engineering-kit


70. Calendar & Scheduling (Calendly/Cal.com)

What it does: Automates scheduling platforms: event types, bookings, availability windows, scheduling links, and calendar synchronization across Calendly and Cal.com.

Why it matters: Scheduling coordination is one of the most time-consuming daily tasks. This skill eliminates the back-and-forth.

Source: Composio Awesome Skills


71. Tapestry Knowledge Networks

What it does: Interlinks and summarizes related documents into knowledge networks. Creates navigable connections between notes, articles, and reference materials.

Why it matters: Knowledge management is about connections, not just storage. This skill builds the relationships that make knowledge useful.

Source: tapestry-skills


72. Ship-Learn-Next Feedback Loop

What it does: Iterates on what to build or learn next based on feedback loops. Analyzes outcomes of previous work, identifies gaps, and suggests the highest-impact next steps.

Why it matters: The hardest part of productivity is deciding what to work on. This skill uses data to make that decision.

Source: tapestry-skills


73. ADHD Founder Planner

What it does: A productivity system designed specifically for ADHD minds: body doubling support, task breakdown into micro-steps, time estimation with buffer zones, and distraction management protocols.

Why it matters: Standard productivity tools often fail neurodivergent users. This skill adapts planning methodology to how ADHD brains actually work.

Source: OpenClaw Skills


9. Communication & Collaboration

Skills that automate messaging, notifications, and team coordination.

74. Gmail Automation

What it does: Full Gmail lifecycle: send/reply, search, labels, drafts, attachments, thread management, and scheduled sending. Agents manage email like a virtual executive assistant.

Why it matters: Email is still the backbone of business communication. Automating it frees hours per week.

Source: Composio Awesome Skills


75. Slack Automation

What it does: Automates Slack: messages, channels, search, reactions, threads, scheduling, and workflow triggers. Agents participate in channels as active team members.

Why it matters: Slack is where teams coordinate. Agents that operate in Slack can send status updates, answer questions, and trigger workflows without context switching.

Source: Composio Awesome Skills


76. Discord Automation

What it does: Automates Discord: messages, channels, servers, roles, reactions, and community moderation. Agents manage Discord communities.

Why it matters: Discord is the primary community platform for developer tools and gaming. Automated community management scales engagement.

Source: Composio Awesome Skills


77. Microsoft Teams Automation

What it does: Automates Teams: messages, channels, team creation, chat management, and meeting coordination. Agents operate within the Microsoft 365 ecosystem.

Why it matters: Enterprise teams run on Microsoft 365. This skill enables agents to participate in enterprise communication workflows.

Source: Composio Awesome Skills


78. Notion Automation

What it does: Automates Notion: pages, databases, blocks, comments, search, and property management. Agents maintain documentation, wikis, and project tracking.

Why it matters: Notion is the knowledge base of choice for startups and mid-market companies. Agents that manage Notion keep documentation current.

Source: Composio Awesome Skills


79. Jira Automation

What it does: Automates Jira: issues, projects, boards, sprints, JQL queries, and workflow transitions. Agents manage the full software development lifecycle tracking.

Why it matters: Jira is the enterprise standard for project management. Automating ticket creation, assignment, and status updates saves engineering managers hours weekly.

Source: Composio Awesome Skills


80. NotebookLM Integration

What it does: Lets agents chat directly with Google NotebookLM for source-grounded answers based exclusively on uploaded documents. Ensures responses are factual and traceable to specific sources.

Why it matters: Eliminates hallucination risk for document-based Q&A. Agents answer only from verified sources.

Source: PleasePrompto/notebooklm-skill


81. Outline Wiki Management

What it does: Search, read, create, and manage documents in Outline wiki instances (cloud or self-hosted). Agents maintain team wikis and knowledge bases.

Why it matters: Wiki documentation is critical but chronically outdated. Agents that update wikis keep team knowledge current.

Source: sanjay3290/ai-skills


10. DevOps & Infrastructure

Skills for deployment, monitoring, and infrastructure management.

82. GitHub Automation

What it does: Full GitHub lifecycle: issues, PRs, repos, branches, Actions, code search, release management, and automated code review. Agents operate as GitHub-native development partners.

Why it matters: GitHub is the center of modern development. Agents that operate natively in GitHub eliminate context switching between code and project management.

Source: Composio Awesome Skills


83. Vercel Deployment Automation

What it does: Automates Vercel: deployments, projects, domains, environment variables, logs, and preview deployments. Agents manage the deployment pipeline end-to-end.

Why it matters: Deployment should be invisible. This skill makes continuous deployment a background operation managed by agents.

Source: Composio Awesome Skills


84. AWS CDK Skills

What it does: AWS development with CDK best practices, cost optimization, MCP server patterns, and serverless/event-driven architecture patterns. Agents provision and manage cloud infrastructure.

Why it matters: Cloud infrastructure management is the bottleneck for many teams. This skill enables infrastructure-as-code driven by natural language.

Source: zxkane/aws-skills


85. Supabase Automation

What it does: Automates Supabase: SQL queries, table schemas, edge functions, storage, authentication, and real-time subscriptions. Full backend management.

Why it matters: Supabase is the leading open-source Firebase alternative. This skill lets agents manage the entire backend stack.

Source: Composio Awesome Skills


86. Sentry Error Monitoring

What it does: Automates Sentry: issues, events, projects, releases, and alert management. Agents monitor errors, prioritize issues, and suggest fixes.

Why it matters: Error monitoring is reactive by default. This skill makes it proactive β€” agents detect, diagnose, and fix errors automatically.

Source: Composio Awesome Skills


87. Datadog Monitoring

What it does: Automates Datadog: monitors, dashboards, metrics, incidents, and alert management. Agents oversee infrastructure health and respond to incidents.

Why it matters: Observability is table stakes for production systems. Agents that manage monitoring reduce mean-time-to-detection.

Source: Composio Awesome Skills


88. Docker & Container Management

What it does: Manages Docker containers, compose stacks, and container orchestration. Includes skills for building images, debugging container issues, and optimizing Dockerfiles.

Why it matters: Containers are the deployment unit of modern software. This skill ensures agents manage containerized deployments correctly.

Source: OpenClaw Skills


89. CI/CD Pipeline Automation (CircleCI/GitLab)

What it does: Automates CI/CD pipelines: configuration, workflow management, job orchestration, and deployment triggers across CircleCI, GitLab CI, and GitHub Actions.

Why it matters: CI/CD is the backbone of modern delivery. Agents that manage pipelines accelerate the release cycle.

Source: Composio Awesome Skills


11. Creative & Media

Skills for visual content, video, audio, and multimedia creation.

90. Remotion: Programmatic Video Creation

What it does: Translates natural language into working Remotion (React-based video framework) components. Agents create product demos, release announcements, explainer videos, and animated content β€” all from code.

Why it matters: Video production traditionally requires different tools, teams, and timelines. Remotion makes any developer capable of video production without leaving their code editor. Launched January 2026.

Source: remotion/agent-skills Β· Featured in 10 Must-Have Skills


91. Image Generation (Imagen)

What it does: Generates images using Google Gemini's image generation API for UI mockups, icons, illustrations, and visual assets. Agents create visual content on demand.

Why it matters: Visual asset creation is a bottleneck in every design workflow. This skill makes image generation a natural part of the development process.

Source: sanjay3290/ai-skills


92. Slack GIF Creator

What it does: Creates animated GIFs optimized for Slack's size constraints with composable animation primitives, custom text, effects, and branding. 8.5k+ downloads.

Why it matters: Team communication increasingly relies on visual content. Custom GIFs improve engagement and team culture.

Source: Anthropic Official Skills


93. Algorithmic Art

What it does: Generates stunning generative art using p5.js with seeded randomness, flow fields, particle systems, and mathematical patterns. Produces unique, reproducible visual art from code.

Why it matters: 12k+ downloads. Generative art is a growing medium with applications in NFTs, branding, and creative expression. This skill makes it accessible to anyone.

Source: Anthropic Official Skills


94. Image Enhancer

What it does: Improves image and screenshot quality: resolution enhancement, sharpness improvement, noise reduction, and clarity optimization for professional use.

Why it matters: Screenshots and images often need cleanup before professional use. This skill automates the enhancement process.

Source: Composio Awesome Skills


95. Video Downloader

What it does: Downloads videos from YouTube and other platforms for offline viewing, editing, or archival with support for various formats and quality options.

Why it matters: Content archival and offline access are common workflow needs. This skill handles the full download pipeline.

Source: Composio Awesome Skills


96. Audio Transcription & TTS

What it does: Transcribes audio files using services like AssemblyAI, Whisper, and Deepgram. Also generates speech from text using ElevenLabs and other TTS providers.

Why it matters: Audio is an underutilized content format. Transcription makes audio searchable; TTS makes text accessible.

Source: OpenClaw Skills β€” includes assemblyai-transcribe, deepgram, elevenlabs-tts


97. 3D Model Generation

What it does: Generates 3D models from text descriptions or images using AI services. Supports export to common formats for use in games, AR/VR, and product visualization.

Why it matters: 3D content creation is expensive and time-consuming. AI-powered generation democratizes access to 3D assets.

Source: OpenClaw Skills β€” includes 3d-model-generation, 3d-cog


12. Enterprise & Industry-Specific

Specialized skills for vertical industries and enterprise-scale operations.

98. Loki Mode: Multi-Agent Startup System

What it does: Orchestrates 37 AI agents across 6 swarms to build, deploy, and operate a complete startup β€” from product requirements document to revenue. Includes agents for product design, engineering, marketing, sales, ops, and finance.

Why it matters: The most ambitious agent skill ever created. Demonstrates the potential of multi-agent orchestration for end-to-end business operations.

Source: asklokesh/claudeskill-loki-mode


99. Scientific Research Skills

What it does: Comprehensive collection of scientific skills for working with specialized libraries and databases: ArXiv search, PubMed queries, chemical database access, molecular visualization, and statistical analysis.

Why it matters: Scientific research requires domain-specific tools and conventions. These skills give agents access to the specialized infrastructure researchers depend on.

Source: K-Dense-AI/claude-scientific-skills


100. Google Workspace Enterprise Suite

What it does: Complete Google Workspace integration: Gmail, Calendar, Chat, Docs, Sheets, Slides, and Drive with cross-platform OAuth. The most comprehensive enterprise productivity automation available.

Why it matters: For organizations running on Google Workspace, this skill suite eliminates the gap between "agent that can code" and "agent that can operate." Every copy-paste workflow between Google apps becomes automated.

Source: sanjay3290/ai-skills Β· Google Workspace CLI


Honorable Mentions

These didn't make the top 100 but deserve recognition for innovation and impact:

Skill Category Why It's Notable
Expo Skills Mobile Dev Official Expo team skills for React Native development
shadcn/ui Frontend Component library context + pattern enforcement
Skill Seekers Meta Converts any documentation website into a skill in minutes
Figma Automation Design Full Figma API integration: files, components, comments
Zendesk Automation Support Enterprise customer support automation
Airtable Automation Data No-code database management and workflow triggers
DocuSign Automation Legal Document signing and management automation
PostHog Automation Analytics Product analytics, feature flags, and A/B testing
Smart Home / IoT IoT HomeAssistant, IKEA, Govee, Hue light control
Apple Ecosystem Platform Apple Notes, Reminders, Calendar, Photos, Music, FindMy

How to Get Started

Quick Install Cheat Sheet

# Install the full Antigravity skill library (1,234+ skills)
npx antigravity-awesome-skills --claude

# Install official Anthropic skills individually
npx skills add anthropics/claude-code --skill frontend-design
npx skills add anthropics/claude-code --skill simplify

# Install community skills
npx skills add <github-org>/<repo> --skill <skill-name>

# List installed skills
npx skills list

For Web Developers:
Frontend Design + Web Artifacts Builder + Code Reviewer + Browser Use + Vercel Automation

For Data Engineers:
Agent-SQL-Pro + CSV Summarizer + PostgreSQL + Google Analytics + D3.js Visualization

For Content Teams:
Content Research Writer + SEO Agent + Blog Writer + Brand Voice + Mailchimp

For Security Teams:
Shannon Pentester + Trail of Bits + FFUF Fuzzing + Threat Hunting + Agentic Security Audit

For Enterprise Teams:
Google Workspace + Salesforce + Jira + Slack + Notion + Compliance Advisor


The Bigger Picture

According to Gartner, 40% of enterprise applications will feature task-specific AI agents by the end of 2026, up from less than 5% in 2025. McKinsey reports that AI-related skills are the fastest-growing category in demand. PwC's 2026 AI Predictions note that 88% of senior executives plan to increase AI-related budgets.

The shift is clear: raw AI models are commodity infrastructure. Skills are the differentiation layer. The agent that knows how to run a security audit, manage a CRM pipeline, and generate architecture diagrams from natural language isn't just faster β€” it's categorically more capable.

The 100 skills above represent the current state of the art. The ecosystem is growing at ~200 new skills per week. By the end of 2026, the question won't be "should we use agent skills?" β€” it will be "which skills are we missing?"


Sources & Further Reading


Last updated: April 16, 2026 Β· AGNT Research Team
This article is continuously updated as new skills emerge. Have a skill that should be on this list? Submit it here.