An open-source framework for autonomous digital entities, focused on decentralized threat & alpha intelligence.
What is ARKHEION-X? · Modules · Getting Started · Contribute
ARKHEION-X is an open-core framework for building and deploying autonomous agents that provide an asymmetric advantage in hostile digital environments. We operate at the intersection of cybersecurity, quantitative analysis, and decentralized systems.
Our mission is to democratize access to high-fidelity intelligence, building tools that are traditionally reserved for hedge funds and nation-state actors, and making them available to individual developers and small teams.
- Unified Intelligence: Combines off-chain (code analysis) and on-chain (transactional analysis) data streams into a single, correlated intelligence picture.
- Autonomous by Design: Our agents are built to be deployed and operate 24/7 with minimal human intervention.
- Radical Transparency: The core engines are 100% open-source. We believe trust is earned through verifiable code, not marketing claims.
- High-Performance: Built with efficient, modern tech stacks (Node.js & Python) to ensure speed and reliability.
The framework is composed of several specialized, interoperable modules.
A real-time software supply chain threat hunter. Vektor Sentinel autonomously patrols the NPM registry via a decentralized cron job (GitHub Actions), identifies potential typosquatting attacks, and broadcasts alerts.
Example Alert Output:
{
"SIG-TYPE": "Typosquatting",
"TARGET": "express-session-validator",
"MIMICS": "express-session",
"CONFIDENCE": "HIGH (dist: 1)"
}An alpha-intel engine that detects "smart money" movements on-chain. By tracking significant transfers and identifying fresh wallets funded by major exchanges, it aims to generate pre-narrative alpha signals.
Example Signal Output:
{
"signal_type": "Fresh Wallet Accumulation",
"token": "ARB",
"to": "0x51C7...a7F",
"amount": "11,766.96",
"receiver_tx_count": 1,
"confidence": "CRITICAL"
}You can run the Quant Engine prototype on your local machine in under 5 minutes.
-
Clone the repository:
git clone [https://github.com/Yudis-bit/Arkheion-X.git](https://github.com/Yudis-bit/Arkheion-X.git) cd Arkheion-X -
Setup the Python Environment:
# Navigate to the module cd modules/quant-engine # Create and activate virtual environment python -m venv venv source venv/Scripts/activate # Install dependencies pip install -r requirements.txt
-
Configure your
.envfile: Create a.envfile insidemodules/quant-engine/and add your RPC URL and GitHub PAT.ARBITRUM_RPC_URL="YOUR_RPC_URL" GITHUB_PAT="YOUR_GITHUB_PAT" -
Run the Unified System: Navigate back to the root directory and run the main controller.
cd ../.. python main.pyThis will launch all agents concurrently. To view the data, run the dashboard in a separate terminal:
streamlit run modules/quant-engine/dashboard.py.
ARKHEION-X is currently built and maintained by a solo operator. The project's strength comes from community feedback and validation.
- Got an idea or found a bug? Open an Issue.
- Want to discuss strategy? Start a Discussion.
Our long-term vision is to build a decentralized network of intelligence agents. This is just the beginning.