Deterministic fake APIs for AI agent tests
Project description
stubfetch
Deterministic, in-process fake HTTP APIs for testing agents and tools. Swap real network calls for canned GitHub, Stripe, Postgres-shaped data, OpenAI / Anthropic-style LLM JSON, S3-like objects, Slack Web API responses—while recording traffic, exporting JSON / Markdown / HAR, running eval scenarios, and optionally injecting chaos (latency, random failures).
Same ideas in TypeScript (npm) and Python (PyPI / local install).
Install
JavaScript / TypeScript (npm)
npm install stubfetch
Requires Node.js ≥ 18. No runtime npm dependencies.
Python
pip install stubfetch
From a clone (editable):
pip install -e ./python
Requires Python ≥ 3.10.
Quick start
TypeScript
import { GhostEnv, github, exportRecordingJSON } from "stubfetch";
const env = new GhostEnv({
seed: 42,
providers: [github({ issues: [{ repo: "acme/api", title: "Bug" }] })],
});
const res = await env.fetch("https://api.github.com/repos/acme/api/issues");
console.log(await res.json());
console.log(exportRecordingJSON(env.calls()));
Python
from stubfetch import GhostEnv, github, export_recording_json
env = GhostEnv(
{"seed": 1, "providers": [github({"issues": [{"repo": "acme/api", "title": "Bug"}]})]}
)
status, text = env.fetch("https://api.github.com/repos/acme/api/issues")
assert status == 200
print(export_recording_json(env.calls()))
Features
| Area | What you get |
|---|---|
| Presets | GitHub issues, Stripe customers, Postgres db().query(), OpenAI chat, Anthropic messages, S3 GET/list, Slack auth.test / chat.postMessage |
GhostEnv.fetch |
Same shape as globalThis.fetch; routes to the first matching provider |
| Recording | calls(), wasCalled(), exportRecordingJSON / Markdown / HAR |
| Eval | runEval + defineScenario for scripted agent tests |
| Replay | ReplayFixture replays canned responses in order |
| Chaos | chaos: { minLatencyMs, failureRate } on config |
Documentation
Hosted on slaps.dev:
| Doc | Contents |
|---|---|
| Overview | Product summary and doc index |
| Getting started | Providers, fetch, recording |
| Use cases | Agents, agentpad, eval patterns |
| Presets | URLs, config shapes, matching rules |
| API reference | GhostEnv, Provider, eval, replay, exports |
| Testing & chaos | runEval, chaos options, failure recording |
| Python notes | Node vs Python differences |
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file stubfetch-0.1.0.tar.gz.
File metadata
- Download URL: stubfetch-0.1.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.14.3 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f35be3352f1435cf0667bc0d367072d52cd0e36653f5e7c2fc055151de1ee346
|
|
| MD5 |
7d12490b124be842ca4b18eb4eba5219
|
|
| BLAKE2b-256 |
d78eb267c569ea9533c1971c2adfefe715994b86e5493d9b86aa84f34359fa72
|
File details
Details for the file stubfetch-0.1.0-py3-none-any.whl.
File metadata
- Download URL: stubfetch-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.14.3 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e676b8f93dab3f3886ce09762350d7d78ed79fa5526deca7710b1c122c22bbb
|
|
| MD5 |
cc6b6af7e6460883ad1276adb589e529
|
|
| BLAKE2b-256 |
8adf6b01dc2ca35d5c05e5515c846e23470832c9ae7650ee8b85c794b1d4f21e
|