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

.claude/agents/frontend-author.md

frontend-author is an agent for Claude Code from saeedkolivand/ai-job-hunter-app. It costs 89 tokens per session (1,064 once invoked), scanned A, original, Apache-2.0.

A developer for the React desktop interface and the Next.js landing website, including components, pages, interface state, translations, accessibility, and shared design rules.

In plain words
What is it for?
Use it to build or change desktop screens, landing pages, routes, interface components, design-system work, translations, and accessibility behavior.
Why use it?
It keeps interface changes consistent across the product and website, including support for different languages and users with disabilities.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; reads .claude/ paths; mentions subagents.

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/agents/frontend-author.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-author

README.md
[![agentmods](https://agentmods.dev/badge/agents/saeedkolivand/ai-job-hunter-app/frontend-author/github.svg)](https://agentmods.dev/agents/saeedkolivand/ai-job-hunter-app/frontend-author)
Your own site
<a href="https://agentmods.dev/agents/saeedkolivand/ai-job-hunter-app/frontend-author"><img src="https://agentmods.dev/badge/agents/saeedkolivand/ai-job-hunter-app/frontend-author/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-author

Your own site · 80×15
<a href="https://agentmods.dev/agents/saeedkolivand/ai-job-hunter-app/frontend-author"><img src="https://agentmods.dev/badge/agents/saeedkolivand/ai-job-hunter-app/frontend-author.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,064 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.00089 $0.01064
Opus 5 $0.00044 $0.00532
Sonnet 5 $0.00018 $0.00213
Haiku 4.5 $0.00009 $0.00106

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

Security

Grade A, and why

frontend-author 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 12d 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/agents/frontend-author.md · 44 lines

How it starts

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

You implement React renderer changes. First Read .claude/skills/author-contract/SKILL.md + .claude/skills/frontend-standards/SKILL.md (subagents don't auto-load skills).

Primary paths

apps/desktop/src/renderer/**, packages/ui/**, UI state (store/, lib/machines/), and the landing site apps/landing/**. NOT backend/export/scraping/ai/ATS.

Next.js landing (apps/landing) — hardening notes

The landing is Next.js 16 (App Router) as a STATIC EXPORT (output: 'export' in next.config.ts) — plain HTML/JS in out/, no server at runtime. Rules that follow from that:

  • No server features, ever: no middleware/proxy.ts, no Server Actions, no ISR/revalidate, no dynamic Route Handlers, no headers()/cookies(). If a task seems to need one, the design is wrong for this app — solve it statically or client-side.
  • Next 16 breaking: params/searchParams are Promisesawait them in async server components, React.use() in client components. Dynamic routes require generateStaticParams.
  • next/image has no optimization server under static export — keep unoptimized (or the configured loader); never introduce a fix that assumes the image optimizer exists.
  • Metadata via the App Router metadata API (metadata export / statically-resolvable generateMetadata).
  • Bundler is Turbopack (stable default in 16, filesystem dev cache). React 19.2 is available (useEffectEvent, <Activity>, View Transitions).
  • use cache / Cache Components are server-side — irrelevant here; don't add them.
  • Desktop-renderer rules do NOT auto-apply: apps/landing is self-contained (own package.json/tsconfig/vitest) — no @ajh/ui, no service hooks, no IPC. Follow the landing's own local conventions.
  • Keep the gates green: pnpm check:landing-drift and the copy/link parity check (pnpm --filter @ajh/landing build + check:parity) run pre-push; content changes must preserve legacy links + copy parity.
  • The GL fleet stays dormant (ADR-0017); a returning WebGL surface routes to webgl-author/shader-engineer, not you.

Read the full file on GitHub · 44 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. 12d ago First seen · 44 lines · 89 tokens per session scan A 33121fa19aae

Subscribe to this mod's changes

frontend-author is an agent published in the GitHub repository saeedkolivand/ai-job-hunter-app (55 stars, last pushed today), licensed Apache-2.0. It adds 89 tokens to every session and 1,064 once invoked, about $0.0004 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-08-30.

Related

Other agents, from other repositories