Переиспользуемые шаблоны промптов
Готовые к использованию промпты для типовых задач. Они используют XML-теги для чёткой структуры и закладывают привычки из Основ промптинга. Заполните {фигурные скобки}.
Резюмирование (с опорой на источник)
<instructions>
Summarize the document for {audience} in {N} bullet points. Use ONLY the document;
if something isn't there, say "not stated." Then list any action items.
</instructions>
<document>
{paste}
</document>
Ожидается: лаконичные пункты + задачи к выполнению. Частый сбой: выдумывает факты → пункт «ONLY the document» защищает от этого.
Извлечение структурированных данных
Extract the following from the text as JSON: {field1, field2, field3}.
Return ONLY valid JSON, no prose. If a field is missing, use null.
<text>{paste}</text>
Сочетайте с структурированным выводом для надёжности.
Переписывание / редактирование
Rewrite the text to be {clearer/shorter/more formal} without changing meaning.
Then list the changes you made as bullets.
<text>{paste}</text>
Ревью кода
Review this diff for correctness bugs, missing edge cases, and security issues.
Report ONLY high-confidence findings as a checklist with file:line. Diff:
<diff>{paste}</diff>
Помощник в принятии решений
I'm deciding between {A} and {B} for {situation}. Build a trade-off table across
the criteria that matter, then recommend one and name the biggest risk.
Мета-промпт (улучшение промпта)
Here's my prompt: "{prompt}". Ask me the 3 questions that would most improve it,
then rewrite it with sensible defaults.
Обёртка с ролью и ограничителем
You are {role}. {task}.
Constraints: {format, length, tone}. If you're unsure or lack info, say so rather
than guessing.
:::tip Сделайте их своими Сохраните те, что используете, как слэш-команды или Проект, чтобы никогда не набирать их заново. :::