
{"id":134410,"date":"2026-01-27T13:21:49","date_gmt":"2026-01-27T05:21:49","guid":{"rendered":"https:\/\/vertu.com\/?p=134410"},"modified":"2026-01-27T13:21:49","modified_gmt":"2026-01-27T05:21:49","slug":"claude-skills-why-they-might-be-a-bigger-deal-than-mcp","status":"publish","type":"post","link":"https:\/\/legacy.vertu.com\/ar\/%d9%86%d9%85%d8%b7-%d8%a7%d9%84%d8%ad%d9%8a%d8%a7%d8%a9\/claude-skills-why-they-might-be-a-bigger-deal-than-mcp\/","title":{"rendered":"Claude Skills: Why They Might Be a Bigger Deal Than MCP"},"content":{"rendered":"<h1><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone size-full wp-image-134398\" src=\"https:\/\/vertu-website-oss.vertu.com\/2026\/01\/Claude-Skills.png\" alt=\"\" width=\"814\" height=\"533\" srcset=\"https:\/\/vertu-website-oss.vertu.com\/2026\/01\/Claude-Skills.png 814w, https:\/\/vertu-website-oss.vertu.com\/2026\/01\/Claude-Skills-300x196.png 300w, https:\/\/vertu-website-oss.vertu.com\/2026\/01\/Claude-Skills-768x503.png 768w, https:\/\/vertu-website-oss.vertu.com\/2026\/01\/Claude-Skills-18x12.png 18w, https:\/\/vertu-website-oss.vertu.com\/2026\/01\/Claude-Skills-600x393.png 600w, https:\/\/vertu-website-oss.vertu.com\/2026\/01\/Claude-Skills-64x42.png 64w\" sizes=\"(max-width: 814px) 100vw, 814px\" \/><\/h1>\n<h2>What Are Claude Skills and Why Do They Matter?<\/h2>\n<p>Claude Skills represent a breakthrough approach to extending AI capabilities through simple Markdown files containing instructions, scripts, and resources that Claude loads only when needed for specific tasks. Unlike the complex Model Context Protocol (MCP) that requires extensive protocol specifications covering hosts, clients, servers, and multiple transports, Skills operate on an elegantly simple principle: drop a Markdown file with YAML metadata and optional scripts into a folder, and Claude automatically knows how to use it. This token-efficient design means each skill consumes only dozens of tokens rather than the tens of thousands required by protocols like GitHub's MCP implementation. Tech expert Simon Willison argues that Skills may be &#8220;a bigger deal than MCP&#8221; precisely because of this simplicity\u2014they harness LLMs' natural ability to understand text instructions while relying on coding environments to handle execution, making them far easier to create, share, and implement than complex protocol-based solutions.<\/p>\n<h2>The Fundamental Concept: Simplicity as Power<\/h2>\n<h3>What Makes a Skill<\/h3>\n<p>Skills are conceptually straightforward, which is precisely their strength:<\/p>\n<p><strong>Core Component<\/strong>: A Markdown file (<code>SKILL.md<\/code>) containing instructions explaining how to perform specific tasks<\/p>\n<p><strong>Optional Additions<\/strong>:<\/p>\n<ul>\n<li>Supporting documents providing reference information<\/li>\n<li>Pre-written scripts the model can execute to accomplish tasks<\/li>\n<li>Example code demonstrating best practices<\/li>\n<li>Resource files necessary for task completion<\/li>\n<\/ul>\n<p><strong>Frontmatter Metadata<\/strong>: Brief YAML descriptions that allow Claude to understand when each skill is relevant without loading the full content<\/p>\n<p>This architecture achieves remarkable token efficiency. At session start, Claude scans available skills and reads only the short frontmatter explanations\u2014consuming just a few dozen tokens per skill. Full details load only when users request tasks requiring that specific skill.<\/p>\n<h3>The Token Efficiency Advantage<\/h3>\n<p>Token consumption has emerged as one of MCP's most significant limitations. GitHub's official MCP implementation alone famously consumes tens of thousands of context tokens. Add a few more MCPs, and little space remains for the LLM to perform useful work.<\/p>\n<p>Skills solve this problem elegantly:<\/p>\n<ul>\n<li><strong>Initial Load<\/strong>: Dozens of tokens per skill (frontmatter only)<\/li>\n<li><strong>Active Use<\/strong>: Full content loads only when needed<\/li>\n<li><strong>Scalability<\/strong>: Hundreds of skills can exist without consuming significant context<\/li>\n<li><strong>Progressive Disclosure<\/strong>: Information appears precisely when relevant<\/li>\n<\/ul>\n<h2>Real-World Example: The Slack GIF Creator Skill<\/h2>\n<h3>Metadata and Discovery<\/h3>\n<p>Anthropic's <a href=\"https:\/\/github.com\/anthropics\/skills\/blob\/main\/slack-gif-creator\/SKILL.md\" target=\"_blank\" rel=\"noopener\">slack-gif-creator skill<\/a> demonstrates the system in action. Its frontmatter reads:<\/p>\n<blockquote><p>&#8220;Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like &#8216;make me a GIF for Slack of X doing Y'.&#8221;<\/p><\/blockquote>\n<p>This concise description enables Claude to recognize when the skill is relevant without consuming significant tokens.<\/p>\n<h3>Practical Testing<\/h3>\n<p>Simon Willison tested this skill in the Claude mobile web app using Sonnet 4.5:<\/p>\n<p><strong>Setup<\/strong>:<\/p>\n<ol>\n<li>Enabled slack-gif-creator skill in Claude settings<\/li>\n<li>Issued prompt: &#8220;Make me a gif for slack about how Skills are way cooler than MCPs&#8221;<\/li>\n<\/ol>\n<p><strong>Result<\/strong>: Claude generated a complete animated GIF (admittedly &#8220;almost epilepsy inducing&#8221; according to Willison, but functional)<\/p>\n<h3>Generated Code Analysis<\/h3>\n<p>The Python script Claude wrote demonstrates several clever patterns:<\/p>\n<pre><code class=\"language-python\"># Skill directory added to Python path for imports\r\nimport sys\r\nsys.path.insert(0, '\/mnt\/skills\/examples\/slack-gif-creator')\r\n\r\nfrom PIL import Image, ImageDraw, ImageFont\r\n# Leveraging skill's pre-built utilities\r\nfrom core.gif_builder import GIFBuilder\r\n\r\n# ... GIF construction code ...\r\n\r\n# Saving with optimization\r\ninfo = builder.save('\/mnt\/user-data\/outputs\/skills_vs_mcps.gif', \r\n                    num_colors=128, \r\n                    optimize_for_emoji=False)\r\n\r\n# Built-in validation for Slack's 2MB limit\r\npasses, check_info = check_slack_size('\/mnt\/user-data\/outputs\/skills_vs_mcps.gif', \r\n                                       is_emoji=False)\r\nif passes:\r\n    print(\"\u2713 Ready for Slack!\")\r\nelse:\r\n    print(f\"\u26a0 File size: {check_info['size_kb']:.1f} KB (limit: {check_info['limit_kb']} KB)\")\r\n<\/code><\/pre>\n<p><strong>Key Insights<\/strong>:<\/p>\n<ul>\n<li>Skills can include helper libraries and utilities<\/li>\n<li>Built-in validation functions enable iterative improvement<\/li>\n<li>If initial output exceeds size limits, the model can automatically retry with different parameters<\/li>\n<\/ul>\n<h2>The Critical Dependency: Coding Environments<\/h2>\n<h3>Why Skills Need Execution Environments<\/h3>\n<p>The skills mechanism operates <strong>entirely dependent<\/strong> on the model having:<\/p>\n<ul>\n<li>Access to a filesystem for reading skill files<\/li>\n<li>Tools to navigate directory structures<\/li>\n<li>Ability to execute commands and scripts<\/li>\n<li>Writable output locations for generated files<\/li>\n<\/ul>\n<p>This requirement represents the biggest difference between Skills and previous LLM capability expansion attempts like MCP and ChatGPT Plugins.<\/p>\n<h3>Historical Context<\/h3>\n<p>This pattern has precedents:<\/p>\n<ul>\n<li><strong>ChatGPT Code Interpreter<\/strong> (early 2023): First major example of giving LLMs filesystem and execution access<\/li>\n<li><strong>Cursor, Claude Code, Codex CLI, Gemini CLI<\/strong>: Extended the pattern to local machines<\/li>\n<\/ul>\n<h3>The Power-Safety Tradeoff<\/h3>\n<p>The coding environment dependency is significant, but it unlocks enormous new capabilities. However, this creates urgent security challenges:<\/p>\n<p><strong>The Safety Imperative<\/strong>: We need robust sandboxing mechanisms ensuring that attacks like prompt injections are limited to acceptable damage levels.<\/p>\n<p>The word &#8220;safe&#8221; in &#8220;safe coding environments&#8221; does heavy lifting. Without proper isolation, malicious skills or compromised prompts could cause serious harm.<\/p>\n<h2>Claude Code: The Misnamed General Agent<\/h2>\n<h3>Beyond Coding: General Computer Automation<\/h3>\n<p>Simon Willison argues that <a href=\"https:\/\/www.claude.com\/product\/claude-code\" target=\"_blank\" rel=\"noopener\">Claude Code<\/a> suffers from poor naming. It's not merely a coding tool\u2014it's a <strong>general agent<\/strong> capable of automating anything achievable by typing commands into a computer.<\/p>\n<p>Skills make this reality obvious and explicit. With appropriate skills, Claude Code can:<\/p>\n<ul>\n<li>Analyze census data and identify newsworthy patterns<\/li>\n<li>Scrape websites and extract structured information<\/li>\n<li>Generate reports combining multiple data sources<\/li>\n<li>Publish visualizations and interactive dashboards<\/li>\n<li>Automate complex multi-step workflows<\/li>\n<\/ul>\n<h3>Data Journalism Example<\/h3>\n<p>Consider a skill collection for data journalism:<\/p>\n<p><strong>Census Data Skill<\/strong>: Instructions on accessing US census data APIs and understanding data structure<\/p>\n<p><strong>Data Loading Skill<\/strong>: Guidance on importing various formats into SQLite or DuckDB using Python libraries<\/p>\n<p><strong>Publishing Skill<\/strong>: Methods for publishing data as Parquet files in S3 or tables on Datasette Cloud<\/p>\n<p><strong>Story Finding Skill<\/strong>: Experienced reporter advice on discovering interesting narratives in datasets<\/p>\n<p><strong>Visualization Skill<\/strong>: Best practices for creating clean, readable D3 visualizations<\/p>\n<p><strong>Result<\/strong>: A &#8220;data journalism agent&#8221; capable of discovering and publishing stories from fresh census data drops\u2014built entirely from Markdown files and example scripts.<\/p>\n<p>The potential applications are dizzying. Any domain-specific workflow can be captured in skills and immediately leveraged by the AI.<\/p>\n<h2>Skills vs. MCP: A Philosophical Divide<\/h2>\n<h3>The MCP Complexity Problem<\/h3>\n<p>Model Context Protocol attracted enormous buzz since its November 2024 release. Every company recognized they needed an &#8220;AI strategy,&#8221; and building or announcing MCP implementation provided an easy checkbox.<\/p>\n<p>However, limitations have emerged:<\/p>\n<p><strong>Token Consumption<\/strong>: GitHub's official MCP alone consumes tens of thousands of tokens, leaving little room for actual work<\/p>\n<p><strong>Complexity Overhead<\/strong>: MCP is a comprehensive protocol specification covering:<\/p>\n<ul>\n<li>Hosts and clients<\/li>\n<li>Servers and resources<\/li>\n<li>Prompts and tools<\/li>\n<li>Sampling mechanisms<\/li>\n<li>Multiple transports (stdio, streamable HTTP, SSE)<\/li>\n<li>Roots and elicitation patterns<\/li>\n<\/ul>\n<p><strong>Implementation Burden<\/strong>: Each MCP server requires significant engineering effort to build and maintain<\/p>\n<h3>The CLI Tool Alternative<\/h3>\n<p>Willison's interest in MCPs waned after embracing coding agents seriously. Almost everything achievable with an MCP can be handled by a CLI tool instead.<\/p>\n<p><strong>Key Insight<\/strong>: LLMs already know how to call <code>cli-tool --help<\/code>, meaning you don't spend many tokens describing usage\u2014the model figures it out when needed.<\/p>\n<p>Skills extend this advantage: no need to implement new CLI tools. Drop a Markdown file describing the task, add helper scripts only if they improve reliability or efficiency.<\/p>\n<h3>Why Simplicity Wins<\/h3>\n<p>Some observers dismiss Skills as &#8220;so simple they're hardly a feature at all.&#8221; This criticism misses the point entirely.<\/p>\n<p><strong>Established Patterns<\/strong>: Yes, people have experimented with dropping instructions into Markdown files. <a href=\"https:\/\/agents.md\/\" target=\"_blank\" rel=\"noopener\">AGENTS.md<\/a> is a well-established pattern.<\/p>\n<p><strong>The Core Difference<\/strong>: Anthropic formalized the pattern, optimized it for token efficiency through progressive disclosure, and created an ecosystem around it.<\/p>\n<p><strong>The Spirit of LLMs<\/strong>: Skills feel closer to how LLMs actually work\u2014throw in text and let the model figure it out, rather than requiring rigid protocol adherence.<\/p>\n<p>They outsource hard parts to the LLM harness and computing environment. Given everything learned about LLMs' tool-running abilities over recent years, this represents a sensible strategy.<\/p>\n<h2>The Coming Cambrian Explosion<\/h2>\n<h3>Easy to Create and Share<\/h3>\n<p>One of Skills' most exciting aspects is how easily they can be shared:<\/p>\n<p><strong>Simple Skills<\/strong>: Implemented as a single Markdown file <strong>Complex Skills<\/strong>: A folder containing a few files <strong>Distribution<\/strong>: GitHub repos, documentation sites, community marketplaces<\/p>\n<h3>Official Resources<\/h3>\n<p>Anthropic provides comprehensive support:<\/p>\n<ul>\n<li><a href=\"https:\/\/docs.claude.com\/en\/docs\/agents-and-tools\/agent-skills\/overview\" target=\"_blank\" rel=\"noopener\">Agent Skills Documentation<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/anthropics\/claude-cookbooks\/tree\/main\/skills\" target=\"_blank\" rel=\"noopener\">Claude Skills Cookbook<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/anthropics\/skills\" target=\"_blank\" rel=\"noopener\">anthropics\/skills GitHub Repository<\/a><\/li>\n<\/ul>\n<h3>Document Creation Skills<\/h3>\n<p>Claude's document creation abilities\u2014announced alongside the September code interpreter feature\u2014are entirely implemented using Skills. These are now publicly available:<\/p>\n<ul>\n<li><strong>PDF Skill<\/strong>: Creating and manipulating PDF documents<\/li>\n<li><strong>DOCX Skill<\/strong>: Microsoft Word document generation<\/li>\n<li><strong>XLSX Skill<\/strong>: Excel spreadsheet creation<\/li>\n<li><strong>PPTX Skill<\/strong>: PowerPoint presentation development<\/li>\n<\/ul>\n<p>These skills demonstrate production-quality implementations that others can learn from and adapt.<\/p>\n<h3>Model-Agnostic Design<\/h3>\n<p>Nothing prevents Skills from working with other models. You can:<\/p>\n<ol>\n<li>Grab a skills folder<\/li>\n<li>Point Codex CLI or Gemini CLI at it<\/li>\n<li>Say &#8220;read pdf\/SKILL.md and create me a PDF describing this project&#8221;<\/li>\n<\/ol>\n<p>It will work despite those tools having no baked-in knowledge of the skills system. The Markdown instructions are sufficiently clear that any capable LLM can follow them.<\/p>\n<h3>Prediction: Surpassing MCP Adoption<\/h3>\n<p>Willison expects &#8220;a Cambrian explosion in Skills which will make this year's MCP rush look pedestrian by comparison.&#8221;<\/p>\n<p><strong>Factors Driving Adoption<\/strong>:<\/p>\n<ul>\n<li>Dramatically lower creation barrier<\/li>\n<li>No protocol specification to learn<\/li>\n<li>Works across different AI platforms<\/li>\n<li>Easy to iterate and improve<\/li>\n<li>Natural fit with how LLMs process information<\/li>\n<\/ul>\n<h2>Practical Applications Across Domains<\/h2>\n<h3>Software Development<\/h3>\n<p><strong>Plugin Development<\/strong>: Skills describing how to build plugins for specific platforms (e.g., Datasette plugins)<\/p>\n<p><strong>Code Review<\/strong>: Best practices for reviewing pull requests in your organization's style<\/p>\n<p><strong>Testing Strategies<\/strong>: Comprehensive testing approaches for different code types<\/p>\n<p><strong>Deployment Procedures<\/strong>: Step-by-step deployment workflows with rollback procedures<\/p>\n<h3>Content Creation<\/h3>\n<p><strong>Brand Guidelines<\/strong>: Company-specific style guides and voice requirements<\/p>\n<p><strong>SEO Optimization<\/strong>: Instructions for creating search-optimized content<\/p>\n<p><strong>Social Media<\/strong>: Platform-specific content formatting and best practices<\/p>\n<p><strong>Translation<\/strong>: Consistent translation approaches maintaining brand voice<\/p>\n<h3>\u062a\u062d\u0644\u064a\u0644 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a<\/h3>\n<p><strong>Statistical Methods<\/strong>: When and how to apply different statistical tests<\/p>\n<p><strong>Visualization Standards<\/strong>: Creating publication-ready charts and graphs<\/p>\n<p><strong>Data Cleaning<\/strong>: Common patterns for handling messy datasets<\/p>\n<p><strong>Report Generation<\/strong>: Structured approaches to presenting findings<\/p>\n<h3>Business Operations<\/h3>\n<p><strong>Email Management<\/strong>: Sorting, prioritizing, and drafting responses<\/p>\n<p><strong>Meeting Scheduling<\/strong>: Considering timezone preferences and availability patterns<\/p>\n<p><strong>Expense Reporting<\/strong>: Company-specific categorization and approval workflows<\/p>\n<p><strong>Onboarding<\/strong>: Step-by-step guides for bringing new team members up to speed<\/p>\n<h2>Looking Forward: The Skills Ecosystem<\/h2>\n<h3>Community Development<\/h3>\n<p>The Skills ecosystem will likely evolve through:<\/p>\n<p><strong>Public Marketplaces<\/strong>: Searchable repositories of community-contributed skills<\/p>\n<p><strong>Domain Specialists<\/strong>: Experts packaging professional knowledge into shareable skills<\/p>\n<p><strong>Enterprise Collections<\/strong>: Organizations developing proprietary skill libraries<\/p>\n<p><strong>Quality Standards<\/strong>: Emerging best practices for skill documentation and testing<\/p>\n<h3>Integration with Existing Tools<\/h3>\n<p>Skills will increasingly integrate with:<\/p>\n<ul>\n<li>Version control systems for skill management<\/li>\n<li>CI\/CD pipelines for automated testing<\/li>\n<li>Documentation platforms for discovery and browsing<\/li>\n<li>Package managers for easy installation<\/li>\n<\/ul>\n<h3>The Agent Revolution Continues<\/h3>\n<p>Simon Willison admits his January 2025 prediction that &#8220;agents would once again fail to happen&#8221; was completely wrong. 2025 has genuinely been the year of agents, regardless of which definition you adopt.<\/p>\n<p>Skills make the agent revolution more accessible by removing technical barriers. Anyone who can write clear instructions in Markdown can now extend AI capabilities in powerful ways.<\/p>\n<h2>Why This Matters: The Bigger Picture<\/h2>\n<h3>Democratizing AI Capabilities<\/h3>\n<p>Skills democratize AI enhancement:<\/p>\n<p><strong>Before<\/strong>: Extending AI required protocol expertise, API knowledge, and significant engineering resources<\/p>\n<p><strong>After<\/strong>: Domain experts can capture their knowledge in Markdown files that immediately benefit AI users<\/p>\n<h3>Sustainable Scaling<\/h3>\n<p>As AI capabilities expand, sustainable scaling requires:<\/p>\n<ul>\n<li>Token-efficient architectures<\/li>\n<li>Progressive information disclosure<\/li>\n<li>Easy modification and improvement<\/li>\n<li>Clear separation between capability definition and execution<\/li>\n<\/ul>\n<p>Skills embody all these principles.<\/p>\n<h3>The Power of Standards Without Standardization<\/h3>\n<p>Skills achieve something remarkable: standardizing an approach without imposing rigid standards. The pattern is clear enough for ecosystem formation, but flexible enough for creative experimentation.<\/p>\n<h2>Conclusion: Simplicity as Revolutionary Force<\/h2>\n<p>The most profound innovations often appear deceptively simple in retrospect. Skills exemplify this pattern\u2014a Markdown file, some YAML metadata, optional scripts. Yet this simplicity unlocks enormous potential.<\/p>\n<p>By aligning with how LLMs naturally process information rather than forcing them into complex protocols, Skills may indeed prove bigger than MCP. Time will tell, but the early indicators are compelling:<\/p>\n<ul>\n<li>Lower creation barriers<\/li>\n<li>Superior token efficiency<\/li>\n<li>Model-agnostic design<\/li>\n<li>Natural extensibility<\/li>\n<li>Growing ecosystem momentum<\/li>\n<\/ul>\n<p>As Willison notes, &#8220;The core simplicity of the skills design is why I'm so excited about it.&#8221; Sometimes the most powerful solutions are the ones that get out of the way and let the underlying technology shine.<\/p>\n<p>The Cambrian explosion has begun. The question isn't whether Skills will transform how we enhance AI capabilities, but how quickly and completely.<\/p>","protected":false},"excerpt":{"rendered":"<p>What Are Claude Skills and Why Do They Matter? Claude Skills represent a breakthrough approach to extending AI capabilities through [&hellip;]<\/p>","protected":false},"author":11214,"featured_media":134398,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[468],"tags":[],"class_list":["post-134410","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-best-post"],"acf":[],"_links":{"self":[{"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/posts\/134410","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/users\/11214"}],"replies":[{"embeddable":true,"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/comments?post=134410"}],"version-history":[{"count":1,"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/posts\/134410\/revisions"}],"predecessor-version":[{"id":134412,"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/posts\/134410\/revisions\/134412"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/media\/134398"}],"wp:attachment":[{"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/media?parent=134410"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/categories?post=134410"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/legacy.vertu.com\/ar\/wp-json\/wp\/v2\/tags?post=134410"}],"curies":[{"name":"\u0648\u0648\u0631\u062f\u0628\u0631\u064a\u0633","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}