Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Use when testing HTTP endpoints, probing URLs for status and headers, or running declarative API test suites from plain text files
| Tool | Purpose | Structured output |
|---|---|---|
| Hurl | Declarative HTTP testing from plain text .hurl files | --json for JSON report |
| httpx | Fast HTTP probing toolkit (ProjectDiscovery) | -json for JSON output |
Create a .hurl file:
GET http://localhost:3000/api/health
HTTP 200
[Asserts]
jsonpath "$.status" == "ok"
Run it:
hurl health.hurl
POST http://localhost:3000/api/users
Content-Type: application/json
{
"name": "Alice",
"email": "alice@example.com"
}
HTTP 201
[Asserts]
jsonpath "$.id" isInteger
jsonpath "$.name" == "Alice"
# Step 1: Login
POST http://localhost:3000/api/auth/login
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill api-testingHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.