PluginBench
Skill
Pass
Audit score 90

information-architecture

julianoczkowski/designer-skills

Define the structural skeleton of a product or site before visual design begins.

What is information-architecture?

Information Architecture (IA) establishes the navigational and content hierarchy of a product or website. Use this skill after writing a design brief and before building, to plan site structure, organize content, map user flows, and define URL patterns.

  • Audit existing routing, navigation components, and page structure in your codebase
  • Interview users about structural priorities and navigation depth requirements
  • Produce a comprehensive IA document covering site map, navigation model, and content hierarchy
  • Map critical user flows through the product with decision points
  • Define naming conventions and URL strategy for consistency
  • Plan for content growth with pagination, filtering, and archive patterns

How to install information-architecture

npx skills add https://github.com/julianoczkowski/designer-skills --skill information-architecture
Prerequisites
  • A design brief (typically at `.design/*/DESIGN_BRIEF.md`) or clarity on what is being built and for whom
  • Access to the existing codebase to audit current routing and navigation structure
Claude Code
Cursor
Windsurf
Cline

How to use information-architecture

  1. 1.Locate or create a design brief for your feature
  2. 2.Run the skill and let it explore your codebase routing, navigation components, and page structure
  3. 3.Answer interview questions about user priorities, navigation depth, content growth, and user types
  4. 4.Review the recommended IA document generated in `.design/<feature-slug>/INFORMATION_ARCHITECTURE.md`
  5. 5.Refine the site map, navigation model, and user flows based on feedback
  6. 6.Use the IA document as the blueprint before creating development tasks or starting visual design

Use cases

Good for
  • Planning the page structure and navigation for a new web application before development begins
  • Organizing content hierarchy for a documentation or knowledge base site
  • Mapping user flows for onboarding, authentication, or multi-step workflows
  • Defining URL patterns and routing strategy for a Next.js, React Router, or Vue Router project
  • Restructuring an existing site's navigation to improve discoverability
Who it's for
  • Product designers planning site structure
  • Frontend developers building routing and navigation systems
  • Product managers defining user flows and information hierarchy
  • Content strategists organizing large content sets
  • UX researchers mapping user journeys

information-architecture FAQ

When should I run this skill?

Run this after your design brief is written and before you start building or creating detailed design mockups. It bridges strategy and execution.

What if my project already has routing and navigation?

The skill will audit what exists and extend or improve it rather than proposing a completely new architecture. It respects your current structure.

Do I need to answer all the interview questions?

At minimum, cover what users need to find or do, acceptable navigation depth, content growth patterns, distinct user types, and the primary page where users spend most time. The skill provides recommended answers for each.

What format is the output?

A markdown document (`INFORMATION_ARCHITECTURE.md`) saved in your `.design/<feature-slug>/` folder, containing a site map, navigation model, content hierarchy, user flows, naming conventions, component reuse map, content growth plan, and URL strategy.

Can this skill work with static sites or only dynamic apps?

It works with any structure: Next.js, React Router, Vue Router, SvelteKit, static HTML, or CMS-driven sites. The skill audits whatever routing and navigation patterns you have.

Full instructions (SKILL.md)

Source of truth, from julianoczkowski/designer-skills.


name: information-architecture description: Define the structural layer of a product or site before visual design begins. Covers navigation, content hierarchy, page structure, URL patterns, and user flows. Use when user wants to plan site structure, define navigation, map user flows, organize content, or mentions "IA" or "information architecture".

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]