Sandbox
@Bomx/distribb-skill

SEO skill for Claude Code, Codex, and Cursor

Distribb is a skill that gives agents a full SEO workflow: audit first, then keyword research, writing, backlink exchange, publishing, and optimization. It uses Distribb’s API plus local command docs and Python helpers to guide the process and connect to CMS, Google Search Console, Google Business Profile, and related tools.

189 stars35 forksPythonUpdated 27d ago
Who it's for

Builders who want their agent to plan, write, publish, and optimize SEO work from one workflow.

What it delivers

You can move from audit to content to backlinks and updates without stitching the SEO process together yourself.

What it does

SEO audit workflow

Runs a Search Console and crawl-based audit before publishing, covering CTR, decay, page-2 keywords, cannibalization, competitor gaps, and on-page checks.

Keyword research and topic planning

Finds keyword ideas with volume and difficulty, then helps organize content into topic clusters and content calendars.

Article writing and publishing

Creates, links, and publishes articles through Distribb, with support for CMS sync after edits.

Backlink exchange

Connects to Distribb’s backlink network and tracks targets and credits for exchange links.

Operational SEO channels

Includes Google Business Profile management, AI visibility work, news writing, statistics pages, Instagram carousels, YouTube motion videos, and government directory backlinks.

Command and helper library

Ships slash command docs in `commands/`, playbooks in `references/`, and Python helpers for CLI use and research.

How to get it

  1. 1Run
    npx skills add Bomx/distribb-skill
  2. 2Run
    export DISTRIBB_API_KEY=your_key_here

README

Install as a skill

npx skills add Bomx/distribb-skill

Distribb SEO Skill

SEO automation for AI agents. Use any AI model you want. Distribb provides the infrastructure: real keyword data, backlinks from real businesses, a Google Search Console audit, CMS publishing, content calendar, social repurposing and direct social posting, Google Business Profile management (live reviews, public replies, Google posts), Microworkers campaign management, and analytics.

Quick Start

export DISTRIBB_API_KEY=your_key_here

No installation required for the API. The skill uses curl and jq. The first time it loads, it walks the user through the proper SEO process: account + onboarding, connect website + Google Search Console, audit, topic clusters, write + backlink, optimize.

The proper SEO process (what this skill runs)

  1. Sign up and complete onboarding at distribb.io (Distribb learns the business).
  2. Connect the two things that matter most: the website/CMS and Google Search Console.
  3. Confirm the site has a blog to publish to.
  4. Audit the site before writing anything (/gsc-audit). Available on every plan.
  5. Plan topic clusters, then do keyword research to fill them.
  6. Write and publish, always including 1-2 backlink-exchange links.
  7. Optimize pages stuck on page 2+ using GSC data (/optimize).

Slash Commands

CommandWhat it does
/distribbOverview, account status, and the proper SEO process
/distribb-setupCheck the API key, confirm website + GSC are connected, enable the commands
/gsc-audit <domain>Full SEO audit (CTR, decay, page-2, cannibalization, topic clusters, competitor, on-page)
/keyword-research <seed>Keyword ideas with volume and difficulty
/write-article <keyword>Research, write, link, backlink, and publish one article
/optimizeRewrite pages stuck on page 2+ from GSC data
/backlinksCheck credits and targets, explain the exchange
/content-calendarList, schedule, and manage articles
/ai-visibilityFind where AI engines should recommend you, and which listicles to pitch
/news-writer <site-url-or-niche>Turn fresh news in your niche into grounded drafts and queue them in Distribb to autopublish
/statistics-page-writer <topic>Deep-research and publish a sourced statistics page journalists love to link to
/youtube-motion-video <topic>Make a faceless motion-collage explainer video ("In a Nutshell" docu style), YouTube-SEO it, and publish it to the connected YouTube channel
/instagram-carousel <article-id-or-keyword>Turn one article or keyword into a viral, save-driven Instagram carousel (cover hook, one idea per slide, comment-for-link play), publish it, and close the SEO loop with a companion article
/review-video <competitor>Compile REAL, verified competitor reviews into a " reviews" video, position your business as the alternative, and publish to YouTube + a companion article
/gbpGoogle Business Profile manager: live review triage, public review replies, Google posts, post analytics
/gov-backlinksRegister your business in the free government directories (SAM.gov, the SBA small business listing, state vendor portals) for real .gov profile backlinks

Command files live in commands/. If they are not auto-registered by your installer, run /distribb-setup or copy commands/*.md into your project's .claude/commands/ folder.

Plans

PlanKeyword dataBacklinksWho writes
Agentic Mode ($49/mo, 3-day trial)Distribb-providedUnlimited exchangeYou (the agent)
Pro ($97/mo)Distribb-providedUnlimited exchangeDistribb writes + publishes for you
AcceleratorDistribb-providedUnlimited exchangeYou + done-for-you AI-search distribution

The free Agentic plan ($0/mo) is deprecated and no longer offered to new users. Current plans are Agentic Mode at $49/month and Pro at $97/month.

Every plan can run the audit and use the content calendar. See references/plans-and-backlinks.md for full detail. Current pricing is at distribb.io.

Commands (raw API)

# Projects
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  https://distribb.io/api/v1/projects | jq .

# Business context (brand voice, competitors, custom instructions)
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/business-context?project_id=42" | jq .

# Google Search Console (powers the audit + optimizations)
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/search-console?project_id=42&days=90&limit=100" | jq .

# Keyword research
# Legacy Free Agentic accounts: returns HTTP 402 with `error: "byo_keys_required"` until
# the user saves their own DataForSEO or Ahrefs API key in Settings.
curl -s -X POST -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "crm software", "project_id": 42}' \
  https://distribb.io/api/v1/keywords/search | jq .

# Internal links
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/internal-links?project_id=42&keyword=crm+software" | jq .

# Backlink targets
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/backlink-targets?project_id=42&keyword=crm+software" | jq .

# Create article
curl -s -X POST -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id": 42, "keyword": "best crm", "title": "Best CRM", "content": "<h2>...</h2>", "status": "Draft"}' \
  https://distribb.io/api/v1/articles | jq .

# Optimization suggestions (rewrite page-2 pages)
curl -s -X POST -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id": 42}' \
  https://distribb.io/api/v1/suggestions/run | jq .

# Publish to CMS
curl -s -X POST -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  https://distribb.io/api/v1/articles/123/publish | jq .

# Edit an ALREADY-PUBLISHED article and push the change to the live post.
# The PUT saves inside Distribb; "sync": true (or the /sync call) updates the
# live post in place. Supported on WordPress, Webhook, Shopify, Webflow, Wix,
# Ghost, GoHighLevel, Framer and Notion.
curl -s -X PUT -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title": "The Corrected Title", "sync": true}' \
  https://distribb.io/api/v1/articles/123 | jq .

curl -s -X POST -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  https://distribb.io/api/v1/articles/123/sync | jq .

# Integrations
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/integrations?project_id=42" | jq .

# Google Business Profile: status + live reviews + public reply + posts
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/gbp/status?project_id=42" | jq .
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/gbp/reviews?project_id=42&has_reply=false" | jq .
curl -s -X POST -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id": 42, "review_id": "<review_id from /gbp/reviews>", "message": "Thanks Sarah!"}' \
  https://distribb.io/api/v1/gbp/reviews/reply | jq .
curl -s -X POST -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id": 42, "text": "Spring checks now booking", "link": "https://acme.com/offer"}' \
  https://distribb.io/api/v1/gbp/posts | jq .

# Microworkers campaigns
curl -s -H "Authorization: Bearer $DISTRIBB_API_KEY" \
  "https://distribb.io/api/v1/microworkers/campaigns?project_id=42" | jq .

The Audit

Real SEO starts with an audit, not with publishing. /gsc-audit <domain> (or references/audit-playbook.md) runs nine analyses from Distribb's own Search Console connection and a live crawl: CTR optimization, content decay, striking-distance / page-2 keywords, keyword cannibalization, dead pages, brand vs non-brand health, topical authority clusters (topic cocoons), competitor gaps, and basic on-page checks. It ends with a prioritized action plan wired into Distribb. Works on every plan.

Backlink Exchange

Distribb connects real businesses that exchange backlinks. When your article includes a link to a network partner, Distribb detects it on submission and credits your project. More given = more received. Every current plan gets unlimited exchange access; legacy Free Agentic accounts receive 1 backlink/month. These are high-DR links from legitimate business websites.

Bring-Your-Own-Keys (legacy Free Agentic accounts)

The free Agentic plan is deprecated and no longer offered to new users. Accounts still on it do not bundle keyword data, so those users save their own DataForSEO or Ahrefs API keys at distribb.io/settings#seo-keys. All other endpoints (articles, integrations, backlinks, audit) work normally without any keys.

When /api/v1/keywords/search is called from a legacy Free Agentic account with no keys saved, the response is HTTP 402 with "error": "byo_keys_required" and an instructions_for_agent string. Surface that string to the user verbatim and do not retry until they have saved credentials.

Microworkers Campaign Management

Distribb can create/register project-scoped Microworkers Basic Campaigns, list worker slots/submissions, and rate submissions as OK, NOK, or REVISE. Campaign creation requires project_id, title, description, and template_html; optional fields include platform, campaign_type, category_id, available_positions, payment_per_task, proof settings, and timing controls.

References

FileWhat it covers
references/audit-playbook.mdThe full SEO audit workflow
references/onboarding-guide.mdEverything onboarding collects + the website + GSC connections
references/platform-guide.mdWhere things live in the app (calendar, settings, backlinks, optimizations)
references/plans-and-backlinks.mdPlans, the backlink exchange, and the Accelerator
references/statistics-page-playbook.mdHow /statistics-page-writer deep-researches and builds a journalist-ready statistics page
references/youtube-motion-video-playbook.mdHow /youtube-motion-video makes a motion-collage explainer with the super-video-maker skill, YouTube-SEOs it, and publishes it to the connected YouTube channel
references/gov-backlinks-playbook.mdHow /gov-backlinks drives the browser through SAM.gov and the other government registries, the wizard answers and traps, and the account/tax/certification steps that always stay with the user
references/instagram-carousel-playbook.mdHow /instagram-carousel turns a Distribb article/keyword into a save-driven Instagram carousel for SEO: the Carousel Maker JSON contract, cover/hook system, design specs, the comment-for-link play, rendering, and the publish paths

Sub-skills

FolderWhat it does
90-day-seo-sprint/Run the Distribb 90-Day SEO Sprint: a phased program (Pre-launch / Foundation / Content Engine / Authority) built on the endpoints in this skill. Use when the user asks for an "SEO sprint", "90-day SEO plan", or "where do I start with SEO".

Command-line helpers (optional)

The skill works fully with curl + jq (no install). These Python helpers ship as optional conveniences:

FileWhat it is
distribb_cli.pyA thin CLI over the same API (projects:list, articles:create, keywords:search, suggestions:list, ai-visibility:get, ai-visibility:prompts:add, etc.). pip install requests python-dotenv, then export DISTRIBB_API_KEY=....
distribb_research.pyA standalone original-data research pipeline (plan -> scrape -> analyze) that produces a sourced hook + data table to weave into articles. Uses your own AI key; never invents data.
distribb_writer.pyA reference implementation showing how to write an SEO article locally with your own AI and submit it via the API. Meant to be modified or swapped out.
news_topics.pyUsed by /news-writer. A stdlib-only Google News RSS scraper (no API key, no install) that surfaces fresh, recent headlines for a niche and writes news_topics_export.csv next to itself.

MCP Server (Cursor / Claude Desktop)

The MCP server exposes every Distribb endpoint as a native tool. See the API docs for setup.

Get an API Key

Sign up at distribb.io. Your API key is in Settings after you complete onboarding.

Files in the repo

Repository payload10 top-level entries
  • __pycache__
  • 90-day-seo-sprint
  • commands
  • references
  • distribb_cli.py
  • distribb_research.py
  • distribb_writer.py
  • news_topics.py
  • README.md
  • SKILL.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k
ayghri/
i-have-adhd

A skill to stop your coding agent from burying the answer. ADHD-friendly output.

38k
mvanhorn/
last30days-skill

AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary

62k
Nanako0129/
sepia

De-AI writing skill for any Agent Skills-compatible agent (77+ via the Skills CLI), with native plugins for Claude Code, Codex, Grok Build, and Antigravity. Narrative-architecture repair for fiction, venue-matched rules for professional prose. Based on StoryScope (arXiv:2604.03136).

2.5k
Imbad0202/
academic-research-skills

Academic Research Skills for Claude Code: research → write → review → revise → finalize

48k