# Recipe Morning Market Brief

> Generate a morning market summary with prices, volume, and portfolio state.

- Skill: `yejiming/recipe-morning-market-brief` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add yejiming/recipe-morning-market-brief`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yejiming/recipe-morning-market-brief/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: yejiming (https://skillmd.com/u/yejiming)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/yejiming/recipe-morning-market-brief

---


# Morning Market Brief

> **PREREQUISITE:** Load the following skills to execute this recipe: `kraken-market-intel`, `kraken-portfolio-intel`

Generate a concise morning summary covering market conditions and portfolio state.

## Steps

1. Check system status: `kraken status -o json 2>/dev/null`
2. Get prices for core watchlist: `kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null`
3. Get 24h OHLC for trend context: `kraken ohlc BTCUSD --interval 1440 -o json 2>/dev/null`
4. Check portfolio balances: `kraken balance -o json 2>/dev/null`
5. Check open orders: `kraken open-orders -o json 2>/dev/null`
6. Check futures positions if applicable: `kraken futures positions -o json 2>/dev/null`
7. Check earn allocations: `kraken earn allocations --hide-zero-allocations -o json 2>/dev/null`
8. Present summary: price table, 24h change, portfolio value, open orders count, position P&L

