[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-elastic-docs-frontmatter-audit":3,"mdc--uf20ax-key":36,"related-repo-elastic-docs-frontmatter-audit":557,"related-org-elastic-docs-frontmatter-audit":631},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":31,"sourceUrl":34,"mdContent":35},"docs-frontmatter-audit","audit Elastic documentation frontmatter","Audit Elastic documentation files for frontmatter completeness and correctness. Checks products, description, and navigation_title fields across a directory. Use when auditing docs metadata, checking frontmatter quality before publishing, or validating a batch of files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"elastic","Elastic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Felastic.png",[12,16,19,20],{"name":13,"slug":14,"type":15},"Documentation","documentation","tag",{"name":17,"slug":18,"type":15},"Audit","audit",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Technical Writing","technical-writing",71,"https:\u002F\u002Fgithub.com\u002Felastic\u002Felastic-docs-skills","2026-07-12T07:49:39.883351",null,9,[29,8,30],"docs","skills",{"repoUrl":24,"stars":23,"forks":27,"topics":32,"description":33},[29,8,30],"Instructions for code agents on how to author Elastic docs","https:\u002F\u002Fgithub.com\u002Felastic\u002Felastic-docs-skills\u002Ftree\u002FHEAD\u002Fskills\u002Freview\u002Ffrontmatter-audit","---\nname: docs-frontmatter-audit\nversion: 1.1.2\ndescription: Audit Elastic documentation files for frontmatter completeness and correctness. Checks products, description, and navigation_title fields across a directory. Use when auditing docs metadata, checking frontmatter quality before publishing, or validating a batch of files.\nargument-hint: \u003Cfile-or-directory>\ncontext: fork\nallowed-tools: Read, Grep, Glob, CallMcpTool, WebFetch\nsources:\n  - https:\u002F\u002Felastic.github.io\u002Fdocs-builder\u002Fsyntax\u002Ffrontmatter\u002F\n  - https:\u002F\u002Fdevelopers.google.com\u002Fsearch\u002Fdocs\u002Fappearance\u002Fsnippet\n---\n\u003C!-- Copyright Elasticsearch B.V. and\u002For licensed to Elasticsearch B.V. under one\nor more contributor license agreements. See the NOTICE file distributed with\nthis work for additional information regarding copyright\nownership. Elasticsearch B.V. licenses this file to you under\nthe Apache License, Version 2.0 (the \"License\"); you may\nnot use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp:\u002F\u002Fwww.apache.org\u002Flicenses\u002FLICENSE-2.0\n\nUnless required by applicable law or agreed to in writing,\nsoftware distributed under the License is distributed on an\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, either express or implied.  See the License for the\nspecific language governing permissions and limitations\nunder the License. -->\n\nYou are a frontmatter auditor for Elastic documentation. Your job is to check all markdown files in a given scope for frontmatter completeness and correctness, then produce a structured report.\n\n## Inputs\n\n`$ARGUMENTS` is a file path or directory to audit. If empty, ask the user what to audit.\n\nUse these configuration defaults unless the user provides overrides. Ask for confirmation only when the target scope makes the required keys or products ambiguous:\n\n| Setting | Default | Description |\n|---------|---------|-------------|\n| **Required `products`** | *(none)* | Which product IDs must appear (e.g., `kibana`) |\n| **Additional products allowed** | yes | Whether extra product IDs beyond the required ones are acceptable |\n\n## Required frontmatter elements\n\nCheck each file for the following elements:\n\n### 1. `products` (mandatory)\n\nMust include the configured required product IDs. May include additional products. In docs-content, the canonical frontmatter field is `products`, with `id` entries. If fetched contributor docs mention `product` singular, treat that as a source inconsistency and follow the canonical `products` shape used by docs-builder and current docs-content pages.\n\n```yaml\nproducts:\n  - id: kibana\n```\n\nFlag files missing this element or missing required products. Don't remove existing additional products.\nFlag `product` singular as likely incorrect unless the local repository explicitly uses that schema.\n\n### 2. `description` (mandatory)\n\nValidate against these rules:\n- Present and non-empty\n- Around 150 characters (recommended by docs-builder); flag anything over 200 characters as too long\n- Complete sentence (not a fragment or label)\n- No Jinja2 substitution variables (`{{kib}}`, `{{es}}`, `{{esql}}` — these aren't parsed in frontmatter)\n- No label prefixes (\"Reference -\", \"Tutorial -\", \"Guide -\")\n- Clear, user-facing summary of the page content\n- Quoted if it contains punctuation or characters that could be misread by YAML, including colons\n\n### 3. `navigation_title` (recommended)\n\nCheck if the H1 title exceeds ~50 characters. If so, flag that a `navigation_title` should be added.\n\n```yaml\nnavigation_title: \"Configure ML alerts\"\n```\n\n### 4. `mapped_pages` (preserve)\n\nIf present, don't flag or suggest changes. If absent, don't suggest adding it.\n\n## Execution\n\n1. **Glob** for all `.md` files in the specified scope\n2. **Read** the frontmatter of each file\n3. **Validate** each element against the rules above\n4. **Read** the H1 title to check length for `navigation_title`\n5. **Compile** the report\n\n## Report format\n\n```\n## Frontmatter audit: \u003Cscope>\n\n**Configuration:**\n- Required products: kibana\n- Files scanned: N\n\n### Issues found\n\n#### Missing `products`\n| File | Issue |\n|------|-------|\n| path\u002Fto\u002Ffile.md | Missing `kibana` product |\n\n#### Invalid or missing `description`\n| File | Issue |\n|------|-------|\n| path\u002Fto\u002Ffile.md | Missing description |\n| path\u002Fto\u002Fother.md | Contains Jinja2 variables |\n| path\u002Fto\u002Fthird.md | Exceeds 200 characters (247 chars); descriptions should usually be around 150 characters |\n\n#### Missing `navigation_title`\n| File | H1 length |\n|------|-----------|\n| path\u002Fto\u002Ffile.md | 63 chars |\n\n### Summary\n\n- ✅ N files passed all checks\n- ❌ N files have issues\n  - N missing products\n  - N invalid\u002Fmissing description\n  - N missing navigation_title (recommended)\n```\n\nGroup issues by type, not by file, so users can batch-fix related problems. Only include sections that have issues.\n",{"data":37,"body":45},{"name":4,"version":38,"description":6,"argument-hint":39,"context":40,"allowed-tools":41,"sources":42},"1.1.2","\u003Cfile-or-directory>","fork","Read, Grep, Glob, CallMcpTool, WebFetch",[43,44],"https:\u002F\u002Felastic.github.io\u002Fdocs-builder\u002Fsyntax\u002Ffrontmatter\u002F","https:\u002F\u002Fdevelopers.google.com\u002Fsearch\u002Fdocs\u002Fappearance\u002Fsnippet",{"type":46,"children":47},"root",[48,56,63,75,80,174,180,185,199,234,287,299,312,317,380,394,406,439,453,458,464,530,536,546,551],{"type":49,"tag":50,"props":51,"children":52},"element","p",{},[53],{"type":54,"value":55},"text","You are a frontmatter auditor for Elastic documentation. Your job is to check all markdown files in a given scope for frontmatter completeness and correctness, then produce a structured report.",{"type":49,"tag":57,"props":58,"children":60},"h2",{"id":59},"inputs",[61],{"type":54,"value":62},"Inputs",{"type":49,"tag":50,"props":64,"children":65},{},[66,73],{"type":49,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":54,"value":72},"$ARGUMENTS",{"type":54,"value":74}," is a file path or directory to audit. If empty, ask the user what to audit.",{"type":49,"tag":50,"props":76,"children":77},{},[78],{"type":54,"value":79},"Use these configuration defaults unless the user provides overrides. Ask for confirmation only when the target scope makes the required keys or products ambiguous:",{"type":49,"tag":81,"props":82,"children":83},"table",{},[84,108],{"type":49,"tag":85,"props":86,"children":87},"thead",{},[88],{"type":49,"tag":89,"props":90,"children":91},"tr",{},[92,98,103],{"type":49,"tag":93,"props":94,"children":95},"th",{},[96],{"type":54,"value":97},"Setting",{"type":49,"tag":93,"props":99,"children":100},{},[101],{"type":54,"value":102},"Default",{"type":49,"tag":93,"props":104,"children":105},{},[106],{"type":54,"value":107},"Description",{"type":49,"tag":109,"props":110,"children":111},"tbody",{},[112,153],{"type":49,"tag":89,"props":113,"children":114},{},[115,131,140],{"type":49,"tag":116,"props":117,"children":118},"td",{},[119],{"type":49,"tag":120,"props":121,"children":122},"strong",{},[123,125],{"type":54,"value":124},"Required ",{"type":49,"tag":67,"props":126,"children":128},{"className":127},[],[129],{"type":54,"value":130},"products",{"type":49,"tag":116,"props":132,"children":133},{},[134],{"type":49,"tag":135,"props":136,"children":137},"em",{},[138],{"type":54,"value":139},"(none)",{"type":49,"tag":116,"props":141,"children":142},{},[143,145,151],{"type":54,"value":144},"Which product IDs must appear (e.g., ",{"type":49,"tag":67,"props":146,"children":148},{"className":147},[],[149],{"type":54,"value":150},"kibana",{"type":54,"value":152},")",{"type":49,"tag":89,"props":154,"children":155},{},[156,164,169],{"type":49,"tag":116,"props":157,"children":158},{},[159],{"type":49,"tag":120,"props":160,"children":161},{},[162],{"type":54,"value":163},"Additional products allowed",{"type":49,"tag":116,"props":165,"children":166},{},[167],{"type":54,"value":168},"yes",{"type":49,"tag":116,"props":170,"children":171},{},[172],{"type":54,"value":173},"Whether extra product IDs beyond the required ones are acceptable",{"type":49,"tag":57,"props":175,"children":177},{"id":176},"required-frontmatter-elements",[178],{"type":54,"value":179},"Required frontmatter elements",{"type":49,"tag":50,"props":181,"children":182},{},[183],{"type":54,"value":184},"Check each file for the following elements:",{"type":49,"tag":186,"props":187,"children":189},"h3",{"id":188},"_1-products-mandatory",[190,192,197],{"type":54,"value":191},"1. ",{"type":49,"tag":67,"props":193,"children":195},{"className":194},[],[196],{"type":54,"value":130},{"type":54,"value":198}," (mandatory)",{"type":49,"tag":50,"props":200,"children":201},{},[202,204,209,211,217,219,225,227,232],{"type":54,"value":203},"Must include the configured required product IDs. May include additional products. In docs-content, the canonical frontmatter field is ",{"type":49,"tag":67,"props":205,"children":207},{"className":206},[],[208],{"type":54,"value":130},{"type":54,"value":210},", with ",{"type":49,"tag":67,"props":212,"children":214},{"className":213},[],[215],{"type":54,"value":216},"id",{"type":54,"value":218}," entries. If fetched contributor docs mention ",{"type":49,"tag":67,"props":220,"children":222},{"className":221},[],[223],{"type":54,"value":224},"product",{"type":54,"value":226}," singular, treat that as a source inconsistency and follow the canonical ",{"type":49,"tag":67,"props":228,"children":230},{"className":229},[],[231],{"type":54,"value":130},{"type":54,"value":233}," shape used by docs-builder and current docs-content pages.",{"type":49,"tag":235,"props":236,"children":241},"pre",{"className":237,"code":238,"language":239,"meta":240,"style":240},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","products:\n  - id: kibana\n","yaml","",[242],{"type":49,"tag":67,"props":243,"children":244},{"__ignoreMap":240},[245,262],{"type":49,"tag":246,"props":247,"children":250},"span",{"class":248,"line":249},"line",1,[251,256],{"type":49,"tag":246,"props":252,"children":254},{"style":253},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[255],{"type":54,"value":130},{"type":49,"tag":246,"props":257,"children":259},{"style":258},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[260],{"type":54,"value":261},":\n",{"type":49,"tag":246,"props":263,"children":265},{"class":248,"line":264},2,[266,271,276,281],{"type":49,"tag":246,"props":267,"children":268},{"style":258},[269],{"type":54,"value":270},"  -",{"type":49,"tag":246,"props":272,"children":273},{"style":253},[274],{"type":54,"value":275}," id",{"type":49,"tag":246,"props":277,"children":278},{"style":258},[279],{"type":54,"value":280},":",{"type":49,"tag":246,"props":282,"children":284},{"style":283},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[285],{"type":54,"value":286}," kibana\n",{"type":49,"tag":50,"props":288,"children":289},{},[290,292,297],{"type":54,"value":291},"Flag files missing this element or missing required products. Don't remove existing additional products.\nFlag ",{"type":49,"tag":67,"props":293,"children":295},{"className":294},[],[296],{"type":54,"value":224},{"type":54,"value":298}," singular as likely incorrect unless the local repository explicitly uses that schema.",{"type":49,"tag":186,"props":300,"children":302},{"id":301},"_2-description-mandatory",[303,305,311],{"type":54,"value":304},"2. ",{"type":49,"tag":67,"props":306,"children":308},{"className":307},[],[309],{"type":54,"value":310},"description",{"type":54,"value":198},{"type":49,"tag":50,"props":313,"children":314},{},[315],{"type":54,"value":316},"Validate against these rules:",{"type":49,"tag":318,"props":319,"children":320},"ul",{},[321,327,332,337,365,370,375],{"type":49,"tag":322,"props":323,"children":324},"li",{},[325],{"type":54,"value":326},"Present and non-empty",{"type":49,"tag":322,"props":328,"children":329},{},[330],{"type":54,"value":331},"Around 150 characters (recommended by docs-builder); flag anything over 200 characters as too long",{"type":49,"tag":322,"props":333,"children":334},{},[335],{"type":54,"value":336},"Complete sentence (not a fragment or label)",{"type":49,"tag":322,"props":338,"children":339},{},[340,342,348,350,356,357,363],{"type":54,"value":341},"No Jinja2 substitution variables (",{"type":49,"tag":67,"props":343,"children":345},{"className":344},[],[346],{"type":54,"value":347},"{{kib}}",{"type":54,"value":349},", ",{"type":49,"tag":67,"props":351,"children":353},{"className":352},[],[354],{"type":54,"value":355},"{{es}}",{"type":54,"value":349},{"type":49,"tag":67,"props":358,"children":360},{"className":359},[],[361],{"type":54,"value":362},"{{esql}}",{"type":54,"value":364}," — these aren't parsed in frontmatter)",{"type":49,"tag":322,"props":366,"children":367},{},[368],{"type":54,"value":369},"No label prefixes (\"Reference -\", \"Tutorial -\", \"Guide -\")",{"type":49,"tag":322,"props":371,"children":372},{},[373],{"type":54,"value":374},"Clear, user-facing summary of the page content",{"type":49,"tag":322,"props":376,"children":377},{},[378],{"type":54,"value":379},"Quoted if it contains punctuation or characters that could be misread by YAML, including colons",{"type":49,"tag":186,"props":381,"children":383},{"id":382},"_3-navigation_title-recommended",[384,386,392],{"type":54,"value":385},"3. ",{"type":49,"tag":67,"props":387,"children":389},{"className":388},[],[390],{"type":54,"value":391},"navigation_title",{"type":54,"value":393}," (recommended)",{"type":49,"tag":50,"props":395,"children":396},{},[397,399,404],{"type":54,"value":398},"Check if the H1 title exceeds ~50 characters. If so, flag that a ",{"type":49,"tag":67,"props":400,"children":402},{"className":401},[],[403],{"type":54,"value":391},{"type":54,"value":405}," should be added.",{"type":49,"tag":235,"props":407,"children":409},{"className":237,"code":408,"language":239,"meta":240,"style":240},"navigation_title: \"Configure ML alerts\"\n",[410],{"type":49,"tag":67,"props":411,"children":412},{"__ignoreMap":240},[413],{"type":49,"tag":246,"props":414,"children":415},{"class":248,"line":249},[416,420,424,429,434],{"type":49,"tag":246,"props":417,"children":418},{"style":253},[419],{"type":54,"value":391},{"type":49,"tag":246,"props":421,"children":422},{"style":258},[423],{"type":54,"value":280},{"type":49,"tag":246,"props":425,"children":426},{"style":258},[427],{"type":54,"value":428}," \"",{"type":49,"tag":246,"props":430,"children":431},{"style":283},[432],{"type":54,"value":433},"Configure ML alerts",{"type":49,"tag":246,"props":435,"children":436},{"style":258},[437],{"type":54,"value":438},"\"\n",{"type":49,"tag":186,"props":440,"children":442},{"id":441},"_4-mapped_pages-preserve",[443,445,451],{"type":54,"value":444},"4. ",{"type":49,"tag":67,"props":446,"children":448},{"className":447},[],[449],{"type":54,"value":450},"mapped_pages",{"type":54,"value":452}," (preserve)",{"type":49,"tag":50,"props":454,"children":455},{},[456],{"type":54,"value":457},"If present, don't flag or suggest changes. If absent, don't suggest adding it.",{"type":49,"tag":57,"props":459,"children":461},{"id":460},"execution",[462],{"type":54,"value":463},"Execution",{"type":49,"tag":465,"props":466,"children":467},"ol",{},[468,486,496,506,520],{"type":49,"tag":322,"props":469,"children":470},{},[471,476,478,484],{"type":49,"tag":120,"props":472,"children":473},{},[474],{"type":54,"value":475},"Glob",{"type":54,"value":477}," for all ",{"type":49,"tag":67,"props":479,"children":481},{"className":480},[],[482],{"type":54,"value":483},".md",{"type":54,"value":485}," files in the specified scope",{"type":49,"tag":322,"props":487,"children":488},{},[489,494],{"type":49,"tag":120,"props":490,"children":491},{},[492],{"type":54,"value":493},"Read",{"type":54,"value":495}," the frontmatter of each file",{"type":49,"tag":322,"props":497,"children":498},{},[499,504],{"type":49,"tag":120,"props":500,"children":501},{},[502],{"type":54,"value":503},"Validate",{"type":54,"value":505}," each element against the rules above",{"type":49,"tag":322,"props":507,"children":508},{},[509,513,515],{"type":49,"tag":120,"props":510,"children":511},{},[512],{"type":54,"value":493},{"type":54,"value":514}," the H1 title to check length for ",{"type":49,"tag":67,"props":516,"children":518},{"className":517},[],[519],{"type":54,"value":391},{"type":49,"tag":322,"props":521,"children":522},{},[523,528],{"type":49,"tag":120,"props":524,"children":525},{},[526],{"type":54,"value":527},"Compile",{"type":54,"value":529}," the report",{"type":49,"tag":57,"props":531,"children":533},{"id":532},"report-format",[534],{"type":54,"value":535},"Report format",{"type":49,"tag":235,"props":537,"children":541},{"className":538,"code":540,"language":54},[539],"language-text","## Frontmatter audit: \u003Cscope>\n\n**Configuration:**\n- Required products: kibana\n- Files scanned: N\n\n### Issues found\n\n#### Missing `products`\n| File | Issue |\n|------|-------|\n| path\u002Fto\u002Ffile.md | Missing `kibana` product |\n\n#### Invalid or missing `description`\n| File | Issue |\n|------|-------|\n| path\u002Fto\u002Ffile.md | Missing description |\n| path\u002Fto\u002Fother.md | Contains Jinja2 variables |\n| path\u002Fto\u002Fthird.md | Exceeds 200 characters (247 chars); descriptions should usually be around 150 characters |\n\n#### Missing `navigation_title`\n| File | H1 length |\n|------|-----------|\n| path\u002Fto\u002Ffile.md | 63 chars |\n\n### Summary\n\n- ✅ N files passed all checks\n- ❌ N files have issues\n  - N missing products\n  - N invalid\u002Fmissing description\n  - N missing navigation_title (recommended)\n",[542],{"type":49,"tag":67,"props":543,"children":544},{"__ignoreMap":240},[545],{"type":54,"value":540},{"type":49,"tag":50,"props":547,"children":548},{},[549],{"type":54,"value":550},"Group issues by type, not by file, so users can batch-fix related problems. Only include sections that have issues.",{"type":49,"tag":552,"props":553,"children":554},"style",{},[555],{"type":54,"value":556},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":558,"total":630},[559,569,582,592,601,613,623],{"slug":560,"name":560,"fn":561,"description":562,"org":563,"tags":564,"stars":23,"repoUrl":24,"updatedAt":568},"docs-applies-to-tagging","validate applies_to tags in Elastic documentation","Validate and generate applies_to tags in Elastic documentation, including for cumulative docs across versions and deployment types. Use when writing new docs pages, reviewing existing pages for correct applies_to usage, deciding whether to preserve or replace existing version-scoped content, or when content changes lifecycle state (experimental, preview, beta, GA, deprecated, removed).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[565,566,567],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-12T07:50:42.801473",{"slug":570,"name":570,"fn":571,"description":572,"org":573,"tags":574,"stars":23,"repoUrl":24,"updatedAt":581},"docs-check-style","check documentation for Elastic style compliance","Check documentation for Elastic style guide compliance using Vale linter output and style rules. Use when writing, editing, or reviewing docs to catch voice, tone, grammar, formatting, accessibility, and word choice issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[575,578,579,580],{"name":576,"slug":577,"type":15},"Accessibility","accessibility",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-12T07:49:36.112751",{"slug":583,"name":583,"fn":584,"description":585,"org":586,"tags":587,"stars":23,"repoUrl":24,"updatedAt":591},"docs-content-type-checker","check Elastic documentation content types","Check a docs-content page against Elastic content type guidelines (overview, how-to, tutorial, troubleshooting, changelog), or classify a proposed page idea against the content types before drafting. Use when the user asks to check content type compliance, validate page structure, review a doc against content type standards, or decide which content type a planned page should use.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[588,589,590],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-12T07:50:36.826563",{"slug":593,"name":593,"fn":594,"description":595,"org":596,"tags":597,"stars":23,"repoUrl":24,"updatedAt":600},"docs-draft-workflow-docs","draft Elastic Workflows documentation","Draft or update Elastic Workflows documentation pages in explore-analyze\u002Fworkflows\u002F — step references, use cases, how-tos, concepts, and overviews. Use when writing Workflows docs, documenting a step type, turning workflow YAML into documentation, drafting from a doc issue in docs-content or docs-content-internal, or creating a new page under the Workflows docset.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[598,599],{"name":13,"slug":14,"type":15},{"name":21,"slug":22,"type":15},"2026-07-12T07:48:02.16095",{"slug":602,"name":602,"fn":603,"description":604,"org":605,"tags":606,"stars":23,"repoUrl":24,"updatedAt":612},"docs-fix-changelog","improve Elastic changelog YAML files","Suggest improved text for changelog YAML files against current Elastic standards. Mirrors the pattern catalog from docs-review-changelog to provide consistent fixes. Includes type-title alignment checking and technical content assessment to catch overly technical titles that need user-focused rewrites. Features repository-aware area validation and enhanced confidence scoring. Supports single files or directories. Fetches canonical guidance to stay in sync. Use after review identifies quality issues, or when drafting new changelogs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[607,608,609,610],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":611,"slug":239,"type":15},"YAML","2026-07-12T07:48:58.570382",{"slug":614,"name":614,"fn":615,"description":616,"org":617,"tags":618,"stars":23,"repoUrl":24,"updatedAt":622},"docs-flag-jargon-skill","flag Elastic jargon in documentation","Flag Elastic-internal jargon in documentation and suggest plain-language replacements. Use when reviewing, writing, or editing docs to catch terms that external readers would not understand.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[619,620,621],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-12T07:49:34.836748",{"slug":4,"name":4,"fn":5,"description":6,"org":624,"tags":625,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[626,627,628,629],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},18,{"items":632,"total":802},[633,652,669,684,703,715,725,740,752,765,776,789],{"slug":634,"name":634,"fn":635,"description":636,"org":637,"tags":638,"stars":649,"repoUrl":650,"updatedAt":651},"accessing-benchmark-results","retrieve and analyze Rally benchmark results","Retrieve Rally benchmark results from an external Elasticsearch metrics store. Use to list past races, get a single race's overall (per-task) results, chart a metric's trend across multiple runs, compare two races, or check whether a run converged — e.g. \"show me recent geonames races\", \"what's the service_time trend for nyc_taxis over the last 30 days?\", \"compare these two race-ids\". Applies when datastore.type = elasticsearch is set in ~\u002F.rally\u002Frally.ini.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[639,642,645,646],{"name":640,"slug":641,"type":15},"Analytics","analytics",{"name":643,"slug":644,"type":15},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":15},{"name":647,"slug":648,"type":15},"Performance","performance",2027,"https:\u002F\u002Fgithub.com\u002Felastic\u002Frally","2026-07-12T07:46:38.54144",{"slug":653,"name":653,"fn":654,"description":655,"org":656,"tags":657,"stars":649,"repoUrl":650,"updatedAt":668},"developing-rally","develop and debug Rally source code","Work on Rally's own codebase, not running benchmarks with it. Use when setting up the dev environment, running Rally's tests or linters, navigating its source, debugging Rally's own code, or making changes to Rally itself.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[658,661,662,665],{"name":659,"slug":660,"type":15},"Debugging","debugging",{"name":9,"slug":8,"type":15},{"name":663,"slug":664,"type":15},"Engineering","engineering",{"name":666,"slug":667,"type":15},"Local Development","local-development","2026-07-12T07:46:35.976807",{"slug":670,"name":670,"fn":671,"description":672,"org":673,"tags":674,"stars":649,"repoUrl":650,"updatedAt":683},"running-benchmarks","run Rally benchmarks against Elasticsearch","Run Rally benchmarks (races) against Elasticsearch — an existing\u002Fexternal cluster or a Rally-provisioned distribution — and read the summary report. Use when running a race (any pipeline, track, challenge, target-hosts, or auth) or when interpreting throughput, latency, and service_time results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[675,676,679,680],{"name":9,"slug":8,"type":15},{"name":677,"slug":678,"type":15},"Elasticsearch","elasticsearch",{"name":647,"slug":648,"type":15},{"name":681,"slug":682,"type":15},"Testing","testing","2026-07-12T07:46:37.277964",{"slug":685,"name":685,"fn":686,"description":687,"org":688,"tags":689,"stars":700,"repoUrl":701,"updatedAt":702},"cloud-access-management","manage Elastic Cloud organization access","Manage Elastic Cloud organization access: invite users, assign roles to Serverless projects, and create or revoke Cloud API keys. Use when granting, modifying, or auditing user access.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[690,693,694,697],{"name":691,"slug":692,"type":15},"Cloud","cloud",{"name":9,"slug":8,"type":15},{"name":695,"slug":696,"type":15},"Operations","operations",{"name":698,"slug":699,"type":15},"Permissions","permissions",531,"https:\u002F\u002Fgithub.com\u002Felastic\u002Fagent-skills","2026-07-12T07:46:44.946285",{"slug":704,"name":704,"fn":705,"description":706,"org":707,"tags":708,"stars":700,"repoUrl":701,"updatedAt":714},"cloud-create-project","create Elastic Cloud Serverless projects","Creates Elastic Cloud Serverless projects (Elasticsearch, Observability, or Security) via the REST API, saves credentials to file, and bootstraps a scoped Elasticsearch API key. Use when creating a new serverless project, provisioning a search or observability environment, or spinning up a new Elastic Cloud project.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[709,710,713],{"name":691,"slug":692,"type":15},{"name":711,"slug":712,"type":15},"Deployment","deployment",{"name":677,"slug":678,"type":15},"2026-07-12T07:46:42.353362",{"slug":716,"name":716,"fn":717,"description":718,"org":719,"tags":720,"stars":700,"repoUrl":701,"updatedAt":724},"cloud-manage-project","manage Elastic Cloud Serverless projects","Manages existing Elastic Cloud Serverless projects: list, get, update, delete, reset credentials, resume, and load saved credentials. Connects to existing projects by resolving endpoints and acquiring scoped Elasticsearch API keys. Use when performing day-2 operations on serverless projects, connecting to an existing project, loading or resetting project credentials, or looking up project details.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[721,722,723],{"name":691,"slug":692,"type":15},{"name":677,"slug":678,"type":15},{"name":695,"slug":696,"type":15},"2026-07-12T07:46:41.097412",{"slug":726,"name":726,"fn":727,"description":728,"org":729,"tags":730,"stars":700,"repoUrl":701,"updatedAt":739},"cloud-network-security","manage Elastic Cloud network security","Manage Serverless network security (traffic filters): create, update, and delete IP filters and AWS PrivateLink VPC filters. Use when restricting network access or configuring private connectivity.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[731,732,733,736],{"name":691,"slug":692,"type":15},{"name":677,"slug":678,"type":15},{"name":734,"slug":735,"type":15},"Networking","networking",{"name":737,"slug":738,"type":15},"Security","security","2026-07-12T07:46:43.675992",{"slug":741,"name":741,"fn":742,"description":743,"org":744,"tags":745,"stars":700,"repoUrl":701,"updatedAt":751},"cloud-setup","configure Elastic Cloud authentication","Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[746,749,750],{"name":747,"slug":748,"type":15},"Authentication","authentication",{"name":691,"slug":692,"type":15},{"name":677,"slug":678,"type":15},"2026-07-12T07:46:39.783105",{"slug":753,"name":753,"fn":754,"description":755,"org":756,"tags":757,"stars":700,"repoUrl":701,"updatedAt":764},"elasticsearch-audit","configure Elasticsearch security audit logs","Enable, configure, and query Elasticsearch security audit logs. Use when the task involves audit logging setup, event filtering, or investigating security incidents like failed logins.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[758,759,760,763],{"name":17,"slug":18,"type":15},{"name":677,"slug":678,"type":15},{"name":761,"slug":762,"type":15},"Logs","logs",{"name":737,"slug":738,"type":15},"2026-07-12T07:47:35.092599",{"slug":766,"name":766,"fn":767,"description":768,"org":769,"tags":770,"stars":700,"repoUrl":701,"updatedAt":775},"elasticsearch-authn","configure Elasticsearch authentication realms","Authenticate to Elasticsearch using native, file-based, LDAP\u002FAD, SAML, OIDC, Kerberos, JWT, or certificate realms. Use when connecting with credentials, choosing a realm, or managing API keys. Assumes the target realms are already configured.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[771,772,773,774],{"name":747,"slug":748,"type":15},{"name":9,"slug":8,"type":15},{"name":677,"slug":678,"type":15},{"name":737,"slug":738,"type":15},"2026-07-12T07:47:41.474547",{"slug":777,"name":777,"fn":778,"description":779,"org":780,"tags":781,"stars":700,"repoUrl":701,"updatedAt":788},"elasticsearch-authz","manage Elasticsearch RBAC and security roles","Manage Elasticsearch RBAC: native users, roles, role mappings, document- and field-level security. Use when creating users or roles, assigning privileges, or mapping external realms like LDAP\u002FSAML.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[782,783,784,787],{"name":9,"slug":8,"type":15},{"name":677,"slug":678,"type":15},{"name":785,"slug":786,"type":15},"RBAC","rbac",{"name":737,"slug":738,"type":15},"2026-07-12T07:47:36.394177",{"slug":790,"name":790,"fn":791,"description":792,"org":793,"tags":794,"stars":700,"repoUrl":701,"updatedAt":801},"elasticsearch-esql","query Elasticsearch data with ES|QL","Execute ES|QL (Elasticsearch Query Language) queries, use when the user wants to query Elasticsearch data, analyze logs, aggregate metrics, explore data, or create charts and dashboards from ES|QL results.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[795,796,797,798],{"name":640,"slug":641,"type":15},{"name":643,"slug":644,"type":15},{"name":677,"slug":678,"type":15},{"name":799,"slug":800,"type":15},"SQL","sql","2026-07-12T07:47:40.249533",86]