mirror of
https://github.com/complexcaresolutions/frontend.blogwoman.de.git
synced 2026-03-17 17:24:00 +00:00
- Initialize Next.js 16 with React 19, TypeScript, and Tailwind CSS 4 - Add prompts/ directory for concept AI instructions - Add docs/ directory for project documentation - Include README files explaining workflow and conventions Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
58 lines
1.3 KiB
Markdown
58 lines
1.3 KiB
Markdown
# Prompts der Konzept-KI
|
|
|
|
Dieser Ordner enthält Prompts und Anweisungen, die von der Konzept-KI generiert werden.
|
|
|
|
## Format
|
|
|
|
Alle Prompts werden als **Markdown-Dateien (.md)** gespeichert.
|
|
|
|
### Struktur einer Prompt-Datei
|
|
|
|
```markdown
|
|
---
|
|
title: Beschreibender Titel
|
|
date: YYYY-MM-DD
|
|
priority: low | medium | high
|
|
category: feature | bugfix | refactor | documentation
|
|
---
|
|
|
|
# Prompt-Titel
|
|
|
|
## Kontext
|
|
Hintergrundinformationen und Motivation.
|
|
|
|
## Anforderungen
|
|
- Konkrete Anforderung 1
|
|
- Konkrete Anforderung 2
|
|
|
|
## Akzeptanzkriterien
|
|
- [ ] Kriterium 1
|
|
- [ ] Kriterium 2
|
|
|
|
## Zusätzliche Hinweise
|
|
Optionale ergänzende Informationen.
|
|
```
|
|
|
|
## Namenskonvention
|
|
|
|
```
|
|
YYYY-MM-DD_kurze-beschreibung.md
|
|
```
|
|
|
|
**Beispiele:**
|
|
- `2026-01-20_hero-section-implementieren.md`
|
|
- `2026-01-21_navigation-responsive.md`
|
|
|
|
## Workflow
|
|
|
|
1. **Konzept-KI** erstellt neue Prompt-Datei in diesem Ordner
|
|
2. **Entwicklungs-KI** (Claude Code) liest den Prompt
|
|
3. **Verifikation** der Anforderungen und Machbarkeit
|
|
4. **Ausführung** der beschriebenen Aufgabe
|
|
5. **Dokumentation** der Umsetzung in `/docs/`
|
|
|
|
## Hinweise
|
|
|
|
- Prompts sollten in sich abgeschlossen und verständlich sein
|
|
- Bei Abhängigkeiten zu anderen Prompts: diese explizit referenzieren
|
|
- Nach erfolgreicher Umsetzung kann der Prompt archiviert oder gelöscht werden
|