agentsclimarketplace

Seo review

Skill yunseo-kim/agent-toolbox/catalog/skills/seo-review

A trusted, curated cross-tool registry for agent components, with end-to-end provenance and automated security vetting of skills, MCP servers, and hooks.

Install
npx -y skills add yunseo-kim/agent-toolbox --skill seo-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Perform a focused SEO audit on documentation and content pages to maximize search visibility, featured snippet optimization, and ranking potential. Use when publishing new pages, optimizing underperforming content, or running periodic content audits.

The file declares its own license as Sustainable Use License 1.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

16.2 KB, ~4.1k tokens by cl100k_base, as published. Nobody here has run it

Skill: SEO Audit for Documentation Pages

Use this skill to perform a focused SEO audit on documentation or content pages. The goal is to maximize search visibility for developers and readers searching for topics you cover.

When to Use

  • Before publishing a new documentation page
  • When optimizing underperforming pages
  • Periodic content audits
  • After major content updates
  • When targeting new keywords

Goal

Each documentation page should rank for searches like:

  • "what is [topic] in [technology]"
  • "how does [topic] work"
  • "[topic] explained"
  • "[topic] tutorial"
  • "[topic] example"

SEO Audit Methodology

Follow these five steps for a complete SEO audit.

Step 1: Identify Target Keywords

Before auditing, identify the keyword cluster for the topic.

Keyword Cluster Template

TypePatternExample (Closures)
Primary[topic] [technology]closures JavaScript
What iswhat is [topic] in [technology]what is a closure in JavaScript
How doeshow does [topic] workhow do closures work
How tohow to use/create [topic]how to use closures
Whywhy use [topic]why use closures
Examples[topic] examplesclosure examples
vs[topic] vs [related]closures vs scope
Interview[topic] interview questionsclosure interview questions

Step 2: On-Page SEO Audit

Check all on-page SEO elements systematically using the checklists below.

Step 3: Featured Snippet Optimization

Verify content is structured to win featured snippets.

Step 4: Internal Linking Audit

Check the internal link structure.

Step 5: Generate Report

Document findings using the report template at the bottom of this skill.


Audit Checklists

Title Tag Checklist (4 points)

#CheckPointsHow to Verify
1Length 50-60 characters1Count characters in title frontmatter
2Primary keyword in first half1Topic name appears early
3Contains technology/context identifier1Check title ending (e.g., "in JavaScript", "with React")
4Contains compelling hook1Promises value/benefit to reader

Scoring:

  • 4/4: Excellent
  • 3/4: Good, minor improvements possible
  • 0-2/4: Needs significant work

Title Formula:

[Topic]: [What You'll Understand] in [Technology]

Good Examples:

TopicTitle (with character count)
Closures"Closures: How Functions Remember Their Scope in JavaScript" (58 chars)
Dependency Injection"Dependency Injection: Writing Testable Code in Python" (53 chars)
CORS"CORS: How Cross-Origin Requests Work in Web APIs" (49 chars)

Bad Examples:

IssueBad TitleBetter Title
Too short"Closures""Closures: How Functions Remember Their Scope in JavaScript"
Too long"Understanding JavaScript Closures and How They Work with Examples" (66)Trim to 50-60 chars
No hook"JavaScript Closures"Add benefit: "How Functions Remember Their Scope"

Meta Description Checklist (4 points)

#CheckPointsHow to Verify
1Length 150-160 characters1Count characters in description frontmatter
2Starts with action word1"Learn", "Understand", "Discover" (NOT "Master")
3Contains primary keyword1Topic name + technology present
4Promises specific value1Lists what reader will learn

Description Formula:

[Action word] [what the topic is] in [technology]. [Specific things covered]: [topic 1], [topic 2], and [topic 3].

Good Examples:

TopicDescription
Closures"Learn JavaScript closures and how functions remember their scope. Covers lexical scoping, practical use cases, memory considerations, and common closure patterns." (159 chars)
CORS"Understand how CORS works in web APIs. Learn about preflight requests, allowed origins, credentials handling, and common configuration mistakes." (144 chars)

Bad Examples:

IssueBad DescriptionFix
Too short"Learn about closures"Expand to 150-160 chars with specifics
Starts with "Master""Master JavaScript closures...""Learn JavaScript closures..."
Too vague"A guide to closures"List specific topics covered

Keyword Placement Checklist (5 points)

#CheckPointsHow to Verify
1Primary keyword in title1Check frontmatter title
2Primary keyword in meta description1Check frontmatter description
3Primary keyword in first 100 words1Check opening paragraphs
4Keyword in at least one H2 heading1Scan all ## headings
5No keyword stuffing1Content reads naturally

Keyword Placement Map:

CRITICAL (Must have keyword)
  - title frontmatter
  - description frontmatter
  - First paragraph (within 100 words)
  - At least one H2 heading

RECOMMENDED (Include naturally)
  - "What you'll learn" summary box
  - H3 subheadings
  - Key Takeaways section
  - First sentence after major H2s

AVOID
  - Same phrase >4 times per 1000 words
  - Forcing keywords where pronouns work better
  - Awkward sentence structures to fit keywords

Content Structure Checklist (6 points)

#CheckPointsHow to Verify
1Opens with question hook1First paragraph asks engaging question
2Code example or key insight in first 200 words1Practical content appears early
3"What you'll learn" summary present1Summary box or list after opening
4Short paragraphs (2-4 sentences)1Scan content for long blocks
51,500+ words1Word count check
6Key terms bolded on first mention1Important terms use **bold**

Content Length Guidelines:

LengthAssessment
<1,000 wordsToo thin — add depth
1,000-1,500Minimum viable
1,500-2,500Good
2,500-4,000Excellent
>4,000Consider splitting

Featured Snippet Checklist (4 points)

#CheckPointsHow to Verify
1"What is X" has 40-60 word definition1Count words in first paragraph after "What is" H2
2At least one H2 is phrased as question1Check for "What is", "How does", "Why" H2s
3Numbered steps for "How to" content1Uses numbered list or step component
4Comparison tables (if applicable)1Tables for "X vs Y" content

Featured Snippet Formats:

Query TypeWinning FormatYour Content
"What is X"Paragraph40-60 word definition after H2, bold keyword
"How to X"Numbered listNumbered steps
"X vs Y"TableComparison table with clear column headers
"Types of X"Bullet listBold type name + description
"[X] examples"Code blockCode examples with brief explanations

Definition Paragraph Example (40-60 words):

## What is a Closure?

A **closure** is a function that retains access to variables from its outer
(enclosing) scope, even after that outer function has finished executing.
Closures are created every time a function is created, allowing inner functions
to "remember" and access their lexical environment.

Internal Linking Checklist (4 points)

#CheckPointsHow to Verify
13-5 related pages linked in body1Count internal links in prose
2Descriptive anchor text1No "click here", "here", "this"
3Prerequisites noted with links1Warning/note with links at start
4Related content section has 3-4 items1Related section at end with links

Good Anchor Text:

BadGood
"click here""event loop guide"
"here""our Promises documentation"
"this article""understanding the call stack"
"read more""dependency injection patterns"

Technical SEO Checklist (3 points)

#CheckPointsHow to Verify
1Single H1 per page1Only one # heading (the title)
2URL slug contains keyword1Descriptive slug, not IDs
3No orphan pages1Page is linked from at least one other page

URL/Slug Best Practices:

GoodBad
/docs/closures/docs/c1
/docs/event-loop/docs/topic-7
/api/authentication/api/abc123

Rules for slugs:

  • Include primary keyword
  • Use hyphens, not underscores
  • Keep under 50 characters
  • Lowercase only

Scoring System

Total Points Available: 30

CategoryMax Points
Title Tag4
Meta Description4
Keyword Placement5
Content Structure6
Featured Snippets4
Internal Linking4
Technical SEO3
Total30

Score Interpretation

ScorePercentageStatusAction
27-3090-100%ExcellentReady to publish
23-2675-89%GoodMinor optimizations needed
17-2255-74%FairSeveral improvements needed
0-16<55%PoorSignificant work required

Common SEO Issues and Fixes

Title Tag Issues

IssueFix
Too short (<50 chars)Add benefit clause: "How X Works"
Too long (>60 chars)Trim to essential keywords + hook
Missing keywordLead with topic name
No hookAdd what reader will understand

Meta Description Issues

IssueFix
Too short (<120 chars)Add specifics about what's covered
Too long (>160 chars)Edit ruthlessly, keep key information
Starts with "Master"Use "Learn", "Understand", "Discover"
Too vagueList specific subtopics: "Covers X, Y, and Z"

Content Structure Issues

IssueFix
No question hookStart with "How does...?" or "Why...?"
Key content too lateMove practical example to first 200 words
Missing summary boxAdd "What you'll learn" list
Long paragraphsBreak into 2-4 sentence chunks
Under 1,500 wordsAdd more depth, examples, edge cases

Featured Snippet Issues

IssueFix
No "What is" definitionAdd 40-60 word definition paragraph
Definition too longTighten to 40-60 words
No question H2sAdd "What is X?" or "How does X work?" H2
Steps not numberedUse numbered markdown list
No comparison tablesAdd table for "X vs Y" sections

Internal Linking Issues

IssueFix
No internal linksAdd 3-5 links to related pages
Bad anchor textReplace "click here" with descriptive text
No prerequisitesAdd note with prerequisite links
Empty Related sectionAdd 3-4 links to related content

SEO Audit Report Template

Use this template to document your findings.

# SEO Audit Report: [Page Title]

**File:** `[file path]`
**Date:** YYYY-MM-DD
**Auditor:** [Name]
**Overall Score:** XX/30 (XX%)
**Status:** Excellent | Needs Work | Poor

---

## Score Summary

| Category | Score | Status |
|----------|-------|--------|
| Title Tag | X/4 | |
| Meta Description | X/4 | |
| Keyword Placement | X/5 | |
| Content Structure | X/6 | |
| Featured Snippets | X/4 | |
| Internal Linking | X/4 | |
| Technical SEO | X/3 | |
| **Total** | **X/30** | |

---

## Target Keywords

**Primary Keyword:** [e.g., "JavaScript closures"]
**Secondary Keywords:**
- [keyword 1]
- [keyword 2]
- [keyword 3]

**Search Intent:** Informational / How-to / Comparison

---

## Title Tag Analysis

**Current Title:** "[current title]"
**Character Count:** XX characters
**Score:** X/4

| Check | Status | Notes |
|-------|--------|-------|
| Length 50-60 chars | | XX characters |
| Primary keyword in first half | | |
| Contains technology context | | |
| Contains compelling hook | | |

**Recommended Title:** "[suggested title]" (XX chars)

---

## Meta Description Analysis

**Current Description:** "[current description]"
**Character Count:** XX characters
**Score:** X/4

| Check | Status | Notes |
|-------|--------|-------|
| Length 150-160 chars | | XX characters |
| Starts with action word | | |
| Contains primary keyword | | |
| Promises specific value | | |

**Recommended Description:** "[suggested description]" (XX chars)

---

## Keyword Placement Analysis

**Score:** X/5

| Location | Present | Notes |
|----------|---------|-------|
| Title | | |
| Meta description | | |
| First 100 words | | Found at word XX |
| H2 heading | | Found in: "[H2 text]" |
| Natural reading | | |

---

## Content Structure Analysis

**Word Count:** X,XXX words
**Score:** X/6

| Check | Status | Notes |
|-------|--------|-------|
| Question hook opening | | |
| Key content in first 200 words | | |
| "What you'll learn" summary | | |
| Short paragraphs | | |
| 1,500+ words | | |
| Bolded key terms | | |

---

## Featured Snippet Analysis

**Score:** X/4

| Check | Status | Notes |
|-------|--------|-------|
| 40-60 word definition | | Currently XX words |
| Question-format H2 | | |
| Numbered steps | | |
| Comparison tables | | |

---

## Internal Linking Analysis

**Score:** X/4

| Check | Status | Notes |
|-------|--------|-------|
| 3-5 internal links in body | | Found X links |
| Descriptive anchor text | | |
| Prerequisites noted | | |
| Related content section | | X items present |

---

## Technical SEO Analysis

**Score:** X/3

| Check | Status | Notes |
|-------|--------|-------|
| Single H1 per page | | |
| URL slug contains keyword | | |
| Not an orphan page | | |

---

## Priority Fixes

### High Priority
1. **[Issue]** — Current: [what it is now]. Fix: [what it should be].

### Medium Priority
1. **[Issue]** — Recommendation: [fix].

### Low Priority
1. **[Issue]** — Suggestion: [improvement].

---

## Final Recommendation

**Ready to Publish:** Yes / No — [reason]
**Next Review Date:** [when to re-audit]

Quick Reference

Character Counts

ElementIdeal Length
Title50-60 characters
Meta Description150-160 characters
Definition paragraph40-60 words

Keyword Density

  • Don't exceed 3-4 mentions of exact phrase per 1,000 words
  • Use variations naturally

Scannable Content Patterns

ElementSEO BenefitWhen to Use
Short paragraphsReduces bounce rateAlways (2-4 sentences max)
Bullet listsOften become featured snippetsLists of 3+ items
Numbered lists"How to" snippet potentialSequential steps
TablesHigh snippet potentialComparisons, reference data
Bold textHighlights keywords for crawlersFirst mention of key terms
Headings (H2/H3)Structure signals to search enginesEvery major topic shift

Summary

When auditing a documentation page for SEO:

  1. Identify target keywords using the keyword cluster template
  2. Check title tag — 50-60 chars, keyword first, hook, technology context
  3. Check meta description — 150-160 chars, action word, keyword, specific value
  4. Verify keyword placement — Title, description, first 100 words, H2
  5. Audit content structure — Question hook, early practical content, summary box, short paragraphs
  6. Optimize for featured snippets — 40-60 word definitions, numbered steps, tables
  7. Check internal linking — 3-5 links, good anchors, related content section
  8. Generate report — Document score, issues, and prioritized fixes

SEO is about making content easy to find for people who need it. Every optimization should also improve the reader experience.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.