← ClaudeAtlas

strike-setuplisted

Prepare the desk computer to work with Strike Finance - the two surfaces (public market data and the signed trading API), confirm public connectivity, provision the API wallet through the secure secret store when the user asks to trade, run the read-only readiness check, and understand why the desk rehearses with previews and minimum-size orders rather than testnet. Use during desk setup, when moving between research and trading levels, when a key is rotated, or when any Strike call fails with an environment problem.
Mendurim/strikegrok-trading-desk · ★ 0 · AI & Automation · score 75
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