Borrowing it
Nothing to install: this file belongs to Netie-AI/OpenHBM. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Netie-AI/OpenHBM/main/CLAUDE.mdgit clone --depth 1 https://github.com/Netie-AI/OpenHBMWrote 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/netie-ai/openhbm/claude-md)<a href="https://agentmods.dev/instructions/netie-ai/openhbm/claude-md"><img src="https://agentmods.dev/badge/instructions/netie-ai/openhbm/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.03501 | $0.03501 |
| Opus 5 | $0.01750 | $0.01750 |
| Sonnet 5 | $0.00700 | $0.00700 |
| Haiku 4.5 | $0.00350 | $0.00350 |
Grade C, and why
OpenHBM CLAUDE.md scanned grade C with 2 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 8d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
The toolchain is already installed at `~/oss-cad-suite`. Never run any install script, `apt install`, `pip install`, `curl | bash`, or any package manager command to install EDA tools. If a tool is not found, the fix is Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
The toolchain is already installed at `~/oss-cad-suite`. Never run any install script, `apt install`, `pip install`, `curl | bash`, or any package manager command to install EDA tools. If a tool is not found, the fix is How it starts
The opening of the file, as written. The whole thing — 344 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md -- the binding RTL contract for Netie Open HBM
This file is read FIRST by every AI agent (Claude 4.7, GPT-5.5, Gemini 3.1, or any successor) before producing any code in this repository. Treat every section below as a hard requirement, not a guideline. Violations block CI.
If you also see AGENTS.md, read it second -- it indexes everything else.
1. SystemVerilog subset (synthesisable code)
The synthesisable subset is IEEE 1800-2017 with the following constraints:
1.1 Allowed
logicfor all signals (nowire, noregin synthesisable code).always_ff @(posedge clk or negedge rst_ni)for sequential.always_combfor combinational.always_latchONLY when justified by an inline comment explaining why a flop is not appropriate, and never on a clock-crossing path.- Packed structs and unions for bundled wires.
enum logic [...]for state encodings (one-hot or binary; specify in()).parameterandlocalparamfor compile-time constants.function automaticfor combinational helpers.- Generate blocks with named labels (
for (...) begin : g_name). - SVA properties via
assert property,cover property,assume property. importof an interface package into a leaf module IS allowed; declaringinterfaceports IS NOT (see 1.2).
1.2 Banned in synthesisable code
- Four-state
wiredeclarations (uselogic). regkeyword (uselogic).interfaceports on leaf IP modules. (Top-level subsystem wrappers MAY use interfaces; leaf IP must use packed structs to keep tools portable.)force/release.disable fork.eventtypes.class/virtual class(verification only).mailbox,semaphore(verification only).$random,$urandom,$urandom_range(usepyvscconstrained random in the testbench, never inside RTL).- Non-blocking assignment in
always_comb(<=belongs only inalways_ff). - Blocking assignment to a flop signal (
=belongs only inalways_comb). - Implicit nets. Set
default_nettype noneat every file top. - Synchronous-active-high resets (we use synchronous and asynchronous active-low
rst_ni; see 3.2). casex,casez(usecase ... insideorunique case).- Bare
casewithoutuniqueorpriority. - Multiple-driver nets.
- Output-port driving from more than one
always_*block. defparam.- Behavioural delays (
#5) outside testbenches.
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.
- 8d ago First seen · 344 lines · 3,501 tokens per session scan C b994377b31a2
OpenHBM CLAUDE.md is an instructions file published in the GitHub repository Netie-AI/OpenHBM (24 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 3,501 tokens to every session, about $0.0175 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, 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
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.
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).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
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.
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).
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.