AI
Pass

AI Paraphraser Skill for Agents

AI Paraphraser — Agent Skill

Rewrite text programmatically via AI Pass API with multiple modes.

Usage

curl -X POST https://aipass.one/apikey/v1/chat/completions \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-4.1-mini",
    "messages": [
      {"role": "system", "content": "Rewrite in formal professional tone. Only return rewritten text."},
      {"role": "user", "content": "YOUR_TEXT_HERE"}
    ]
  }'

Modes

Change the system prompt for different modes:

  • Standard: "Rewrite clearly preserving meaning."
  • Formal: "Rewrite in formal professional tone."
  • Academic: "Rewrite in academic style."
  • Creative: "Rewrite creatively with vivid language."
  • Shorten: "Make significantly shorter."
  • Expand: "Expand with more detail."

API Key

aipass.one/dashboard

Live App

AI Paraphraser

Skill File

# AI Paraphraser Skill
curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"openai/gpt-4.1-mini","messages":[{"role":"system","content":"Rewrite in formal tone. Only return rewritten text."},{"role":"user","content":"TEXT_TO_PARAPHRASE"}]}'
Download Skill File