{"id":74253,"date":"2026-04-08T21:00:00","date_gmt":"2026-04-08T13:00:00","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=74253"},"modified":"2026-04-02T18:32:21","modified_gmt":"2026-04-02T10:32:21","slug":"ai-agent-skills-explained-guide","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/ai-agent-skills-explained-guide\/","title":{"rendered":"What Are AI Agent Skills and Where to Find Them"},"content":{"rendered":"<p>AI agents are getting more capable, and one reason is the rise of <strong>AI agent skills<\/strong>. These skills let an agent interact with apps, websites, and files so it can do more than just answer questions.<\/p>\n<figure>\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/skills-cover.jpg\" alt=\"AI agent skills overview\" width=\"1000\" height=\"600\"><figcaption>AI agent skills give assistants the extra instructions and tools needed to handle real tasks.<\/figcaption><\/figure>\n<p>In this article, we\u2019ll look at what AI agent skills are, how they work, and where you can find them.<\/p>\n<h2 id=\"what-is-agent-skill\">What Is an AI Agent Skill?<\/h2>\n<p>Without skills, AI can usually explain how to do something. With skills, it can go a step further and help do the work.<\/p>\n<p>Let\u2019s say you ask AI how to build <strong>an SEO-optimized landing page<\/strong>. It can explain the process, but <strong>it can\u2019t build the page on its own<\/strong>.<\/p>\n<p>Give it the right skills, tools, scripts, and instructions, though, and it can start building the page and optimizing it for search.<\/p>\n<p>So instead of being just a conversation partner, skills make AI much more useful when you want real tasks completed.<\/p>\n<h2 id=\"creating-a-skill\">Creating a Skill<\/h2>\n<p>A skill is usually a small collection of files stored in a specific folder, with a main file that gives the AI agent context about what the skill does and how it should be used.<\/p>\n<p>To create a skill, you\u2019ll usually start with the main file, <strong>SKILL.md<\/strong>. This file defines the <strong>name<\/strong>, <strong>description<\/strong>, and instructions that tell the AI how to perform the task.<\/p>\n<p>For example, let\u2019s say you want to automatically generate a <strong>readme.txt<\/strong> file for a WordPress plugin whenever you\u2019re about to release a new version. You can start by creating the file and defining its name and description.<\/p>\n<pre>\n---\nname: create-wordpress-readme\ndescription: 'Create a readme.txt file for WordPress plugin'\n---\n<\/pre>\n<p>Next, you add instructions describing how the file should be generated.<\/p>\n<p>In this case, the <strong>readme.txt<\/strong> file would be based on the <strong>README.md<\/strong> file. Since both files follow different formats and requirements, the AI needs to adapt the content to match the WordPress <strong>readme.txt<\/strong> specification. You can also include instructions on where to find important details such as the plugin version, compatibility, and other metadata.<\/p>\n<pre>\n## Instructions\n- Read the README.md and copy the main description and these sections: \"Features\" and \"Installation\" over.\n- Extract the list of contributors from the \"contributors\" field in package.json file.\n- Extract the version from the \"version\" field in package.json file.\n- Extract the changelog from the CHANGELOG.md and convert the format to be used in readme.txt file.\n- Extract the \"Requires PHP\", \"Tested up to\", and \"Requires at least\" from the phpcs.xml file.\n- Make sure the readme.txt file follows the guideline in https:\/\/developer.wordpress.org\/plugins\/wordpress-org\/how-your-readme-txt-works\/\n<\/pre>\n<p>Once everything is ready, place the skill in the following directory structure.<\/p>\n<pre>\nskills\n\\-- create-wordpress-readme\n    \\-- SKILL.md\n<\/pre>\n<p>That\u2019s the basic structure of a skill. Many AI agents already support skills, including <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/code.claude.com\/docs\/en\/overview\">Claude Code<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/cursor.com\">Cursor<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/features\/copilot\">GitHub Copilot<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/features\/copilot\">Codex CLI<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/features\/copilot\">Gemini CLI<\/a>, and <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/features\/copilot\">OpenCode<\/a>.<\/p>\n<p>If you\u2019re using any of these applications, you can start with a prompt, see how the skill behaves, and refine the instructions until it works the way you want.<\/p>\n<h2 id=\"installing-skills\">Installing Pre-Made Skills<\/h2>\n<p>Creating a skill from scratch takes time because you need to set up files, scripts, and instructions that AI can reliably follow. The good news is that you don\u2019t always have to build one yourself. There are plenty of pre-made skills you can install and use right away.<\/p>\n<p>Installing a skill is simple. You can do it with a single <code>npx<\/code> command:<\/p>\n<pre>\nnpx skills add &lt;owner\/repo&gt; --skill &lt;skill-name&gt;\n<\/pre>\n<p>If you\u2019re a developer, designer, or marketer, here are some useful collections worth checking out.<\/p>\n<h3 id=\"anthropic-skills\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/anthropics\/skills\">Anthropic Skills<\/a><\/h3>\n<figure>\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/anthropic-skills.jpg\" alt=\"Anthropic Skills repository homepage\" width=\"1000\" height=\"600\"><figcaption>Anthropic\u2019s public skills collection includes both ready-made tools and a skill-creator to help you build your own.<\/figcaption><\/figure>\n<p><strong>Anthropic Skills<\/strong> is a public collection of agent skills. It includes a core <em>skill-creator<\/em> tool for generating new skills, along with several ready-to-use skills for common tasks such as:<\/p>\n<ul>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/anthropics\/skills\/blob\/main\/skills\/pdf\">pdf<\/a>: Adds the ability for AI to work with PDF files, including reading them, extracting content, merging multiple files, adding watermarks, and more.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/anthropics\/skills\/tree\/main\/skills\/docx\">docx<\/a>: Adds the ability for AI to create, edit, or modify Microsoft Word documents.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/anthropics\/skills\/tree\/main\/skills\/pptx\">pptx<\/a>: Helps create and edit presentation slides or pitch decks in Microsoft PowerPoint.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/anthropics\/skills\/tree\/main\/skills\/xlsx\">xlsx<\/a>: Helps create and manage spreadsheets, add data columns, apply formatting, and more in Microsoft Excel.<\/li>\n<\/ul>\n<p>To install a skill from the Anthropic collection, run:<\/p>\n<pre>\nnpx skills add https:\/\/github.com\/anthropics\/skills --skill &lt;skill-name&gt;\n<\/pre>\n<h3 id=\"stitch-skills\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/google-labs-code\/stitch-skills\">Stitch Skills<\/a><\/h3>\n<figure>\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/stitch-skills.jpg\" alt=\"Google Stitch skills repository\" width=\"1000\" height=\"600\"><figcaption>Stitch Skills focuses on design and front-end workflows, especially for teams building interfaces faster.<\/figcaption><\/figure>\n<p>This collection is designed for <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/stitch.withgoogle.com\">Google Stitch<\/a>. It includes several pre-made skills that can help you work faster on app and website design projects. These skills include:<\/p>\n<ul>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/google-labs-code\/stitch-skills\/tree\/main\/skills\/design-md\">design-md<\/a>: Reviews your Stitch project and generates a DESIGN.md file that documents the design system, such as colors, fonts, and design rules, so your team has a clear reference.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/google-labs-code\/stitch-skills\/tree\/main\/skills\/shadcn-ui\">shadcn-ui<\/a>: Helps you work with <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/ui.shadcn.com\/docs\/components\">shadcn\/ui components<\/a> more efficiently. It can guide you in finding components, installing them, customizing styles, and integrating them into React apps using recommended best practices.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/google-labs-code\/stitch-skills\/tree\/main\/skills\/react-components\">react-components<\/a>: Transforms Stitch screens into ready-to-use React components. It keeps styles consistent with design tokens and makes sure the generated components follow best practices.<\/li>\n<\/ul>\n<p>To install a skill from the Google Stitch collection, run:<\/p>\n<pre>\nnpx skills add https:\/\/github.com\/google-labs-code\/stitch-skills --skill &lt;skill-name&gt;\n<\/pre>\n<h3 id=\"wordpress-skills\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/wordpress\/agent-skills\">WordPress Skills<\/a><\/h3>\n<figure>\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/wordpress-skills.jpg\" alt=\"WordPress agent skills repository\" width=\"1000\" height=\"600\"><figcaption>The WordPress collection is aimed at coding agents that need deeper knowledge of plugins, APIs, and theme work.<\/figcaption><\/figure>\n<p>This WordPress Agent Skills collection helps AI coding agents work more effectively with WordPress.<\/p>\n<p>This collection provides knowledge and instructions for common tasks like building plugins or themes, integrating with the WordPress REST API, and running tests. Here are some of the skills you can install from it:<\/p>\n<ul>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/WordPress\/agent-skills\/blob\/trunk\/skills\/wp-block-development\">wp-block-development<\/a>: Helps AI build WordPress Gutenberg blocks, including setting up <code>block.json<\/code>, registering blocks, managing attributes, and handling dynamic rendering.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/WordPress\/agent-skills\/tree\/trunk\/skills\/wp-rest-api\">wp-rest-api<\/a>: Helps AI understand and build <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/developer.wordpress.org\/rest-api\/extending-the-rest-api\/routes-and-endpoints\/\">WordPress REST API endpoints<\/a>, including registering routes, handling authentication and permissions, validating requests, and exposing custom post types or metadata.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/WordPress\/agent-skills\/blob\/trunk\/skills\/wp-plugin-development\">wp-plugin-development<\/a>: Helps AI develop WordPress plugins, including plugin structure, hooks, admin settings pages, data storage, scheduled tasks, security best practices, and release packaging.<\/li>\n<\/ul>\n<p>To install a skill from the WordPress collection, run:<\/p>\n<pre>\nnpx skills add https:\/\/github.com\/wordpress\/agent-skills --skill &lt;skill-name&gt;\n<\/pre>\n<p>Or you can install directly from the source into your project repository with the following commands:<\/p>\n<pre>\ngit clone https:\/\/github.com\/WordPress\/agent-skills.git\ncd agent-skills\nnode shared\/scripts\/skillpack-build.mjs --clean\nnode shared\/scripts\/skillpack-install.mjs --dest=..\/your-wp-project --targets=codex,vscode,claude,cursor\n<\/pre>\n<h3 id=\"laravel-skills\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/skills.laravel.cloud\">Laravel Skills<\/a><\/h3>\n<figure>\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/laravel-skills.jpg\" alt=\"Laravel Skills website homepage\" width=\"1000\" height=\"600\"><figcaption>Laravel Skills gives PHP and Laravel developers a public directory of reusable skills to install and share.<\/figcaption><\/figure>\n<p>A public directory created by the Laravel team where developers can find and share AI agent skills for Laravel and PHP. These skills help AI agents better understand Laravel tasks such as working with Eloquent, building APIs, or writing tests.<\/p>\n<p>You can browse the available skills on the website and install them easily using Laravel Boost. Here are some of our favourite skills in the collection:<\/p>\n<ul>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/skills.laravel.cloud\/skills\/filament\">filament<\/a>: Helps AI work better with FilamentPHP.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/skills.laravel.cloud\/skills\/laravel-specialist\">laravel-specialist<\/a>: Helps AI work with Laravel 10+ projects, including models, authentication, queues, APIs, Livewire components, and testing.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/skills.laravel.cloud\/skills\/laravel-permission-developments\">laravel-permission-developments<\/a>: Helps AI manage roles and permissions in Laravel using Spatie\u2019s <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/spatie.be\/laravel-permission\">Laravel Permission<\/a> package, making it easier to implement secure access control in your application.<\/li>\n<\/ul>\n<p>Unlike the other skill packages, you can install Laravel Skills with the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/laravel.com\/ai\/boost\">Laravel Boost command<\/a>.<\/p>\n<pre>\nphp artisan boost:add-skill &lt;owner\/repo&gt; --skill &lt;skill-name&gt;\n<\/pre>\n<p>Let\u2019s say you want to install the <strong>laravel-permission-developments<\/strong> skill. You can run this command in your Laravel project directory:<\/p>\n<pre>\nphp artisan boost:add-skill spatie\/laravel-permission --skill laravel-permission-developments\n<\/pre>\n<h3 id=\"marketing-skills\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.marketing-skills.com\">Marketing Skills<\/a><\/h3>\n<figure>\n    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/marketing-skills.jpg\" alt=\"Marketing Skills website homepage\" width=\"1000\" height=\"600\"><figcaption>Marketing Skills packages repeatable SEO, copywriting, and growth workflows into reusable agent skills.<\/figcaption><\/figure>\n<p>This collection provides specialized skills designed to help AI agents perform marketing tasks. It focuses on areas such as conversion optimization, copywriting, SEO, analytics, and growth engineering.<\/p>\n<p>These skills are especially useful for marketers, founders, and developers who want to use AI to improve campaigns, analyze performance data, and automate common marketing workflows.<\/p>\n<p>Here are some of the skills available in this collection:<\/p>\n<ul>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/coreyhaines31\/marketingskills\/blob\/main\/skills\/cold-email\">cold-email<\/a>: Helps AI write B2B cold emails and follow-up sequences that get replies, including subject lines, opening hooks, body copy, CTAs, personalization, and multi-step outreach.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/coreyhaines31\/marketingskills\/blob\/main\/skills\/ai-seo\">ai-seo<\/a>: Helps AI optimize content to appear in AI search results and AI-generated answers, increasing the odds of being cited by tools like ChatGPT, Perplexity, and other AI assistants.<\/li>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/coreyhaines31\/marketingskills\/blob\/main\/skills\/copywriting\">copywriting<\/a>: Helps AI write or improve website marketing copy, including headlines, value propositions, and CTAs for pages like homepages, landing pages, and product pages.<\/li>\n<\/ul>\n<h2 id=\"wrapping-up\">Wrapping Up<\/h2>\n<p>Skills provide a structured way to extend the capabilities of AI agents, allowing them to handle more complex and domain-specific tasks with better accuracy.<\/p>\n<p>As the ecosystem grows, these shared skills will likely play an important role in making AI agents more specialized and helping people automate tasks more effectively.<\/p>\n<p>If you\u2019d like to learn more about building and integrating your own skills, this guide from Anthropic is a good place to start:<\/p>\n<ul>\n<li><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/resources.anthropic.com\/hubfs\/The-Complete-Guide-to-Building-Skill-for-Claude.pdf\">The Complete Guide to Building Skills for Claude<\/a><\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>AI agent skills give assistants the instructions and tools to do real work. Here&#8217;s what they are and where to find ready-made ones.<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3393],"tags":[],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>What Are AI Agent Skills and Where to Find Them - Hongkiat<\/title>\n<meta name=\"description\" content=\"AI agent skills give assistants the instructions and tools to do real work. Here&#039;s what they are and where to find ready-made ones.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/?p=74253\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Are AI Agent Skills and Where to Find Them\" \/>\n<meta property=\"og:description\" content=\"AI agent skills give assistants the instructions and tools to do real work. Here&#039;s what they are and where to find ready-made ones.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/?p=74253\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-08T13:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/skills-cover.jpg\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"What Are AI Agent Skills and Where to Find Them\",\"datePublished\":\"2026-04-08T13:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253\"},\"wordCount\":1325,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/ai-agent-skills-explained-guide\\\/skills-cover.jpg\",\"articleSection\":[\"Toolkit\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253\",\"name\":\"What Are AI Agent Skills and Where to Find Them - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/ai-agent-skills-explained-guide\\\/skills-cover.jpg\",\"datePublished\":\"2026-04-08T13:00:00+00:00\",\"description\":\"AI agent skills give assistants the instructions and tools to do real work. Here's what they are and where to find ready-made ones.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/ai-agent-skills-explained-guide\\\/skills-cover.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/ai-agent-skills-explained-guide\\\/skills-cover.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?p=74253#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What Are AI Agent Skills and Where to Find Them\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What Are AI Agent Skills and Where to Find Them - Hongkiat","description":"AI agent skills give assistants the instructions and tools to do real work. Here's what they are and where to find ready-made ones.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/?p=74253","og_locale":"en_US","og_type":"article","og_title":"What Are AI Agent Skills and Where to Find Them","og_description":"AI agent skills give assistants the instructions and tools to do real work. Here's what they are and where to find ready-made ones.","og_url":"https:\/\/www.hongkiat.com\/blog\/?p=74253","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2026-04-08T13:00:00+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/skills-cover.jpg","type":"","width":"","height":""}],"author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"What Are AI Agent Skills and Where to Find Them","datePublished":"2026-04-08T13:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253"},"wordCount":1325,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/skills-cover.jpg","articleSection":["Toolkit"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253","url":"https:\/\/www.hongkiat.com\/blog\/?p=74253","name":"What Are AI Agent Skills and Where to Find Them - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/skills-cover.jpg","datePublished":"2026-04-08T13:00:00+00:00","description":"AI agent skills give assistants the instructions and tools to do real work. Here's what they are and where to find ready-made ones.","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/?p=74253"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/skills-cover.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/ai-agent-skills-explained-guide\/skills-cover.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/?p=74253#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What Are AI Agent Skills and Where to Find Them"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-jjD","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74253","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=74253"}],"version-history":[{"count":1,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74253\/revisions"}],"predecessor-version":[{"id":74254,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74253\/revisions\/74254"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=74253"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=74253"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=74253"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=74253"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}