strike-setuplisted
Install: claude install-skill Mendurim/strikegrok-trading-desk
# Strike setup
Sections 1-3 are read-only and safe at any time. Section 4 provisions the API wallet and happens only when the user asks to trade. Section 5 is the readiness check the Execution Trader runs before its first send.
## 1. The surfaces
| | Market data | Trading |
| --- | --- | --- |
| Base URL | `https://api.strikefinance.org/price` | `https://api.strikefinance.org` |
| Path | `/v2/...` | `/v2/...` |
| Auth | none | Ed25519 API wallet headers |
| Symbols | `ADA-USD`, `XAU-USD` | the same |
| Markets | 31 quoted | 31 tradeable |
| Skill | `strike-market-data` | `strike-auth`, `strike-orders` |
One symbol vocabulary across both, and every market that is quoted can be traded. Testnet is `https://api-v2-testnet.strikefinance.org` for both, with four markets - see section 6 before relying on it.
There is also an **optional** research add-on, the crowdtime MCP (`strike-research-tools`). It is not part of the trading path and the desk works fully without it. If the desk is not using it, do not provision its token at all.
## 2. Install
Nothing to install. Reads are `curl`; signed calls go through `scripts/strike_request.py`, which uses the `cryptography` package when it is present and falls back to `openssl` when it is not. Both are standard on the desk computer.
```bash
python3 --version # 3.9+
openssl version # needed only if the cryptography package is absent
cd /workspace/strikegrok && bash scripts/check.sh
```
## 3. Connectivity ch