Skip to content

Information Architecture

Audit the application's UI information architecture for navigation, placement, and consistency issues.

Workflow source: gh-aw-information-architecture.md

How it works

Traces the component tree from the top-level App/Layout component, examining navigation structure, action placement, picker positioning, data presentation, progressive disclosure, grouping, consistency, and empty states. Only files an issue when a concrete, user-impacting IA problem is found — something a real user would likely get confused or frustrated by; most runs end with noop.

Quick Install

mkdir -p .github/workflows && curl -sL \
  https://raw.githubusercontent.com/elastic/ai-github-actions/v0/gh-agent-workflows/information-architecture/example.yml \
  -o .github/workflows/information-architecture.yml

Trigger

Event Schedule
schedule Weekdays
workflow_dispatch Manual

Inputs

Input Description Required Default
additional-instructions Repo-specific instructions appended to the agent prompt No ""
setup-commands Shell commands run before the agent starts No ""
allowed-bot-users Allowlisted bot actor usernames (comma-separated) No github-actions[bot]

Safe Outputs

  • create-issue — file an information architecture report (max 1)

Example Workflow

name: Information Architecture
on:
  schedule:
    - cron: "0 17 * * 1-5"
  workflow_dispatch:

permissions:
  contents: read
  issues: write
  pull-requests: read

jobs:
  run:
    uses: elastic/ai-github-actions/.github/workflows/gh-aw-information-architecture.lock.yml@v0
    secrets:
      COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}