.agents/skills/ibm-a11y-automation/SKILL.md
Use this skill when asked to scan Langflow frontend pages for accessibility issues.
Use the Python script:
uv run python scripts/a11y/a11y_scan.py \
--url http://localhost:3000 \
--routes-file scripts/a11y/a11y_routes.json \
--route-group static \
--out /tmp/langflow-a11y-report.json \
--markdown /tmp/langflow-a11y-report.md \
--html /tmp/langflow-a11y-report.html \
--timeout-ms 45000
Script options:
--url: base app URL, usually http://localhost:3000.--routes-file: route manifest JSON file. Prefer scripts/a11y/a11y_routes.json.--route-group: manifest group to scan. Default: static.--routes: comma-separated route paths to scan.--route: one route path; can be repeated instead of --routes.--levels: comma-separated issue levels. Default: violation.--out: JSON report path.--markdown: optional Markdown report path.--html: optional self-contained HTML report path.--timeout-ms: per-route timeout.--quiet-ms: network quiet window before scanning. Default: 1000.--states-file: JSON file with explicit modal/state actions.--headed: show browser while scanning.Use scripts/a11y/a11y_routes.json as the source of truth for route selection.
The normal CI/local batch is the manifest static group. Prefer that unless the user asks for custom, dynamic, or gated routes.
Common manifest-backed command:
uv run python scripts/a11y/a11y_scan.py \
--url http://localhost:3000 \
--routes-file scripts/a11y/a11y_routes.json \
--route-group static \
--out /tmp/langflow-a11y-static.json \
--markdown /tmp/langflow-a11y-static.md \
--html /tmp/langflow-a11y-static.html
Dynamic routes need real IDs before scanning:
/flow/:id//flow/:id/view/playground/:id//assets/knowledge-bases/:sourceId/chunksFor dynamic routes, get IDs from the loaded app, API responses, or existing test data before replacing placeholders.
Scan one route:
uv run python scripts/a11y/a11y_scan.py \
--url http://localhost:3000 \
--route /flows \
--out /tmp/langflow-a11y-flows.json
Scan multiple routes:
uv run python scripts/a11y/a11y_scan.py \
--url http://localhost:3000 \
--routes-file scripts/a11y/a11y_routes.json \
--route-group static \
--out /tmp/langflow-a11y-report.json \
--markdown /tmp/langflow-a11y-report.md \
--html /tmp/langflow-a11y-report.html
Scan more than violations:
uv run python scripts/a11y/a11y_scan.py \
--url http://localhost:3000 \
--routes-file scripts/a11y/a11y_routes.json \
--route-group static \
--levels violation,potentialviolation,recommendation \
--out /tmp/langflow-a11y-expanded.json
Scan route plus modal states:
uv run python scripts/a11y/a11y_scan.py \
--url http://localhost:3000 \
--states-file /tmp/langflow-a11y-states.json \
--out /tmp/langflow-a11y-modal-report.json \
--markdown /tmp/langflow-a11y-modal-report.md \
--html /tmp/langflow-a11y-modal-report.html \
--timeout-ms 45000
State file shape:
[
{
"route": "/settings/global-variables",
"states": [
{
"name": "new-global-variable-modal",
"open": [
{ "click": "[data-testid='api-key-button-store']" },
{ "waitFor": "[role='dialog']" }
],
"close": [
{ "press": "Escape" },
{ "waitForHidden": "[role='dialog']" }
]
}
]
}
]
Supported state actions:
{ "click": "<css selector>" }{ "clickText": "<visible text>" }{ "clickRole": { "role": "button", "name": "Create" } }{ "fill": { "selector": "<css selector>", "value": "text" } }{ "press": "Escape" }{ "press": { "selector": "<css selector>", "key": "Enter" } }{ "waitFor": "<css selector>" }{ "waitForHidden": "<css selector>" }{ "waitForText": "<visible text>" }{ "wait": 500 }The scanner always writes JSON. It can also write Markdown and HTML for presentation.
Use JSON for exact data. Use Markdown for PR comments or issues. Use HTML when the user wants a browsable report.
Summarize:
Use report fields directly:
totalIssuesresults[].routeresults[].stateresults[].phaseresults[].apiRequestsresults[].requestFailuresresults[].diagnosticsresults[].issues[].ruleIdroutes.tsx.