ai-job-hunter-app: Skill for Claude Code

.claude/skills/frontend-standards/SKILL.md

frontend-standards is a skill for Claude Code from saeedkolivand/ai-job-hunter-app. It costs 54 tokens per session (1,983 once invoked), scanned A, original, Apache-2.0.

Standards for building the React part of an application. They define how UI services, shared design components, animations, translations, data fetching, accessibility, and isolated features should fit together.

In plain words
What is it for?
They guide work in React renderers, including components, styling tokens, motion, internationalisation, server data queries, and accessibility.
Why use it?
They reduce inconsistent interfaces, duplicated service logic, inaccessible controls, and fragile feature changes.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

This is saeedkolivand/ai-job-hunter-app's own configuration. It tells Claude Code how to work on ai-job-hunter-app itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ai-job-hunter-app configures →

Reuse

Borrowing it

Nothing to install: this file belongs to saeedkolivand/ai-job-hunter-app. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/saeedkolivand/ai-job-hunter-app/main/.claude/skills/frontend-standards/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/saeedkolivand/ai-job-hunter-app

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for frontend-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/frontend-standards/github.svg)](https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/frontend-standards)
Your own site
<a href="https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/frontend-standards"><img src="https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/frontend-standards/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for frontend-standards

Your own site · 80×15
<a href="https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/frontend-standards"><img src="https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/frontend-standards.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,983 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.01983
Opus 5 $0.00027 $0.00992
Sonnet 5 $0.00011 $0.00397
Haiku 4.5 $0.00005 $0.00198

Measured 8d ago against content hash c2d0a2f26d88, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

frontend-standards scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/frontend-standards/SKILL.md · 60 lines

How it starts

The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Frontend standards (mostly ESLint-enforced)

Authoritative: docs/DESIGN_SYSTEM.md, docs/PATTERNS.md.

Ports & adapters (HIGH if violated)

  • No window.api.* in features/, routes/, components/ — use service hooks from renderer/services/ (React Query). ESLint errors on direct access.
  • Data fetching — React Query via service hooks only; no useState + useEffect for remote data.

React Query & async mutations (HIGH on correctness)

  • Invalidation must matchinvalidateQueries({ queryKey }) is a prefix match; a key factory that appends a trailing undefined/optional segment (keys.x.y()['x','y',undefined]) will not match the typed queries (['x','y','viewed']). Fix it with the correct key: the shorter prefix (['x','y']), or a deliberate predicate — note exact: true does not fix it (an exact match on the wrong shape ['x','y',undefined] still misses ['x','y','viewed']). After a mutation, confirm the key you invalidate hits the queries that render the affected UI (#486: shipped this twice → stale viewed/saved badges).
  • Mutations — never show success / apply optimistic state / emit tracking events before the mutation resolves. Two cases: (a) awaitedawait mutateAsync(), then run the success effects, in try/catch; (b) detached (void/fire-and-forget) — attach a .catch surfacing a fixed @ajh/translations error key (never raw err.message) and put the success effects in .then, not on the line after the call.
  • Nullable at the IPC boundary — guard a contract-optional/null value (a field a command may return absent) before string/array ops (.toLowerCase()/[0]/.split()).

Design system

  • Tokenstext-brand/bg-brand/border-brand/ring-brand; CSS vars var(--color-brand). No [#RRGGBB] in className.
  • Motionimport { transition } from '@ajh/ui' (.fast/.normal/.relaxed/.slow/.spring/.modal/.overlay); no inline { duration, ease }.
  • Primitives@ajh/ui (Button, Input, TextArea, SelectDropdown, ModalShell, GlassCard, EmptyState, …). No raw <button>/<select>/<textarea> (exception: <input type="range|file|checkbox|radio|hidden">).
  • Imports — import @ajh/ui directly, not @/components/ui/* (except UpdateBanner).

Read the full file on GitHub · 60 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 60 lines · 54 tokens per session scan A c2d0a2f26d88

Subscribe to this mod's changes

frontend-standards is a skill published in the GitHub repository saeedkolivand/ai-job-hunter-app (55 stars, last pushed today), licensed Apache-2.0. It adds 54 tokens to every session and 1,983 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

dust-tarui-layout

A reusable layout template for Tauri desktop applications built with React, MUI, and Tailwind. Tauri is a toolkit for making desktop apps with web technologies; the template includes a borderless window shell, sticky top bar, scrolling content area, and split expert view.

LSTM-Kirigaya/jinhui-skills · 96 tokens

cobejs

Use when adding a lightweight interactive globe with cobe (canvas setup, markers, interaction, performance, integration with React/Next.js).

MengTo/Skills · 31 tokens

figma-implement-design

Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions "implement design", "generate code", "implement component", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via…

warpdotdev/warp · 81 tokens

stitch::react-components

Converts Stitch designs into modular Vite and React components, or syncs/updates existing React components to align with the latest Stitch designs, using system-level networking and AST-based validation.

google-labs-code/stitch-skills · 43 tokens

pake

Package any website or local web build into a lightweight desktop app using Pake (Tauri/Rust). Use when the user wants to: wrap a URL as a native app, build a desktop app from a website or a local dist/ folder, use Pake CLI to package a page, set up proxy for a packaged app, customize app icons or bundle IDs, or…

tw93/Pake · 119 tokens

ss-studio

Turn a product brief and optional references into three distinct creative directions, a human-selected StyleSeed interaction plan, generated image/video asset jobs, a working UI prototype, and a verified prototype-first showcase reel. Use for client concepts, app interaction exploration, trendy but coherent UI…

bitjaru/styleseed · 75 tokens