Agent skill
api-tester
快速 API 测试工具,支持 GET/POST 请求、请求头、认证模式测试。触发词:测试 API、API 请求。
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/api-tester-throokie-claude-code-skills
SKILL.md
API Tester
Test APIs quickly from CLI.
Common Patterns
# GET request
curl -s https://api.github.com/user | jq .
# POST with JSON
curl -s -X POST \
-H "Content-Type: application/json" \
-d '{"key":"value"}' \
https://httpbin.org/post
# With auth header
curl -s -H "Authorization: Bearer $TOKEN" \
https://api.example.com/data
# Check status code
curl -s -o /dev/null -w "%{http_code}" \
https://api.example.com/health
Saved Requests
Store common requests in:
~/.config/api-tester/requests/
Response Validation
# Check JSON structure
curl -s ... | jq 'has("data")'
# Extract specific field
curl -s ... | jq -r '.data[0].id'
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?