Execute spot orders with validation, confirmation gates, and post-trade checks.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add jiayaoqijia/cryptoskill --skill kraken-official-spot-execution --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Kraken Official Spot Execution?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jiayaoqijia-kraken-official-spot-execution)More formats (shields.io, HTML) on the badges page.
---
name: kraken-spot-execution
version: 1.0.0
description: "Execute spot orders with validation, confirmation gates, and post-trade checks."
metadata:
openclaw:
category: "finance"
requires:
bins: ["kraken"]
---
# kraken-spot-execution
Use this skill for:
- placing spot buy or sell orders
- validating order payloads before submit
- checking open orders and trade history
## Safe Execution Flow
1. Read price:
```bash
kraken ticker BTCUSD -o json 2>/dev/null
```
2. Validate order:
```bash
kraken order buy BTCUSD 0.001 --type limit --price 50000 --validate -o json 2>/dev/null
```
3. Ask for explicit human confirmation.
4. Execute order:
```bash
kraken order buy BTCUSD 0.001 --type limit --price 50000 -o json 2>/dev/null
```
5. Verify placement:
```bash
kraken open-orders -o json 2>/dev/null
```
## Cancel and Safety
- Cancel one:
```bash
kraken order cancel <TXID> -o json 2>/dev/null
```
- Dead-man switch:
```bash
kraken order cancel-after 60 -o json 2>/dev/null
```
## Hard Rules
- Never execute live order commands without explicit user approval.
- Route failures by `.error` category.
- On `rate_limit`, read `suggestion` and `docs_url` fields, then adapt strategy.
- If you hit a mismatch between what you are trying to do and the CLI's interface or responses — including a mismatch between this skill and the installed CLI version's contract — feel free to submit feedback with `kraken feedback`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!