
Square Post
- 38 installs
- Updated May 12, 2026
- tryshift-sh/skills-store
Helps with ai & agent building tasks.
About
square-post is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- square-post
- AI & Agent Building
- AI-coding skill
Square Post by the numbers
- 38 all-time installs (skills.sh)
- Ranked #8,450 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/skills-store --skill square-postAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 38 |
|---|---|
| Last updated | May 12, 2026 |
| Repository | tryshift-sh/skills-store ↗ |
What it does
Helps with ai & agent building tasks.
Files
Square Post
Overview
Use this managed skill to publish a text post to Binance Square.
Invocation
Send a POST request to:
${SHIFT_LOCAL_GATEWAY}/skill-router/invokeWith a JSON body:
{
"skillProvider": "binance-square",
"skill": "square-post",
"action": "create",
"input": {
"text": "GN"
}
}Required fields
| Field | Type | Description |
|---|---|---|
skillProvider | string | Always "binance-square" |
skill | string | Always "square-post" |
action | string | Always "create" |
input.text | string | Text content to publish |
Authentication
This skill requires Binance Square to be connected in Shift.
Do not ask the user to paste raw credentials into the conversation. Shift handles authentication automatically when the required connection is configured.
Agent behavior
1. If the user does not provide post content, ask what they want to publish. 2. Prefer direct publication through the Skill Router. Do not fall back to browser automation for normal posting. 3. After a successful post, return the Binance Square post URL when an ID is available.
{
"id": "square-post",
"name": "Square Post",
"description": "Post content to Binance Square.",
"actions": {
"create": {
"upstream": {
"method": "POST",
"baseUrl": "https://www.binance.com",
"path": "/bapi/composite/v1/public/pgc/openApi/content/add",
"headers": {
"clienttype": "binanceSkill"
},
"auth": {
"mode": "header",
"headerName": "X-Square-OpenAPI-Key"
}
},
"input": {
"bodyTemplate": {
"bodyTextOnly": "$input.text"
}
},
"output": {
"responseSelect": "data",
"responseMap": {
"id": "$data.contentId",
"text": "$data.bodyTextOnly"
}
}
}
}
}