OatsAI

DOCS

Documentation

INSTALLATION

terminal
git clone https://github.com/OatsAIthedev/OatsAI
cd OatsAI
pip install -e .

QUICK START

example.py
from oats import OatsEngine, TokenRiskSnapshot

engine = OatsEngine()

snap = TokenRiskSnapshot(
    timestamp=1700000000.0,
    top10_holder_pct=25.0,
    liquidity_to_mcap=0.08,
    contract_age_days=150.0,
    transfer_pattern_score=70.0,
    dev_wallet_pct=4.0,
)

result = engine.analyze(snap)
print(result.oats_index)  # e.g. 74.5
print(result.grade)       # e.g. SAFE

DOCKER

docker
docker build -t oatsai .
docker run --rm oatsai

GRADE CLASSIFICATION

GradeIndexInterpretation
PRISTINE80-100All metrics healthy, distributed supply
SAFE60-79Low risk overall, minor cautions
MODERATE40-59Mixed signals, verify before entering
RISKY20-39Multiple red flags present
CRITICAL0-19High probability of malicious design