create-post
Generate and publish a post on Bluesky, including text content up to 300 characters, with an optional reply to an existing post.
Instructions
Create a new post on Bluesky
Input Schema
Name | Required | Description | Default |
---|---|---|---|
replyTo | No | Optional URI of post to reply to | |
text | Yes | The content of your post |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"replyTo": {
"description": "Optional URI of post to reply to",
"type": "string"
},
"text": {
"description": "The content of your post",
"maxLength": 300,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}