Operational risk controls for live agent trading sessions.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add jiayaoqijia/cryptoskill --skill kraken-official-risk-operations --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Kraken Official Risk Operations?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jiayaoqijia-kraken-official-risk-operations)More formats (shields.io, HTML) on the badges page.
---
name: kraken-risk-operations
version: 1.0.0
description: "Operational risk controls for live agent trading sessions."
metadata:
openclaw:
category: "finance"
requires:
bins: ["kraken"]
---
# kraken-risk-operations
Use this skill to reduce live-trading risk during automation.
## Pre-Flight Checklist
1. Confirm intended environment (paper vs live).
2. Confirm pair, side, volume, and order type.
3. Validate payload with `--validate`.
4. Enable a dead-man switch for unattended sessions.
## Live Session Safety Commands
Dead-man switch:
```bash
kraken order cancel-after 60 -o json 2>/dev/null
```
Mass cancel:
```bash
kraken order cancel-all -o json 2>/dev/null
kraken futures cancel-all -o json 2>/dev/null
```
Position visibility:
```bash
kraken open-orders -o json 2>/dev/null
kraken positions -o json 2>/dev/null
kraken futures positions -o json 2>/dev/null
```
## Failure Handling
- `network`: exponential backoff retry
- `rate_limit`: read `suggestion` and `docs_url` fields, reduce call frequency or switch to WebSocket
- `auth`: stop and refresh credentials
- `validation` or `api`: stop, fix request, do not blind retry
## Hard Rules
- All cancel and cancel-all operations are dangerous. Require explicit human approval before executing.
- Dead-man switch (`cancel-after`) is also dangerous; confirm the timeout value with the user.
- Never execute mass-cancel without verifying which orders and positions are open first.
- 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? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!