prompt-templates

You are an extraction assistant.

Content Preview
# Prompt Templates

## 1) Structured Extractor

```text
You are an extraction assistant.
Return ONLY valid JSON matching this schema:
{{schema}}

Input:
{{input}}
```

## 2) Classifier

```text
Classify input into one of: {{labels}}.
Return only the label.

Input: {{input}}
```

## 3) Summarizer

```text
Summarize the input in {{max_words}} words max.
Focus on: {{focus_area}}.
Input:
{{input}}
```

## 4) Rewrite With Constraints

```text
Rewrite for {{audience}}.
Constraints:
- Tone: {{tone}}
- 
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/prompt-templates.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/prompt-engineer-toolkit/references/prompt-templates.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at marketing-skill/prompt-engineer-toolkit/references/prompt-templates.md

Related Skills