httpie

HTTPie human-friendly HTTP client. Use for API testing.

7 stars

Best use case

httpie is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

HTTPie human-friendly HTTP client. Use for API testing.

Teams using httpie should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/httpie/SKILL.md --create-dirs "https://raw.githubusercontent.com/G1Joshi/Agent-Skills/main/skills/tools/httpie/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/httpie/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How httpie Compares

Feature / AgenthttpieStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

HTTPie human-friendly HTTP client. Use for API testing.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# HTTPie

HTTPie started as a CLI (`http get example.com`) and now includes a beautiful **Desktop** app (2025). It is famous for its **human-friendly** syntax.

## When to Use

- **CLI**: `http POST api.com name=John` is faster than `curl -X POST -d '{"name":"John"}' ...`.
- **Desktop**: Cleanest UI in the business. AI-assisted request building.
- **Quick Testing**: Zero config needed.

## Core Concepts

### Simplified Syntax

`:` for headers (`User-Agent:Chrome`), `=` for string data (`name=John`), `:=` for raw JSON (`age:=25`).

### Sessions

Persistent sessions (cookies/headers) in CLI. `http --session=logged-in API`.

## Best Practices (2025)

**Do**:

- **Use the Desktop App**: It syncs with the CLI.
- **Use `--offline`**: To inspect how the request _would_ look without sending it.

**Don't**:

- **Don't use `curl` for JSON**: Unless you are pasting to a colleague who doesn't have HTTPie. HTTPie is superior for JSON.

## References

- [HTTPie Documentation](https://httpie.io/docs)