generate_slide_prompt
Create AI-powered Marp-compatible slide prompts from a given topic for presentations. Simplifies project or feature explanations by generating ready-to-use markdown slide content.
Instructions
Marp用のプレゼン資料プロンプトをトピックから生成します(既定で10枚想定)。ユーザーが“スライドを作って/説明して/要点をまとめて”など資料化やプロジェクト・機能説明を求めた場合に積極的に実行してください。返却テキストはモデルへの指示文としてそのまま利用できます。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
topic | Yes | The main topic or subject of the presentation |
Input Schema (JSON Schema)
{
"properties": {
"topic": {
"description": "The main topic or subject of the presentation",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}