Operational reliability API for AI agents.
This repository is the public integration portal for the live SaaS service. It contains docs, manifests, API contract, and client examples.
Agent workflows break on malformed payloads, unstable dependencies, and low-trust outputs.
FUTURE Reliability Pack provides three API tools:
- Normalize JSON-like payloads (null cleanup + type inference).
- Contract-test external tools/endpoints.
- Build verifiable evidence packs from source URLs.
Base URL:
https://reliability-pack-worker.animixel.workers.dev- Get API key / Subscribe:
https://buy.stripe.com/fZucN6fbS7rYgJ06tG1VK00
Public health check:
curl -sS "https://reliability-pack-worker.animixel.workers.dev/health"Private call with API key:
curl -sS -X POST "https://reliability-pack-worker.animixel.workers.dev/api/normalize" \
-H "content-type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"input":"{\"name\":\"tom\",\"active\":\"true\"}"}'Expected response shape (example):
{
"run_id": "run_demo_123",
"ok": true,
"normalized": {
"name": "tom",
"active": true
},
"warnings": [],
"timing_ms": 31,
"request_id": "req_demo_123"
}normalize_input
- Input: mixed or malformed JSON/string payloads.
- Output: normalized payload +
run_idfor traceability. - Note: this is not natural-language date/time interpretation.
contract_test_tool
- Input: target URL + expected status/latency.
- Output: pass/fail health signal + warning summary.
- Includes
schema_checkedandschema_validfor JSON-schema check state.
build_evidence_pack
- Input: claim + source URLs.
- Output: hash-based evidence package references.
- OpenAPI contract:
specs/openapi.json llms.txt:llms.txt- Agent card:
.well-known/agent.json - MCP manifest:
mcp/manifest.json - Copy/paste examples:
examples/curl_examples.shexamples/node.jsexamples/python.py
MCP manifest documents tool-style operations. Full HTTP endpoint coverage (including scheduling and public analytics) is defined in OpenAPI.
- Subscription:
https://buy.stripe.com/fZucN6fbS7rYgJ06tG1VK00 - Access model: API key required for private endpoints.
- Trial: up to
50API requests or7days (whichever comes first), then upgrade to paid plan.
- Quickstart:
docs/quickstart.md - Auth and access:
docs/auth.md - Endpoints:
docs/endpoints.md - Examples:
docs/examples.md - Security and data policy:
docs/security.md
- Live docs:
https://reliability-pack-worker.animixel.workers.dev/docs - Contact:
ops@reliability-pack-worker.animixel.workers.dev