AI Logo Maker — Agent Skill
AI Logo Maker — Agent Skill
Use the AI Logo Maker directly from your AI agent via the AI Pass API. No browser needed — just HTTP requests.
Quick Start
- Create an account at aipass.one ($1 free credit on signup)
- Go to Developer Dashboard and create an API key
- Set it as
$AIPASS_API_KEYin your environment - 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 brand identity designer. Given a business name, industry, and style preferences, describe a professional logo concept including colors, typo"},
{"role": "user", "content": "Coffee shop called 'Morning Brew' - modern, minimalist, warm colors"}
]
}'
Related
Skill File
---
name: logo-maker
description: Generate logos with AI using AI Pass image generation API.
version: 1.0.0
---
# AI Logo Maker Skill
Generate logos with AI using AI Pass image generation.
## 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/images/generations \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "flux-pro/v1.1",
"prompt": "Coffee shop called 'Morning Brew' - modern, minimalist, warm colors",
"size": "1024x1024"
}'
```
Response: `r.data[0].url` — URL of the generated image.
### Python
```python
import requests, os
def generate(prompt, size="1024x1024"):
r = requests.post(
"https://aipass.one/apikey/v1/images/generations",
headers={
"Authorization": f"Bearer {os.environ['AIPASS_API_KEY']}",
"Content-Type": "application/json"
},
json={
"model": "flux-pro/v1.1",
"prompt": prompt,
"size": size
}
)
return r.json()["data"][0]["url"]
print(generate("Coffee shop called 'Morning Brew' - modern, minimalist, warm colors"))
```
## Notes
- Model: `flux-pro/v1.1` (high-quality image generation)
- $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/logo-maker
- User guide: https://aipass.one/blog/ai-logo-maker-guide
- Dev tutorial: https://aipass.one/blog/build-logo-maker-tutorial
Download Skill File