From thinkprompt
This skill should be used when the user asks to "create a prompt", "improve my prompt", "write a good prompt", "prompt best practices", "ThinkPrompt variables", "template vs prompt", or needs guidance on prompt structure, variable types, or avoiding prompt anti-patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/thinkprompt:prompt-engineeringThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- User will einen neuen Prompt erstellen
Ein guter ThinkPrompt-Prompt folgt dieser Struktur:
1. Klare Aufgabenstellung (Was soll getan werden?)
2. Kontext-Variablen (Eingaben vom User)
3. Erwartetes Output-Format (Wie soll die Antwort aussehen?)
4. Constraints/Regeln (Was soll beachtet werden?)
Analysiere folgenden Code auf Sicherheitsprobleme:
{{code}}
**Kontext:** {{context}}
Prüfe auf:
1. SQL Injection
2. XSS Vulnerabilities
3. Authentication Bypass
4. Sensitive Data Exposure
Output-Format:
- Severity (Critical/High/Medium/Low)
- Betroffene Zeile(n)
- Beschreibung des Problems
- Lösungsvorschlag
ThinkPrompt unterstützt diese Variablen-Typen:
| Typ | Verwendung | Beispiel |
|---|---|---|
text | Kurze Eingaben (1 Zeile) | Feature-Name, Titel |
textarea | Längere Eingaben (mehrzeilig) | Code, Beschreibungen |
number | Numerische Werte | Priorität, Schätzung |
select | Vordefinierte Optionen | Typ-Auswahl, Kategorie |
date | Datumswerte | Deadline, Sprint-Ende |
boolean | Ja/Nein Entscheidungen | Feature-Flags |
feature_name statt input1Für Code-Review, Bug-Analyse, Security-Checks.
Struktur:
Input: [Was analysiert werden soll]
Fokus: [Worauf achten]
Output: [Strukturiertes Ergebnis]
Für Code-Generierung, Dokumentation, Tests.
Struktur:
Aufgabe: [Was generiert werden soll]
Kontext: [Bestehendes System, Constraints]
Format: [Sprache, Style, Patterns]
Für Refactoring, Migration, Konvertierung.
Struktur:
Input: [Ursprünglicher Code/Text]
Ziel: [Gewünschtes Format/Pattern]
Regeln: [Was beibehalten, was ändern]
Für Feature-Planning, Task-Breakdown, Architektur.
Struktur:
Ziel: [Was erreicht werden soll]
Constraints: [Zeit, Ressourcen, Tech-Stack]
Output: [Plan-Format, Granularität]
| Aspekt | Prompt | Template |
|---|---|---|
| Zweck | Wiederverwendbare Aufgabe | Style Guide / Beispiel |
| Variablen | Ja, mit {{var}} | Nein |
| Typ | - | example oder style |
| Verwendung | Direkte Ausführung | Kontext/Referenz |
example: Beispiel-Prompts als Inspirationstyle: Style Guides für Code-StandardsSchreibe guten Code für {{feature}}
Implementiere {{feature}} als React-Komponente mit:
- TypeScript strict mode
- Unit Tests mit Jest
- Error Boundary
- Loading/Error States
{{a}} {{b}} {{c}} {{d}} {{e}} {{f}} {{g}}
**Feature:** {{feature_name}}
**Anforderungen:** {{requirements}}
Analysiere den Code
Analysiere den Code und gib aus:
1. **Summary**: 2-3 Sätze
2. **Issues**: Tabelle mit Severity/Location/Fix
3. **Empfehlungen**: Priorisierte Liste
mcp__thinkprompt__create_prompt({
title: "Code Review",
description: "Strukturiertes Code Review",
content: "...",
variables: [
{ name: "code", type: "textarea", required: true },
{ name: "context", type: "text", required: false }
]
})
mcp__thinkprompt__create_template({
title: "React Style Guide",
type: "style",
category: "react",
content: "...",
useCaseHints: ["React components", "Frontend code"]
})
npx claudepluginhub honeyfield-org/thinkprompt-plugin --plugin thinkpromptProvides role-based and task-specific prompt templates for development workflows: code review, debugging, refactoring, architecture design, and technical writing.
Creates structured, reusable prompt templates for reliable LLM outputs in production systems using chain-of-thought and few-shot examples.
Crafts optimized, copy-ready prompts for any AI tool — LLMs, coding agents, image generators, workflow tools. Takes rough ideas and outputs token-efficient prompts.