recipe-morning-brief

recipe-morning-brief is a skill for Claude Code from crypto-com/cdcx-cli. It costs 29 tokens per session (667 once invoked), scanned A, original, Apache-2.0.

A morning report combining public market prices with an authenticated trading portfolio's balances, positions, profit and loss, orders, and recent activity.

In plain words
What is it for?
Use it before a trading session, on a daily schedule, or whenever you need a snapshot of market movers, open positions, overnight orders, and portfolio performance.
Why use it?
It gathers the scattered information needed for a start-of-day trading check into one structured briefing.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the cdcx-cli plugin — 13 skills, 1 MCP server shipped together

Good fit Use it before a trading session, on a daily schedule, or whenever you need a snapshot of market movers, open positions, overnight orders, and portfolio performance.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crypto-com/cdcx-cli/recipe-morning-brief
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.

Any agent
npx skills add crypto-com/cdcx-cli --skill recipe-morning-brief
Clone the repo
git clone --depth 1 https://github.com/crypto-com/cdcx-cli

Made for: Claude Code.

Or install cdcx-cli, the plugin that ships this one along with the rest of its 13 skills, 1 MCP server.

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 recipe-morning-brief

README.md
[![agentmods](https://agentmods.dev/badge/skills/crypto-com/cdcx-cli/recipe-morning-brief/github.svg)](https://agentmods.dev/skills/crypto-com/cdcx-cli/recipe-morning-brief)
Your own site
<a href="https://agentmods.dev/skills/crypto-com/cdcx-cli/recipe-morning-brief"><img src="https://agentmods.dev/badge/skills/crypto-com/cdcx-cli/recipe-morning-brief/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for recipe-morning-brief

Your own site · 80×15
<a href="https://agentmods.dev/skills/crypto-com/cdcx-cli/recipe-morning-brief"><img src="https://agentmods.dev/badge/skills/crypto-com/cdcx-cli/recipe-morning-brief.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 667 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00029 $0.00667
Opus 5 $0.00015 $0.00333
Sonnet 5 $0.00006 $0.00133
Haiku 4.5 $0.00003 $0.00067

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

Security

Grade A, and why

recipe-morning-brief scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/cdcx-cli/skills/recipe-morning-brief/SKILL.md · 81 lines

How it starts

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

Morning Brief

When to Use

  • Start-of-day status check
  • Daily automated report (cron / scheduler)
  • Pre-market dashboard before trading session begins

Requires authentication for the portfolio half. The market half is public.

Workflow

# --- Market half (public) ---

# 1. Market-wide snapshot
cdcx market ticker -o json > /tmp/cdcx-tickers.json

# 2. Top movers: pick N largest |change_24h|
jq '.data[] | {i:.i, last:.a, chg:(.c|tonumber)}' /tmp/cdcx-tickers.json | \
    jq -s 'sort_by(-(.chg|fabs)) | .[0:10]'

# --- Portfolio half (auth) ---

# 3. Cash balances
cdcx account summary -o json

# 4. Open positions + unrealized P&L
cdcx account positions -o json

# 5. Open orders left from overnight
cdcx trade open-orders -o json
cdcx advanced open-orders -o json

# 6. Yesterday's realized activity
cdcx history trades --start-time $(date -v-1d +%s)000 -o json
cdcx history transactions --start-time $(date -v-1d +%s)000 -o json

# 7. Equity curve snapshot
cdcx account balance-history --timeframe D1 -o json

(Note: date -v-1d is BSD/macOS. On GNU coreutils use date -d '1 day ago' +%s.)

Assembled Report

Combine the above into a text briefing:

=== CDCX Morning Brief — $(date +%Y-%m-%d) ===

TOP MOVERS
  BTC_USDT        +3.2%   @ 51,250
  ETH_USDT        +2.1%   @ 2,820
  SOL_USDT        -4.5%   @  141

PORTFOLIO
  Cash:           12,450 USDT
  Positions:      3 open (BTC_USDT long, ETH_USDT long, SOL_USDT short)
  Unrealized P&L: +245 USDT

OVERNIGHT ORDERS
  2 open limit orders on BTC_USDT
  1 OTOCO bracket on ETH_USDT

YESTERDAY
  4 fills, 850 USDT realized P&L

Notes

  • cdcx account balance-history is useful for charting equity curves over time
  • c field in ticker is a 24h change ratio (multiply by 100 for percent)
  • history trades and history transactions take --start-time / --end-time as milliseconds-since-epoch
  • Advanced orders (OTO/OTOCO) live in a separate namespace — include cdcx advanced open-orders or they'll be missed

Read the full file on GitHub · 81 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. 9d ago First seen · 81 lines · 29 tokens per session scan A abe2a4a71d4c

Subscribe to this mod's changes

recipe-morning-brief is a skill published in the GitHub repository crypto-com/cdcx-cli (25 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 29 tokens to every session and 667 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories