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/onbloc/gno-ibc/agents-mdgit clone --depth 1 https://github.com/onbloc/gno-ibcWrote 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/onbloc/gno-ibc/agents-md)<a href="https://agentmods.dev/instructions/onbloc/gno-ibc/agents-md"><img src="https://agentmods.dev/badge/instructions/onbloc/gno-ibc/agents-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.06537 | $0.06537 |
| Opus 5 | $0.03268 | $0.03268 |
| Sonnet 5 | $0.01307 | $0.01307 |
| Haiku 4.5 | $0.00654 | $0.00654 |
Grade A, and why
gno-ibc 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 4d 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 — 502 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
.gno Files Are NOT Go
.gnolooks like Go but runs in a deterministic VM.- No goroutines, channels,
unsafe,net,os. - Realms (
r/) are stateful (on-chain state). - Packages (
p/) are stateless libraries. - Import paths:
gno.land/p/...orgno.land/r/...— nevergithub.com/.... - Module config:
gnomod.toml(notgo.mod). cross(cur)operator for cross-realm calls (the legacy barecross/cross1keyword is gone).realmtype for realm-aware functions. Functions that act on their own realm's state declarecur realmas the first parameter.
Build & Test
| Gno tests | Go tests |
|---|---|
make test for the first-party suite; gno test ./path/... for focused runs |
go test ./... |
Test files: _test.gno |
Test files: _test.go |
Light Client Proof Verification
- Any core-hosted code path that verifies membership or non-membership proofs must reject inactive clients before proof verification.
- For Union core paths (
gno.land/r/onbloc/ibc/union/coreand versioned implementation realms such asgno.land/r/onbloc/ibc/union/core/v1), keep the existing core-levellightClient.Status() == lightclient.Activechecks before everyVerifyMembershiporVerifyNonMembershipcall. Treatgno.land/r/aib/ibc/coreas the vendored gno-realms reference path, not the active onbloc Union core path. - The
lightclient.Interfaceadapter methods do not by themselves guarantee active-status gating. Existing object adapters such ascometblsandstate_lens/ics23_mptrely on the core caller to enforce active status before callingVerifyMembershiporVerifyNonMembership;state_lensreports its status from the underlying L1 client. - Adapter implementations should still enforce status checks they own when they are not guaranteed by the caller or when they verify through another light client directly. Use
lightclient.Activefor internal status checks; usetypes.StatusActiveonly for converted public status values. - New proof-verification paths must include tests showing that frozen or expired clients cannot be used for membership or non-membership proof verification, either at the core caller boundary or inside the adapter when the adapter owns that guard.
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.
- 4d ago First seen · 502 lines · 6,537 tokens per session scan A b1ebf9359dc4
gno-ibc AGENTS.md is an instructions file published in the GitHub repository onbloc/gno-ibc (5 stars, last pushed 4d ago), licensed Apache-2.0. It adds 6,537 tokens to every session, about $0.0327 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
evmole AGENTS.md
Instructions for cdump/evmole: EVMole extracts structured facts from deployed EVM runtime bytecode.
plamen CLAUDE.md
Claude Code instructions for PlamenTSV/plamen, covering plamen — security auditor, execution model, reference files and shared.
experiencer CLAUDE.md
Claude Code instructions for vincentlaucsb/experiencer: The canonical repository instructions are in AGENTS.md. Read and follow that file; this compatibility entrypoint intentionally defines no independent rules.
pip-web CLAUDE.md
Claude Code instructions for playpip/pip-web, covering claude.md — agent guide for pip, read first (by task), the three layers (respect the boundaries), non-negotiables and commands / definition of done.
kya-hub AGENTS.md
AGENTS.md instructions for UMBRAXON/kya-hub, covering agents.md — instructions for ai agents, 1. what kya-hub is, in one paragraph, 2. should you integrate?, 3. quickstart for an llm agent and 4. signing rules — the part that breaks everyone.
bitcoin-mcp copilot-instructions.md
Instructions for Bortlesboat/bitcoin-mcp, covering bitcoin-mcp copilot instructions, rules, satoshi api reference and verification.