Check and optimize MetaDescription frontmatter fields in VS Code documentation. Use when auditing, adding, or improving page descriptions for SEO and discoverability. Apply this when making content changes to markdown articles.
Check and optimize MetaDescription frontmatter fields in markdown documentation files. Produces actionable fixes for descriptions that violate the rules below.
MetaDescription.MetaDescription reflects the updated content.Every MetaDescription value must satisfy all of the following:
| Rule | Detail |
|---|---|
| Length | Maximum 160 characters. |
| Tone | Action-oriented, value-focused, factual, and impersonal. |
| Voice | No "you can", "users can", or "this page explains". |
| Sentences | Complete sentences, not fragments or labels. |
| No colons | Do not include : in the value — it breaks YAML parsing. |
| Uniqueness | Each description must be unique across the docs. |
Determine which files to check:
docs/copilot/), find all .md files in that folder recursively.README.md files without --- delimiters).For each file, read the YAML frontmatter and check the MetaDescription field:
MetaDescription is absent.: character in the value.{{...}}), HTML tags, or Markdown formatting.Present results as a table:
| File | Issue | Current value | Suggested fix |
|------|-------|---------------|---------------|
MetaDescription and a rewritten suggestion that passes all rules.MetaDescription value in the YAML frontmatter.Good descriptions:
Get AI-powered inline suggestions from GitHub Copilot in VS Code, including ghost text completions and next edit suggestions.Configure and manage extensions in Visual Studio Code to customize your development environment.Debug Python applications in Visual Studio Code with breakpoints, variable inspection, and integrated terminal output.Bad descriptions and why:
| Description | Problem |
|---|---|
This page explains how to use Copilot. | Uses "this page explains". |
You can debug your code with VS Code. | Uses "you can". |
Copilot | Fragment, not a sentence. |
Learn how to enable the new feature in VS Code 1.90. | Uses "enable" and includes a version number. |
Set up debugging: configure launch.json for Python. | Contains a colon. |