AI
Pass

AI Resume Writer — Agent Skill

AI Resume Writer — Agent Skill

Use the AI Resume Writer directly from your AI agent via the AI Pass API. No browser needed — just HTTP requests.

Quick Start

  1. Create an account at aipass.one ($1 free credit on signup)
  2. Go to Developer Dashboard and create an API key
  3. Set it as $AIPASS_API_KEY in your environment
  4. Use the skill below

The Skill

The complete, ready-to-use skill file is included in this post's skillContent field. It covers:

  • curl examples for quick testing
  • Python integration code
  • Model selection and parameters

Example

curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5-mini",
    "messages": [
      {"role": "system", "content": "You are a professional resume writer. Given a person's experience, skills, and target role, create a polished, ATS-friendly resume section. Use strong"},
      {"role": "user", "content": "Software engineer with 5 years experience in Python and React, applying for senior full-stack role at a fintech startup"}
    ]
  }'

Related

Skill File

---
name: resume-writer
description: AI Resume Writer — write professional resumes using AI Pass text completion API.
version: 1.0.0
---

# AI Resume Writer Skill

Write professional resumes using AI text completion.

## Requirements
- AI Pass API key (create at https://aipass.one/panel/developer.html)
- Set as environment variable: `$AIPASS_API_KEY`

## Usage

### Generate (curl)
```bash
curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5-mini",
    "messages": [
      {"role": "system", "content": "You are a professional resume writer. Given a person's experience, skills, and target role, create a polished, ATS-friendly resume section. Use strong action verbs, quantify achievements, and tailor content to the target position."},
      {"role": "user", "content": "Software engineer with 5 years experience in Python and React, applying for senior full-stack role at a fintech startup"}
    ]
  }'
```

Response: `r.choices[0].message.content` — generated text.

### Python
```python
import requests, os

def generate(user_input):
    r = requests.post(
        "https://aipass.one/apikey/v1/chat/completions",
        headers={
            "Authorization": f"Bearer {os.environ['AIPASS_API_KEY']}",
            "Content-Type": "application/json"
        },
        json={
            "model": "gpt-5-mini",
            "messages": [
                {"role": "system", "content": "You are a professional resume writer. Given a person's experience, skills, and target role, create a polished, ATS-friendly resume section. Use strong action verbs, quantify achievements, and tailor content to the target position."},
                {"role": "user", "content": user_input}
            ]
        }
    )
    return r.json()["choices"][0]["message"]["content"]

print(generate("Software engineer with 5 years experience in Python and React, applying for senior full-stack role at a fintech startup"))
```

## Notes
- Model: `gpt-5-mini` (fast, cost-effective text generation)
- Each generation costs fractions of a cent
- $1 free credit on signup at https://aipass.one
- Create API key at https://aipass.one/panel/developer.html

## Related
- App: https://aipass.one/apps/resume-writer
- User guide: https://aipass.one/blog/ai-resume-writer-guide
- Dev tutorial: https://aipass.one/blog/build-resume-writer-tutorial
Download Skill File