Skip to content

LuisGG72/reliability-pack-api

FUTURE Reliability Pack API

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.

Problem

Agent workflows break on malformed payloads, unstable dependencies, and low-trust outputs.

Solution

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.

60-Second Quickstart

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"
}

Core Use Cases

  1. normalize_input
  • Input: mixed or malformed JSON/string payloads.
  • Output: normalized payload + run_id for traceability.
  • Note: this is not natural-language date/time interpretation.
  1. contract_test_tool
  • Input: target URL + expected status/latency.
  • Output: pass/fail health signal + warning summary.
  • Includes schema_checked and schema_valid for JSON-schema check state.
  1. build_evidence_pack
  • Input: claim + source URLs.
  • Output: hash-based evidence package references.

Integration Assets

MCP manifest documents tool-style operations. Full HTTP endpoint coverage (including scheduling and public analytics) is defined in OpenAPI.

Pricing

  • Subscription: https://buy.stripe.com/fZucN6fbS7rYgJ06tG1VK00
  • Access model: API key required for private endpoints.
  • Trial: up to 50 API requests or 7 days (whichever comes first), then upgrade to paid plan.

Docs

Support

  • Live docs: https://reliability-pack-worker.animixel.workers.dev/docs
  • Contact: ops@reliability-pack-worker.animixel.workers.dev

About

Operational reliability API for AI agents: normalize inputs, contract-test tools, and build verifiable evidence packs.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors