⏳ This skill is pending AI review.
Scores will appear once the review pipeline completes.
binance-us-briefing-engine
Personalized Binance.US market, portfolio, and watchlist briefings using account balances, recent trading history, watchlists, market data, recent news headlines, market context, and catalyst watch tied to the user's relevant assets. Use when the user asks for a market summary, personalized crypto brief, portfolio update, capital readiness check, watchlist recap, opportunity alert, or weekly reset for Binance.US.
// RATINGS
// README
Binance.US Skills
binance-us-skills is a Binance.US skill family for OpenClaw, Codex, and Claude Code.
It is built around one simple goal: help agents move users from market awareness to account action on Binance.US in a way that feels useful, explicit, and trustworthy.
The repo currently includes five skills:
binance-us-briefing-engine: personalized daily brief, watchlist recap, opportunity alert, portfolio brief, capital-readiness check, and weekly resetbinance-us-asset-research: deeper single-asset research for Binance.US-listed assetsbinance-us-fund-account: step-by-step account funding and deposit workflowbinance-us-spot-trade: deliberate spot-trade review workflowbinance-us-account-status: balances, deposits, readiness, and blockers
Together, these skills cover the full loop:
- understand the market
- understand your account
- research a setup
- get capital ready
- review the next Binance.US action
Features
- 5 installable Binance.US skills in one repo
- daily market and portfolio briefing
- deeper Binance.US-safe asset research
- account funding and deposit workflow guidance
- spot-trade review workflow guidance
- account-status and readiness checks
- price-anchored summaries with 24h and 7-day context
- market context and catalyst-watch sections
- portfolio-aware news ranking and de-duplicated asset headline search
- Markdown-friendly text output for chat delivery
- first-run hook, watchlist-gap prompts, and sharper action-oriented CTAs
Install
OpenClaw
Important: this repo contains a skill family, not just one root skill. If you want to discover or install the companion binance-us-asset-research skill, use --full-depth.
Local development:
Prefer the default install behavior without --copy so your installed skill stays linked to the repo checkout and updates when you pull new commits.
npx skills add . -g --agent openclaw --yes --full-depth
From GitHub or for snapshot installs:
npx skills add cmeiliu/binance-us-skills -g --agent openclaw --yes --copy --full-depth
From GitHub, if you want full skill-family discovery:
npx skills add cmeiliu/binance-us-skills --list --full-depth
From GitHub, if you want to install a specific nested skill:
npx skills add cmeiliu/binance-us-skills -g --agent openclaw --yes --full-depth --skill binance-us-asset-research
To refresh a copied or GitHub-installed skill later:
npx skills update
Codex
Codex can use this repo directly. The Codex-facing workflow is documented in AGENTS.md, and the shared engine is:
python3 scripts/binance_us_brief.py --mode daily_brief --format text
For deeper single-asset work:
python3 scripts/binance_us_brief.py --mode asset_research --asset BTC --format text
Claude Code
Claude Code can use the project-local skill wrapper at .claude/skills/binance-us-briefing-engine/SKILL.md.
It invokes the same bundled Python engine, so behavior stays aligned across agents.
Usage
In OpenClaw:
Use $binance-us-briefing-engine to generate a personalized Binance.US brief from my balances, recent trades, and watchlist.
From the command line:
python3 scripts/binance_us_brief.py --mode daily_brief --format text
python3 scripts/binance_us_brief.py --mode portfolio_brief --format both
python3 scripts/binance_us_brief.py --mode watchlist_brief --watchlist BTC,ETH,SOL
python3 scripts/binance_us_brief.py --mode capital_readiness --format text
python3 scripts/binance_us_brief.py --mode asset_research --asset BTC --format text
This script is the shared execution layer for OpenClaw, Codex, and Claude Code.
If you install from GitHub or with --copy, the rendered brief also includes a version/update reminder so users get nudged toward npx skills update.
Credentials
Each user must provide their own Binance.US credentials. Nothing is hard-coded into the skill.
Supported variables:
BINANCE_US_API_KEYBINANCE_US_SECRET_KEY
Recommended location:
~/.openclaw/secrets.env
Example:
BINANCE_US_API_KEY=your_key_here
BINANCE_US_SECRET_KEY=your_secret_here
Only these exact variable names are supported.
Safety
This skill is read-only.
It does not:
- place orders
- convert assets
- move funds
- modify account settings
Allowed outbound network domains:
api.binance.usnews.google.com
The skill reads only user-provided Binance.US credentials and does not embed shared credentials in code.
Config
Optional config file:
~/.openclaw/binance-us-briefing-engine.json
Create a starter config with:
python3 scripts/binance_us_brief.py init-config
Skills
binance-us-briefing-engine: daily brief, watchlist, opportunity, portfolio, weekly, and capital-readiness flowsbinance-us-asset-research: deeper single-asset research for Binance.US-listed assetsbinance-us-fund-account: step-by-step account funding and deposit workflowbinance-us-spot-trade: deliberate spot-trade review workflowbinance-us-account-status: balances, deposits, readiness, and blockers
Skill entrypoints in this repo:
binance-us-asset-research/SKILL.mdbinance-us-fund-account/SKILL.mdbinance-us-spot-trade/SKILL.mdbinance-us-account-status/SKILL.md
For repos with a root skill, nested skills may require --full-depth during discovery or installation.
License
MIT
// HOW IT'S BUILT
KEY FILES