AI Text Summarizer Skill for Agents
AI Text Summarizer — Agent Skill
Use the AI Pass API to summarize text programmatically from any AI agent.
Quick Start
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": "Summarize the following text in bullet points."},
{"role": "user", "content": "YOUR_TEXT_HERE"}
]
}'
Response
{
"choices": [{
"message": {
"content": "• Point 1\n• Point 2\n• Point 3"
}
}]
}
Get an API Key
- Sign up at aipass.one
- Go to Developer Dashboard
- Create an API key
Models
openai/gpt-4.1-mini— fast, affordable, great for summarizationgoogle/gemini-2.5-flash— alternative, good for long documents
Live App
Skill File
# AI Text Summarizer Skill
# Usage: Set $AIPASS_API_KEY environment variable
## Summarize text
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":"Summarize concisely in bullet points."},{"role":"user","content":"TEXT_TO_SUMMARIZE"}]}'
Download Skill File