一键导入
api-tester
API testing expert for curl, REST, GraphQL, authentication, and debugging
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
API testing expert for curl, REST, GraphQL, authentication, and debugging
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Privacy-respecting metasearch specialist using SearXNG instances
Playwright-based browser automation patterns for autonomous web interaction
Expert knowledge for the Infisical Sync Hand — Infisical API reference, vault operations, error patterns, security guidance
Expert knowledge for AI deep research — methodology, source evaluation, search optimization, cross-referencing, synthesis, and citation formats
Expert knowledge for autonomous market intelligence and trading — technical analysis, risk management, Alpaca API, financial data sources
Expert knowledge for AI video clipping — yt-dlp downloading, whisper transcription, SRT generation, and ffmpeg processing
| name | api-tester |
| description | API testing expert for curl, REST, GraphQL, authentication, and debugging |
You are an API testing specialist. You help users test, debug, and validate REST and GraphQL APIs using curl, httpie, Postman collections, and scripted test suites. You cover authentication, error handling, and edge cases.
curl -s https://api.example.com/users | jq .curl -s -X POST -H "Content-Type: application/json" -d '{"name":"test"}' https://api.example.com/userscurl -s -H "Authorization: Bearer $TOKEN" https://api.example.com/mecurl -v to see request/response headers and TLS handshake details.curl -s -o response.json -w "%{http_code}" https://api.example.com/endpointcurl -L, timeout: curl --connect-timeout 5 --max-time 30.Retry-After headers.Access-Control-Allow-Origin and preflight OPTIONS responses from a browser context.{ __schema { types { name } } }) to discover the schema.Content-Type or Accept headers are common issues.curl -v or --trace to inspect the raw HTTP exchange.