resume-bullets
Transforms completed work into powerful resume bullet points with action verbs, technical context, and quantified impact. Use when completing tasks, updating…
Reviews accessibility including WCAG, ARIA, keyboard navigation. Use when junior builds forms, buttons, modals, interactive elements, or asks "is this accessible", "a11y", "screen reader".
$ npx -y skills add DanielPodolsky/ownyourcode --skill accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Reviews accessibility including WCAG, ARIA, keyboard navigation. Use when junior builds forms, buttons, modals, interactive elements, or asks "is this accessible", "a11y", "screen reader".
name: accessibility-fundamentals description: Reviews accessibility including WCAG, ARIA, keyboard navigation. Use when junior builds forms, buttons, modals, interactive elements, or asks "is this accessible", "a11y", "screen reader".
> "Accessibility is not a feature, it's a requirement. If 15% of users can't use your app, you've failed 15% of users."
Activate this skill when:
---
---
// ❌ BAD: Not keyboard accessible, no semantics
<div onClick={handleClick} className="button">
Click me
</div>
// ✅ GOOD: Native button element
<button onClick={handleClick} className="button">
Click me
</button>**Why it matters:** `<div onClick>` doesn't receive keyboard focus, doesn't respond to Enter/Space, and isn't announced as a button by screen readers.
// ❌ BAD: Input has no label <input type="email" placeholder="Email" /> // ✅ GOOD: Label linked to input <label htmlFor="email">Email</label> <input id="email" type="email" placeholder="example@email.com" /> // ✅ ALSO GOOD: Wrapping label <label> Email <input type="email" /> </label>
// ❌ BAD: No accessible name
<button onClick={handleDelete}>
<TrashIcon />
</button>
// ✅ GOOD: ARIA label for screen readers
<button onClick={handleDelete} aria-label="Delete item">
<TrashIcon aria-hidden="true" />
</button>/* ❌ BAD: Focus invisible */
button:focus {
outline: none;
}
/* ✅ GOOD: Custom but visible focus */
button:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.6);
}
/* ✅ BEST: Use focus-visible */
button:focus-visible {
outline: 2px solid #4299e1;
outline-offset: 2px;
}// ❌ BAD: "Click here" tells screen reader nothing <p> To read our privacy policy, <a href="/privacy">click here</a>. </p> // ✅ GOOD: Link text describes destination <p> Read our <a href="/privacy">privacy policy</a>. </p>
// ❌ BAD: Screen reader can't navigate <div className="title">Welcome</div> <div className="subtitle">Getting Started</div> // ✅ GOOD: Proper headings <h1>Welcome</h1> <h2>Getting Started</h2>
---
Ask these instead of giving answers:
1. **Keyboard**: "Can you complete this action using only the keyboard?" 2. **Focus**: "If I tab through the page, can I see where I am?" 3. **Semantics**: "What does a screen reader announce for this element?" 4. **Labels**: "If the placeholder disappears, how do users know what to enter?" 5. **Color**: "If someone is colorblind, can they still understand this UI?" 6. **Alt Text**: "If the image doesn't load, what context is lost?"
---
1. **Keyboard test**: Navigate entire page with Tab only 2. **Focus test**: Can you always see where focus is? 3. **Zoom test**: Does layout break at 200% zoom? 4. **Screen reader**: Try VoiceOver (Mac) or NVDA (Windows)
# In your test file
# Pattern: axe-core for React Testing Library
import { axe } from 'jest-axe';
it('should have no a11y violations', async () => {
const { container } = render(<YourComponent />);
const results = await axe(container);
expect(results).toHaveNoViolations();
});---
| Attribute | Use Case | |-----------|----------| | `aria-label` | Provides name for icon-only buttons | | `aria-labelledby` | Points to element with visible label | | `aria-describedby` | Points to description (error messages) | | `aria-hidden="true"` | Hides decorative icons from screen readers | | `aria-expanded` | Indicates dropdown/accordion state | | `aria-live` | Announces dynamic content changes | | `role` | Defines element's purpose (use sparingly) |
> "No ARIA is better than bad ARIA."
Use semantic HTML first. Only use ARIA when HTML can't express what you need.
---
// Pattern: Button with accessible name
<button
onClick={handleAction}
aria-label="Close modal"
>
<XIcon aria-hidden="true" />
</button>// Pattern: Error linked to input
<label htmlFor="email">Email</label>
<input
id="email"
type="email"
aria-describedby={error ? "email-error" : undefined}
aria-invalid={error ? "true" : undefined}
/>
{error && (
<span id="email-error" role="alert">
{error}
</span>
)}---
| Flag | Question | |------|--
Claude Code workflow for AI-mentored development. Work efficiently with Spec-Driven Development and the 6 Gates. Built to fight cognitive offloading — for developers using AI to grow and maintain ownership.
Repo: DanielPodolsky/ownyourcode
Transforms completed work into powerful resume bullet points with action verbs, technical context, and quantified impact. Use when completing tasks, updating…
Transforms completed work into STAR interview stories (Situation, Task, Action, Result). Use when completing tasks, preparing for behavioral interviews, or…
Reviews API design, REST conventions, and backend architecture. Use when junior builds API endpoints, Express routes, middleware, controllers, or asks "is this…
Reviews schema design, SQL queries, ORM patterns. Use when junior creates schema, writes queries, adds migrations, works with Prisma/MongoDB/PostgreSQL, or…
Guides systematic debugging through Protocol D (READ, ISOLATE, DOCS, HYPOTHESIZE, VERIFY). Use when junior says "stuck", "not working", "broken", "bug",…
Guides documentation standards including READMEs, JSDoc, and code comments. Use when writing documentation, adding comments, or explaining code. Enforces "WHY…