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/heath0xff/jeltz/claude-mdgit clone --depth 1 https://github.com/heath0xFF/jeltzWrote 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/heath0xff/jeltz/claude-md)<a href="https://agentmods.dev/instructions/heath0xff/jeltz/claude-md"><img src="https://agentmods.dev/badge/instructions/heath0xff/jeltz/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 | $0.00842 | $0.00842 |
| Opus 5 | $0.00421 | $0.00421 |
| Sonnet 5 | $0.00168 | $0.00168 |
| Haiku 4.5 | $0.00084 | $0.00084 |
Grade A, and why
jeltz CLAUDE.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 5d 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 — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Jeltz is an open source MCP gateway that connects AI assistants to physical devices (sensors, actuators, edge ML boards). Python framework, runs on Linux (Pi, IQ9, laptop), translates between MCP protocol and native device protocols.
See @README.md for project overview. See @ARCHITECTURE.md for detailed design decisions and rationale.
Tech stack
Python 3.11+, mcp SDK, pyserial, paho-mqtt, tomllib, click, pydantic, aiosqlite, pytest + pytest-asyncio, hatch build system.
Commands
# Development
hatch run test # Run test suite (367 tests, mock adapter, no hardware needed)
hatch run lint # Ruff linter
hatch run typecheck # Mypy
# CLI (all working)
jeltz init [directory] # Scaffold a new Jeltz project with mock profile
jeltz start -p profiles # Start MCP gateway (stdio transport)
jeltz daemon -p profiles # Long-running daemon: background recording + HTTP
jeltz chat -p profiles # Interactive chat with a local LLM (requires openai pkg)
jeltz status -p profiles # Show connected devices and health
jeltz test <profile.toml> # Test a single device connection
jeltz add-device <file.toml> # Validate and copy a profile into profiles/
# All commands accept -v (INFO) or -vv (DEBUG) for verbose logging
Hard constraints
IMPORTANT: These are non-negotiable for v1.
- MCP runs on the gateway, NEVER on leaf devices. Microcontrollers speak native protocols (serial, MQTT). The gateway translates.
- Fleet reasoning is the value. Jeltz is not a dashboard replacement. Every feature should enable multi-device correlation, anomaly interpretation, and cross-device investigation — not single-sensor reads. The aggregator generates fleet-level tools (
fleet.list_devices,fleet.get_all_readings,fleet.get_history,fleet.search_anomalies) alongside per-device tools. - SQLite for time-series storage. The gateway stores every sensor reading locally. Without history, there is no drift detection, no baseline comparison, no anomaly search.
fleet.get_historyandfleet.search_anomaliesquery this store. Useaiosqlitefor async access. IMPORTANT: Data retention must be configurable and enforced from day one — default 30 days full resolution, 1 year downsampled hourly. A cleanup job runs on gateway startup and periodically. Never ship storage without retention. - Pure Python. No Rust, no compiled extensions, no C bindings. Use pyserial, paho-mqtt, etc.
- TOML for device profiles, not YAML. Profiles have Python handler escape hatches for complex protocols via a
handlerfield. - Gateway aggregates, not proxies. Single unified MCP endpoint. Tools are namespaced:
device_name.tool_name.
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.
- 5d ago First seen · 63 lines · 842 tokens per session scan A 88489f9c7e14
jeltz CLAUDE.md is an instructions file published in the GitHub repository heath0xFF/jeltz (4 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 842 tokens to every session, about $0.0042 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
cml-mcp AGENTS.md
AGENTS.md instructions for xorrkaz/cml-mcp, covering agents.md — cml mcp server, project overview, compatibility goal, repository layout and tool modules (src/cmlmcp/tools/).
brilliant_sdk AGENTS.md
Instructions for brilliantlabsAR/brilliant_sdk, covering brilliant sdk — agent guide, how an app works (the pattern behind everything), minimal reading paths, verify without hardware and testing.
NeoMind CLAUDE.md
Claude Code instructions for camthink-ai/NeoMind, covering neomind — edge ai platform for iot, development commands, ecosystem repositories, extension package contract (.nep) and device type template contract (json).
cad-cae-copilot copilot-instructions.md
Copilot instructions for armpro24-blip/cad-cae-copilot, covering github copilot — aieng workspace and essentials.
phone-mcp CLAUDE.md
Claude Code instructions for premex-ab/phone-mcp, covering claude.md, project overview, build commands, architecture and module layout.
zmk-config AGENTS.md
AGENTS.md instructions for urob/zmk-config, covering customization guide, ground rules, how the multi-board layout works, adding a new board and where to change what.