blog-post-optimizer
Analyze blog posts for SEO, readability, headline quality, and content structure. Generate meta tags and optimization recommendations with scoring.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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** -
- Quick Start
- Features
- 1. Headline Analysis
- 2. SEO Optimization
- 3. Content Structure
- 4. Readability Analysis
- 5. Content Statistics
- 6. Meta Tag Generation
- API Reference
- BlogPostOptimizer
- analyzeheadline(headline: str) -> Dict
- analyzeseo(content: str, keywords: List[str]) -> Dict
- analyzestructure(content: str) -> Dict
- analyzereadability(content: str) -> Dict
python scripts/blog_post_optimizer.py \
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.
