AI Thank You Note Generator — Agent Skill
AI Thank You Note Generator — Agent Skill
Generate personalized thank you notes via AI Pass API.
Usage
curl -X POST https://aipass.one/apikey/v1/chat/completions \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5-nano",
"messages": [
{"role": "system", "content": "Write a warm thank you note. Short. Output ONLY the note."},
{"role": "user", "content": "Thank my teacher for writing a recommendation letter"}
]
}'
Parameters
- Tones: heartfelt, professional, casual, funny, formal
- Lengths: short (2-3 sentences), medium (4-6), long (full paragraph)
- Models:
gpt-5-nano(cheapest),gpt-5-mini,gemini/gemini-2.5-flash
Get API Key
Skill File
name: thank-you-note
description: Generate thank you notes via AI Pass API
endpoint: https://aipass.one/apikey/v1/chat/completions
auth: Bearer $AIPASS_API_KEY
method: POST
body:
model: gpt-5-nano
messages:
- role: system
content: "Write a {tone} thank you note. {length}. Output ONLY the note."
- role: user
content: "Thank {recipient} for: {reason}"
parameters:
recipient: string
reason: string
tone: heartfelt|professional|casual|funny|formal
length: short|medium|long
Download Skill File