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#

SkillTools Used
Blog Post from Clusterget_keyword_clusters, create_content_spec, optimize_content
SEO Page Optimizerscan_page, optimize_content, generate_meta
Meta Tag Generatorgenerate_meta
Schema Markup Generatorgenerate_schema
Keyword Research Workflowsuggest_keywords, lookup_keywords, create_keyword_cluster
Content Calendar Builderget_keyword_clusters, get_gsc_insights, create_content_spec

How Skills Work#

  1. Copy the skill .md file to .claude/skills/ in your project
  2. Claude automatically reads skills when they match your request
  3. The skill defines a structured workflow using Rampify MCP tools
  4. 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