dropseed

plain-request

@dropseed/plain-request
dropseed
652
13 forks
Updated 1/18/2026
View on GitHub

Makes HTTP requests to test URLs, check endpoints, fetch pages, or debug routes. Use when asked to look at a URL, hit an endpoint, test a route, or make GET/POST requests.

Installation

$skills install @dropseed/plain-request
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Repositorydropseed/plain
Pathplain/plain/skills/plain-request/SKILL.md
Branchmaster
Scoped Name@dropseed/plain-request

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: plain-request description: Makes HTTP requests to test URLs, check endpoints, fetch pages, or debug routes. Use when asked to look at a URL, hit an endpoint, test a route, or make GET/POST requests.

Making HTTP Requests

Use uv run plain request to make test requests against the dev database.

Basic Usage

uv run plain request /path

With Authentication

uv run plain request /path --user 1

With Custom Headers

uv run plain request /path --header "Accept: application/json"

POST/PUT/PATCH with Data

uv run plain request /path --method POST --data '{"key": "value"}'

Limiting Output

uv run plain request /path --no-body    # Headers only
uv run plain request /path --no-headers # Body only