generate_post_ideas
Generate creative social media post ideas for art supply products based on themes, seasons, or specific items to help with content planning and marketing strategy.
Instructions
Generate creative post ideas based on products, themes, or seasons. Perfect for content planning.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of ideas to generate (default: 5) | |
products | Yes | Comma-separated product names to feature | |
theme | Yes | Theme or season: fall, winter, spring, summer, sale, new_arrival, etc. |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of ideas to generate (default: 5)",
"type": "number"
},
"products": {
"description": "Comma-separated product names to feature",
"type": "string"
},
"theme": {
"description": "Theme or season: fall, winter, spring, summer, sale, new_arrival, etc.",
"type": "string"
}
},
"required": [
"theme",
"products"
],
"type": "object"
}