Learn to use AI-powered Accelerator agents — from Agents to Hero
View the Project on GitHub devopsabcs-engineering/agentic-accelerator-workshop
| Duration | 35 minutes |
| Level | Intermediate |
| Prerequisites | Lab 00, Lab 01, Lab 02 |
By the end of this lab, you will be able to:
Start with a broad scan of the entire sample app source directory.
Ctrl+Shift+I).Type the following prompt:
@a11y-detector Scan sample-app/src/ for WCAG 2.2 Level AA violations
Wait for the detector to complete its analysis. Review the output and look for findings such as:
| Finding | WCAG Criterion | File |
|---|---|---|
Missing lang attribute on <html> element |
3.1.1 Language of Page | sample-app/src/app/layout.tsx |
| Insufficient color contrast ratios | 1.4.3 Contrast (Minimum) | sample-app/src/app/globals.css |
Missing form labels or aria-label attributes |
1.3.1 Info and Relationships | sample-app/src/app/products/page.tsx |
| Touch targets smaller than 44x44 CSS pixels | 2.5.8 Target Size (Minimum) | Multiple components |

Instead of scanning the entire directory, use the a11y-scan prompt file to focus on a single component.
In Copilot Chat, type:
/a11y-scan component=sample-app/src/app/page.tsx

Now try the detector-to-resolver handoff pattern you learned about in Lab 02.
lang attribute finding.In Copilot Chat, type:
@a11y-resolver Fix the missing lang attribute in sample-app/src/app/layout.tsx
lang="en" to the <html> element in layout.tsx.
Review all findings from the exercises above and map each one to its WCAG 2.2 success criterion.
Create a reference table for your findings:
| Finding | WCAG Criterion | Level | Principle |
|---|---|---|---|
Missing lang attribute |
3.1.1 Language of Page | A | Understandable |
| Low color contrast | 1.4.3 Contrast (Minimum) | AA | Perceivable |
| Missing form labels | 1.3.1 Info and Relationships | A | Perceivable |
| Small touch targets | 2.5.8 Target Size (Minimum) | AA | Operable |
| Missing alt text on images | 1.1.1 Non-text Content | A | Perceivable |
Consider why accessibility matters beyond compliance:
Note the WCAG conformance levels (A, AA, AAA). Level AA is the standard most organizations target for compliance.

Before proceeding, verify:
/a11y-scan prompt file for a targeted component scanProceed to Lab 05 — Code Quality Analysis with Copilot Agents.