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/AGENTS.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/instructions/saeedkolivand/ai-job-hunter-app/agents-md)<a href="https://agentmods.dev/instructions/saeedkolivand/ai-job-hunter-app/agents-md"><img src="https://agentmods.dev/badge/instructions/saeedkolivand/ai-job-hunter-app/agents-md/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/instructions/saeedkolivand/ai-job-hunter-app/agents-md"><img src="https://agentmods.dev/badge/instructions/saeedkolivand/ai-job-hunter-app/agents-md.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.02074 | $0.02074 |
| Opus 5 | $0.01037 | $0.01037 |
| Sonnet 5 | $0.00415 | $0.00415 |
| Haiku 4.5 | $0.00207 | $0.00207 |
Grade A, and why
ai-job-hunter-app AGENTS.md 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 7d 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 — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Job Hunter: Agent Rules
Canonical rules for every AI coding agent on this repo. Enforced by ESLint, TypeScript, commitlint, and CI. Violations block commits and fail the build.
Cursor and Windsurf read this file natively; Copilot does too, but not in every feature, so the thin .github/copilot-instructions.md pointer stays. Claude Code reads it through the @AGENTS.md import at the top of CLAUDE.md, which adds Claude-only orchestration (subagent fleet, review gates, model tiering) on top. Cline reads it via the pointer in .clinerules.
IMPORTANT: edit rules here, never fork them into a tool-specific file. 13 parallel copies drifted badly enough to teach a stale UI-primitive set and hide a whole app;
pnpm check:agent-systemnow guards against a repeat.
Path privacy
Never output absolute paths, usernames, home dirs, drive letters, or temp/IDE paths, anywhere (logs, PRs, commits, docs, screenshots, stack traces). Always repo-relative (apps/desktop/src-tauri/src/main.rs); the same rule applies to Git Bash-style paths (/c/Users/…).
Shell & tooling
Use Bash (never PowerShell). rg not grep · fd not find · bat not cat · pnpm not npm/yarn. Never find -exec.
Architecture
Local-first desktop app, pnpm monorepo. Tauri is the shell. Detail → docs/ARCHITECTURE.md, status → docs/ARCHITECTURE_STATUS.md, principles → docs/PATTERNS.md §13.
Workspaces: packages/{shared,ui,prompts,translations,test-ids} (contracts · design system · prompt templates · i18n · test IDs) and apps/{desktop,extension,landing} (Tauri app · MV3 extension · Next.js site). Boundaries are rule 12: they are enforced, not stylistic.
Renderer → shell only via AppClient (createTauriInvokeClient() in apps/desktop/src/tauri-client/index.ts). IPC contract: packages/shared/src/ipc/contracts/. Dev: pnpm dev.
Rules (enforced: full config in eslint.config.mjs)
- PRs only, never push to
main. Branch → commit → push →gh pr create→ wait for approval. - No
window.apiin UI. Use service hooks fromapps/desktop/src/renderer/services/(React Query). - i18n from
@ajh/translations, neverreact-i18next/i18nextdirectly. Init shim:@/i18n. - No hardcoded brand colors.
text-brand/bg-brand/… orvar(--color-brand).[#RRGGBB]errors. - No inline transition objects.
import { transition } from '@ajh/ui'. - Always
@ajh/uiprimitives: Button, Input, TextArea, NumberField, Dropdown, Switch, ModalShell, ConfirmModal, EmptyState, ErrorState, RowSkeleton/CardSkeleton, GlassCard, SettingsSection, OptionTile, StreamingText. Raw<button>/<select>/<textarea>error (except<input type=range|file|checkbox|radio|hidden>).PageShellfrom@/components/layout/PageShell;UpdateBannerfrom@/components/ui/UpdateBanner. - Package entrypoints, not deep paths.
@ajh/uidirectly; preferReact.ComponentProps<typeof X>. - Import order (blank line between):
node:*→ external →@ajh/*→@/*→ relative.pnpm lint:fix. import typefor pure types (auto-fixed; never suppress).- File placement under
renderer/:features/(one route),components/ui/,components/layout/,services/(IPC hooks),lib/(pure utils +machines/),hooks/,providers/,store/. Never import across feature dirs. - State machines for 3+ states →
lib/machines/+useMachinefrom@/hooks/use-machine. - Remote data via React Query service hooks: no
useState + useEffectfetching. - Package boundaries:
sharedno React/Node ·uino Zustand/IPC/routing ·promptsno UI/window·translationsno app/IPC imports. - Stale-branch check before work:
git fetch origin && git branch -r | rg $(git branch --show-current). - New IPC capability (5 steps):
ipc/contracts/→commands/→tauri-client/→ aservices/hook → query key inservices/query-client/. Thenpnpm gen:api—docs/API.mdis generated from the contracts and CI fails on drift; document the method with TSDoc on the contract, never by editing that page. - Never bypass ESLint: no
// eslint-disable, no@ts-ignore. Scoped override ineslint.config.mjswith a reason. CI runslint:strict --max-warnings 0. - Backend work must survive navigation. A subscription only receives events while its component is mounted; the Rust work it describes does not unmount. Progress state kept in a route component is discarded on navigation, and the terminal event is dropped — so the UI shows idle for work still running. Mount subscriptions from
routes/__root.tsxor a provider, and read in-flight truth from the backend (persisted status / the job registry), not from local state. Enforced:pnpm check:event-subscriptionsfails until every subscribing file is declared with its mount lifetime. - Docs under
docs/are thin pointers, never copies. Describe shape and contracts and point at the owning source symbol; never paste drift-prone literals — weights, thresholds, counts, signatures, enum members, file lists. The test before you save: for every number or name on the page, ask "if someone changed this in the code tomorrow, would this page silently become a lie?" If yes, replace it with a pointer to where it lives. This is the most frequently-raised review finding on this repo. Generated pages are never hand-edited — a file opening with aGENERATED FILEbanner (docs/API.md) is rendered by a script, so fix the TSDoc on the contract member and re-run its generator (pnpm gen:api); editing the page failspnpm gen:api:checkin CI.
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.
- 7d ago First seen · 82 lines · 2,074 tokens per session scan A dc66106fef6f
ai-job-hunter-app AGENTS.md is an instructions file published in the GitHub repository saeedkolivand/ai-job-hunter-app (54 stars, last pushed today), licensed Apache-2.0. It adds 2,074 tokens to every session, about $0.0104 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.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.