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.
npx agentmods add instructions/jonhhh09/job-engine-spring/agents-mdgit clone --depth 1 https://github.com/JonHHH09/job-engine-springWhat 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 | $0.02365 | $0.02365 |
| Opus 5 | $0.01182 | $0.01182 |
| Sonnet 5 | $0.00473 | $0.00473 |
| Haiku 4.5 | $0.00236 | $0.00236 |
Grade A, and why
job-engine-spring 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 2d 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 — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
job-engine-spring is a local-only MCP (Model Context Protocol) server, not a hosted service, REST API, web UI, or job-board scraper. It stores normalized candidate profiles and jobs, produces explainable profile-to-job match reports, and generates resume/cover-letter PDFs. Normal runtime is a persistent Streamable HTTP MCP endpoint published only on host loopback (http://127.0.0.1:8080/mcp); STDIO exists only for CI/package verification and isolated diagnostics. The application is MCP-first: do not add REST controllers unless REST compatibility is explicitly required.
Project Structure & Module Organization
This is a Maven Java 25 Spring Boot 4.1.0 project. The main build descriptor is
pom.xml, with the Maven wrapper available as mvnw. Production code lives in
src/main/java, tests in src/test/java, and Flyway database migrations in
src/main/resources/db/migration.
The package layout follows application boundaries: domain contains core
business concepts, application holds use cases and orchestration, and
adapter packages contain integrations. Current adapters include
adapter/in/mcp, adapter/out/postgres, and adapter/out/http.
Build, Test, and Development Commands
./mvnw testruns the unit test suite through Surefire../mvnw -q -Dtest=ClassName testruns a single test class; comma-separate multiple classes, e.g../mvnw -q -Dtest=JobServiceTests,JobMcpAdapterTests,HttpJobLinkContentFetcherTests test../mvnw verify -Pintegration-testsruns integration tests through Failsafe (Testcontainers/PostgreSQL) plus the JaCoCo coverage gate. Requires Docker../mvnw spring-boot:runstarts the application locally.docker compose build mcpbuilds the local container image for the persistent Streamable HTTP MCP server.docker compose up -d --build --wait postgres mcpis the build-from-source dev path: starts PostgreSQL privately and publishes MCP only on host loopback;python3 scripts/smoke-mcp-http.pyverifies initialize, discovery, andhealth../scripts/rebuild-local-mcp-jar.shruns./mvnw test, packages the jar, then runshermes mcp test job-engine-springif the Hermes CLI is present (RUN_TESTS=falseto skip tests when already green)../scripts/run-release-mcp-http.sh ghcr.io/jonhhh09/job-engine-spring:vX.Y.Zis the guarded release-only deployment path; it refuses local/latestimages and recreates the service without building../scripts/run-local-mcp-container.shis the explicit STDIO CI/package-verification launcher. It activates thestdioprofile and must not be used for normal Hermes tool calls../scripts/run-mcp-stdio-diag.shlaunches a unique-named diagnostic MCP STDIO container so engineering smoke/diagnosis cannot kill an active Hermes session.python3 scripts/smoke-mcp-stdio.py -- ./scripts/run-local-mcp-container.shverifies the containerized MCPinitialize+tools/listSTDIO contract for the default instance. Prefer./scripts/run-mcp-stdio-diag.shwhen Hermes may already be connected.scripts/tests/test-mcp-container-cleanup.shis a Docker-free regression for cleanup ownership (preserve custom instances; remove default/legacy only for default launches).- After rebuilding/redeploying: recreate the persistent service, then run
/reload-mcpin the connected agent; if tool names/schemas/prompts changed, also run/resetto refresh the agent's cached tool schema. - Backup/recovery:
./scripts/postgres-backup.sh,./scripts/postgres-verify-backup.sh,./scripts/postgres-restore.sh,./scripts/postgres-backup-prune.sh. Restore/verify always target a disposable Compose project/volume, never the primary one directly.
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.
- 2d ago First seen · 113 lines · 2,365 tokens per session scan A afa7da1e885b
job-engine-spring AGENTS.md is an instructions file published in the GitHub repository JonHHH09/job-engine-spring (2 stars, last pushed 6d ago), licensed Apache-2.0. It adds 2,365 tokens to every session, about $0.0118 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-31.
Other instructions, from other repositories
better-notion-mcp CLAUDE.md
Instructions for n24q02m/better-notion-mcp, covering better-notion-mcp, cau truc, lenh thuong dung, test don le and mise shortcuts.
better-notion-mcp AGENTS.md
Instructions for n24q02m/better-notion-mcp, covering agents.md - better-notion-mcp, build / lint / test commands, run a single test file, run a single test by name and mise shortcuts.
better-godot-mcp CLAUDE.md
Instructions for n24q02m/better-godot-mcp, covering claude.md - better-godot-mcp, commands, setup, lint & type check and fix.
better-godot-mcp AGENTS.md
Instructions for n24q02m/better-godot-mcp, covering agents.md - better-godot-mcp, build / lint / test commands, run a single test file, run a single test by name and mise shortcuts.
mcp-dockhand CLAUDE.md
Instructions for strausmann/mcp-dockhand, covering claude.md — mcp-dockhand server, projektübersicht, tech stack, verzeichnisstruktur and konventionen.
moira AGENTS.md
Instructions for moira-mcp/moira, covering agents.md, what moira is, repository layout, build & run (fresh clone) and image: line and uncomment the build: block, then.