用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/krakenfx/kraken-cli --skill kraken-autonomy-levels命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | kraken-autonomy-levels |
| version | 1.0.0 |
| description | Progress from manual trading to full agent autonomy with controlled risk at each level. |
| metadata | {"openclaw":{"category":"finance"},"requires":{"bins":["kraken"]}} |
Use this skill to help a trader move from hands-on CLI usage to fully autonomous agent trading in safe, incremental steps.
The agent reads market data and account state. No API key needed for public data; a query-only key for account data.
Kraken API key permissions: Query Funds, Query Open Orders & Trades
export KRAKEN_API_KEY="query-only-key"
export KRAKEN_API_SECRET="query-only-secret"
kraken ticker BTCUSD -o json 2>/dev/null
kraken balance -o json 2>/dev/null
kraken open-orders -o json 2>/dev/null
The agent can inform, alert, and recommend. It cannot place orders, cancel orders, or move funds.
The agent tests strategies against live prices with zero risk. No API key needed.
kraken workspace create sandbox --capital 10000 --mode paper -o json 2>/dev/null
export KRAKEN_WORKSPACE=sandbox
kraken paper buy BTCUSD 0.01 -o json 2>/dev/null
kraken workspace status -o json 2>/dev/null
kraken workspace reset -o json --yes 2>/dev/null
Run paper strategies repeatedly. Compare results across parameter changes. Only move to Level 3 after consistent paper performance.
The agent places real orders, but a human confirms each one. The API key has trading permissions, but the agent validates before executing and waits for human approval.
Kraken API key permissions: Query Funds, Create & Modify Orders, Cancel/Close Orders
export KRAKEN_API_KEY="trade-key"
export KRAKEN_API_SECRET="trade-secret"
# Step 1: Agent validates the order (no submission)
kraken order buy BTCUSD 0.001 --type limit --price 50000 --validate -o json 2>/dev/null
# Step 2: Agent presents the validated order to the human
# Step 3: Human approves or rejects
# Step 4: Agent executes only after approval
kraken order buy BTCUSD 0.001 --type limit --price 50000 -o json 2>/dev/null
Safety controls at this level:
--validate before executingkraken order cancel-after 300 -o jsonopen-orders after every trade to verify stateThe agent trades independently. No human in the loop. The trader trusts the agent and its strategy.
Kraken API key permissions: Create & Modify Orders, Cancel/Close Orders, Query Funds
export KRAKEN_API_KEY="full-trade-key"
export KRAKEN_API_SECRET="full-trade-secret"
The agent passes --yes to skip confirmation prompts and operates on its own schedule.
Required safeguards at this level:
Restricted API key. Never use a key with withdrawal permissions for an autonomous agent. Create a key that can trade but cannot withdraw funds.
Dead man's switch. Start every session with cancel-after so all orders auto-cancel if the agent crashes or disconnects:
kraken order cancel-after 600 -o json 2>/dev/null
Refresh periodically. If the agent stops refreshing, all orders cancel.
Position limits in agent code. The CLI does not enforce position size or frequency limits. Build these in your agent logic:
Error handling. Autonomous agents must handle every error category:
rate_limit: back off, reduce frequencynetwork: retry with backoff, do not double-submit ordersauth: stop trading, alert the tradervalidation: log and skip, do not retry unchangedMonitoring. Run a separate read-only agent (Level 1) that monitors positions and alerts the trader if thresholds are breached.
The agent can also move funds (deposits, withdrawals, transfers between wallets). This is the highest trust level.
Kraken API key permissions: All permissions including Withdraw Funds
This level is rare and high-risk. Only appropriate when:
| Level | Agent can | Human involvement | Risk |
|---|---|---|---|
| 1 | Read data | None | Zero |
| 2 | Paper trade | None | Zero |
| 3 | Trade with approval | Confirms every order | Low |
| 4 | Trade autonomously | Monitors, intervenes if needed | Medium |
| 5 | Trade and move funds | Monitors | High |
Move to the next level only after the agent demonstrates consistent behavior at the current level. Paper trading (Level 2) for at least a week before supervised trading (Level 3). Supervised trading for at least a week before autonomous (Level 4).
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.
Capture the spot-futures price spread with delta-neutral basis trades.
基于 SOC 职业分类