|
| 1 | +# Accessibility Agents 5.2: Calibrated Scoring, Configurable Gates, Stronger Contracts |
| 2 | + |
| 3 | +## Overview |
| 4 | + |
| 5 | +Accessibility Agents 5.2 focuses on operational quality and reliability: configurable markdown accessibility gates, SARIF output for machine-readable CI, calibrated web severity scoring guidance, and contract validation between orchestrators and specialists. |
| 6 | + |
| 7 | +This release intentionally excludes signing and key-management changes. |
| 8 | + |
| 9 | +--- |
| 10 | + |
| 11 | +## Highlights |
| 12 | + |
| 13 | +### Configurable Markdown Accessibility Scanning |
| 14 | + |
| 15 | +`markdown-a11y-lint.mjs` now supports: |
| 16 | + |
| 17 | +- repository config file: `.a11y-markdown-config.json` |
| 18 | +- per-rule `enabled` and `severity` overrides |
| 19 | +- custom ignored directories |
| 20 | +- configurable per-rule output limits |
| 21 | +- runtime gate mode controls (`none`, `error`, `warning`) |
| 22 | + |
| 23 | +### SARIF Output for CI Pipelines |
| 24 | + |
| 25 | +Markdown accessibility findings can now be exported as SARIF: |
| 26 | + |
| 27 | +```bash |
| 28 | +node .github/scripts/markdown-a11y-lint.mjs . \ |
| 29 | + --format both \ |
| 30 | + --output artifacts/markdown-a11y.sarif |
| 31 | +``` |
| 32 | + |
| 33 | +This enables downstream code-scanning and artifact workflows without custom parsers. |
| 34 | + |
| 35 | +### CI Gate Maturity Controls |
| 36 | + |
| 37 | +`a11y-check.yml` now supports dispatch-time and variable-driven gate controls: |
| 38 | + |
| 39 | +- workflow inputs: `enforcement_mode`, `output_format` |
| 40 | +- repo variables: `A11Y_MARKDOWN_FAIL_ON`, `A11Y_MARKDOWN_FORMAT` |
| 41 | + |
| 42 | +Teams can adopt advisory mode first and tighten enforcement later without editing workflow logic. |
| 43 | + |
| 44 | +### Orchestrator-Specialist Contract Validation |
| 45 | + |
| 46 | +New validator: |
| 47 | + |
| 48 | +- `scripts/validate-orchestrator-dispatch.js` |
| 49 | + |
| 50 | +New workflow: |
| 51 | + |
| 52 | +- `.github/workflows/validate-orchestrator-contracts.yml` |
| 53 | + |
| 54 | +The validator enforces required dispatch sections, verifies `Read(".claude/specialists/*.md")` references, checks `Task(...)` usage, and confirms referenced specialists exist. |
| 55 | + |
| 56 | +### Web Severity Scoring v2 Guidance |
| 57 | + |
| 58 | +`web-severity-scoring` now documents: |
| 59 | + |
| 60 | +- profile-based scoring (`balanced`, `strict`, `advisory`) |
| 61 | +- calibration coefficients by rule family |
| 62 | +- confidence drift guardrails |
| 63 | +- normalized trend scoring for cross-audit comparability |
| 64 | +- recommended output metadata for reproducibility |
| 65 | + |
| 66 | +### New Metadata and Markup Conventions |
| 67 | + |
| 68 | +A new guide standardizes metadata and markdown structure: |
| 69 | + |
| 70 | +- `docs/guides/metadata-markup-conventions.md` |
| 71 | + |
| 72 | +It includes recommended frontmatter metadata patterns for agents and skills and instruction markup conventions for automation-friendly docs. |
| 73 | + |
| 74 | +--- |
| 75 | + |
| 76 | +## Additional Docs and Templates |
| 77 | + |
| 78 | +- Added template: `templates/markdown-config-moderate.json` |
| 79 | +- Updated: `docs/getting-started.md` with markdown scanner and CI gate usage |
| 80 | +- Updated: `AGENTS.md` with metadata conventions |
| 81 | +- Updated: `README.md` docs index to include metadata and markup conventions guide |
| 82 | + |
| 83 | +--- |
| 84 | + |
| 85 | +## Why This Matters |
| 86 | + |
| 87 | +5.2 improves how teams operate these agents at scale: |
| 88 | + |
| 89 | +- less CI fragility through explicit configuration |
| 90 | +- better interop through SARIF |
| 91 | +- reduced orchestration drift via contract validation |
| 92 | +- more reliable trend analysis through calibrated scoring guidance |
| 93 | +- clearer machine-readable metadata standards for future automation |
| 94 | + |
| 95 | +--- |
| 96 | + |
| 97 | +## Full Changelog |
| 98 | + |
| 99 | +See `CHANGELOG.md` for complete details. |
0 commit comments