Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
julianoczkowski avatar

Information Architecture

  • 4.3k installs
  • 481 repo stars
  • Updated July 6, 2026
  • julianoczkowski/designer-skills

A formal Information Architecture document mapping site structure, navigation, content hierarchy, user flows, and URL patterns for a product or site.

About

Information Architecture (IA) establishes the structural skeleton of a product or site between design brief and build phase. This skill guides developers through mapping site hierarchies, navigation systems, content priorities, and critical user flows. Developers use it after the design brief is finalized and before creating build tasks. The workflow examines existing routing patterns (Next.js, React Router, Vue Router, SvelteKit), navigation and layout components, and URL conventions, then extends or improves them. Through structured interviews covering user priorities, navigation depth, content growth patterns, distinct user types, and time-on-page analysis, the skill produces a formal IA document specifying site maps, navigation models, content hierarchies, user flows, naming conventions, component reuse patterns, content growth strategies, and URL rules. Examines existing codebase routing (Next.js, React Router, Vue Router, SvelteKit) and navigation components before proposing changes.

  • Examines existing codebase routing (Next.js, React Router, Vue Router, SvelteKit) and navigation components before propo
  • Interviews user about structural priorities: task frequency, navigation depth, content growth, user types, and high-valu
  • Produces formal IA document with site map, navigation model, content hierarchy per page, and critical user flows
  • Defines naming conventions glossary and component reuse map to ensure consistency across pages
  • Includes content growth plan and URL strategy for scalable, maintainable information architecture

Information Architecture by the numbers

  • 4,255 all-time installs (skills.sh)
  • +182 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #85 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

information-architecture capabilities & compatibility

Capabilities
analyze existing routing and navigation componen · interview user on structural priorities and user · map hierarchical site structure with url pattern · define navigation systems (primary, secondary, u · specify content priorities per page · model critical user flows with decision points · document naming conventions and component reuse · plan content growth and url strategy
Use cases
ui design · web design · planning · documentation
From the docs

What information-architecture says it does

This skill defines the structural skeleton of a product or site. It sits between the design brief and the build.
information-architecture.md
Run this after the brief is written and before tasks are created.
information-architecture.md
npx skills add https://github.com/julianoczkowski/designer-skills --skill information-architecture

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4.3k
repo stars481
Security audit3 / 3 scanners passed
Last updatedJuly 6, 2026
Repositoryjulianoczkowski/designer-skills

What it does

Define page structure, navigation hierarchy, content organization, and user flows before building the frontend.

Who is it for?

Projects at the design-to-build boundary; teams building multi-page sites, apps with complex content hierarchies, or products serving multiple user types.

Skip if: Single-page applications with trivial structure; projects already deep in development; designs with no design brief.

When should I use this skill?

User asks to plan IA, map navigation, organize content, define user flows, or mentions 'information architecture' after design brief is written.

What you get

Developers have a documented, shared structural blueprint that defines every page, navigation system, content priority, and critical user path before frontend coding begins.

  • INFORMATION_ARCHITECTURE.md with site map, navigation model, content hierarchy, user flows, naming glossary, component r

By the numbers

  • Covers navigation depth analysis to determine acceptable nesting levels
  • Includes interviews on 5+ structural decision categories (user priorities, depth, growth, user types, key pages)
  • Template produces 8 major sections: site map, navigation model, content hierarchy, user flows, naming conventions, compo

Files

SKILL.mdMarkdownGitHub ↗

This skill defines the structural skeleton of a product or site. It sits between the design brief and the build. Run this after the brief is written and before tasks are created.

Example prompts

  • "Plan the IA for this app before I start building"
  • "Map out the navigation and page structure"
  • "I need to organize the content for a documentation site"
  • "Define user flows for the onboarding experience"

Process

1. Look for an existing design brief at .design/*/DESIGN_BRIEF.md. If multiple subfolders exist, use the most recently modified one, or ask the user which feature they are working on. If no brief exists, ask the user what they are building and for whom.

2. Explore the existing codebase to understand what structure already exists:

  • Routing: Next.js app/ or pages/ directory, React Router config, Vue Router, SvelteKit routes, or static HTML page files
  • Navigation components: header, sidebar, navbar, breadcrumb, footer components
  • Layout components: root layouts, nested layouts, page wrappers, container components
  • Page directories: how pages are currently organized in the file system
  • URL patterns: existing slugs, dynamic segments, query parameter conventions
  • CMS or data layer: content models, API routes, data fetching patterns, MDX/content directories
  • If structure exists, this skill extends and improves it. Do not propose a new architecture that ignores what is already built.

3. Interview the user about structural decisions. For each question, provide your recommended answer.

Cover at minimum:

  • What are the primary things a user needs to find or do? Rank by frequency.
  • How many levels of navigation depth are acceptable?
  • What content will grow over time vs. what is fixed?
  • Are there distinct user types who need different entry points?
  • What is the one page/view where the user spends 80% of their time?

4. Once you have a shared understanding, produce the IA document using the template below and save it as INFORMATION_ARCHITECTURE.md in the same .design/<feature-slug>/ subfolder as the design brief.

IA Document Template

# Information Architecture: [Product/Site Name]

## Site Map

A hierarchical map of every page or view. Use indentation to show nesting. Include the URL pattern for each.

- Home `/`
  - Feature A `/feature-a`
    - Sub-page `/feature-a/detail`
  - Feature B `/feature-b`
- Settings `/settings`
  - Profile `/settings/profile`

## Navigation Model

Describe the navigation system:
- **Primary navigation**: What appears in the main nav? Maximum items.
- **Secondary navigation**: Sidebar, tabs, or contextual links within sections.
- **Utility navigation**: Account, settings, help, and anything outside the main content hierarchy.
- **Mobile navigation**: How navigation adapts. Hamburger, bottom tabs, or something else.

## Content Hierarchy

For each major page or view, define the content priority:

### [Page Name]
1. [Highest priority content] -- Why this comes first
2. [Second priority] -- Why this comes second
3. [Third priority] -- Rationale
4. [Below the fold / secondary]

## User Flows

The critical paths through the product. Each flow is a sequence of steps with decision points noted.

### [Flow Name] (e.g., "New user onboarding" or "Create a project")
1. User lands on [page]
2. User sees [content/prompt]
3. User takes action: [action]
   - If [condition A] -> [outcome]
   - If [condition B] -> [outcome]
4. User arrives at [destination]

## Naming Conventions

A glossary of terms used in the interface. Consistency matters. Pick one word and use it everywhere.

| Concept | Label in UI | Notes |
|---------|-------------|-------|
| [thing] | [what we call it] | [why this word] |

## Component Reuse Map

Which structural components (layouts, containers, navigation elements) are shared across pages.

| Component | Used on | Behavior differences |
|-----------|---------|---------------------|
| [layout/component] | [pages] | [any variations] |

## Content Growth Plan

Which sections of the site will accumulate content over time and how the IA accommodates that growth (pagination, filtering, search, archive patterns).

## URL Strategy

Rules for URL construction:
- Pattern: [e.g., `/section/subsection/item-slug`]
- Dynamic segments: [what is parameterized]
- Query parameters: [filtering, sorting, pagination]

Related skills

Forks & variants (1)

Information Architecture has 1 known copy in the catalog totaling 1 installs. They canonicalize to this original listing.

How it compares

Pick information-architecture over frontend implementation skills when the task is structural planning before any code or visual mockups exist.

FAQ

When should I run this skill?

After the design brief is written and before tasks are created. It bridges design intent and build execution.

What if my site structure already exists?

This skill extends and improves existing structure (routing, layouts, navigation) without proposing a competing architecture.

What deliverable do I get?

An INFORMATION_ARCHITECTURE.md document saved in .design/<feature-slug>/ with site maps, navigation models, content hierarchies, user flows, naming conventions, and URL rules.

Is Information Architecture safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.