Skills Library
Skills are markdown files you install in your project's .claude/skills/ directory. They give Claude specialized SEO capabilities you can invoke during any coding session. Each skill uses Rampify's MCP tools to pull real keyword data and apply it to your content.
Available Skills#
| Skill | Tools Used |
|---|---|
| Blog Post from Cluster | get_keyword_clusters, create_content_spec, optimize_content |
| SEO Page Optimizer | scan_page, optimize_content, generate_meta |
| Meta Tag Generator | generate_meta |
| Schema Markup Generator | generate_schema |
| Keyword Research Workflow | suggest_keywords, lookup_keywords, create_keyword_cluster |
| Content Calendar Builder | get_keyword_clusters, get_gsc_insights, create_content_spec |
How Skills Work#
- Copy the skill
.mdfile to.claude/skills/in your project - Claude automatically reads skills when they match your request
- The skill defines a structured workflow using Rampify MCP tools
- You get consistent, data-driven results every time
Skills are open source and available on GitHub: rampify-dev/rampify-skills
Installing All Skills#
To install every skill at once:
mkdir -p .claude/skills
cd .claude/skills
for skill in blog-post-from-cluster seo-page-optimizer meta-tag-generator schema-markup-generator keyword-research-workflow content-calendar-builder; do
curl -sO "https://raw.githubusercontent.com/rampify-dev/rampify-skills/main/skills/${skill}.md"
done