-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskill.json
More file actions
26 lines (26 loc) · 858 Bytes
/
skill.json
File metadata and controls
26 lines (26 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "generate_meme",
"description": "Generate a meme image based on a search prompt and variable number of text lines (top, middle, bottom, etc.). Can optionally send to Slack.",
"parameters": {
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "Keyword to find a meme template (e.g., 'doge', 'captain', 'coding')."
},
"texts": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of text lines to place on the meme. Order matters (Top -> Bottom). For Captain meme, use 3 lines."
},
"sendToSlack": {
"type": "boolean",
"description": "Whether to send the generated meme to the configured Slack channel.",
"default": true
}
},
"required": ["prompt", "texts"]
}
}