AI Meal Planner — Agent Skill
AI Meal Planner — Agent Skill
Use AI Meal Planner via the AI Pass API programmatically.
Quick Start
export AIPASS_API_KEY="your-key-here"
Get your key: Developer Dashboard
API Call
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": "You are a helpful meal planner assistant."},
{"role": "user", "content": "YOUR_PROMPT_HERE"}
]
}'
Response
{"choices": [{"message": {"content": "Generated result..."}}]}
Related
- 🌐 Try online
- 🛠️ Build tutorial
- 📖 User guide
Skill File
---
name: meal-planner
description: get personalized weekly meal plans with recipes and shopping lists using AI Pass API
---
## Auth
Set AIPASS_API_KEY env var.
## Usage
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":"You are a helpful meal planner assistant. Provide detailed structured output."},{"role":"user","content":"USER_INPUT_HERE"}]}'
Response: r.choices[0].message.content
Download Skill File