Square Post Skill
Purpose
Publish new content to Binance Square by running the local scripts in scripts/.
Supported post types:
- Text-only short posts
- Image posts with up to 4 images
- Long articles with a title and optional cover image
- Video posts with an auto-generated cover image
Do not hand-code API requests for normal posting. The scripts own upload, polling, cover generation, and publish behavior.
Runtime Dependencies
- Node.js 18 or newer. The scripts use native ES modules and the built-in
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.
- Network access is required for Binance Square OpenAPI requests and presigned media uploads.
Authentication
Posting requires a Binance Square OpenAPI key.
Before posting:
- Prefer
BINANCE_SQUARE_OPENAPI_KEY from the user's environment if present.
- If it is not present, the scripts automatically check
~/.config/binance-square/openapi-key.
- If no valid key is found, ask the user to provide an API key first.
- If the user wants to reuse the key in future requests, save it with
BINANCE_SQUARE_OPENAPI_KEY=<apiKey> node scripts/save-key.mjs; otherwise use it only for the current command environment.
- Tell the user they can create an API key at: https://www.binance.com/square/creator-center/home
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.
Scripts
All commands should be run from this skill directory.
Text Or Article Post
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 content
Image Post
Use 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.
Video Post
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 content
The 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.
Agent Workflow
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:
- Title + exactly one image → that image is the cover (
--cover, not --images).
- Title + multiple images → stop and ask which single image is the cover.
- Video without duration → run
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:
- On success, return the
ID and Link printed by the script.
- If the script prints
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.
- On failure, surface the script error and any API code/message.
Constraints
- Images: max 4 per post; article cover is exactly 1 image.
- Video: max 1 per post.
- Images and video are mutually exclusive in a single post.
- Only attach media the user explicitly provided; do not auto-attach.
- Do not modify user-provided text.
#topic and $coin are parsed server-side.
- Daily limits: 100 posts/day, 400 uploads/day.
Common Errors
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.
Scope
This skill only supports publishing new posts. It does not support:
- Reading, listing, or searching existing posts
- Editing or deleting posts
- Commenting, liking, or other interactions
- User profile or account management
- Scheduling or drafts
1---2name: square-post3description: Use when the user wants to publish new content to Binance Square — short text, multi-image posts (up to 4), long-form articles with an optional cover, or videos with an auto-generated cover frame. Trigger on direct phrasings like "post to Square", "publish to Binance Square", "发广场", "发布到广场", and on near-miss intents where the user clearly wants to share or publish content on Square even without naming the skill: "share this analysis on Square", "把这篇文章发出去", "发个动态", "把这个视频上传到广场", "publish my chart to Square as an article". Also use when the user provides media (images, video) plus a caption and asks to push it to Square, or asks to turn a draft into a Square article. Do not use for reading, searching, commenting, liking, editing, deleting, scheduling, or managing existing Square posts — this skill only creates new posts.4---5
6# Square Post Skill
7
8## Purpose
9
10Publish new content to Binance Square by running the local scripts in `scripts/`.
11
12Supported post types:
13- Text-only short posts
14- Image posts with up to 4 images
15- Long articles with a title and optional cover image
16- Video posts with an auto-generated cover image
17
18Do not hand-code API requests for normal posting. The scripts own upload, polling, cover generation, and publish behavior.
19
20## Runtime Dependencies
21
22- Node.js 18 or newer. The scripts use native ES modules and the built-in `fetch` API.
23- `ffmpeg` is required for video posts because `post-video.mjs` extracts the first frame as the cover image.
24- `ffprobe` is required when a video duration is not provided by the user.
25- Network access is required for Binance Square OpenAPI requests and presigned media uploads.
26
27## Authentication
28
29Posting requires a Binance Square OpenAPI key.
30
31Before posting:
32- Prefer `BINANCE_SQUARE_OPENAPI_KEY` from the user's environment if present.
33- If it is not present, the scripts automatically check `~/.config/binance-square/openapi-key`.
34- If no valid key is found, ask the user to provide an API key first.
35- If the user wants to reuse the key in future requests, save it with `BINANCE_SQUARE_OPENAPI_KEY=<apiKey> node scripts/save-key.mjs`; otherwise use it only for the current command environment.
36- Tell the user they can create an API key at: https://www.binance.com/square/creator-center/home
37
38Pass 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`.
39
40## Scripts
41
42All commands should be run from this skill directory.
43
44### Text Or Article Post
45
46Use for text-only short posts or long articles without images.
47
48```bash
49node scripts/post-text.mjs --text "Hello #crypto $BTC"
50```
51
52Long article with title and no cover:
53
54```bash
55node scripts/post-text.mjs --text "Full article body..." --title "Market Report"
56```
57
58Flags:
59- `--text` required, post text content
60- `--title` optional, sets article-style content
61
62### Image Post
63
64Use for short image posts or long articles with a cover image.
65
66```bash
67node scripts/post-image.mjs --text "Chart analysis" --images "./chart1.png,./chart2.png"
68```
69
70Long article with title and cover:
71
72```bash
73node scripts/post-image.mjs --text "Full analysis..." --title "Market Report" --cover "./chart.png"
74```
75
76Flags:
77- `--text` required, post or article content
78- `--images` required for short image posts only. Use comma-separated image paths with max 4.
79- `--title` optional, sets article-style content. When present, do not pass `--images`.
80- `--cover` required when `--title` is present for an article with media. Article mode supports exactly one cover image.
81
82The 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`.
83
84### Video Post
85
86Use for video posts.
87
88```bash
89node scripts/post-video.mjs --video "./video.mp4" --duration 7.5 --text "My analysis"
90```
91
92Flags:
93- `--video` required, local video path
94- `--duration` required, video duration in seconds
95- `--text` optional, post text content
96
97The 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.
98
99If the user does not provide a duration, use `ffprobe` to determine it before running the script.
100
101## Agent Workflow
102
1031. Resolve the API key (see Authentication). If unresolved, stop and ask the user before doing anything else.
104
1052. 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.
106
107 | User intent | Script | Required flags |
108 |---|---|---|
109 | Short text post | `post-text.mjs` | `--text` |
110 | Long article, no media | `post-text.mjs` | `--text --title` |
111 | Image short post (1–4 imgs, no title) | `post-image.mjs` | `--text --images "<p1,p2,...>"` |
112 | Article with cover | `post-image.mjs` | `--text --title --cover` |
113 | Video post | `post-video.mjs` | `--video --duration` (+ optional `--text`) |
114
1153. Disambiguate edge cases before running:
116 - Title + exactly one image → that image is the cover (`--cover`, not `--images`).
117 - Title + multiple images → stop and ask which single image is the cover.
118 - Video without duration → run `ffprobe` first to get it.
119
1204. 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.
121
1225. Run the script with `BINANCE_SQUARE_OPENAPI_KEY` injected into the command environment for one-time use (never as a CLI arg).
123
1246. Report the result:
125 - On success, return the `ID` and `Link` printed by the script.
126 - If the script prints `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.
127 - On failure, surface the script error and any API code/message.
128
129## Constraints
130
131- Images: max 4 per post; article cover is exactly 1 image.
132- Video: max 1 per post.
133- Images and video are mutually exclusive in a single post.
134- Only attach media the user explicitly provided; do not auto-attach.
135- Do not modify user-provided text. `#topic` and `$coin` are parsed server-side.
136- Daily limits: 100 posts/day, 400 uploads/day.
137
138## Common Errors
139
140- `220003`: API key not found.
141- `220004`: API key expired.
142- `220009`: Daily post limit exceeded for OpenAPI.
143- `220014`: Daily upload limit exceeded.
144- `20002` or `20022`: Sensitive words detected.
145- `20013`: Content length is limited.
146- `20020` or `220011`: Content body must not be empty.
147- `30008`, `2000001`, or `2000002`: Account or device posting restriction.
148
149## Scope
150
151This skill only supports publishing new posts. It does not support:
152- Reading, listing, or searching existing posts
153- Editing or deleting posts
154- Commenting, liking, or other interactions
155- User profile or account management
156- Scheduling or drafts