kraken-spot-execution

Execute spot orders with validation, confirmation gates, and post-trade checks.

23 stars

Best use case

kraken-spot-execution is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Execute spot orders with validation, confirmation gates, and post-trade checks.

Teams using kraken-spot-execution 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

$curl -o ~/.claude/skills/kraken-official-spot-execution/SKILL.md --create-dirs "https://raw.githubusercontent.com/jiayaoqijia/cryptoskill/main/skills/exchanges/kraken-official-spot-execution/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/kraken-official-spot-execution/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How kraken-spot-execution Compares

Feature / Agentkraken-spot-executionStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Execute spot orders with validation, confirmation gates, and post-trade checks.

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-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.

Related Skills

spot

23
from jiayaoqijia/cryptoskill

KuCoin Spot trading using the KuCoin API. Authentication requires API Key, API Secret, and Passphrase.

Kraken Crypto Skill

23
from jiayaoqijia/cryptoskill

Use the kraken_cli.py wrapper to query your Kraken account.

openclaw_kraken

23
from jiayaoqijia/cryptoskill

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

23
from jiayaoqijia/cryptoskill

Real-time data streaming via WebSocket for spot and futures.

kraken-twap-execution

23
from jiayaoqijia/cryptoskill

Execute large orders as time-weighted slices to reduce market impact.

kraken-tax-export

23
from jiayaoqijia/cryptoskill

Export trade history, ledgers, and cost basis data for tax reporting.

kraken-subaccount-ops

23
from jiayaoqijia/cryptoskill

Create and manage subaccounts with inter-account transfers.

kraken-stop-take-profit

23
from jiayaoqijia/cryptoskill

Manage stop-loss and take-profit orders for risk-bounded positions.

kraken-shared

23
from jiayaoqijia/cryptoskill

Shared runtime contract for kraken-cli: auth, invocation, parsing, and safety.

kraken-risk-operations

23
from jiayaoqijia/cryptoskill

Operational risk controls for live agent trading sessions.

recipe-futures-hedge-spot

23
from jiayaoqijia/cryptoskill

Hedge a spot holding with a short futures position to lock in value.

kraken-rebalancing

23
from jiayaoqijia/cryptoskill

Portfolio rebalancing to maintain target allocations across assets.