A free, open-source alternative to Surfer, MarketMuse, Clearscope & Frase — built as Claude Code skills. Topical authority, content briefs, AI writing, schema, GEO, and backlinks. With a fabrication guard that refuses to invent numbers.
FAQ
semantic-seo-suite is a Claude Code plugin with 10 hand-picked skills for marketing work, indexed on Flowy. Install it with the command on its page. It includes answer-engine-optimizer, content-brief-generator, content-distribution. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add siddiqss/semantic-seo-suite> /plugin install semantic-seo-suite@semantic-seo-suite
A free, open-source alternative to Surfer, MarketMuse, Clearscope & Frase — built as Claude Code skills. Topical authority, content briefs, AI writing, schema, GEO, and backlinks. With a fabrication guard that refuses to invent numbers.
· Free forever ·
· No SaaS, no seat fees
Paid "AI SEO platforms" cost $50–$1,000+/month and quietly fabricate: made-up search volumes, invented "content scores," hallucinated product claims. This suite does the same jobs — entity-based topical mapping, content-gap analysis, keyword clustering, content briefs, on-page optimization, internal linking, schema markup, rank tracking, and answer-engine optimization — as skills you run inside Claude Code, for free, with the provenance of every number tagged and a guard that blocks any claim that isn't grounded.
Clone it, open the folder in Claude Code, talk to it in plain English.
| Semantic SEO Suite | Surfer / MarketMuse / Clearscope / Frase / SemanticOS | |
|---|---|---|
| Price | Free, MIT, unlimited projects | $50–$1,000+/mo, per-seat, project caps |
| Where it runs | Your Claude Code — artifacts are files you own | Their cloud; you rent access |
| Topical map & authority | ✅ pillar/cluster/supporting + prioritized calendar | ✅ (their core feature) |
| Content briefs | ✅ entity-aware, with a do-not-fabricate list | ✅ |
| Content optimization score | ✅ three scores: fabrication, quality/depth, AEO | ✅ one proprietary "content score" |
| Fabrication guard | ✅ refuses invented stats & unverified brand claims | ❌ no fact guard — AI output can hallucinate |
| AEO / GEO (get cited by ChatGPT, AI Overviews) | ✅ dedicated skill + scorer | ⚠️ partial / emerging |
| Off-page + distribution | ✅ backlink prospecting + repurposing plans | ❌ usually separate products |
| Keyword volume / SERP data | Bring-your-own (SerpApi/GSC) or run free at T0 | Bundled proprietary database |
| Customizable | ✅ edit the skills & rulebook yourself | ❌ fixed black box |
Where paid tools still win (honestly): they own huge proprietary keyword/SERP databases, polished dashboards, and one-click integrations. This suite trades the UI for transparency, ownership, and zero cost — and lets you plug in the same data via your own SerpApi/GSC keys.
No Google Business Profile / local-SEO module, no dedicated multilingual mode (it's language-agnostic at T0 but not specialized), and exports are Markdown / JSON / HTML rather than one-click Notion / Sheets / PDF. And you won't find a "+312% traffic" claim anywhere — we don't publish outcome stats we can't attribute. PRs welcome.
Everything is a file you own, not a dashboard you rent:
topical-map.json + a readable tree (topical-map.md)heatmap.html you open in any browser; color-codes every node by status (planned → briefed → drafted → published → needs-update)See a complete worked example in
examples/driftroast/— a fictional coffee brand with a real map, brief, guarded draft (scores: fabrication CLEAN · quality 100 · AEO 92), heatmap, schema, and link plan.
| Skill | What it does |
|---|---|
| seo-brand-foundation | Central entity, audience, competitors, EAV attributes, locked-facts ledger |
| topical-map-builder | Topical map + prioritized content calendar |
| content-brief-generator | Entity-aware brief: outline, snippet target, do-not-fabricate list |
| semantic-draft-writer | Writes the draft, runs 3 gates (fabrication → quality → AEO) |
| linking-and-schema | Internal-link plan + JSON-LD structured data |
| semantic-site-auditor | Content-gap, cannibalization, entity-drift, orphan audit |
| seo-performance-tracker | Google Search Console feedback loop |
| answer-engine-optimizer | GEO — get cited by ChatGPT / Perplexity / AI Overviews |
| link-opportunities | Backlink prospecting, competitor gap, safe anchor mix |
| content-distribution | Channels, repurposing atoms, cadence |
validate_draft.py — fabrication guard: no naked stats, no unbacked brand claims (hard gate).draft_quality.py — depth, examples, specificity, anti-filler (the bar to beat).aeo_score.py — citation-readiness for AI answer engines (a floor to clear).Every number the suite emits is tagged measured, derived, or asserted. A bare number is treated as a bug.
| Tier | Needs | Adds |
|---|---|---|
| T0 | nothing | Full methodology on pure LLM + web search. |
| T1 | free installs / GSC OAuth | Embeddings (cannibalization/drift), site crawl, Search Console. |
| T2 | a SerpApi key | Live SERP signals → data-driven calendar prioritization. |
Keys live only in a git-ignored .env (copy .env.example) — they never enter the repo.
git clone https://github.com/siddiqss/semantic-seo-suite.git
cd semantic-seo-suite
Python 3.10+ required. T0 (the full methodology) needs almost nothing:
# T0 — required minimum (no accounts, no keys):
pip install jsonschema pyyaml
# T1 — optional (embeddings for cannibalization/drift, site crawl, Search Console):
pip install sentence-transformers trafilatura pytrends beautifulsoup4 \
google-api-python-client google-auth-oauthlib
# T2 — optional (live SERP data): nothing to install — just add SERPAPI_KEY:
cp .env.example .env # then paste your key into .env (git-ignored)
On an externally-managed Python (Homebrew/Debian) add
--break-system-packages, or use a venv:python -m venv .venv && source .venv/bin/activate.
claude # or open the folder in the Claude Code desktop app
Or install as a plugin (one command, no clone):
/plugin marketplace add siddiqss/semantic-seo-suite
/plugin install semantic-seo-suite
Either way, then just ask:
"Set up the SEO foundation for
mydomain.com." · "Build the topical map." · "Write a brief for X, then draft it." · "Audit my site." · "How do we get cited by ChatGPT?"
The skills write everything into your brand workspace (brands/<your-slug>/).
The map ships as JSON + a readable Markdown tree; the heatmap is a self-contained HTML file you render, then open in any browser. Using the bundled demo:
# the topical map as a readable tree — open in any editor
open examples/driftroast/topical-map.md # macOS (Linux: xdg-open · Windows: start)
# render the visual coverage heatmap, then open it
python scripts/map_heatmap.py \
--map examples/driftroast/topical-map.json \
--out examples/driftroast/audits/heatmap.html
open examples/driftroast/audits/heatmap.html # macOS (Linux: xdg-open · Windows: start)
For your own brand, swap examples/driftroast → brands/<your-slug>.
# fabrication guard on the demo draft → CLEAN
python scripts/validate_draft.py \
--draft examples/driftroast/drafts/how-to-make-pour-over-coffee.md \
--locked examples/driftroast/locked-facts.json --brand-terms "DriftRoast"
# quality + AEO scorers
python scripts/draft_quality.py --draft examples/driftroast/drafts/how-to-make-pour-over-coffee.md --floor 700
python scripts/aeo_score.py --draft examples/driftroast/drafts/how-to-make-pour-over-coffee.md
# every script's self-test
for s in aeo_score draft_quality link_prospects distribution_plan reprioritize_map serpapi_client provenance; do python scripts/$s.py --selftest; done
Full instructions per tier: RUNBOOK.md. Verify the suite yourself: TESTING.md.
Not a developer? Run the skills in the Claude Desktop app — no clone, no CLI.
Claude Desktop (easiest): in a chat, click the + icon → Add plugin → paste the repo URL:
https://github.com/siddiqss/semantic-seo-suite
Claude reads the plugin, shows the 10 skills, and installs them. Then just ask — "Build a topical map for mydomain.com," "write a brief and draft it," "how do we get cited by ChatGPT?"
Alternative — upload skill packages (e.g. claude.ai web, or org setups without plugin install): download the individual .skill files from the latest release and add each under Settings → Capabilities → Skills. (Custom Skills is a Pro/Max/Team/Enterprise feature.)
Either way, the apps run the skills' reasoning and lighter scripts; the heavy steps (site crawl, embeddings, Search Console) need Claude Code, which executes them directly against a real filesystem. Same skills.
skills/ 10 Claude Code skills (SKILL.md each)
framework/ 14 methodology docs the skills read
scripts/ 25 deterministic helpers (guards, scorers, SERP/GSC clients) — most ship --selftest
templates/ JSON schemas + config template
examples/ driftroast — a complete, fictional worked demo brand
brands/ your workspaces (git-ignored — client data never committed)
Built by Talha Siddique — Senior Full Stack Engineer and I build grounded, no-nonsense production AI systems. This suite is free and MIT-licensed; use it for your own brand, client work, or ventures. Issues and PRs welcome; star it if it saved you a subscription.
MIT.
.claude-plugin/
marketplace.json
plugin.json
.env.example
.github/
workflows/
package-skills.yml
.gitignore
assets/
overview.svg
brands/
.gitkeep
README.md
examples/
driftroast/
audits/
linking-plan.json
linking-plan.md
topical-map-heatmap.html
briefs/
how-to-make-pour-over-coffee.json
config.yaml
data/
schema/
_organization.jsonld
checklist.md
n-001.jsonld
n-002.jsonld
n-003.jsonld
n-004.jsonld
n-005.jsonld
n-006.jsonld
n-007.jsonld
n-008.jsonld
n-009.jsonld
drafts/
how-to-make-pour-over-coffee.md
entity-profile.json
locked-facts.json
topical-map.json
framework/
_research-notes.md
00-overview.md
answer-engine-optimization.md
content-distribution.md
contextual-vectors.md
eav-modeling.md
eeat-signals.md
internal-linking-rules.md
macro-micro-semantics.md
off-page-authority.md
query-semantics.md
schema-jsonld.md
semantic-writing-rules.md
source-context.md
topical-map-theory.md
LICENSE
README.md
RUNBOOK.md
scripts/
aeo_score.py
audit_site.py
build_skills.py
cluster_keywords.py
crawl_sitemap.py
dataforseo_client.py
distribution_plan.py
draft_quality.py
embed_corpus.py
extract_page_content.py
fetch_autocomplete.py
fetch_trends.py
gsc_analyze.py
gsc_client.py
link_prospects.py
linking_plan.py
map_heatmap.py
provenance.py
reprioritize_map.py
schema_jsonld.py
semantic_distance.py
serp_intent_classifier.py
serpapi_client.py
validate_draft.py
wikidata_entity.py
skills/
answer-engine-optimizer/
evals/
evals.json
SKILL.md
content-brief-generator/
evals/
evals.json
SKILL.md
content-distribution/
evals/
evals.json
SKILL.md
link-opportunities/
evals/
evals.json
SKILL.md
linking-and-schema/
evals/
evals.json
SKILL.md
semantic-draft-writer/
evals/
evals.json
SKILL.md
semantic-site-auditor/
evals/
evals.json
SKILL.md
seo-brand-foundation/
evals/
evals.json
SKILL.md
seo-performance-tracker/
evals/
evals.json
SKILL.md
topical-map-builder/
evals/
evals.json
SKILL.md
templates/
audit-report.template.md
brief.schema.json
calendar.template.md
config.yaml.template
entity-profile.schema.json
locked-facts.schema.json
topical-map.schema.json
TESTING.md© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic