Keyboard navigation
Skill a5c-ai/babysitter/library/specializations/web-development/skills/keyboard-navigation
Keyboard accessibility, focus management, and shortcuts.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill keyboard-navigationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.6 KB, 266 tokens by cl100k_base, as published. Nobody here has run it
Keyboard Navigation Skill
Expert assistance for keyboard accessibility.
Capabilities
- Implement keyboard navigation
- Manage focus
- Create keyboard shortcuts
- Handle focus trapping
- Test keyboard access
Focus Management
// Focus trap for modals
function useFocusTrap(ref: RefObject<HTMLElement>) {
useEffect(() => {
const element = ref.current;
if (!element) return;
const focusableElements = element.querySelectorAll(
'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'
);
const first = focusableElements[0];
const last = focusableElements[focusableElements.length - 1];
function handleKeyDown(e: KeyboardEvent) {
if (e.key === 'Tab') {
if (e.shiftKey && document.activeElement === first) {
e.preventDefault();
last.focus();
} else if (!e.shiftKey && document.activeElement === last) {
e.preventDefault();
first.focus();
}
}
}
element.addEventListener('keydown', handleKeyDown);
return () => element.removeEventListener('keydown', handleKeyDown);
}, [ref]);
}
Target Processes
- keyboard-accessibility
- focus-management
- accessibility-implementation
What ships with it: 1 file
309 B alongside SKILL.md
- README.md309 B