在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:30
forks:2
updated:2026年2月8日 09:05
文件资源管理器
SKILL.md
Review Python code for common security vulnerabilities
Validate JSON objects against schemas with clear error reporting
Generates boilerplate code and scaffolding for various programming languages
| 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: