Frontend Skill
SkillDev toolsUse this skill for frontend work in web_app (React/TypeScript, UI implementation, tests, and refactors).
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Frontend Skill skill
What this skill tells your AI
The instructions your AI receives, as published by streamband/hydra-srt in .agents/skills/frontend/SKILL.md and read by ahel’s review.
When to use
Use for any task touching web_app/, React components, TypeScript, styling, or frontend tests.
TypeScript policy
- All new frontend code must be TypeScript — use
.ts/.tsx, not.js/.jsx. - Existing JavaScript may stay as-is until you touch that file; when you edit it meaningfully, prefer migrating the changed parts to TypeScript (extract to a
.tsxmodule if the file is large). - Put shared API/domain types in
web_app/src/types/(api.ts,errors.ts,routes.ts,interfaces.ts,endpoints.ts). - Put typed API clients in
web_app/src/utils/*.ts(seeutils/tokensApi.ts). - New page/tab UI: prefer
web_app/src/pages/**/**/*.tsx; keep legacy.jsxparents as thin wrappers if needed. - Run
npm run typecheckandnpm run lintbefore considering frontend work done; CI runstypecheck,lint,build, and unit tests. // @ts-nocheckis forbidden in frontend source and tests. Do not add it. If encountered, remove it and fix typings (or use narrow, justified@ts-expect-erroron a specific line only when unavoidable).- Tooling under
web_app/(Vite, ESLint, Playwright,scripts/e2e-server.ts) uses TypeScript;npm run typecheckruns bothtsconfig.json(app) andtsconfig.node.json(configs/E2E).
Core UI rules
- For UI elements, use only Ant Design (
antd) components. - Do not build custom replacement UI controls/components when
antdprovides an equivalent. - Prefer composition and theming of
antdcomponents over custom-drawn UI.
Workflow
- Read existing page/component patterns before editing.
- Keep logic separated from presentation where practical.
- Reuse existing shared components/hooks first.
- Add or update tests for behavior changes.
- Run targeted tests first, then broader checks.
Commands
- Typecheck:
cd web_app && npm run typecheck - Unit tests:
cd web_app && npm run test:unit - Watch unit tests:
cd web_app && npm run test:unit:watch - E2E tests:
cd web_app && npm run test:e2e - Lint:
cd web_app && npm run lint - CI-equivalent (web):
cd web_app && npm run typecheck && npm run lint && npm run build && npm run test:unit:ci
Signals
- GitHub stars
- 143
- Forks
- 10
- Last commit
- Sep 2026
- Hacker News mentions
- 20
Advanced
- Catalog kind
- skill
- Gateway key
frontend-streamband- Source
- github.com/streamband/hydra-srt