SMB Content & SocialStandalone
Website Copy Refresher
website_copy_refresher
This agent is for small business owners who need to update their web content. It rewrites specific page sections to meet goals like SEO or conversion and provides a detailed list of every edit made.
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
Website Copy Refresher
It transforms existing text into optimized copy while documenting all changes and providing actionable SEO notes.
- Rewrite this hero section for better conversion using a professional voice.
- Update this product description for SEO using the keywords 'organic skincare' and 'vegan beauty'.
- Make this About Us paragraph clearer and more playful while keeping it under 100 words.
Inputs
requestapplication/jsonrequired
Agent input.
Example
{
"original": "Welcome to Sunday Cafe. We sell brunch.",
"goal": "conversion"
}Schema
{
"type": "object",
"required": [
"original",
"goal"
],
"properties": {
"original": {
"type": "string",
"description": "The current text to be rewritten."
},
"goal": {
"type": "string",
"enum": [
"clarity",
"seo",
"conversion",
"brand_voice"
],
"description": "Primary objective. e.g. clarity, seo, conversion."
},
"keywords": {
"type": "array",
"items": {
"type": "string"
},
"description": "Target search terms e.g. 'best running shoes'."
},
"voice": {
"type": "string",
"description": "Tone and style. e.g. 'professional' or 'playful'."
},
"constraints": {
"type": "string",
"description": "Specific rules or limitations to follow."
}
}
}Outputs
resultapplication/jsonguaranteed
Agent output.
Example
{
"summary": "Tightened opener; added CTA.",
"rewritten": "Sunday Cafe — Brighton's...",
"changes": [
"Added value prop",
"Added CTA"
]
}Schema
{
"type": "object",
"required": [
"summary",
"rewritten",
"changes"
],
"properties": {
"summary": {
"type": "string",
"description": "Brief overview of the changes."
},
"rewritten": {
"type": "string",
"description": "The updated copy."
},
"changes": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of specific edits made."
},
"seo_notes": {
"type": "array",
"items": {
"type": "string"
},
"description": "SEO improvements and keyword suggestions."
}
}
}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