oracle-expert

An agent for designing blockchain price-data systems using sources such as Chainlink, TWAPs, and fallback feeds.

In plain words
What is it for?
Use it to integrate price feeds, normalize decimals, add freshness checks and safety limits, and design fallback or emergency behavior.
Why use it?
It helps protect applications from old, manipulated, missing, or inconsistent prices, including during certain layer-2 outages.

Agent

Install

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.

agentmods
npx agentmods add agents/ccashwell/evm-cortex/oracle-expert
Clone the repo
git clone --depth 1 https://github.com/ccashwell/evm-cortex
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,059 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 1b5dcfa20055, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

agents/oracle-expert.md · 232 lines

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
// 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);
        }
    }
}

Read the full file on GitHub · 232 lines

Changes

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.

  1. 2d ago First seen · 232 lines · 19 tokens per session scan A 1b5dcfa20055

Subscribe to this mod's changes

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.

Related

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.

davepoon/buildwithclaude · 44 tokens

crypto-analyst

Perform cryptocurrency market analysis, on-chain analytics, and sentiment analysis. Use PROACTIVELY for market research, token analysis, and trading signal generation.

davepoon/buildwithclaude · 35 tokens

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.

davepoon/buildwithclaude · 36 tokens

defi-strategist

Design and implement DeFi yield strategies, liquidity provision, and protocol interactions. Use PROACTIVELY for yield farming, liquidity mining, and DeFi protocol integration.

davepoon/buildwithclaude · 39 tokens

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…

solanabr/solana-ai-kit · 100 tokens

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.

galleonlabs/hypergrok-trading-desk · 41 tokens