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.
npx skills add PavloSEO/seohead-seotools --skill silo-auditgit clone --depth 1 https://github.com/PavloSEO/seohead-seotoolsWrote 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.
[](https://agentmods.dev/skills/pavloseo/seohead-seotools/silo-audit)<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.
<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>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.
| Model | Per session | Once 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 |
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>)[^<]+'`. 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
- Obtain crawl data. You need
audit.jsonfrom 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 inpages[]; exclude_next/,.js, and images. - 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
pageswithmetrics.inlinks == 0orunique_inlinks == 0by the total number of indexable pages. A rate above 10–15% indicates a structure with significant gaps. - Breadcrumbs: look for
BreadcrumbListin 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 whosesource_urlandtarget_urlbelong 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.sitemapto compareurls_in_sitemapwithin_crawl_not_in_sitemap. Coverage gaps indicate incomplete silo branches.
- URL path depth:
- 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. - 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.
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.
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.
- 11d ago First seen · 85 lines · 132 tokens per session scan A c54aaa93f76b
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.
Other skills, from other repositories
fire-your-seo-agency
A procedure for improving how a website appears in search engines and how AI answer systems find and cite it. It covers search, answer-engine, generative-AI, and Naver visibility.
geo-loop
Run one bounded eGEOagents loop iteration over a workspace domain - read the charter and fresh collector data, do ONE unit of work, write substrate artifacts, append one Timeline entry and one LOG line. Use for loop mode, /geo:loop, scheduled GEO runs, or continuous monitoring.
content-scoring
Score content against the 10 GEO criteria with evidence and prioritized fixes. Use when users ask to score, rate, evaluate, or estimate ranking strength.
competitive-analysis
Analyze AI-search competitors for a query and recommend ranking strategy. Use when users ask competitor analysis, who ranks, or competitive landscape.
validation-doctor
Check Brave Search and Chrome DevTools MCP availability and provide exact setup snippets. Use when validation dependencies are missing or uncertain.
geo-content-research
Researches what prompts people ask AI engines (ChatGPT, Gemini, Perplexity, Claude) about a product category and produces a prompts.csv artifact — a prioritized, strictly-schema'd list of the queries where the brand should be cited. Feeds the monitor workflow.