kraken-risk-operations
Operational risk controls for live agent trading sessions.
Best use case
kraken-risk-operations is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Operational risk controls for live agent trading sessions.
Teams using kraken-risk-operations should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/kraken-official-risk-operations/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How kraken-risk-operations Compares
| Feature / Agent | kraken-risk-operations | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Operational risk controls for live agent trading sessions.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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.
Related Skills
Kraken Crypto Skill
Use the kraken_cli.py wrapper to query your Kraken account.
openclaw_kraken
Use a Bash CLI to query Kraken Spot and Futures APIs, inspect account state, run guarded trading and funding actions, and work with Kraken websocket payloads using OpenClaw-managed secrets.
kraken-ws-streaming
Real-time data streaming via WebSocket for spot and futures.
kraken-twap-execution
Execute large orders as time-weighted slices to reduce market impact.
kraken-tax-export
Export trade history, ledgers, and cost basis data for tax reporting.
kraken-subaccount-ops
Create and manage subaccounts with inter-account transfers.
kraken-stop-take-profit
Manage stop-loss and take-profit orders for risk-bounded positions.
kraken-spot-execution
Execute spot orders with validation, confirmation gates, and post-trade checks.
kraken-shared
Shared runtime contract for kraken-cli: auth, invocation, parsing, and safety.
kraken-rebalancing
Portfolio rebalancing to maintain target allocations across assets.
kraken-rate-limits
Understand Kraken API rate limits and adapt agent behavior when limits are hit.
kraken-portfolio-intel
Portfolio analysis, P&L tracking, trade history, and export reports.