schedule_weekly_posts
Plan and create weekly social media content schedules for art supply stores. Automatically organize posts by date, set posting frequency, and feature specific products to maintain consistent online presence.
Instructions
Create a weekly posting schedule with varied content types. Saves hours of planning time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
focusProducts | No | Comma-separated products to feature this week | |
postsPerDay | Yes | Number of posts per day (1-3 recommended) | |
startDate | Yes | Week start date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"focusProducts": {
"description": "Comma-separated products to feature this week",
"type": "string"
},
"postsPerDay": {
"description": "Number of posts per day (1-3 recommended)",
"type": "number"
},
"startDate": {
"description": "Week start date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"startDate",
"postsPerDay"
],
"type": "object"
}