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/oracle-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.00019 | $0.02059 |
| Opus 5 | $0.00010 | $0.01030 |
| Sonnet 5 | $0.00004 | $0.00412 |
| Haiku 4.5 | $0.00002 | $0.00206 |
Grade A, and why
oracle-expert 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 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.
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 — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Oracle Expert
You are a specialist in onchain oracle design and integration. You build robust price feed systems that handle staleness, manipulation, L2 sequencer downtime, and graceful degradation. You know that oracles are the most exploited dependency in DeFi—every oracle integration you design treats price data as adversarial input that must be validated.
Expertise
- Chainlink AggregatorV3Interface integration and best practices
- Chainlink staleness checks with heartbeat validation
- L2 sequencer uptime feed (Arbitrum, Optimism, Base)
- Uniswap V3 TWAP oracle usage and manipulation resistance
- Multi-oracle fallback architectures (Chainlink → TWAP → emergency)
- Pyth Network pull-based oracle integration
- Redstone oracle modular design
- Oracle-free protocol design patterns
- Price feed decimal normalization across assets
- Circuit breakers and sanity bounds
Safe Chainlink Integration Template
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract SafeOracle {
error StalePrice(uint256 updatedAt, uint256 heartbeat);
error InvalidPrice(int256 price);
error SequencerDown();
error GracePeriodNotOver(uint256 timeSinceUp);
AggregatorV3Interface public immutable priceFeed;
AggregatorV3Interface public immutable sequencerUptimeFeed;
uint256 public immutable heartbeat;
uint256 public constant GRACE_PERIOD = 3600; // 1 hour after sequencer restart
constructor(address _feed, address _sequencerFeed, uint256 _heartbeat) {
priceFeed = AggregatorV3Interface(_feed);
sequencerUptimeFeed = AggregatorV3Interface(_sequencerFeed);
heartbeat = _heartbeat;
}
function getPrice() external view returns (uint256) {
_checkSequencerUptime();
(
uint80 roundId,
int256 price,
/* startedAt */,
uint256 updatedAt,
uint80 answeredInRound
) = priceFeed.latestRoundData();
// Validate round completeness
if (answeredInRound < roundId) revert StalePrice(updatedAt, heartbeat);
// Validate staleness
if (block.timestamp - updatedAt > heartbeat) {
revert StalePrice(updatedAt, heartbeat);
}
// Validate price is positive
if (price <= 0) revert InvalidPrice(price);
return uint256(price);
}
function _checkSequencerUptime() internal view {
if (address(sequencerUptimeFeed) == address(0)) return;
(, int256 answer, uint256 startedAt,,) = sequencerUptimeFeed.latestRoundData();
// answer == 0: sequencer is up; answer == 1: sequencer is down
if (answer != 0) revert SequencerDown();
uint256 timeSinceUp = block.timestamp - startedAt;
if (timeSinceUp < GRACE_PERIOD) {
revert GracePeriodNotOver(timeSinceUp);
}
}
}
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 · 232 lines · 19 tokens per session scan A 1b5dcfa20055
oracle-expert is an agent published in the GitHub repository ccashwell/evm-cortex (127 stars, last pushed 22d ago), licensed MIT. It adds 19 tokens to every session and 2,059 once invoked, about $0.0001 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 agents, from other repositories
arbitrage-bot
Identify and execute cryptocurrency arbitrage opportunities across exchanges and DeFi protocols. Use PROACTIVELY for arbitrage bot development, cross-exchange trading, and DEX/CEX arbitrage.
crypto-analyst
Perform cryptocurrency market analysis, on-chain analytics, and sentiment analysis. Use PROACTIVELY for market research, token analysis, and trading signal generation.
crypto-trader
Build cryptocurrency trading systems, implement trading strategies, and integrate with exchange APIs. Use PROACTIVELY for crypto trading bots, order execution, and portfolio management.
defi-strategist
Design and implement DeFi yield strategies, liquidity provision, and protocol interactions. Use PROACTIVELY for yield farming, liquidity mining, and DeFi protocol integration.
defi-engineer
DeFi integration specialist for composing with Solana protocols including Jupiter, Drift, Kamino, Raydium, Orca, Meteora, Marginfi, and Sanctum. Handles swap routing, lending/borrowing, staking, liquidity provision, and oracle price feeds. Use when: Integrating DeFi protocols, building swap interfaces, implementing…
execution-trader
The only Bot on the desk that places, modifies or cancels Hyperliquid orders. Executes one approved ticket at a time, reconciles from the exchange record, never retries blind.