Agent skill · Code Review & Quality

blog-post-optimizer

Analyze blog posts for SEO, readability, headline quality, and content structure. Generate meta tags and optimization recommendations with scoring.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill blog-post-optimizer-dkyazzentwatwa-chatgpt-skills-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/analysis/blog-post-optimizer-dkyazzentwatwa-chatgpt-skills-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Blog Post Optimizer Comprehensive content analysis toolkit for optimizing blog posts, articles, and web content. Analyzes headlines, SEO elements, content structure, readability, and generates actionable recommendations with scores. ## Quick Start ```python from scripts.blog_post_optimizer import BlogPostOptimizer # Initialize optimizer optimizer = BlogPostOptimizer() # Analyze a blog post with open('blog_post.md', 'r') as f: content = f.read() # Full analysis results = optimizer.analyze_full( content=content, headline="10 Ways to Boost Your Productivity", keywords=["productivity", "time management", "efficiency"] ) # View scores print(f"Overall Score: {results['overall_score']}/100") print(f"Headline Score: {results['headline']['score']}/100") print(f"SEO Score: {results['seo']['score']}/100") print(f"Readability Grade: {results['readability']['grade_level']}") # Export HTML report optimizer.export_html_report(results, 'report.html') ``` ## Features ### 1. Headline Analysis - **Power Words Detection** - Identifies emotional trigger words - **Character Count** - Optimal range 50-60 characters - **Emotional Impact** - Measures headline engagement potential - **A/B Suggestions** -

What's inside
Steps it walks through
  1. Quick Start
  2. Features
  3. 1. Headline Analysis
  4. 2. SEO Optimization
  5. 3. Content Structure
  6. 4. Readability Analysis
  7. 5. Content Statistics
  8. 6. Meta Tag Generation
  9. API Reference
  10. BlogPostOptimizer
  11. analyzeheadline(headline: str) -> Dict
  12. analyzeseo(content: str, keywords: List[str]) -> Dict
  13. analyzestructure(content: str) -> Dict
  14. analyzereadability(content: str) -> Dict
Ships with 1 file
  • metadata.json
Commands it runs
python scripts/blog_post_optimizer.py \
More from claude-skill-registry
All skills →
About this skill
What does the blog-post-optimizer skill do?

Analyze blog posts for SEO, readability, headline quality, and content structure. Generate meta tags and optimization recommendations with scoring.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill blog-post-optimizer-dkyazzentwatwa-chatgpt-skills-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going