用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zscole/ai-poc-daily --skill api-tester命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | API Tester |
| version | 1.0.0 |
| description | Test HTTP APIs with automatic request building and response validation |
| author | Example Author |
| license | MIT |
| tags | ["api","testing","http","rest"] |
| triggers | [{"type":"keyword","value":"test api"},{"type":"keyword","value":"http request"},{"type":"keyword","value":"api call"}] |
| scripts | [{"name":"request","path":"scripts/request.js","runtime":"node","description":"Make an HTTP request and display the response","args":[{"name":"method","type":"string","required":false,"default":"GET","description":"HTTP method (GET, POST, PUT, DELETE, PATCH)"},{"name":"url","type":"string","required":true,"description":"Target URL"},{"name":"data","type":"string","required":false,"description":"JSON data for request body"}]}] |
This skill helps test HTTP APIs by making requests and validating responses.
Use this skill when the user wants to:
Test a GET endpoint:
request --url https://api.example.com/users
Test a POST with data:
request --method POST --url https://api.example.com/users --data '{"name":"John"}'
The script outputs: