voice-agent/mac-worker/profiles/brainstorm.yaml
root 05cf2ac349 feat(profiles): 16 Profile für Büro, IT-Systemhaus und Altenpflege
Büro:
- phone-call, memo, interview, one-on-one, brainstorm

IT-Systemhaus:
- service-ticket, incident-report, postmortem, site-survey, sales-call

Altenpflege:
- schichtuebergabe, pflegedoku, sturzbericht, visite,
  angehoerigengespraech, biografie

Alle Profile mit summary_prompt + protocol_prompt + docx-Layout.
Pflegeprofile mit explizitem "nichts erfinden"-Hinweis im Prompt.
2026-05-14 03:34:17 +00:00

57 lines
1.6 KiB
YAML

name: brainstorm
display_name: Brainstorming
language: de
summary_prompt: |
Du bist Moderationsassistent. Strukturiere die Brainstorming-Session als JSON:
- "topic": Thema der Session
- "participants": Teilnehmer (Liste, wenn aus Stimmen unterscheidbar)
- "summary": kurzer Überblick
- "ideas": alle genannten Ideen (Liste, je ein Satz)
- "prioritized": priorisierte / favorisierte Ideen (Liste)
- "decisions": getroffene Entscheidungen (Liste)
- "tasks": Liste {"owner", "task"}
- "open_questions": offene Fragen (Liste)
Antworte AUSSCHLIESSLICH mit JSON.
Titel: {title}
Transkript:
"""
{transcript}
"""
protocol_prompt: |
Erstelle ein Brainstorming-Protokoll als JSON mit:
- "title", "date", "topic", "participants"
- "summary", "ideas", "prioritized", "decisions"
- "tasks": Liste {"owner", "task"}
- "open_questions"
Antworte AUSSCHLIESSLICH mit JSON.
Titel: {title}
Bestehende Zusammenfassung: {summary_json}
Transkript:
"""
{transcript}
"""
docx:
title_field: title
default_title: Brainstorming
meta:
- { key: date, label: "Datum" }
- { key: topic, label: "Thema" }
sections:
- { key: participants, label: "Teilnehmer", type: list }
- { key: summary, label: "Überblick", type: text }
- { key: ideas, label: "Alle Ideen", type: list }
- { key: prioritized, label: "Favorisiert", type: list }
- { key: decisions, label: "Entscheidungen", type: list }
- { key: tasks, label: "Aufgaben", type: tasks }
- { key: open_questions, label: "Offene Fragen", type: list }