job-pro AGENTS.md

job-pro AGENTS.md is an instructions file for Codex, OpenCode from HA7CH/job-pro. It costs 628 tokens per session, scanned A, original, MIT.

A repository rule requiring every code update to be followed by two versioned documents: a plain-language change note for users and a technical log for developers.

In plain words
What is it for?
Use it when updating the job-pro CLI, a command-line tool for accessing job listings, to check the version and record both release notes and implementation details.
Why use it?
It keeps user-facing explanations and engineering details current without overwriting documentation from earlier versions.

Instructions file for CodexOpenCode

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.

agentmods
npx agentmods add instructions/ha7ch/job-pro/agents-md
Clone the repo
git clone --depth 1 https://github.com/HA7CH/job-pro

Made for: Codex, OpenCode.

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 job-pro AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ha7ch/job-pro/agents-md.svg)](https://agentmods.dev/instructions/ha7ch/job-pro/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/ha7ch/job-pro/agents-md"><img src="https://agentmods.dev/badge/instructions/ha7ch/job-pro/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 628 This file is loaded in full into every session.
When invoked 628 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.00628 $0.00628
Opus 5 $0.00314 $0.00314
Sonnet 5 $0.00126 $0.00126
Haiku 4.5 $0.00063 $0.00063

Measured 4d ago against content hash f0b43a3ed687, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

job-pro 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 4d 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.

AGENTS.md · 98 lines

What it actually says

job-pro — Agent Instructions

每次完成代码更新后,必须同步更新以下两个文档

这是强制要求,不是可选项。更新代码 → 更新文档,两步缺一不可。

第一步:确认当前版本号

cat cli/package.json | grep '"version"'

第二步:在对应版本文件里写文档

用户更新说明(非技术语言,给使用者看):

docs/changelog/v{版本号}.md

开发者技术日志(技术细节,给接手者看):

docs/devlog/v{版本号}.md

规则:每个版本号新建一个文件,不要覆盖旧文件。


两种文档的写法

docs/changelog/v{版本号}.md — 用户更新说明

  • 面向:使用 job-pro 的普通用户
  • 语言:口语化,不写代码,不写文件路径,不写函数名
  • 结构参考:
# v1.x.x 更新说明

> 发布日期:YYYY-MM-DD

## 🎉 这次更新做了什么?
一句话总结。

## ✨ 新增功能
用户能感知到的新能力,举例说明怎么用。

## 🐛 修复的问题
之前的表现 → 现在的表现。

## ⚠️ 注意事项(如有)
breaking change 或需要用户手动操作的内容。

docs/devlog/v{版本号}.md — 开发者技术日志

  • 面向:接手项目的开发者
  • 语言:技术语言,含文件路径、函数名、根因分析
  • 结构参考:
# v1.x.x 开发日志

> 发布日期:YYYY-MM-DD

## 修复内容 / 新增功能

### 功能名称

**文件:** `cli/src/xxx.ts`

**根因:** 为什么会有这个问题?

**修复:** 改了什么?关键代码逻辑是什么?

## 已知问题

## 路线图变更(如有)

示例参考

已有示例:

  • docs/changelog/v1.0.93.md — 用户说明示例
  • docs/devlog/v1.0.93.md — 技术日志示例

项目背景

  • 项目: job-pro CLI,对接 50 家中国大厂公开招聘 API
  • 技术栈: TypeScript,Node 18+,tsx
  • 适配器架构: 每家公司一个 adapter,实现 CompanyAdapter 接口
  • 运行方式: cd cli && npx tsx src/index.ts <company> <command>
  • 详细文档: docs/devlog/v1.0.93.md(含完整路线图和已知问题)
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. 4d ago First seen · 98 lines · 628 tokens per session scan A f0b43a3ed687

Subscribe to this mod's changes

job-pro AGENTS.md is an instructions file published in the GitHub repository HA7CH/job-pro (24 stars, last pushed 1mo ago), licensed MIT. It adds 628 tokens to every session, about $0.0031 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 instructions, from other repositories

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).

microsoft/vscode · 6,785 tokens

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.

github/spec-kit · 7,104 tokens

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.

openai/codex · 5,182 tokens

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.

langchain-ai/langchain · 4,345 tokens

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).

microsoft/vscode · 5,001 tokens

next.js AGENTS.md

Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens