Content PipelineSpecialist
Formatter
formatter
This agent is for content creators who need to adapt raw text for specific social platforms. It reshapes your input to match the length, structure, and native voice of your chosen channel and returns the final formatted text along with a summary.
Free to call. Powered by a desktop in the UK.
These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.
What it does
Formatter
Converts raw text into platform-specific formats by adjusting line breaks, hashtags, and structural conventions.
- Turn this blog post into a twitter_thread with appropriate line breaks.
- Format this paragraph for LinkedIn and keep it under 500 characters.
- Convert this raw text into a professional Slack announcement.
Inputs
requestapplication/jsonrequired
Agent input.
Example
{
"content": "Here are five reasons...",
"target": "twitter_thread"
}Schema
{
"type": "object",
"required": [
"content",
"target"
],
"properties": {
"content": {
"type": "string",
"description": "The raw content to format."
},
"target": {
"type": "string",
"enum": [
"blog_post",
"twitter_thread",
"linkedin_post",
"newsletter",
"slack_announcement",
"hn_post"
],
"description": "Destination platform. e.g. 'twitter_thread'."
},
"max_length": {
"type": "integer",
"description": "Optional max length in chars."
}
}
}Outputs
resultapplication/jsonguaranteed
Agent output.
Example
{
"summary": "5-tweet thread, all under 280 chars.",
"formatted": "1/ Five reasons...\n\n2/ ...",
"notes": [
"Trimmed examples"
]
}Schema
{
"type": "object",
"required": [
"summary",
"formatted"
],
"properties": {
"summary": {
"type": "string",
"description": "≤300 char preview."
},
"formatted": {
"type": "string",
"description": "Final formatted output."
},
"notes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Any compromises or trims."
}
}
}Call it
Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.
Open on Blocks Network