claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// Security & Compliance

crypto-ai-research

crypto ai research on solana by Claude AI - AI reasoning, on-chain data

Actively maintained
99/100
last commit 22 days ago
last release none
releases 0
open issues 0
// install
git clone https://github.com/cryptosignalorg/crypto-ai-research

Crypto AI Research

Open-source AI research toolkit for crypto markets

Reads the market. Signals the moves. Posts the alpha.

GitHub · Issues


What is Crypto AI Research?

Crypto AI Research is an open-source TypeScript research lab for crypto markets — built on Solana and powered by Claude AI. It is maintained by Crypto Signal Org.

It connects on-chain data, AI reasoning, and automated distribution into a single, modular toolkit:

  • 🤖 Telegram bot that answers market questions, analyzes chart photos, and delivers signals in real time
  • 📊 Signal engine with pure TypeScript TA (RSI, MACD, Bollinger Bands, EMA, ATR) — no external TA libraries
  • 🐋 Whale tracker that monitors large Solana wallets and fires instant alerts on big moves
  • 🐦 Auto poster that generates natural, human-style posts ready for Twitter/X
  • High-performance core written in Rust for heavy computation

Crypto AI Research doesn't predict. It researches, signals, and acts.

The CLI is published as orinlab (npm package name: orinlab).


Install

git clone https://github.com/cryptosignalorg/crypto-ai-research.git
cd crypto-ai-research
npm install
npm run build

Quickstart

# 1. Setup — interactive wizard, takes ~1 minute
npx orinlab setup

# 2. Run
npx orinlab bot        # Telegram AI bot
npx orinlab signal     # Signal engine (terminal)
npx orinlab posts SOL  # Generate posts for $SOL
npx orinlab onchain    # Solana wallet monitor

What orinlab setup looks like

Step 1 — AI Provider
  1 Anthropic (Claude)
  2 DeepInfra (free tier)
Choose provider: 2
DeepInfra API key: ••••••••

Step 2 — Telegram Bot
Telegram bot token: ••••••••

Step 3 — Solana (optional)
Configure Solana wallet tracking? [y/N]

Step 4 — Twitter/X Auto Poster (optional)
Configure Twitter/X posting? [y/N]

✓ Setup complete! Config saved to ~/.orinlab/.env
  orinlab bot      — start Telegram bot
  orinlab signal   — signal engine

Config is saved to ~/.orinlab/.env — edit anytime to update keys.


Architecture

┌─────────────────────────────────────────────────────────┐
│                   Crypto AI Research                    │
│                                                         │
│  ┌──────────────┐    ┌──────────────┐                  │
│  │ Telegram Bot │    │ Signal Engine│                   │
│  │ (TypeScript) │    │ (TypeScript) │                   │
│  └──────┬───────┘    └──────┬───────┘                   │
│         │                   │                           │
│         └─────────┬─────────┘                           │
│                   ▼                                     │
│          ┌────────────────┐                             │
│          │   Claude AI    │  ← Anthropic / DeepInfra    │
│          │  (Haiku/Sonnet)│                             │
│          └────────┬───────┘                             │
│                   │                                     │
│         ┌─────────┴──────────┐                          │
│         ▼                    ▼                          │
│  ┌─────────────┐    ┌────────────────┐                  │
│  │ Auto Poster │    │  On-chain Agent│                   │
│  │ (TypeScript)│    │  (TypeScript)  │                   │
│  └──────┬──────┘    └───────┬────────┘                  │
│         │                   │                           │
│         ▼                   ▼                           │
│    Twitter/X           Solana RPC                       │
│                      (CoinGecko API)                    │
└─────────────────────────────────────────────────────────┘

Modules

ModuleLanguageDescription
Telegram BotTypeScriptAI-powered bot — market Q&A, signal delivery, chart photo analysis
Signal EngineTypeScriptBUY/SELL/HOLD signals with confidence score and risk level
Technical AnalysisTypeScriptRSI, MACD, BB, EMA, ATR — pure TypeScript, no TA libraries
Market AnalystTypeScriptDeep multi-factor market analysis using Claude Sonnet
On-chain AgentTypeScriptSolana wallet monitoring, transaction parsing
Whale TrackerTypeScriptMonitors large wallets, alerts on $50k+ moves
Post WriterTypeScriptNatural human-style post generator for Twitter/X
Signal HistoryTypeScriptAppend-only JSON signal log with stats and filters
Auto PosterTypeScriptAutomated signal posting to Twitter/X
Solana SDKTypeScriptOn-chain data fetcher — prices, wallets, transactions
Signal CLIGoLightweight CLI for terminal-native signal checks
Core SDKRustHigh-performance signal computation and data processing

Telegram Bot Commands

CommandDescription
/startWelcome screen with quick-action keyboard
/signal $TOKENBUY/SELL/HOLD signal with confidence score
/ta $TOKENFull technical analysis — RSI, MACD, BB, EMA
/analyze $TOKENDeep AI market analysis (Claude Sonnet)
/post $TOKENGenerate a ready-to-copy Twitter/X post
/historyLast 10 signals generated
/helpShow all commands

Send a chart photo → instant AI chart analysis with signal, key levels, and pattern recognition.


AI Providers

Crypto AI Research supports multiple AI backends — switch with one env var:

ProviderSetupNotes
AnthropicANTHROPIC_API_KEYBest quality, Claude Haiku/Sonnet
DeepInfraDEEPINFRA_API_KEYFree tier available, Llama 3.1 70B
OpenAIOPENAI_API_KEYAny OpenAI-compatible endpoint
OpenRouterOPENAI_API_KEY + OPENAI_BASE_URLAccess to 100+ models
# Switch provider in ~/.orinlab/.env
AI_PROVIDER=deepinfra
DEEPINFRA_API_KEY=your_key
DEEPINFRA_MODEL=meta-llama/Meta-Llama-3.1-70B-Instruct

For Developers

Clone and run locally:

git clone https://github.com/cryptosignalorg/crypto-ai-research.git
cd crypto-ai-research
npm install
cp .env.example .env   # fill in your keys
npm run build
npx orinlab signal

Run tests

npm test
npm run test:pipeline

Project Structure

crypto-ai-research/
├── src/                ← TypeScript core (agents, bot, CLI, utils)
│   ├── agents/         ← signal engine, TA, whale tracker, etc.
│   ├── bot/            ← Telegram bot
│   ├── cli/            ← orinlab CLI entry point
│   └── redis/          ← cache layer
├── poster/             ← TypeScript auto poster
├── sdk/                ← TypeScript Solana SDK
├── cli/                ← Go signal CLI
├── core/               ← Rust core SDK
├── tests/              ← Vitest unit tests
├── scripts/            ← pipeline smoke tests
└── .github/            ← CI/CD, CodeQL, issue templates

Contributing

Contributions are welcome. Read CONTRIBUTING.md first.

  1. Fork the repo
  2. Create a branch: git checkout -b feature/your-feature
  3. Follow Conventional Commits
  4. Open a PR against main

Security

Found a vulnerability? See SECURITY.md. Do not open a public issue.


Disclaimer

Crypto AI Research is experimental software for research purposes.

  • AI signals are not financial advice
  • Always DYOR
  • Never share your private key
  • Use at your own risk

License

MIT — see LICENSE


Crypto AI Research · Open-source AI toolkit for crypto markets

Built on Solana · Powered by Claude AI

GitHub · Issues

// compatibility

Platformscli, api
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageTypeScript

// faq

What is crypto-ai-research?

crypto ai research on solana by Claude AI - AI reasoning, on-chain data. It is open-source on GitHub.

Is crypto-ai-research free to use?

crypto-ai-research is open-source under the MIT license, so it is free to use.

What category does crypto-ai-research belong to?

crypto-ai-research is listed under devtools in the Claudeers registry of Claude-compatible tools.

0 views
97 stars
unclaimed
updated 12 days ago

// embed badge

crypto-ai-research on Claudeers
[![Claudeers](https://claudeers.com/api/badge/crypto-ai-research.svg)](https://claudeers.com/crypto-ai-research)

// retro hit counter

crypto-ai-research hit counter
[![Hits](https://claudeers.com/api/counter/crypto-ai-research.svg)](https://claudeers.com/crypto-ai-research)

// reviews

// guestbook

0/500

// related in Security & Compliance

🔓

A complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy injectors to reality checkers. Each agent is a specia…

// securitymsitarzewski/Shell126,507MIT[ claude ]
🔓

π RuView turns commodity WiFi signals into real-time spatial intelligence, vital sign monitoring, and presence detection — all without a single pixel of video.

// securityruvnet/Rust79,154MIT[ claude ]
🔓

Prowler is the world’s most widely used open-source cloud security platform that automates security and compliance across any cloud environment.

// securityprowler-cloud/Python14,101Apache-2.0[ claude ]
🔓

🐶 A curated list of Web Security materials and resources.

// securityqazbnm456/Python13,559[ claude ]
→ see how crypto-ai-research connects across the ecosystem