silo-audit

silo-audit is a skill for Claude Code from PavloSEO/seohead-seotools. It costs 132 tokens per session (1,367 once invoked), scanned A, original, MIT.

A review of whether a website is organized into topical clusters, called silos, with hub pages, supporting pages, and useful links between them. It also checks whether the site is mostly a flat brochure site.

In plain words
What is it for?
Use it to evaluate URL structure, topical hubs, internal linking, semantic coverage, and whether the site has no silo, a basic silo, or an extended silo.
Why use it?
A crawl shows page depth and links but does not judge whether the pages form clear subject areas or cover a topic adequately.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to evaluate URL structure, topical hubs, internal linking, semantic coverage, and whether the site has no silo, a basic silo, or an extended silo.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pavloseo/seohead-seotools/silo-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PavloSEO/seohead-seotools --skill silo-audit
Clone the repo
git clone --depth 1 https://github.com/PavloSEO/seohead-seotools

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for silo-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/pavloseo/seohead-seotools/silo-audit/github.svg)](https://agentmods.dev/skills/pavloseo/seohead-seotools/silo-audit)
Your own site
<a href="https://agentmods.dev/skills/pavloseo/seohead-seotools/silo-audit"><img src="https://agentmods.dev/badge/skills/pavloseo/seohead-seotools/silo-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for silo-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/pavloseo/seohead-seotools/silo-audit"><img src="https://agentmods.dev/badge/skills/pavloseo/seohead-seotools/silo-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 132 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,367 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00132 $0.01367
Opus 5 $0.00066 $0.00683
Sonnet 5 $0.00026 $0.00273
Haiku 4.5 $0.00013 $0.00137

Measured 11d ago against content hash c54aaa93f76b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

silo-audit scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

from the sitemap: `curl -s https://example.com/sitemap.xml | grep -oP '(?<=<loc>)[^<]+'`.
.claude/skills/silo-audit/SKILL.md · 85 lines

How it starts

The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Silo Audit — Does the Website Have a Silo Architecture?

This is an agent analysis layer ON TOP OF Screaming Frog: SF knows depth and inlinks, but it does not judge whether URLs form topical silos with hubs or whether semantic coverage is complete. This skill builds a URL tree, calculates structural metrics, and returns a verdict of chaos / basic silo / extended silo. The theory—3 levels, extended silos, the filter matrix, cross-links, E-E-A-T, and coverage of 5–15% / 20–30% / 70–90%—is in reference/silo-architecture.md; load it before evaluating a website.

When to Use It

  • “Do we have a silo or not?” and “Evaluate the website structure/architecture.”
  • “Are there topical clusters?” and “Is semantic coverage complete?”
  • “Is the website flat or just a brochure site?” and “Have we reached topical authority?”
  • “Site structure audit” and “silo structure.”

Workflow

  1. Obtain crawl data. You need audit.json from sf-analyzer; see ../sf-analyzer/SKILL.md. If it is unavailable, run a crawl first. Otherwise, work from the sitemap: curl -s https://example.com/sitemap.xml | grep -oP '(?<=<loc>)[^<]+'. Build the path tree from indexable HTML in pages[]; exclude _next/, .js, and images.
  2. Structural metrics calculated in Python from pages[].metrics:
    • URL path depth: len([s for s in urlparse(u).path.split('/') if s]). Calculate both the maximum and median. A flat structure has a median of ≤1 and almost everything at L0/L1. A silo typically has L1 section hubs → L2 internal pages, with L3 in an extended silo.
    • Hub pages: for every L1 prefix such as /services/ or /industries/, check whether its own /<prefix>/ index page links to child pages. Count children per prefix; a cluster is viable when it has ≥3–5 pages beneath a shared hub.
    • SF crawl_depth (metrics.crawl_depth): calculate the maximum and median. A depth beyond 4–5 clicks indicates a diluted silo or poor internal linking.
    • Orphan rate: divide the number of pages with metrics.inlinks == 0 or unique_inlinks == 0 by the total number of indexable pages. A rate above 10–15% indicates a structure with significant gaps.
    • Breadcrumbs: look for BreadcrumbList in SF structured data or <nav> breadcrumbs in saved HTML. Their presence confirms the silo hierarchy.
    • Cross-cluster links: use issues[].locations/inlinks to calculate the share of links whose source_url and target_url belong to different L1 clusters. A healthy silo keeps authority within each cluster but has some controlled cross-links; see the reference. It should have neither zero cross-links nor chaotic “everything to everything” linking.
    • Sitemap vs. crawl: use summary.sitemap to compare urls_in_sitemap with in_crawl_not_in_sitemap. Coverage gaps indicate incomplete silo branches.
  3. Semantic coverage. Use the set of L1 prefixes and headings (metrics.title, h1) to identify which intents are covered and which have obvious gaps: catalog/services · industries/applications · dictionary/glossary · cases/portfolio · materials/blog hub · E-E-A-T pages (author/expert, about, methodology). A rough coverage percentage is covered intents divided by expected intents for the niche. Compare it with the reference thresholds: 5–15% — chaos, 20–30% — basic silo, and 70–90% — extended silo.
  4. Verdict. Consolidate the metrics into one of three classes:
    • chaos/brochure site — flat structure with median depth ≤1, no hubs, a high orphan rate, and 5–15% coverage;
    • basic silo — L1 hubs, clusters of 3–5+ pages, breadcrumbs, and 20–30% coverage;
    • extended silo — L3 depth, a filter matrix, glossary + cases + E-E-A-T, controlled cross-links, and 70–90% coverage. Then provide a gap list: which hubs, clusters, and intents are missing; where orphan nodes occur; where cross-cluster links cause the silo to “leak”; and what to add—specific sections and hub pages—to reach the next level.

Read the full file on GitHub · 85 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 85 lines · 132 tokens per session scan A c54aaa93f76b

Subscribe to this mod's changes

silo-audit is a skill published in the GitHub repository PavloSEO/seohead-seotools (0 stars, last pushed 8d ago), licensed MIT. It adds 132 tokens to every session and 1,367 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories