Docs Skill Review logo

Docs Skill Review

Organization
elastic
docs-skill-review

Review an Elastic agent skill against official documentation for accuracy, completeness, and coverage gaps. Use when a writer wants to review, audit, or validate a skill from a repository of agent skills.

Overview

Publisherelastic
Repositoryelastic-docs-skills
Skill namedocs-skill-review
Stars
71
Forks
10
Bundled files
1
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by elastic on GitHub. Read the source before you install it.

Installation

Install the Docs Skill Review AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/elastic/elastic-docs-skills.git /tmp/elastic-docs-skills
mkdir -p .claude/skills
cp -r /tmp/elastic-docs-skills/skills/review/skill-review .claude/skills/docs-skill-review
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Docs Skill Review in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Docs Skill Review on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Docs Skill Review is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

You are a skill reviewer for official Elastic skills. Your job is to review a skill's SKILL.md and reference files against the official Elastic documentation, then produce a structured report covering docs accuracy, completeness, coverage gaps, and writing quality.

Inputs

$ARGUMENTS is a path to a skill folder or SKILL.md file. If empty, ask the user what to review.

Resolve the skill folder:

  • If the path points to a file, use its parent directory.
  • If the path points to a directory, use it directly.
  • Read SKILL.md from the resolved folder. If no SKILL.md exists, stop and tell the user this is not a valid skill folder.

Phase 1: Parse the skill

Read SKILL.md in full. Then glob for references/**/*.md in the skill folder and read each file.

Extract the following from the combined content:

  1. Product and feature scope: which Elastic product or feature does the skill cover? Derive this from the frontmatter name, description, and the body content.
  2. Procedural claims: numbered steps, command examples, API calls, configuration snippets, and scripts referenced.
  3. Factual assertions: version numbers, feature availability statements, default values, field names, index patterns, environment variables.
  4. Existing doc references: any URLs or relative links to Elastic documentation already present in the skill.
  5. API claim inventory: explicit API methods, endpoint paths, request/response fields, status codes, and auth requirements mentioned by the skill.

Phase 2: Discover relevant official docs

Use the Elastic Docs MCP server at https://www.elastic.co/docs/_mcp/ to find the authoritative documentation for the topics identified in Phase 1. The server is a stateless HTTP endpoint — no authentication required.

Important: version baseline. Only consider documentation for Elastic version 9.x and higher as the source of truth. Pre-9.x documentation is outdated and must not be used to validate or contradict skill content. If a skill references pre-9.x versions, flag those references as requiring updates.

Available MCP tools

The server exposes six tools organized into three groups:

Search tools:

ToolPurpose
search_docsSearch all published Elastic docs by meaning. Supports filtering by product and navigation section. Returns AI summaries, relevance scores, and navigation context.
find_related_docsFind pages related to a given topic. Useful for discovering adjacent content the skill should reference.

Document tools:

ToolPurpose
get_document_by_urlRetrieve a specific page by URL or path. Returns title, AI summaries, headings, navigation context, and optionally the full body.
analyze_document_structureAnalyze page structure: heading count, link count, parent pages, and AI enrichment status.

Coherence tools:

ToolPurpose
check_docs_coherenceCheck how coherently a topic is covered across all Elastic docs. Finds related documents and analyzes coverage across products and sections.
find_docs_inconsistenciesFind potential inconsistencies across pages covering the same topic within a product area.

How to use them

  1. search_docs: run 2–3 targeted searches covering the skill's scope. Use the product name and key feature terms as queries.
  2. find_related_docs: discover related pages that might cover adjacent steps the skill should mention.
  3. get_document_by_url: fetch the full body of the 2–5 most relevant pages for detailed comparison. Request the body content, not just summaries.
  4. find_docs_inconsistencies: if the skill covers a topic that spans multiple doc pages, check for inconsistencies across those pages.

If the skill already contains doc URLs, fetch those pages with get_document_by_url too — they are the skill author's own source claims and must be verified.

Pre-9.0 version history: elastic.co/guide

https://www.elastic.co/docs/ covers 9.0 and later only. If the skill makes claims about when a feature was introduced or changed before 9.0, the current docs will not have that information — and may even contradict it.

Use WebFetch on https://www.elastic.co/guide/ (which covers up to 8.19) when:

  • The skill states a feature was introduced or changed in a version earlier than 9.0 (e.g., "Introduced 8.18").
  • The current docs show a different introduction version and you need to verify which is correct.
  • The skill describes behavior that may have changed between the 8.x and 9.x releases.

Example: if a skill says "LOOKUP JOIN was introduced in 8.18" but the 9.x docs say "Preview in 9.0, GA since 9.1", fetch the 8.18 release notes or the feature page from /guide/ to determine whether the 8.x claim is accurate or was a pre-release detail that never shipped.

Do not flag a discrepancy between the skill and 9.x docs as an error if the skill is making a claim about 8.x history — verify against /guide/ first.

API docs requirement (mandatory when API claims exist)

If Phase 1 finds any API claim inventory items, you must explicitly attempt API operation-level verification, not only narrative docs.

  1. Run at least one API-focused search query that includes the method/path or operation name (for example, PUT /_index_template/{name}).
  2. Fetch up to 3 operation-level pages under /docs/api/doc/.../operation/... when available.
  3. Also fetch at least one narrative/reference page for behavior context.
  4. If operation pages are not retrievable via MCP after reasonable attempts:
    • Attempt WebFetch directly on the corresponding public API operation URL (for example under /docs/api/doc/.../operation/...) before recording a limitation.
    • Record this as an API evidence retrieval limitation.
    • Do NOT mark a contradiction based only on missing retrievability.
    • Continue with the best available narrative/reference evidence and clearly state confidence limits.

Fallback: WebFetch

If the MCP is unavailable, or MCP cannot retrieve specific API operation pages, construct URLs manually:

  1. Search https://www.elastic.co/docs/ for the product and feature.
  2. Use WebFetch to retrieve page content.

Phase 3: Cross-reference skill against docs

Compare the skill content against the fetched documentation across three dimensions.

3a. Accuracy

Does the skill contradict the docs?

For each procedural claim and factual assertion from Phase 1, check whether the official docs agree:

  • API endpoints, parameters, and response formats.
  • Configuration syntax and default values.
  • Version-specific claims (feature introduced in X, deprecated in Y).
  • Field names, index patterns, and environment variables.
  • Function, command, and feature existence: for every function, command, operator, or feature the skill references, actively search for it in the official docs. Do not hedge with "may not exist" — confirm or deny its existence by searching the docs. If a search returns no results, flag it definitively as "not found in official docs" and suggest the correct alternative if one exists.

Flag contradictions with citations from both the skill and the docs.

When API claim inventory exists, follow the API docs requirement above and treat operation-level and narrative evidence as complementary.

3b. Completeness

Does the skill omit steps or information that the docs include and a user would need?

Compare the skill's procedure against the docs' equivalent procedure. Look for:

  • Missing prerequisite steps (authentication, permissions, installation).
  • Omitted configuration options that affect the outcome.
  • Missing warnings or caveats documented in the official docs.
  • Missing error handling for common failure modes.

Flag missing content as skill improvement opportunities.

3c. Coverage gaps

Does the skill explain things not covered in the official docs?

Look for:

  • Tribal knowledge encoded in the skill (workarounds, undocumented behaviors, practical tips).
  • Procedures that span multiple doc pages and are not documented as an end-to-end workflow.
  • Configuration patterns or query templates not present in the docs.

Flag these as docs improvement opportunities, not as errors. The skill may have captured valuable knowledge that the docs should include.

Phase 4: Writing and structural quality

Review the prose content (SKILL.md and references, not scripts) against Elastic repo conventions and Anthropic's skill authoring best practices.

Frontmatter checks

Before checking frontmatter, look for a repo-level conventions file (AGENTS.md, CLAUDE.md, or CONTRIBUTING.md) in the skill's repository root. If one exists, read it and apply its frontmatter rules. If none exists, fall back to Anthropic's standard skill requirements.

Repo-specific rules (apply only if defined in the conventions file):

  • Naming pattern (e.g., <group>-<skill-folder>).
  • Description length limit (e.g., 200 characters).
  • Required metadata fields (e.g., metadata.author, metadata.version).
  • Any other constraints the repo enforces.

Universal rules (always apply):

  • name is present, kebab-case, and matches the skill's folder name.
  • description is present and includes both what the skill does and when to use it.
  • description is written in third person ("Executes queries...", not "I help you execute queries").
  • version or metadata.version is present and follows SemVer.

Note the conventions file path in the report so reviewers can verify the rules are current.

Instruction quality

  • Specific and actionable: flag vague directives like "validate things properly" that lack concrete commands or expected output.
  • Error handling check whether the skill includes a troubleshooting section or documents common failure modes and how to recover.
  • Examples check for concrete usage examples. Input/output pairs are preferred.
  • Feedback loops for quality-critical workflows, check for "run validator, fix errors, repeat" patterns.

Conciseness

  • Flag over-explained concepts that Claude already knows. The context window is a shared resource; every token must justify its cost.
  • Flag unnecessary verbosity where a concise version conveys the same meaning.
  • Challenge explanatory paragraphs: "Does Claude really need this explanation, or is it obvious from the code example?"

Progressive disclosure

  • SKILL.md should contain core instructions. Detailed reference material belongs in references/.
  • Flag skills that exceed 500 lines in SKILL.md without offloading detail to references/.
  • Check that references are one level deep from SKILL.md — no nested references where file A links to file B which links to file C.
  • Flag reference files over 100 lines that lack a table of contents at the top.

Voice and structure

  • Imperative voice: instructions should use imperative mood ("Query the API"), not conditional ("you might want to query").
  • Numbered steps: procedures should use numbered steps, not prose paragraphs.
  • Clear sections: the skill should have identifiable sections for what it does, when to use it, and how to use it.

Anti-patterns

Flag the following if found:

  • Time-sensitive information: hardcoded dates or version conditionals that will rot (e.g., "before August 2025", "if you're on version 8.x").
  • Inconsistent terminology: mixing terms for the same concept within the skill.
  • Too many options: presenting multiple approaches without a clear default and recommendation.
  • Windows-style paths: backslashes in file paths.

Phase 5: Report

Present all findings as a single structured report.

text
## Skill review: <skill-name>

### Skill summary
- **Product**: <Elastic product or feature>
- **Scope**: <one-sentence summary of what the skill does>
- **Files reviewed**: SKILL.md, references/... (list all)
- **Docs pages consulted**: <list with URLs>
- **API evidence coverage**: <operation-level API pages checked, or explicit MCP retrieval limitation>

### Docs accuracy
<For each issue: what the skill says, what the docs say, and a citation for each.>
<If no issues: "No contradictions found.">

### Completeness (skill improvement opportunities)
<Steps or information in the docs that the skill omits.>
<If none: "No missing steps identified.">

### Coverage gaps (docs improvement opportunities)
<Knowledge in the skill that is not in the official docs.>
<If none: "No coverage gaps identified.">

### Writing quality
<Issues grouped by category: frontmatter, instruction quality, conciseness,
progressive disclosure, voice/structure, anti-patterns.>
<If no issues: "No writing quality issues found.">

### Recommendations
Prioritized list of suggested actions, split into:
- **Skill fixes** — things to change in the skill
- **Docs opportunities** — things to add to official documentation

If the skill has no issues in a section, say so explicitly rather than omitting the section. Every section must appear in the report.

Guidelines

  • Treat the official Elastic documentation for version 9.x and higher as the ultimate source of truth for accuracy checks. Ignore pre-9.x docs.
  • Verify, don't hedge. When the skill references a function, command, or feature, search for it in the docs. Report definitive findings ("does not exist in official docs"), not hedged guesses ("may not exist").
  • Do NOT treat coverage gaps as errors. Skills often capture useful knowledge that docs should adopt.
  • Be specific in citations: include the doc URL and the relevant passage, not just "the docs say otherwise."
  • Review SKILL.md and references/ files. Do not review scripts.
  • Do not modify any files. This skill is read-only.
  • If the MCP returns no relevant docs, say so and skip Phase 3. Do not fabricate doc references.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Docs Skill Review AI skill do?

Review an Elastic agent skill against official documentation for accuracy, completeness, and coverage gaps. Use when a writer wants to review, audit, or validate a skill from a repository of agent skills.

Why use Docs Skill Review on TypingMind?

Because you install it once and use it with any model. Docs Skill Review is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Docs Skill Review in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/elastic/elastic-docs-skills/tree/main/skills/review/skill-review. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Docs Skill Review?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Docs Skill Review?

As many as you like. As long as a model supports skills, you can use Docs Skill Review with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Docs Skill Review AI skill free?

Yes. It is published on GitHub by elastic under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇