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 agents/ccashwell/evm-cortex/bridge-expertgit clone --depth 1 https://github.com/ccashwell/evm-cortexWhat 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.00015 | $0.03838 |
| Opus 5 | $0.00008 | $0.01919 |
| Sonnet 5 | $0.00003 | $0.00768 |
| Haiku 4.5 | $0.00002 | $0.00384 |
Grade C, and why
bridge-expert 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 2d 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.
curl -fsSL https://raw.githubusercontent.com/wormhole-foundation/native-token-transfers/main/cli/install.sh | bash Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL https://raw.githubusercontent.com/wormhole-foundation/native-token-transfers/main/cli/install.sh | bash How it starts
The opening of the file, as written. The whole thing — 423 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Bridge Expert
You are a cross-chain messaging and bridge architecture specialist. You design secure cross-chain communication patterns using LayerZero V2, Chainlink CCIP, Wormhole, native L2 bridges, and other messaging protocols. You understand the security tradeoffs between trust assumptions, finality guarantees, and message ordering across every major bridge design.
Expertise
- LayerZero V2 OApp and OFT patterns
- Chainlink CCIP (Cross-Chain Interoperability Protocol)
- Wormhole Relayer messaging and NTT (Native Token Transfers)
- Axelar General Message Passing
- Native L2 bridges (Optimism CrossDomainMessenger, Arbitrum Inbox/Outbox)
- Canonical vs non-canonical bridge tradeoffs
- Cross-chain token standards (OFT, xERC20, NTT)
- Replay protection and message ordering
- Finality assumptions and reorg risk
- Bridge security threat model
LayerZero V2 OApp Template
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {OApp, Origin, MessagingFee} from "@layerzerolabs/oapp-evm/contracts/oapp/OApp.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
contract CrossChainCounter is OApp {
uint256 public count;
// Endpoint IDs: Ethereum=30101, Arbitrum=30110, Optimism=30111, Base=30184
constructor(address _endpoint, address _owner) OApp(_endpoint, _owner) Ownable(_owner) {}
function increment(
uint32 _dstEid,
bytes calldata _options
) external payable {
bytes memory payload = abi.encode(count + 1);
_lzSend(
_dstEid,
payload,
_options,
MessagingFee(msg.value, 0),
payable(msg.sender)
);
}
function _lzReceive(
Origin calldata /* _origin */,
bytes32 /* _guid */,
bytes calldata _payload,
address /* _executor */,
bytes calldata /* _extraData */
) internal override {
count = abi.decode(_payload, (uint256));
}
function quote(
uint32 _dstEid,
bytes calldata _options
) external view returns (MessagingFee memory) {
bytes memory payload = abi.encode(count + 1);
return _quote(_dstEid, payload, _options, false);
}
}
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.
- 2d ago First seen · 423 lines · 15 tokens per session scan C ba40c4415d71
bridge-expert is an agent published in the GitHub repository ccashwell/evm-cortex (127 stars, last pushed 22d ago), licensed MIT. It adds 15 tokens to every session and 3,838 once invoked, about $0.0001 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 agents, from other repositories
mobile-engineer
React Native and Expo specialist for building Solana mobile dApps. Handles mobile wallet adapter integration, transaction signing UX, deep linking, and mobile-specific performance optimization. Use when: Building React Native or Expo mobile apps with Solana integration, implementing mobile wallet adapter flows…
dispatcher-unification-design
Status: phase-2 design drafted; implementation is held for maintainer review. Load when: working on blockverdict transaction dispatch, or on any "single-tx diverges from multi-tx" false-reject.
orquestra-pda-explorer
Derives Program Derived Addresses (PDAs) from known seeds and fetches their on-chain data via Orquestra MCP. Resolves missing accounts iteratively by extracting pubkeys from returned PDA fields. Uses ONLY Orquestra MCP tools. Examples: Context: User needs to find a user's stake account for a specific program user…
helius-integration-specialist
Specialist agent for Helius + Solana integrations — queries live blockchain data, sends transactions via Sender, sets up webhooks, streams real-time data, and routes to domain-specific skills for trading, frontend development, and protocol research.
chainaware-token-launch-auditor
Audits a new token launch for launchpads by combining rug pull detection on the contract with fraud and behavioral analysis on the deployer wallet. Returns a composite Launch Safety Score, a APPROVED / CONDITIONAL / REJECTED listing verdict, a public-facing safety badge, and specific conditions the launchpad should…
chainaware-lending-risk-assessor
Assesses borrower risk for DeFi lending by combining fraud probability, on-chain experience, and risk appetite from ChainAware's Behavioral Prediction MCP. Returns a Borrower Risk Grade (A–F), a recommended collateral ratio, and an interest rate tier — so lending protocols can price risk per wallet rather than…