author-contract

author-contract is a skill for Claude Code from saeedkolivand/ai-job-hunter-app. It costs 55 tokens per session (1,031 once invoked), scanned A, original, Apache-2.0.

A shared set of rules for coding tasks performed by domain authors, including small changes, checking the existing code first, validation, and tests.

In plain words
What is it for?
Use it at the start of implementation tasks to guide code changes, validation checks, and test-based review.
Why use it?
It reduces unnecessary edits and prevents unfinished or untested implementation work from being approved.

Skill for Claude Code

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

Good fit Use it at the start of implementation tasks to guide code changes, validation checks, and test-based review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saeedkolivand/ai-job-hunter-app/author-contract
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add saeedkolivand/ai-job-hunter-app --skill author-contract
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 author-contract

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/saeedkolivand/ai-job-hunter-app/author-contract"><img src="https://agentmods.dev/badge/skills/saeedkolivand/ai-job-hunter-app/author-contract.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,031 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.00055 $0.01031
Opus 5 $0.00028 $0.00515
Sonnet 5 $0.00011 $0.00206
Haiku 4.5 $0.00006 $0.00103

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

Security

Grade A, and why

author-contract 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/skills/author-contract/SKILL.md · 66 lines

How it starts

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

Author contract (all write-capable agents)

Subagents can't auto-load skills — Read this file and your <domain>-standards skill before editing.

Model tier: authors default to Sonnet. Flag genuinely-beyond-Sonnet work (deep Rust concurrency/unsafe, a new provider's streaming protocol, a schema/data migration) up front so the orchestrator re-spawns you on Opus instead of thrashing.

Implement like a lazy senior dev

  • Smallest diff per issue. Preserve behavior and public/package APIs. One concern per edit.
  • Rust-first for business logic/pipelines/ATS/documents; the renderer stays presentational.
  • Reuse before adding — an existing service hook, @ajh/ui primitive, registry, or helper beats new code; under-abstraction beats the wrong abstraction.
  • Never reformat untouched lines; never rename across package boundaries unprompted.
  • One-line plan before a large multi-file refactor, then pause for confirmation; small in-file fixes proceed.

Ground first

  • Codegraph FIRST — hard rule. Query codegraph (MCP codegraph_explore when allowed, else the CLI) before ANY raw Grep/Read; raw reads are for what codegraph can't answer (this turn's un-indexed edits, non-code assets, config prose).
  • Read the handoff's ## Current state (.claude/scratch/<task>.md) — never cold re-explore what it already contains (the ## Log below it is steward-only).
  • Priority: codegraph/graphify → source → docs/knowledge → lessons. No repo-wide scans; stop at ~90% confidence.

You never approve your own work

Implement, then hand the diff to your independent sibling critic (and the test pair). Resolve every HIGH/CRITICAL before "done"; LOW/MEDIUM are advisory. Append what you changed (files, decisions, open questions, Lessons-to-propose) to the handoff ## Log, then rewrite the stale parts of ## Current state (≤2K chars).

Leave a check behind (missing tests BLOCK)

Non-trivial logic (a branch, loop, parser, money/security/error path) ships one runnable check (via test-author); trivial one-liners don't (YAGNI). A missing test — or a weak / tautological / mock-asserting one — is a HIGH (blocking) finding for your critic. Cover the error/edge path, not just the happy path. New/changed user-facing text needs its i18n key in both en and de (also HIGH). Hermetic cross-OS tests per testing-rules: inject dirs / a temp HOME, #[serial_test::serial] on env-mutating tests, no real network, never assume a system binary is absent, never reach an exec()-replacing path in-process.

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

Subscribe to this mod's changes

author-contract is a skill published in the GitHub repository saeedkolivand/ai-job-hunter-app (54 stars, last pushed yesterday), licensed Apache-2.0. It adds 55 tokens to every session and 1,031 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-08-30.