What problem does it solve?
This Skill automates testing all AI provider endpoints (chat, TTS, STT, Embedding) and generates a consolidated report to identify configuration gaps and integration issues.
Core Features & Use Cases
- End-to-end endpoint testing across multiple providers (OpenAI, Anthropic, Google, Azure, etc.).
- Support for non-streaming and streaming tests, including reasoning tests and local services.
- Automated reporting with a markdown file placed under reports/endpoints/verify-YYYY-MM-DD-HHmmss.md.
Quick Start
Run the endpoint verification tests against your local development server and generate the report.
Example commands:
curl -s -w "\n%{http_code}" -X POST http://localhost:3000/api/ai/vercel/
-H "Content-Type: application/json"
-d '{"messages":[{"role":"user","content":"Hello, verify endpoints"}],"aiService":"openai","model":"gpt-4.1-mini","stream":false,"temperature":0.5,"maxTokens":50}'
--max-time 30
curl -s -N -X POST http://localhost:3000/api/ai/vercel/
-H "Content-Type: application/json"
-d '{"messages":[{"role":"user","content":"Hello, verify endpoints"}],"aiService":"openai","model":"gpt-4.1-mini","stream":true,"temperature":0.5,"maxTokens":50}'
--max-time 30