Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
tryshift-sh avatar

Square Post

  • 14 installs
  • tryshift-sh/binance-skills-hub

Helps with ai & agent building tasks.

About

Square Post is a AI & Agent Building tool helping solo builders during the build phase of product development.

  • square-post
  • AI & Agent Building
  • AI-coding skill

Square Post by the numbers

  • 14 all-time installs (skills.sh)
  • Ranked #11,296 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tryshift-sh/binance-skills-hub --skill square-post

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs14
Repositorytryshift-sh/binance-skills-hub

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Square Post Skill

Overview

Post text content to Binance Square.

---

API: Add Content via Skill Router

Method: POST

URL:

${SHIFT_LOCAL_GATEWAY}/skill-router/invoke

Request Headers:

HeaderRequiredDescription
Content-TypeYesapplication/json

Request Body:

{
  "skillProvider": "binance",
  "skill": "square_post",
  "action": "create",
  "input": {
    "text": "<post content here>"
  }
}
FieldTypeRequiredDescription
skillProviderstringYesAlways "binance"
skillstringYesAlways "square_post"
actionstringYesAlways "create"
input.textstringYesPost content text (supports #hashtags)

Example Request

curl -X POST "${SHIFT_LOCAL_GATEWAY}/skill-router/invoke" \
  -H 'Content-Type: application/json' \
  -d '{
    "skillProvider": "binance",
    "skill": "square_post",
    "action": "create",
    "input": {
      "text": "BTC looking bullish today! #Bitcoin"
    }
  }'

Response Format

The response is a JSON envelope:

{
  "ok": true,
  "status": 200,
  "data": {
    "code": "000000",
    "message": null,
    "data": {
      "id": "content_id_here"
    }
  }
}
FieldTypeDescription
okbooleantrue if upstream returned 2xx
statusnumberHTTP status from the upstream API
dataobjectRaw response body from Binance Square
data.codestring"000000" = success
data.data.idstringCreated content ID

Post URL Format

On success, construct the post URL:

https://www.binance.com/square/post/{id}

Example: If data.data.id is 298177291743282, the post URL is:

https://www.binance.com/square/post/298177291743282

---

Error Handling

When ok is false, check data.code for Binance-specific errors:

CodeDescription
000000Success
10004Network error. Please try again
10005Only allowed for users who have completed identity verification
10007Feature unavailable
20002Detected sensitive words
20013Content length is limited
20020Publishing empty content is not supported
20022Detected sensitive words (with risk segments)
20041Potential security risk with the URL
30004User not found
30008Banned for violating platform guidelines
220003API Key not found
220004API Key expired
220009Daily post limit exceeded for OpenAPI
220010Unsupported content type
220011Content body must not be empty
2000001Account permanently blocked from posting
2000002Device permanently blocked from posting

Skill Router errors (returned in error field):

Error MessageMeaning
Unknown skill action.Wrong provider/skill/action
This skill is not installed. Install it from the Skills Store.Skill not installed
Please connect the required service in the Shift dashboard.Secret not configured
The connected service is currently disabled.Secret disabled

---

Authentication

This skill requires Binance Square to be connected in Shift.

Use SHIFT_LOCAL_GATEWAY as the base URL. Do not ask the user to paste or reveal raw Binance Square credentials inside the conversation. Shift handles authentication automatically via the skill router.

---

Agent Behavior

1. Do not request raw credentials in chat: Never ask the user to paste Binance API keys or other secret values into the conversation 2. Prompt for content if missing: If user triggers posting but doesn't provide specific content, ask what they want to post 3. Optimize content before posting:

  • Polish user's raw input for better readability
  • Show optimized content and ask user to choose: use optimized version or post original text

4. Return post URL on success: After successful post, return the URL https://www.binance.com/square/post/{id} 5. Handle missing id: If code is 000000 but data.data.id is empty or missing, inform user that post may have succeeded but URL is unavailable, suggest checking Square page manually

---

Notes

1. Only pure text posts are supported currently 2. Check daily post limit to avoid 220009 error

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.