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/stupidoodle/swissdevjobs-cli/claude-mdgit clone --depth 1 https://github.com/Stupidoodle/swissdevjobs-cliWrote 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/stupidoodle/swissdevjobs-cli/claude-md)<a href="https://agentmods.dev/instructions/stupidoodle/swissdevjobs-cli/claude-md"><img src="https://agentmods.dev/badge/instructions/stupidoodle/swissdevjobs-cli/claude-md.svg" alt="Measured on agentmods" 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.03299 | $0.03299 |
| Opus 5 | $0.01649 | $0.01649 |
| Sonnet 5 | $0.00660 | $0.00660 |
| Haiku 4.5 | $0.00330 | $0.00330 |
Grade A, and why
swissdevjobs-cli CLAUDE.md scanned grade A with 1 finding 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 6d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
http/ urllib transport, cookie jar, Cloudflare detection How it starts
The opening of the file, as written. The whole thing — 230 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Guidance for agents working in this repository.
Commands
Everything runs through uv and make — never bare python, pip, or pytest:
make install # uv sync
make check # the full gate: lint + typecheck + arch + tests w/ coverage
make format # ruff format, then ruff --fix
make test-unit # offline tests, no coverage gate
make test-live # read-only smoke against the real boards (SDJ_LIVE=1)
make arch # import-linter layering contracts (needs Python >= 3.10)
Never hand-edit pyproject.toml dependency tables or uv.lock — use
uv add / uv add --group dev. Conventional commits, atomic, one logical
change each. Never squash.
Layout and the dependency rule
src/swissdevjobs_cli/
bootstrap.py composition root — the ONLY place layers are wired
domain/
model/ one dataclass per file, snake_case = class name
ports/ one Protocol per file (BoardPort, repositories, UoW)
adapters/
http/ urllib transport, cookie jar, Cloudflare detection
boards/
registry.py every Board, keyed by source; selectors resolve
country codes OR source ids (two+ boards per country)
worldwide/devitjobs/ client.py + acl.py for the six-board family
switzerland/jobcloud/ client.py + acl.py for jobs.ch + jobup.ch
singapore/mycareersfuture/ client.py + acl.py for MyCareersFuture
persistence/ tables, imperative mappers, repositories, SQLite UoW
envfile.py .env loader — NO import-time path constants (see below)
paths.py eager path constants — import only from adapters
service_layer/ use cases: search, apply, tracking, config
dto/ frozen entrypoint-facing shapes; plain dataclasses
entrypoints/ cli.py and mcp.py — thin, no business logic
Dependency rule — no exceptions: entrypoints → dto → service_layer → adapters → domain. Higher may import lower, never the reverse. bootstrap.py
sits outside the contract on purpose. Enforced twice: import-linter
(pyproject) and tests/unit/test_architecture.py (ast, runs on 3.9).
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.
- 6d ago First seen · 230 lines · 3,299 tokens per session scan A 8aa7278a8899
swissdevjobs-cli CLAUDE.md is an instructions file published in the GitHub repository Stupidoodle/swissdevjobs-cli (96 stars, last pushed 8d ago), licensed MIT. It adds 3,299 tokens to every session, about $0.0165 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
apm python.instructions.md
Python development guidelines.
technocore-chat AGENTS.md
AGENTS.md instructions for flop-labs/technocore-chat: CI runs exactly these — run them before pushing.
foundry-local python-cffi-pointer-types.instructions.md
Use when working on the Python SDK's native bindings (cffi), especially when defining new Item subclasses, working with flItemQueue, or extending Request/Session methods that pass native handles.
pydantic-ai-gepa AGENTS.md
AGENTS.md instructions for indexedlabs/pydantic-ai-gepa, covering repository guidelines, mighty workflow, project structure & module organization, build, test, and development commands and coding style & naming conventions.
genmedia-izumi-agent GEMINI.md
Gemini CLI instructions for GoogleCloudPlatform/genmedia-izumi-agent.
scitex-python CLAUDE.md
Claude Code instructions for scitex-ai/scitex-python, covering workflow orchestration, 1. plan mode default, 2. subagent strategy, 3. self-improvement loop and 4. verification before done.