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.
curl -O https://raw.githubusercontent.com/saeedkolivand/ai-job-hunter-app/main/.claude/agents/frontend-author.mdgit clone --depth 1 https://github.com/saeedkolivand/ai-job-hunter-appWrote 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.
[](https://agentmods.dev/agents/saeedkolivand/ai-job-hunter-app/frontend-author)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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, noheaders()/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/searchParamsare Promises —awaitthem in async server components,React.use()in client components. Dynamic routes requiregenerateStaticParams. next/imagehas no optimization server under static export — keepunoptimized(or the configured loader); never introduce a fix that assumes the image optimizer exists.- Metadata via the App Router metadata API (
metadataexport / statically-resolvablegenerateMetadata). - 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-driftand 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.
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.
- 12d ago First seen · 44 lines · 89 tokens per session scan A 33121fa19aae
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.
Other agents, from other repositories
altai-reviewer
Read-only diff review for a risky ALTAI PR. Reports actionable findings only.
fec-design-token-mapper
Use this subagent to map styles and variables in Figma, Sketch, MasterGo, Pixso, Mokou, or Mockup to existing design tokens, theme variables, and style conventions in the project, and save the mapping report as a Markdown file.
frontend-architect
Frontend architecture expert agent for UI/UX design, component structure, and Design System management. Handles React, Next.js, and modern frontend patterns. Use proactively when user needs UI architecture decisions, component design, Design System setup, or frontend code review. Triggers: frontend, UI architecture…
altai-explorer
Read-only ALTAI repository exploration. Use when file ownership or existing patterns are unclear before implementing a roadmap item.
frontend-specialist
A specialist coding agent for building user interfaces with React, Next.js, Vue, or Svelte. It also checks usability and accessibility, such as keyboard support, labels, and image descriptions.
ecc-rust-reviewer
Expert Rust code reviewer specializing in ownership, lifetimes, error handling, unsafe usage, and idiomatic patterns. Use for all Rust code changes. MUST BE USED for Rust projects.