decker-developer

decker-developer is a skill for Claude Code, Codex from gigshow/decker-ai. It costs 66 tokens per session (1,416 once invoked), scanned A, original, MIT.

A guide for developers who want to connect software to Decker's public API, a web interface for retrieving trading signals.

In plain words
What is it for?
Use it to retrieve the latest signal for a trading symbol, including direction, entry, target, stop-loss, current price, progress, and timeframe.
Why use it?
It explains how to obtain and use an API key, authenticate requests, and work within the stated request limit.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/gigshow/decker-ai/decker-developer
Any agent
npx skills add gigshow/decker-ai --skill decker-developer
Clone the repo
git clone --depth 1 https://github.com/gigshow/decker-ai

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for decker-developer

README.md
[![agentmods](https://agentmods.dev/badge/skills/gigshow/decker-ai/decker-developer.svg)](https://agentmods.dev/skills/gigshow/decker-ai/decker-developer)
Your own site
<a href="https://agentmods.dev/skills/gigshow/decker-ai/decker-developer"><img src="https://agentmods.dev/badge/skills/gigshow/decker-ai/decker-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,416 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00066 $0.01416
Opus 5 $0.00033 $0.00708
Sonnet 5 $0.00013 $0.00283
Haiku 4.5 $0.00007 $0.00142

Measured 3d ago against content hash 72a04f236b4a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

decker-developer scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -H "X-API-Key: dk_live_..." \
docs/openclaw_skills/decker-developer/SKILL.md · 170 lines

How it starts

The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Decker Developer API 스킬

Goal

개발자가 Decker Public API를 연동하는 데 필요한 키 발급·인증·엔드포인트·Rate Limit 안내.


1. API 키 발급 (무료)

전체 흐름 (3단계):

  1. decker-ai.com 회원가입
  2. 로그인 → 설정 → 텔레그램 → 연동 코드 발급 → 텔레그램 /start {코드}
  3. 텔레그램 @deckerclawbot 에서:
/apikey
→ dk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 발급
  • /apikey reset — 기존 키 폐기 후 재발급.
  • 키는 한 번만 전체 표시. 분실 시 /apikey reset.

Tier: 기본 FREE (30 req/day). 상위 플랜 문의는 텔레그램.


2. 인증 헤더

모든 Public API 요청에 헤더 추가:

X-API-Key: dk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Base URL: https://api.decker-ai.com


3. Public Endpoints

GET /api/v1/public/signals/{symbol}/latest

최신 시그널 — 방향·진입가·목표가·손절가·진행률.

curl -H "X-API-Key: dk_live_..." \
  "https://api.decker-ai.com/api/v1/public/signals/BTCUSDT/latest?timeframe=1h"

응답:

{
  "symbol": "BTCUSDT",
  "timeframe": "1h",
  "direction": "long",
  "entry_price": 94200.0,
  "target_price": 97500.0,
  "stop_loss": 92800.0,
  "current_price": 95100.0,
  "progress_pct": 27.3,
  "generated_at": "2026-04-23T09:00:00+00:00"
}

timeframe 가능값: 15m, 30m, 1h, 4h, 8h, 1d, 1w

operation_gate: GO = 진입 신호 / WATCH = 관측 중 / HOLD = 대기 (GO만 진입 권고)


GET /api/v1/public/signals/{symbol}/narrative

규칙 기반 구조 서사 — LLM 비용 없음, deterministic.

curl -H "X-API-Key: dk_live_..." \
  "https://api.decker-ai.com/api/v1/public/signals/BTCUSDT/narrative?timeframe=4h"

응답:

{
  "symbol": "BTCUSDT",
  "timeframe": "4h",
  "narrative": "BTC 4h: A-사이클 진행 중, 트리거 활성 — 상승 1단계 목표 유효.",
  "axis": "bullish",
  "generated_at": "2026-04-23T08:00:00+00:00"
}

4. Rate Limit

Tier 일일 한도 비고
FREE 30 req/day 웹 Settings→API Keys · 텔레그램 /apikey
PRO 1,000 req/day $20/mo
ENTERPRISE 100,000 req/day 문의

429 응답 시 내일 리셋. 헤더: X-RateLimit-Remaining.


5. 시그널 소스 투명성

Public API는 engine:live_l1 소스만 반환한다.

Read the full file on GitHub · 170 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 170 lines · 66 tokens per session scan A 72a04f236b4a

Subscribe to this mod's changes

decker-developer is a skill published in the GitHub repository gigshow/decker-ai (3 stars, last pushed 3d ago), licensed MIT. It adds 66 tokens to every session and 1,416 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

jesse-strategy-tests

Use when writing or modifying tests for Jesse's backend — especially behavior tied to a strategy (entries/exits, take-profit/stop-loss, position lifecycle hooks, closed-trade metrics). Documents this repo's strategy-driven test pattern: a thin test in tests/testparentstrategy.py that runs singleroutebacktest('Name')…

jesse-ai/jesse · 0 tokens

aomi-transact

Build natural-language crypto agents, web3 assistants, and trading bots that read and write EVM chain state. Aomi turns prompts ("swap 1 ETH for USDC", "open a 3x GMX long", "bet $100 on Polymarket") into wallet-signed transactions on Ethereum, Base, Arbitrum, Optimism, Polygon, Linea — non-custodial, fork-simulated.…

aomi-labs/skills · 221 tokens

capminal

CAP Skills can help agents to interact with Cap Wallet, deploy tokens via Clanker, Liquid or Virtuals, claim rewards, manage limit/stop-loss/TWAP/DCA orders, bridge tokens between Base and Robinhood, and discover/call x402 APIs.

Capminal/agent-skills · 56 tokens

trader-hand-skill

Expert knowledge for autonomous market intelligence and trading — technical analysis, risk management, Alpaca API, financial data sources.

RightNow-AI/openfang · 28 tokens

high-risk

High-risk overlay for Bitkub swing trading. Up to 3% risk per trade, BTC + ETH + top-10 altcoins allowed, no minimum cash reserve floor, shorter entry timeframe. Use when asked to trade aggressively, maximize returns, or "high risk". Applies looser filters on top of the playbook — read this first, then follow the…

dvgamerr-app/gokub-mcp · 100 tokens

darwinia

Evolve trading strategies through genetic algorithms and adversarial combat. Run Darwinian selection on BTC data to discover battle-tested strategies. No API keys, no cloud.

0xSanei/darwinia · 36 tokens