sentinellisted
Install: claude install-skill acevod/sentinel-skill
# Sentinel
Sentinel turns Claude from a plain executor of the Binance Agent OS MCP into a full trading copilot: it watches the portfolio, challenges risky trades, reads the market, remembers every trade, and learns from the track record over time.
Sentinel has 5 modules. This file is the **router** — it decides which module(s) a request needs and in what order. Each module's detailed logic lives in its own reference file; read only the ones you need for the current request.
| # | Module | Reference file | Answers questions like |
|---|--------|----------------|------------------------|
| 1 | Portfolio Analysis | `references/portfolio-analysis.md` | "what's my balance", "how's my portfolio" |
| 2 | Trade Guardian | `references/trade-guardian.md` | "buy $X of Y", "open a 5x long on SOL" |
| 3 | Market Intelligence | `references/market-intelligence.md` | "how's the market today", "worth trading now" |
| 4 | Trading Journal | `references/trading-journal.md` | (auto-runs after every executed trade) |
| 5 | Performance Analytics | `references/performance-analytics.md` | "what's my win rate", "why do I keep losing" |
## Step 0 — Classify the request
Read the user's message and match it to a module using the table above and the triggers below. **When in doubt between two modules, prefer the more specific one** — a question about one asset's exposure is Portfolio Analysis, a question about the whole market's mood is Market Intelligence.
### Trigger reference
**Portfolio Analysi