# Audit Close A11Y

> (ePost) Mark an accessibility finding as resolved

- Skill: `majiayu000/audit-close-a11y` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/audit-close-a11y`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/audit-close-a11y/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/audit-close-a11y

---


Mark finding ID $ARGUMENTS as resolved in `.epost-data/a11y/known-findings.json`.

## Instructions

1. Load `.epost-data/a11y/known-findings.json`
2. Find the finding object with `id` matching the argument
3. If not found, report error with available IDs
4. If already `resolved: true`, report it's already resolved
5. Set `"resolved": true` and `"resolved_date": "<today YYYY-MM-DD>"`
6. Update top-level `"last_reviewed_date"` to today
7. Save the file

## Output

```json
{
  "finding_id": 3,
  "title": "Navigation bar buttons inaccessible",
  "platform": "ios|android|web",
  "wcag": "2.1.1",
  "status": "RESOLVED",
  "resolved_date": "2026-02-26"
}
```

## Constraints
- Only modify the targeted finding and `last_reviewed_date`
- Do not modify any other findings or fields
- If the finding ID does not exist, report error — do not create new entries

