# Salior — Autonomous Trading System See `plans/salior-v1-plan.md` for full architecture. ## Structure ``` salior/ # Project root ├── pyproject.toml ├── README.md └── salior/ # Python package ├── __init__.py ├── cli.py # salior CLI ├── core/ # Config, logging, memory, base agent ├── agents/ │ ├── data/ # HL WebSocket → TimescaleDB │ ├── signal/ # Regime + conviction → Supabase signals │ └── exec/ # HL CLOB API → orders ├── db/ # Schema + clients ├── skills/ # Agent skill definitions ├── mcp/ # MCP server ├── plugins/ # Plugin system └── wallet/ # Wallet connect ``` ## Quick Start ```bash # Install pip install -e . # Initialize database salior db init # Start agents salior agent start # Check MCP tools curl http://localhost:8080/mcp/tools ```