qa-detect-ux-table-layout

Detect table layout UX defects via DOM bounding-box comparisons.

Updated May 22, 2026
One-click install
npx skills add https://github.com/Luqman-Ud-Din/blackbox-qa-agent --skill qa-detect-ux-table-layout
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: qa-detect-ux-table-layout
Source: https://github.com/Luqman-Ud-Din/blackbox-qa-agent/tree/main/skills/qa-detect-ux-table-layout
Command: npx skills add https://github.com/Luqman-Ud-Din/blackbox-qa-agent --skill qa-detect-ux-table-layout

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill catches subtle table layout and usability defects that make data grids look broken, confusing, or hard to scan, especially when headers and body columns drift out of alignment.

Core Features & Use Cases

  • Header/container fit checks: Detects when the table header is narrower than its container and leaves obvious dead space on the right.
  • Column integrity checks: Finds phantom columns, empty Actions columns, empty header cells, and width mismatches between header and body rows.
  • Readability checks: Flags long tables without sticky headers or zebra striping so users can browse large datasets more easily.
  • Use Case: A product team can run this Skill on a dashboard table and quickly identify broken grid alignment before shipping a release.

Quick Start

Ask the agent to inspect the page for table layout issues and report any header, column, or readability defects.

Frequently Asked Questions about qa-detect-ux-table-layout

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect table layout UX bugs in responsive data grids?

To detect broken table headers in responsive web grids, inspect the rendered browser DOM using bounding-box comparisons to verify header alignment, catch phantom columns, and identify width mismatches between header and body rows.

What causes table header misalignment in responsive design?

Header misalignment in responsive design happens when header and body columns drift out of sync across different viewports, often leaving dead space when the table header renders narrower than its container.

How do I find empty action columns and phantom columns in web tables?

You can find empty action columns and phantom columns in web tables by running column integrity checks on the rendered DOM, which flags empty header cells, width mismatches between rows, and missing table content.

How do I check if a long data table needs a sticky header or zebra striping?

Check if a long data table needs a sticky header or zebra striping by running readability checks on the rendered grid, which flags long tables missing these features to ensure users can browse large datasets easily.

Does this table layout inspection require specific browser dependencies?

This table layout inspection requires browser DOM inspection to perform bounding-box comparisons and visibility checks. It has no external dependencies and works directly within the rendered interface environment.