generate_satori_syntax
Generates 140-character X (Twitter) posts using Satori syntax templates for various structures, including basic forms, contrarian takes, news content, and step-by-step guides, tailored to target audiences and desired actions.
Instructions
さとり構文を生成します(140文字のX投稿用)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expected_action | Yes | 期待する行動(例: サービスを試す、投稿をシェアする) | |
message_content | Yes | 伝えたいメッセージの内容 | |
news_content | No | ニュース内容(構文CとDで使用、オプション) | |
structure_type | Yes | 構文タイプ(A: 基本形、B: 常識の否定、C: 一般的なニュース、D: 衝撃的なニュース、E: ステップ紹介) | |
target_audience | Yes | ターゲット層(例: 副業を始めたい人、AIに興味がある人) |
Input Schema (JSON Schema)
{
"properties": {
"expected_action": {
"description": "期待する行動(例: サービスを試す、投稿をシェアする)",
"type": "string"
},
"message_content": {
"description": "伝えたいメッセージの内容",
"type": "string"
},
"news_content": {
"description": "ニュース内容(構文CとDで使用、オプション)",
"type": "string"
},
"structure_type": {
"description": "構文タイプ(A: 基本形、B: 常識の否定、C: 一般的なニュース、D: 衝撃的なニュース、E: ステップ紹介)",
"enum": [
"A",
"B",
"C",
"D",
"E"
],
"type": "string"
},
"target_audience": {
"description": "ターゲット層(例: 副業を始めたい人、AIに興味がある人)",
"type": "string"
}
},
"required": [
"structure_type",
"target_audience",
"message_content",
"expected_action"
],
"type": "object"
}