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/bug-ops/mcpls/rust-bridgegit clone --depth 1 https://github.com/bug-ops/mcplsWhat 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.00930 | $0.00930 |
| Opus 5 | $0.00465 | $0.00465 |
| Sonnet 5 | $0.00186 | $0.00186 |
| Haiku 4.5 | $0.00093 | $0.00093 |
Grade A, and why
mcpls rust-bridge.instructions.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 yesterday.
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 — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Type safety
Position types (line, column) must be distinct newtypes, not bare u32. The MCP
convention (1-based) and the LSP convention (0-based) must be expressed in the type
system so that passing an MCP position directly to an LSP call is a compile error.
Protocol message variants must be an enum, not a string-matched dispatch. Matching on
"textDocument/hover" strings is fragile; a closed enum of known methods makes
unhandled cases visible at compile time and exhaustiveness-checked.
InboundMessage and similar enums that may gain variants in future protocol versions
must be #[non_exhaustive] so downstream crates are not broken by additions.
Document state
Caching document content alongside a filesystem signature (mtime + size) prevents
stale reads after external edits. On every access, stat the file and compare against
the cached signature; re-read and re-notify the LSP server on mismatch.
Stat and read must use the same file handle to close the TOCTOU window. Open the file
once with tokio::fs::File::open, call .metadata().await on the handle, then read
through the same handle. A separate tokio::fs::metadata call before read_to_string
leaves a window where an atomic rename can change the file between the two calls.
Document version numbers must be strictly monotone per URI. On overflow, reset to 1
rather than saturating — after didClose/didOpen the server treats the document as
fresh and the version value is irrelevant to continuity.
Diagnostics pipeline
When a feature draws from multiple independent sources (pull request + push cache),
fetch them concurrently with tokio::try_join! or tokio::join!. Awaiting them
sequentially serialises work that has no data dependency.
A cache miss must be distinguishable from an empty result. Returning Vec::new() for
both "no errors" and "not yet analysed" is ambiguous to callers. Use an Option<Vec>
or a dedicated status type to express the difference.
Deduplication keys should prefer structured fields (error code) over free-form message
text. When a code is present, key on (range, severity, code). The doc comment must
describe the actual key — a mismatch between the comment and the implementation causes
silent behavioural bugs.
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.
- yesterday First seen · 81 lines · 930 tokens per session scan A af6e2b799fc2
mcpls rust-bridge.instructions.md is an instructions file published in the GitHub repository bug-ops/mcpls (65 stars, last pushed 3d ago), licensed Apache-2.0. It adds 930 tokens to every session, about $0.0047 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-30.
Other instructions, from other repositories
octocode AGENTS.md
AGENTS.md instructions for bgauryy/octocode, covering agents.md — octocode monorepo, dogfood, architecture, packages and tools.
octocode CLAUDE.md
Claude Code instructions for bgauryy/octocode: Read AGENTS.md. Discover repository skills under .agents/skills and activate only those matching the task.
leantoken AGENTS.md
Instructions for morluto/leantoken, covering repository guidance, architecture, development, change-specific validation and contributions.
rangeLink CLAUDE.md
Instructions for couimet/rangeLink: Project-specific instructions for Claude Code RangeLink - Code location link generator for VSCode/Cursor 2.0 - XML-structured format.
reposkein AGENTS.md
Instructions for reposkein/reposkein, covering reposkein knowledge base, hard invariants (ci-enforced — never break), structure, where to look and conventions (this repo only).
ScalaSemantic AGENTS.md
Instructions for MercurieVV/ScalaSemantic, covering agents.md instructions and quick start.