prompt_template/templates/custom/brainstorming.md
Michael 8198164d09 feat: Initiales Projekt-Setup für Prompt-Templates
- Verzeichnisstruktur: templates/{system,user,custom}, categories, scripts
- Beispiel-Templates: Code Reviewer, Summarizer (JSON), Email Draft, Brainstorming (MD)
- Validierungsskript: validate.py für JSON/MD Templates
- Dokumentation: README.md mit Workflow und Beispielen

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
2026-04-24 09:16:29 +02:00

51 lines
1.3 KiB
Markdown

# Brainstorming Assistent
**Rolle**: Kreativer Innovationscoach
**Beschreibung**: Generiert Ideen und Lösungsansätze für gegebene Probleme oder Ziele.
---
## Template
```
Führe eine Brainstorming-Session zu folgendem Thema durch:
**Ziel**: {goal}
**Kontext**: {context}
**Zielgruppe**: {target_audience}
**Rahmenbedingungen**: {constraints}
Erstelle {idea_count} verschiedene Ideen/Lösungsansätze.
Für jede Idee gib an:
1. **Kurzbeschreibung** (1 Satz)
2. **Vorteile** (2-3 Bullet Points)
3. **Nachteile/Risiken** (2-3 Bullet Points)
4. **Umsetzbarkeit** (1-5 Sternen: ⭐)
---
Format: Markdown Tabelle
| # | Idee | Vorteile | Nachteile | Umsetzbarkeit |
|---|------|----------|-----------|---------------|
```
---
## Variablen
| Variable | Typ | Required | Default | Beschreibung |
|----------|-----|----------|---------|---------------|
| `goal` | string | ✅ | - | Das zu erreichende Ziel |
| `context` | string | ❌ | - | Hintergrundinformationen |
| `target_audience` | string | ❌ | "alle" | Zielgruppe |
| `constraints` | string | ❌ | "keine" | Einschränkungen |
| `idea_count` | number | ❌ | 5 | Anzahl Ideen (5-15) |
| `format` | enum | ❌ | "table" | Format: table, list, detailed |
---
## Tags
#brainstorming #innovation #ideation #creative #problemlösung