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

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

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

A set of coding rules for Rust and Tauri desktop backends, including how business logic, platform code, networking, and errors are organised.

In plain words
What is it for?
Use it when editing files under the Tauri Rust source tree or adding backend registries and shared platform code.
Why use it?
It gives agents a consistent structure to follow when changing the Rust backend, reducing misplaced logic and inconsistent error handling.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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/rust-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 rust-standards

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/rust-standards"><img src="https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/rust-standards.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,312 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.00048 $0.01312
Opus 5 $0.00024 $0.00656
Sonnet 5 $0.00010 $0.00262
Haiku 4.5 $0.00005 $0.00131

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

Security

Grade A, and why

rust-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/rust-standards/SKILL.md · 55 lines

How it starts

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

Rust standards (CI-enforced via cargo test --test architecture)

Authoritative source: docs/architecture-rules.md + docs/knowledge/architecture.md.

Hard rules (HIGH if violated — they already fail CI)

  • env access only in platform/std::env::var is banned elsewhere. Config/paths via platform/config.rs (data_dir()).
  • HTTP clients only in net/reqwest::Client is banned elsewhere. Use net/http.rs (shared() / build_client()).
  • typed errors — untyped Result<_, String> is banned outside error/. Use AppError/AppResult from error.rs.

Rust-first

Business logic, processing pipelines, ATS analysis, and document generation live in Rust. The TS renderer stays presentation-only. Flag any business logic drifting into the frontend.

Layering (L0–L3)

Respect the layer model in docs/architecture-rules.md; new cross-layer coupling is HIGH. L0 platform/net/error → L1 domain → L2 services/commands → L3 entrypoints.

Registries

New board scraper → scraping/boards/mod.rs (SCRAPERS, implement Scraper). Register, don't special-case. (No applier registry — the apply engine was removed.)

Data

Migrations forward-safe and reversible-or-guarded; *Store writes go through the data layer, not ad-hoc SQL in commands. SQLite work off the async runtime (spawn_blocking).

Observability

Use observability.rs (Span) for tracing; don't invent ad-hoc logging.

Platform-gated code & external processes (#486 lessons)

  • #[cfg(target_os = …)] is not compiled on other hosts — a Windows/macOS dev build silently excludes the Linux module + its tests, so a same-host cargo test/clippy can't catch a Linux-only unused import, an attribute/use not in scope (a use is not inherited into a mod submodule), or a pub(super) visibility error. Cross-target-check gated code (cargo check --target x86_64-unknown-linux-gnu, or a dep-light standalone-crate check) before relying on a green build.
  • Global env/process mutations: scope + roll back — a set_var/LD_PRELOAD/re-exec must be scoped to the exact case that needs it (not every launch) and reverted on the failure path, so the still-running process and its children don't inherit bogus state. Env access still lives only in platform/.
  • External processes must be bounded — a Command probe must enforce a real timeout (wait_timeout + kill on expiry) when it claims to; a missing-binary or slow external tool must not block detection/startup.

Read the full file on GitHub · 55 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 · 55 lines · 48 tokens per session scan A 87d21e12c71b

Subscribe to this mod's changes

rust-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 48 tokens to every session and 1,312 once invoked, about $0.0002 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

client-setup

Create a vanilla tRPC client with createTRPCClient (), configure link chain with httpBatchLink/httpLink, dynamic headers for auth, transformer on links (not client constructor). Infer types with inferRouterInputs and inferRouterOutputs. AbortController signal support. TRPCClientError typing.

trpc/trpc · 63 tokens

adapter-express

Mount tRPC as Express middleware with createExpressMiddleware() from @trpc/server/adapters/express. Access Express req/res in createContext via CreateExpressContextOptions. Mount at a path prefix like app.use('/trpc', ...). Avoid global express.json() conflicting with tRPC body parsing for FormData.

trpc/trpc · 67 tokens

trpc-router

Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.

trpc/trpc · 59 tokens

azure-eventhub-rust

Azure Event Hubs library for Rust. Send and receive events for streaming data ingestion and batch processing. Triggers: "event hubs rust", "ProducerClient rust", "ConsumerClient rust", "send event rust", "streaming rust", "eventhub rust".

microsoft/skills · 58 tokens

anarlog

Query Anarlog meetings, notes, summaries, transcripts, participants, action items, and recurring history. Use when a user asks about their Anarlog meeting data or needs meeting context for another task.

fastrepl/anarlog · 44 tokens

azure-eventhub-rust

Client library for Azure Event Hubs — big data streaming platform and event ingestion service.

benjaminasterA/antigravity-awesome-skills · 0 tokens