--------|--------------|--------------|-------------|
| SaaS marketing | 2-3 levels | Home, Features, Pricing, Blog, Docs | /features/name, /blog/slug |
| Content/blog | 2-3 levels | Home, Blog, Categories, About | /blog/slug, /category/slug |
| E-commerce | 3-4 levels | Home, Categories, Products, Cart | /category/subcategory/product |
| Documentation | 3-4 levels | Home, Guides, API Reference | /docs/section/page |
| Hybrid SaaS+content | 3-4 levels | Home, Product, Blog, Resources, Docs | /product/feature, /blog/slug |
| Small business | 1-2 levels | Home, Services, About, Contact | /services/name |
For full page hierarchy templates: See references/site-type-templates.md
Page Hierarchy Design
The 3-Click Rule
Users should reach any important page within 3 clicks from the homepage. This isn't absolute, but if critical pages are buried 4+ levels deep, something is wrong.
Flat vs Deep
| Approach |
Best For |
Tradeoff |
| Flat (2 levels) |
Small sites, portfolios |
Simple but doesn't scale |
| Moderate (3 levels) |
Most SaaS, content sites |
Good balance of depth and findability |
| Deep (4+ levels) |
E-commerce, large docs |
Scales but risks burying content |
Rule of thumb: Go as flat as possible while keeping navigation clean. If a nav dropdown has 20+ items, add a level of hierarchy.
Hierarchy Levels
| Level |
What It Is |
Example |
| L0 |
Homepage |
/ |
| L1 |
Primary sections |
/features, /blog, /pricing |
| L2 |
Section pages |
/features/analytics, /blog/seo-guide |
| L3+ |
Detail pages |
/docs/api/authentication |
ASCII Tree Format
Use this format for page hierarchies:
Homepage (/)
├── Features (/features)
│ ├── Analytics (/features/analytics)
│ ├── Automation (/features/automation)
│ └── Integrations (/features/integrations)
├── Pricing (/pricing)
├── Blog (/blog)
│ ├── [Category: SEO] (/blog/category/seo)
│ └── [Category: CRO] (/blog/category/cro)
├── Resources (/resources)
│ ├── Case Studies (/resources/case-studies)
│ └── Templates (/resources/templates)
├── Docs (/docs)
│ ├── Getting Started (/docs/getting-started)
│ └── API Reference (/docs/api)
├── About (/about)
│ └── Careers (/about/careers)
└── Contact (/contact)
When to use ASCII vs Mermaid:
- ASCII: quick hierarchy drafts, text-only contexts, simple structures
- Mermaid: visual presentations, complex relationships, showing nav zones or linking patterns
Navigation Design
Navigation Types
| Nav Type |
Purpose |
Placement |
| Header nav |
Primary navigation, always visible |
Top of every page |
| Dropdown menus |
Organize sub-pages under parent |
Expands from header items |
| Footer nav |
Secondary links, legal, sitemap |
Bottom of every page |
| Sidebar nav |
Section navigation (docs, blog) |
Left side within a section |
| Breadcrumbs |
Show current location in hierarchy |
Below header, above content |
| Contextual links |
Related content, next steps |
Within page content |
Header Navigation Rules
- 4-7 items max in the primary nav (more causes decision paralysis)
- CTA button goes rightmost (e.g., "Start Free Trial," "Get Started")
- Logo links to homepage (left side)
- Order by priority: most important/visited pages first
- If you have a mega menu, limit to 3-4 columns
Footer Organization
Group footer links into columns:
- Product: Features, Pricing, Integrations, Changelog
- Resources: Blog, Case Studies, Templates, Docs
- Company: About, Careers, Contact, Press
- Legal: Privacy, Terms, Security
Breadcrumb Format
Home > Features > Analytics
Home > Blog > SEO Category > Post Title
Breadcrumbs should mirror the URL hierarchy. Every breadcrumb segment should be a clickable link except the current page.
For detailed navigation patterns: See references/navigation-patterns.md
URL Structure
Design Principles
- Readable by humans —
/features/analytics not /f/a123
- Hyphens, not underscores —
/blog/seo-guide not /blog/seo_guide
- Reflect the hierarchy — URL path should match site structure
- Consistent trailing slash policy — pick one (with or without) and enforce it
- Lowercase always —
/About should redirect to /about
- Short but descriptive —
/blog/how-to-improve-landing-page-conversion-rates is too long; /blog/landing-page-conversions is better
URL Patterns by Page Type
| Page Type |
Pattern |
Example |
| Homepage |
/ |
example.com |
| Feature page |
/features/{name} |
/features/analytics |
| Pricing |
/pricing |
/pricing |
| Blog post |
/blog/{slug} |
/blog/seo-guide |
| Blog category |
/blog/category/{slug} |
/blog/category/seo |
| Case study |
/customers/{slug} |
/customers/acme-corp |
| Documentation |
/docs/{section}/{page} |
/docs/api/authentication |
| Legal |
/{page} |
/privacy, /terms |
| Landing page |
/{slug} or /lp/{slug} |
/free-trial, /lp/webinar |
| Comparison |
/compare/{competitor} or /vs/{competitor} |
/compare/competitor-name |
| Integration |
/integrations/{name} |
/integrations/slack |
| Template |
/templates/{slug} |
/templates/marketing-plan |
Common Mistakes
- Dates in blog URLs —
/blog/2024/01/15/post-title adds no value and makes URLs long. Use /blog/post-title.
- Over-nesting —
/products/category/subcategory/item/detail is too deep. Flatten where possible.
- Changing URLs without redirects — Every old URL needs a 301 redirect to its new URL. Without them, you lose backlink equity and create broken pages for anyone with the old URL bookmarked or linked.
- IDs in URLs —
/product/12345 is not human-readable. Use slugs.
- Query parameters for content —
/blog?id=123 should be /blog/post-title.
- Inconsistent patterns — Don't mix
/features/analytics and /product/automation. Pick one parent.
Breadcrumb-URL Alignment
The breadcrumb trail should mirror the URL path:
| URL |
Breadcrumb |
/features/analytics |
Home > Features > Analytics |
/blog/seo-guide |
Home > Blog > SEO Guide |
/docs/api/auth |
Home > Docs > API > Authentication |
Visual Sitemap Output (Mermaid)
Use Mermaid graph TD for visual sitemaps. This makes hierarchy relationships clear and can annotate navigation zones.
Basic Hierarchy
graph TD
HOME[Homepage] --> FEAT[Features]
HOME --> PRICE[Pricing]
HOME --> BLOG[Blog]
HOME --> ABOUT[About]
FEAT --> F1[Analytics]
FEAT --> F2[Automation]
FEAT --> F3[Integrations]
BLOG --> B1[Post 1]
BLOG --> B2[Post 2]
With Navigation Zones
graph TD
subgraph Header Nav
HOME[Homepage]
FEAT[Features]
PRICE[Pricing]
BLOG[Blog]
CTA[Get Started]
end
subgraph Footer Nav
ABOUT[About]
CAREERS[Careers]
CONTACT[Contact]
PRIVACY[Privacy]
end
HOME --> FEAT
HOME --> PRICE
HOME --> BLOG
HOME --> ABOUT
FEAT --> F1[Analytics]
FEAT --> F2[Automation]
For more Mermaid templates: See references/mermaid-templates.md
Internal Linking Strategy
Link Types
| Type |
Purpose |
Example |
| Navigational |
Move between sections |
Header, footer, sidebar links |
| Contextual |
Related content within text |
"Learn more about analytics" |
| Hub-and-spoke |
Connect cluster content to hub |
Blog posts linking to pillar page |
| Cross-section |
Connect related pages across sections |
Feature page linking to related case study |
Internal Linking Rules
- No orphan pages — every page must have at least one internal link pointing to it
- Descriptive anchor text — "our analytics features" not "click here"
- 5-10 internal links per 1000 words of content (approximate guideline)
- Link to important pages more often — homepage, key feature pages, pricing
- Use breadcrumbs — free internal links on every page
- Related content sections — "Related Posts" or "You might also like" at page bottom
Hub-and-Spoke Model
For content-heavy sites, organize around hub pages:
Hub: /blog/seo-guide (comprehensive overview)
├── Spoke: /blog/keyword-research (links back to hub)
├── Spoke: /blog/on-page-seo (links back to hub)
├── Spoke: /blog/technical-seo (links back to hub)
└── Spoke: /blog/link-building (links back to hub)
Each spoke links back to the hub. The hub links to all spokes. Spokes link to each other where relevant.
Link Audit Checklist
Output Format
When creating a site architecture plan, provide these deliverables:
1. Page Hierarchy (ASCII Tree)
Full site structure with URLs at each node. Use the ASCII tree format from the Page Hierarchy Design section.
2. Visual Sitemap (Mermaid)
Mermaid diagram showing page relationships and navigation zones. Use graph TD with subgraphs for nav zones where helpful.
3. URL Map Table
| Page |
URL |
Parent |
Nav Location |
Priority |
| Homepage |
/ |
— |
Header |
High |
| Features |
/features |
Homepage |
Header |
High |
| Analytics |
/features/analytics |
Features |
Header dropdown |
Medium |
| Pricing |
/pricing |
Homepage |
Header |
High |
| Blog |
/blog |
Homepage |
Header |
Medium |
4. Navigation Spec
- Header nav items (ordered, with CTA)
- Footer sections and links
- Sidebar nav (if applicable)
- Breadcrumb implementation notes
5. Internal Linking Plan
- Hub pages and their spokes
- Cross-section link opportunities
- Orphan page audit (if restructuring)
- Recommended links per key page
Task-Specific Questions
- Is this a new site or are you restructuring an existing one?
- What type of site is it? (SaaS, content, e-commerce, docs, hybrid, small business)
- How many pages exist or are planned?
- What are the 5 most important pages on the site?
- Are there existing URLs that need to be preserved or redirected?
- Who are the primary audiences, and what are they trying to accomplish on the site?
Related Skills
- content-strategy: For planning what content to create and topic clusters
- programmatic-seo: For building SEO pages at scale with templates and data
- seo-audit: For technical SEO, on-page optimization, and indexation issues
- page-cro: For optimizing individual pages for conversion
- schema-markup: For implementing breadcrumb and site navigation structured data
- competitor-alternatives: For comparison page frameworks and URL patterns
1---2name: site-architecture3description: When the user wants to plan, map, or restructure their website's page hierarchy, navigation, URL structure, or internal linking. Also use when the user mentions "sitemap," "site map," "visual sitemap," "site structure," "page hierarchy," "information architecture," "IA," "navigation design," "URL structure," "breadcrumbs," "internal linking strategy," "website planning," "what pages do I need," "how should I organize my site," or "site navigation." Use this whenever someone is planning what pages a website should have and how they connect. NOT for XML sitemaps (that's technical SEO — see seo-audit). For SEO audits, see seo-audit. For structured data, see schema-markup.4---5--------|--------------|--------------|-------------|6| SaaS marketing | 2-3 levels | Home, Features, Pricing, Blog, Docs | `/features/name`, `/blog/slug` |7| Content/blog | 2-3 levels | Home, Blog, Categories, About | `/blog/slug`, `/category/slug` |8| E-commerce | 3-4 levels | Home, Categories, Products, Cart | `/category/subcategory/product` |9| Documentation | 3-4 levels | Home, Guides, API Reference | `/docs/section/page` |10| Hybrid SaaS+content | 3-4 levels | Home, Product, Blog, Resources, Docs | `/product/feature`, `/blog/slug` |11| Small business | 1-2 levels | Home, Services, About, Contact | `/services/name` |1213**For full page hierarchy templates**: See [references/site-type-templates.md](references/site-type-templates.md)1415---1617## Page Hierarchy Design1819### The 3-Click Rule2021Users should reach any important page within 3 clicks from the homepage. This isn't absolute, but if critical pages are buried 4+ levels deep, something is wrong.2223### Flat vs Deep2425| Approach | Best For | Tradeoff |26|----------|----------|----------|27| Flat (2 levels) | Small sites, portfolios | Simple but doesn't scale |28| Moderate (3 levels) | Most SaaS, content sites | Good balance of depth and findability |29| Deep (4+ levels) | E-commerce, large docs | Scales but risks burying content |3031**Rule of thumb**: Go as flat as possible while keeping navigation clean. If a nav dropdown has 20+ items, add a level of hierarchy.3233### Hierarchy Levels3435| Level | What It Is | Example |36|-------|-----------|---------|37| L0 | Homepage | `/` |38| L1 | Primary sections | `/features`, `/blog`, `/pricing` |39| L2 | Section pages | `/features/analytics`, `/blog/seo-guide` |40| L3+ | Detail pages | `/docs/api/authentication` |4142### ASCII Tree Format4344Use this format for page hierarchies:4546```47Homepage (/)48├── Features (/features)49│ ├── Analytics (/features/analytics)50│ ├── Automation (/features/automation)51│ └── Integrations (/features/integrations)52├── Pricing (/pricing)53├── Blog (/blog)54│ ├── [Category: SEO] (/blog/category/seo)55│ └── [Category: CRO] (/blog/category/cro)56├── Resources (/resources)57│ ├── Case Studies (/resources/case-studies)58│ └── Templates (/resources/templates)59├── Docs (/docs)60│ ├── Getting Started (/docs/getting-started)61│ └── API Reference (/docs/api)62├── About (/about)63│ └── Careers (/about/careers)64└── Contact (/contact)65```6667**When to use ASCII vs Mermaid**:68- ASCII: quick hierarchy drafts, text-only contexts, simple structures69- Mermaid: visual presentations, complex relationships, showing nav zones or linking patterns7071---7273## Navigation Design7475### Navigation Types7677| Nav Type | Purpose | Placement |78|----------|---------|-----------|79| Header nav | Primary navigation, always visible | Top of every page |80| Dropdown menus | Organize sub-pages under parent | Expands from header items |81| Footer nav | Secondary links, legal, sitemap | Bottom of every page |82| Sidebar nav | Section navigation (docs, blog) | Left side within a section |83| Breadcrumbs | Show current location in hierarchy | Below header, above content |84| Contextual links | Related content, next steps | Within page content |8586### Header Navigation Rules8788- **4-7 items max** in the primary nav (more causes decision paralysis)89- **CTA button** goes rightmost (e.g., "Start Free Trial," "Get Started")90- **Logo** links to homepage (left side)91- **Order by priority**: most important/visited pages first92- If you have a mega menu, limit to 3-4 columns9394### Footer Organization9596Group footer links into columns:97- **Product**: Features, Pricing, Integrations, Changelog98- **Resources**: Blog, Case Studies, Templates, Docs99- **Company**: About, Careers, Contact, Press100- **Legal**: Privacy, Terms, Security101102### Breadcrumb Format103104```105Home > Features > Analytics106Home > Blog > SEO Category > Post Title107```108109Breadcrumbs should mirror the URL hierarchy. Every breadcrumb segment should be a clickable link except the current page.110111**For detailed navigation patterns**: See [references/navigation-patterns.md](references/navigation-patterns.md)112113---114115## URL Structure116117### Design Principles1181191. **Readable by humans** — `/features/analytics` not `/f/a123`1202. **Hyphens, not underscores** — `/blog/seo-guide` not `/blog/seo_guide`1213. **Reflect the hierarchy** — URL path should match site structure1224. **Consistent trailing slash policy** — pick one (with or without) and enforce it1235. **Lowercase always** — `/About` should redirect to `/about`1246. **Short but descriptive** — `/blog/how-to-improve-landing-page-conversion-rates` is too long; `/blog/landing-page-conversions` is better125126### URL Patterns by Page Type127128| Page Type | Pattern | Example |129|-----------|---------|---------|130| Homepage | `/` | `example.com` |131| Feature page | `/features/{name}` | `/features/analytics` |132| Pricing | `/pricing` | `/pricing` |133| Blog post | `/blog/{slug}` | `/blog/seo-guide` |134| Blog category | `/blog/category/{slug}` | `/blog/category/seo` |135| Case study | `/customers/{slug}` | `/customers/acme-corp` |136| Documentation | `/docs/{section}/{page}` | `/docs/api/authentication` |137| Legal | `/{page}` | `/privacy`, `/terms` |138| Landing page | `/{slug}` or `/lp/{slug}` | `/free-trial`, `/lp/webinar` |139| Comparison | `/compare/{competitor}` or `/vs/{competitor}` | `/compare/competitor-name` |140| Integration | `/integrations/{name}` | `/integrations/slack` |141| Template | `/templates/{slug}` | `/templates/marketing-plan` |142143### Common Mistakes144145- **Dates in blog URLs** — `/blog/2024/01/15/post-title` adds no value and makes URLs long. Use `/blog/post-title`.146- **Over-nesting** — `/products/category/subcategory/item/detail` is too deep. Flatten where possible.147- **Changing URLs without redirects** — Every old URL needs a 301 redirect to its new URL. Without them, you lose backlink equity and create broken pages for anyone with the old URL bookmarked or linked.148- **IDs in URLs** — `/product/12345` is not human-readable. Use slugs.149- **Query parameters for content** — `/blog?id=123` should be `/blog/post-title`.150- **Inconsistent patterns** — Don't mix `/features/analytics` and `/product/automation`. Pick one parent.151152### Breadcrumb-URL Alignment153154The breadcrumb trail should mirror the URL path:155156| URL | Breadcrumb |157|-----|-----------|158| `/features/analytics` | Home > Features > Analytics |159| `/blog/seo-guide` | Home > Blog > SEO Guide |160| `/docs/api/auth` | Home > Docs > API > Authentication |161162---163164## Visual Sitemap Output (Mermaid)165166Use Mermaid `graph TD` for visual sitemaps. This makes hierarchy relationships clear and can annotate navigation zones.167168### Basic Hierarchy169170```mermaid171graph TD172 HOME[Homepage] --> FEAT[Features]173 HOME --> PRICE[Pricing]174 HOME --> BLOG[Blog]175 HOME --> ABOUT[About]176177 FEAT --> F1[Analytics]178 FEAT --> F2[Automation]179 FEAT --> F3[Integrations]180181 BLOG --> B1[Post 1]182 BLOG --> B2[Post 2]183```184185### With Navigation Zones186187```mermaid188graph TD189 subgraph Header Nav190 HOME[Homepage]191 FEAT[Features]192 PRICE[Pricing]193 BLOG[Blog]194 CTA[Get Started]195 end196197 subgraph Footer Nav198 ABOUT[About]199 CAREERS[Careers]200 CONTACT[Contact]201 PRIVACY[Privacy]202 end203204 HOME --> FEAT205 HOME --> PRICE206 HOME --> BLOG207 HOME --> ABOUT208209 FEAT --> F1[Analytics]210 FEAT --> F2[Automation]211```212213**For more Mermaid templates**: See [references/mermaid-templates.md](references/mermaid-templates.md)214215---216217## Internal Linking Strategy218219### Link Types220221| Type | Purpose | Example |222|------|---------|---------|223| Navigational | Move between sections | Header, footer, sidebar links |224| Contextual | Related content within text | "Learn more about [analytics](/features/analytics)" |225| Hub-and-spoke | Connect cluster content to hub | Blog posts linking to pillar page |226| Cross-section | Connect related pages across sections | Feature page linking to related case study |227228### Internal Linking Rules2292301. **No orphan pages** — every page must have at least one internal link pointing to it2312. **Descriptive anchor text** — "our analytics features" not "click here"2323. **5-10 internal links per 1000 words** of content (approximate guideline)2334. **Link to important pages more often** — homepage, key feature pages, pricing2345. **Use breadcrumbs** — free internal links on every page2356. **Related content sections** — "Related Posts" or "You might also like" at page bottom236237### Hub-and-Spoke Model238239For content-heavy sites, organize around hub pages:240241```242Hub: /blog/seo-guide (comprehensive overview)243├── Spoke: /blog/keyword-research (links back to hub)244├── Spoke: /blog/on-page-seo (links back to hub)245├── Spoke: /blog/technical-seo (links back to hub)246└── Spoke: /blog/link-building (links back to hub)247```248249Each spoke links back to the hub. The hub links to all spokes. Spokes link to each other where relevant.250251### Link Audit Checklist252253- [ ] Every page has at least one inbound internal link254- [ ] No broken internal links (404s)255- [ ] Anchor text is descriptive (not "click here" or "read more")256- [ ] Important pages have the most inbound internal links257- [ ] Breadcrumbs are implemented on all pages258- [ ] Related content links exist on blog posts259- [ ] Cross-section links connect features to case studies, blog to product pages260261---262263## Output Format264265When creating a site architecture plan, provide these deliverables:266267### 1. Page Hierarchy (ASCII Tree)268Full site structure with URLs at each node. Use the ASCII tree format from the Page Hierarchy Design section.269270### 2. Visual Sitemap (Mermaid)271Mermaid diagram showing page relationships and navigation zones. Use `graph TD` with subgraphs for nav zones where helpful.272273### 3. URL Map Table274275| Page | URL | Parent | Nav Location | Priority |276|------|-----|--------|-------------|----------|277| Homepage | `/` | — | Header | High |278| Features | `/features` | Homepage | Header | High |279| Analytics | `/features/analytics` | Features | Header dropdown | Medium |280| Pricing | `/pricing` | Homepage | Header | High |281| Blog | `/blog` | Homepage | Header | Medium |282283### 4. Navigation Spec284- Header nav items (ordered, with CTA)285- Footer sections and links286- Sidebar nav (if applicable)287- Breadcrumb implementation notes288289### 5. Internal Linking Plan290- Hub pages and their spokes291- Cross-section link opportunities292- Orphan page audit (if restructuring)293- Recommended links per key page294295---296297## Task-Specific Questions2982991. Is this a new site or are you restructuring an existing one?3002. What type of site is it? (SaaS, content, e-commerce, docs, hybrid, small business)3013. How many pages exist or are planned?3024. What are the 5 most important pages on the site?3035. Are there existing URLs that need to be preserved or redirected?3046. Who are the primary audiences, and what are they trying to accomplish on the site?305306---307308## Related Skills309310- **content-strategy**: For planning what content to create and topic clusters311- **programmatic-seo**: For building SEO pages at scale with templates and data312- **seo-audit**: For technical SEO, on-page optimization, and indexation issues313- **page-cro**: For optimizing individual pages for conversion314- **schema-markup**: For implementing breadcrumb and site navigation structured data315- **competitor-alternatives**: For comparison page frameworks and URL patterns