From binance-binance-skills-hub-9
Publishes new content to Binance Square: text posts, multi-image posts (up to 4), long-form articles with optional cover, and videos with auto-generated cover frame.
How this skill is triggered — by the user, by Claude, or both
Slash command
/binance-binance-skills-hub-9:square-postThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Publish new content to Binance Square by running the local scripts in `scripts/`.
Publish new content to Binance Square by running the local scripts in scripts/.
Supported post types:
Do not hand-code API requests for normal posting. The scripts own upload, polling, cover generation, and publish behavior.
fetch API.ffmpeg is required for video posts because post-video.mjs extracts the first frame as the cover image.ffprobe is required when a video duration is not provided by the user.Posting requires a Binance Square OpenAPI key.
Before posting:
BINANCE_SQUARE_OPENAPI_KEY from the user's environment if present.~/.config/binance-square/openapi-key.BINANCE_SQUARE_OPENAPI_KEY=<apiKey> node scripts/save-key.mjs; otherwise use it only for the current command environment.Pass the key only via BINANCE_SQUARE_OPENAPI_KEY (env or saved file). Never write it into command arguments or print the full key — CLI args appear in ps output and shell history. When mentioning a key, show only the first 5 and last 4 characters, such as abc12...xyz9.
All commands should be run from this skill directory.
Use for text-only short posts or long articles without images.
node scripts/post-text.mjs --text "Hello #crypto $BTC"
Long article with title and no cover:
node scripts/post-text.mjs --text "Full article body..." --title "Market Report"
Flags:
--text required, post text content--title optional, sets article-style contentUse for short image posts or long articles with a cover image.
node scripts/post-image.mjs --text "Chart analysis" --images "./chart1.png,./chart2.png"
Long article with title and cover:
node scripts/post-image.mjs --text "Full analysis..." --title "Market Report" --cover "./chart.png"
Flags:
--text required, post or article content--images required for short image posts only. Use comma-separated image paths with max 4.--title optional, sets article-style content. When present, do not pass --images.--cover required when --title is present for an article with media. Article mode supports exactly one cover image.The script uploads each image, waits for processing, and publishes with the processed image URL returned by the backend. If --title is provided, it publishes contentType=2, requires --cover, and sends that uploaded image URL as cover only. If no --title is provided, it publishes contentType=1 and sends all --images as imageList.
Use for video posts.
node scripts/post-video.mjs --video "./video.mp4" --duration 7.5 --text "My analysis"
Flags:
--video required, local video path--duration required, video duration in seconds--text optional, post text contentThe script uploads the video, waits for processing, extracts the first frame with ffmpeg, uploads that frame as the cover image, and publishes with cover included in the request.
If the user does not provide a duration, use ffprobe to determine it before running the script.
Resolve the API key (see Authentication). If unresolved, stop and ask the user before doing anything else.
Pick the script from user intent using the table below. Then validate against Constraints — if a constraint is violated, explain it and do not run.
| User intent | Script | Required flags |
|---|---|---|
| Short text post | post-text.mjs | --text |
| Long article, no media | post-text.mjs | --text --title |
| Image short post (1–4 imgs, no title) | post-image.mjs | --text --images "<p1,p2,...>" |
| Article with cover | post-image.mjs | --text --title --cover |
| Video post | post-video.mjs | --video --duration (+ optional --text) |
Disambiguate edge cases before running:
--cover, not --images).ffprobe first to get it.Preserve user content exactly. Do not rewrite, translate, add hashtags/cashtags, or change punctuation. $coin and #topic text passes through verbatim — the backend parses them.
Run the script with BINANCE_SQUARE_OPENAPI_KEY injected into the command environment for one-time use (never as a CLI arg).
Report the result:
ID and Link printed by the script.Success! with ID: unavailable and Link: unavailable, treat it as successful — /content/add returned 504 after submission, so no post ID or link is available.#topic and $coin are parsed server-side.220003: API key not found.220004: API key expired.220009: Daily post limit exceeded for OpenAPI.220014: Daily upload limit exceeded.20002 or 20022: Sensitive words detected.20013: Content length is limited.20020 or 220011: Content body must not be empty.30008, 2000001, or 2000002: Account or device posting restriction.This skill only supports publishing new posts. It does not support:
npx claudepluginhub binance/binance-skills-hubPosts content to WeChat Official Account (微信公众号) via API or Chrome CDP. Supports article posting (文章) with HTML, markdown, or plain text input, and image-text posting (贴图) with multiple images. Markdown articles convert external links into bottom citations for WeChat-friendly output.
Posts content to WeChat Official Account (微信公众号) via API or Chrome CDP. Supports article posting with HTML/markdown/plain text and image-text posts with multiple images.
Scrapes Binance Square trending topics and recent posts to extract community trading signals, sentiment direction, and small-cap coin mentions. Useful for pre-trade sentiment analysis on Polymarket.