by h5i-dev
Secure, auditable browser for AI agents. Pure Rust, no Chromium or V8. ~5× faster and ~80% less peak memory than headless Chromium.
# Add to your Claude Code skills
git clone https://github.com/h5i-dev/h5iLast scanned: 6/1/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-06-01T09:27:45.781Z",
"npmAuditRan": true,
"pipAuditRan": true
}h5i is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by h5i-dev. Secure, auditable browser for AI agents. Pure Rust, no Chromium or V8. ~5× faster and ~80% less peak memory than headless Chromium. It has 584 GitHub stars.
Yes. h5i passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/h5i-dev/h5i" and add it to your Claude Code skills directory (see the Installation section above).
h5i is primarily written in Rust. It is open-source under h5i-dev on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh h5i against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
h5i (pronounced high-five) is a lightweight browser for policy-controlled, auditable agent access to the web. Every session records allowed and denied network requests in a reviewable receipt. Run it directly, sandbox only the browser, or contain the agent’s entire workflow in one disposable environment.
Pure Rust. No Chromium. No V8.
h5i browser open https://example.com
h5i browser snapshot # the page as a model should read it
h5i browser click @e3
h5i browser requests # what it asked for, and what was refused
h5i browser audit # the whole session: verbs, fetches, handovers, ending
h5i browser close
h5i browser read https://example.com # or: one page, no session
curl -fsSL https://h5i.dev/install.sh | sh
# curl -fsSL https://raw.githubusercontent.com/h5i-dev/h5i/main/install.sh | sh # if you would rather not add a domain to the chain:
# cargo install --path . # build from source
The agent-facing interface is a skill, and the binary carries it:
npx skills add h5i-dev/h5i # if you do not have the binary yet
# h5i skill install # writes it where your runtime looks
# h5i skill show policy # or just read a page
Two optional runtimes add stronger sandbox tiers: rootless
Podman provides container, while
microsandbox (msb) provides microvm on a host
with hardware virtualization (/dev/kvm on Linux or Apple Silicon on macOS).
A session is the whole agent-facing surface: one page state, one cookie jar, one request log, one policy:
h5i browser open https://docs.rs/ --allow docs.rs
h5i browser snapshot # outline, with @ref handles
h5i browser snapshot --delta # only what changed since the last read
h5i browser click @e3
h5i browser type @e5 "serde"
h5i browser extract '{"titles": ["h2"]}' # structured, by selector
h5i browser markdown # the page a reader would read
h5i browser login # hand the page to the human at the viewer
h5i browser close
Running several at once is what names are for:
h5i browser open https://example.com/login --session auth --new
h5i browser open https://example.com/ --session public --new
h5i browser snapshot --session auth
Read the record:
h5i browser requests # every request, including the refusals
h5i browser audit # the whole session: verbs, fetches, handovers, ending
h5i browser status # placement, policy digest, who saw the network
h5i browser list # every session on this machine, and which is default
Watch the browser it drives:
h5i box view <name> # the box's page, through a loopback-only forward
h5i box view <name> --term # draw it in this terminal instead (needs kitty)
While h5i runs in a light-weight sandbox by default, we can further specify
fine-grained setting in .h5i/env.toml.
[profile.reading]
isolation = "supervised" # workspace | process | supervised | container | microvm
[profile.reading.net]
mode = "host"
egress = ["docs.rs", "static.crates.io"] # everything else is refused
[profile.reading.fs]
read = ["/usr", "/etc"] # replaces the defaults, so grant what it needs
write = []
[profile.reading.resources]
mem = "512M"
procs = 64
secrets = ["ACME_PASS"] # the only $H5I_SECRET_* it may substitute
Give it to a browser session through a box:
h5i box --profile reading --name docs
h5i browser open https://docs.rs/ --in docs
The top rung of that ladder is a whole environment. It can hold the code, the toolchain, the dev server and the agent itself, which is what you want when the agent is building the app it is about to browse.
h5i box create alpha --profile agent-claude # a sandboxed git worktree
h5i box shell alpha # an interactive confined session
h5i box run alpha -- cargo test # one command; the exit code passes through
h5i box propose alpha # freeze the work into a reviewable snapshot
h5i box apply alpha # merge it onto the parent branch
h5i box export alpha # patch, report and receipts you can read
h5i box rm alpha # throw it away
h5i box share alpha --port 3000 # end-to-end encrypted P2P sharing
h5i box share alpha --port 3000 --tunnel # or a browser-ready demo link
h5i join <ticket> # what the recipient runs
h5i forum create "fix the auth refresh race" --ceiling code-review # create a message forum for multu-agent team
h5i forum attach claude-box --as claude-worker --role worker
h5i forum status
h5i ui # watch the whole fleet in a browser
h5i box probe reports the tiers your host can run. h5i never silently
downgrades: an unsatisfiable request fails closed.
| Tier | What enforces it |
|---|---|
workspace |
a separate git worktree, no confinement |
process |
Landlock filesystem allowlist, seccomp deny-list, namespaces, rlimits |
supervised |
all of the above, plus a private network namespace with an nftables egress allowlist pinned to resolved IPs, DNS pinned by hosts file, and a seccomp-notify socket gate |
container |
rootless Podman, dropped capabilities, a portable image, and an HTTP/HTTPS proxy allowlist |
microvm |
a hardware-isolated guest with its own kernel, booted by microsandbox (msb) from the same OCI images, with the egress allowlist evaluated by the VM's network stack |
microvm is the strongest tier and the only one that does not share the host
kernel. It requires msb, hardware virtualization (/dev/kvm or Apple Silicon),
and an image; otherwise it is refused, never downgraded.
Host credentials do not enter a box. A runtime-scoped proxy authenticates model API requests outside the boundary, preventing cross-runtime access. Each box receives a private, one-time copy of approved HOME state.
man h5i: full command referencecurl -fsSL https://h5i.dev/man/man1/h5i.1 -o ~/.local/share/man/man1/h5i.1: install the man pageh5i is a fast, lightweight browser for AI agents, with built-in auditing and configurable sandboxing. It runs locally and is open source.
Use Playwright or Puppeteer when maximum website compatibility is your priority. Use h5i when you need lower resource use, network controls, a complete session record, or a sandbox for both the browser and agent.
No. h5i works best for content-heavy websites and common browser interactions, but some browser APIs are not yet supported. For incompatible websites, you can run Chromium inside an h5i sandbox.
The browser uses lightweight process isolation when available. For stronger isolation, place the browser, or the agent's entire workflow, inside a container or microVM.