crypto-com-app

crypto-com-app is a skill for Claude Code, Codex from crypto-com/crypto-agent-trading. It costs 102 tokens per session (6,329 once invoked), scanned A, original, Apache-2.0.

A skill for using the Crypto.com App API to trade cryptocurrency and manage related account activity.

In plain words
What is it for?
Useful for buying, selling, swapping, and exchanging crypto; checking balances, prices, positions, limits, and transaction history; and managing deposits or withdrawals.
Why use it?
It lets an agent retrieve account and market information and carry out transactions through a confirmation-based process.

Skill for Claude CodeCodex

Part of the crypto-agent-trading plugin — 2 skills shipped together

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/crypto-com/crypto-agent-trading/crypto-com-app
Any agent
npx skills add crypto-com/crypto-agent-trading --skill crypto-com-app
Clone the repo
git clone --depth 1 https://github.com/crypto-com/crypto-agent-trading

Made for: Claude Code, Codex.

Or install crypto-agent-trading, the plugin that ships this one along with the rest of its 2 skills.

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 crypto-com-app

README.md
[![agentmods](https://agentmods.dev/badge/skills/crypto-com/crypto-agent-trading/crypto-com-app.svg)](https://agentmods.dev/skills/crypto-com/crypto-agent-trading/crypto-com-app)
Your own site
<a href="https://agentmods.dev/skills/crypto-com/crypto-agent-trading/crypto-com-app"><img src="https://agentmods.dev/badge/skills/crypto-com/crypto-agent-trading/crypto-com-app.svg" alt="Measured on agentmods" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,329 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.1 $0.00102 $0.06329
Opus 5 $0.00051 $0.03164
Sonnet 5 $0.00020 $0.01266
Haiku 4.5 $0.00010 $0.00633

Measured 5d ago against content hash 5af9419c9056, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

crypto-com-app 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 5d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/account.ts, scripts/coins.ts, scripts/fiat.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

**You MUST use the TypeScript scripts for ALL API interactions. NEVER call the API directly with `curl`, `fetch`, or any other HTTP method.**
crypto-com-app/SKILL.md · 423 lines

How it starts

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

Skill: crypto-com-app

Agent Capability Requirements

This skill requires your agent platform to support the following capabilities. If your platform lacks any required capability, the skill will not function.

Capability Required Details
Shell command execution Yes Must be able to run npx tsx ./scripts/... and capture stdout
Environment variables Yes Must read CDC_API_KEY and CDC_API_SECRET from the shell environment
JSON parsing Yes Must parse structured JSON from script stdout to extract fields
Multi-turn conversation Yes Trading uses a quote → confirm flow that spans multiple user turns
Persistent memory No Used for confirmation_required preference. If unsupported, default to always confirming trades
Elapsed-time awareness No Used to check quote expiry (countdown field). If unsupported, always attempt confirmation and handle invalid_quotation errors gracefully

CRITICAL: How This Skill Works

You MUST use the TypeScript scripts for ALL API interactions. NEVER call the API directly with curl, fetch, or any other HTTP method.

The scripts handle request signing, error handling, and response formatting. If you bypass them:

  • The request will fail (missing HMAC signature)
  • The response won't be filtered or structured

For every user request, find the matching command below and run it via npx tsx. Read the JSON output. Act on it.

Configurations

  • BASE_URL: https://wapi.crypto.com
  • CDC_API_KEY: {{env.CDC_API_KEY}}
  • CDC_API_SECRET: {{env.CDC_API_SECRET}}
  • CONFIRMATION_REQUIRED: {{memory.confirmation_required}} (Default: true)
  • SKILL_DIR: The directory containing this SKILL.md file. Resolve it from the path you loaded this file from (e.g. if you read /home/user/skills/crypto-com-app/SKILL.md, then SKILL_DIR is /home/user/skills/crypto-com-app).

Environment Setup

  • Both CDC_API_KEY and CDC_API_SECRET must be set as environment variables before use.
  • Before running any script, check whether both variables are set by running:
    echo "CDC_API_KEY=${CDC_API_KEY:+set}" "CDC_API_SECRET=${CDC_API_SECRET:+set}"
    
    If either prints empty instead of set, prompt the user:

    "Your API credentials are not configured. Please set them in your terminal before I can proceed:

    export CDC_API_KEY="your-api-key"
    export CDC_API_SECRET="your-api-secret"
    

    You can generate an API key at https://help.crypto.com/en/articles/13843786-api-key-management. Let me know once you've set them."

Read the full file on GitHub · 423 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 423 lines · 102 tokens per session scan A 5af9419c9056

Subscribe to this mod's changes

crypto-com-app is a skill published in the GitHub repository crypto-com/crypto-agent-trading (19 stars, last pushed 7d ago), licensed Apache-2.0. It adds 102 tokens to every session and 6,329 once invoked, about $0.0005 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-30.