Webhooks
Signed inbound webhooks with replay protection, per-source secret rotation, and JSON schema validation.
Iyctt ships a small number of well-defined primitives that compose cleanly. No plugin marketplace, no visual builder — just APIs that behave the same way in your local emulator and in production.
Each workflow runs in an isolated V8 container within 15ms of the user. There is no warmup pool to babysit and no cold start tax to design around.
export default { runtime: "edge", regions: ["iad", "fra", "nrt"], limits: { cpuMs: 50, memoryMb: 128, timeoutMs: 30000, }, observability: { logs: "structured", traces: true, }, };
Every invocation is uniquely keyed, so replays are safe. When a step fails, Iyctt backs off exponentially, checkpoints state, and surfaces the failure in the dashboard with a full trace.
STATE RUN_ID ATTEMPT DURATION succeeded run_2n8fJq... 3 412ms retrying run_2n8fJq... 2 601ms // 502 upstream retrying run_2n8fJq... 1 598ms // timeout # Replay from the dashboard, or: $ iyctt runs replay run_2n8fJq --from-step notify
Iyctt ships the primitives that most backend teams reimplement badly. Bring your own datastore, or use ours.
Signed inbound webhooks with replay protection, per-source secret rotation, and JSON schema validation.
Second-precision cron with drift detection and per-run tracing.
Ordered, at-least-once queues with typed messages, batching, and dead-letter routing.
Fast KV backed by regional replicas, plus durable state for coordination and long-running flows.
Per-flow scoped secrets, never returned in plaintext outside the runtime. Rotation with audit trail.
OpenTelemetry-compatible traces, log tailing, and SLO dashboards. Export to your existing stack.
| Capability | Iyctt | Roll-your-own | Generic workflow SaaS |
|---|---|---|---|
| Cold start | <15ms | 200ms+ | 500ms+ |
| Typed SDK | Yes, generated | Hand-written | Partial |
| Deterministic retries | Built in | Custom code | Best effort |
| Local emulator | Parity with prod | N/A | Limited |
| SSO & audit logs | Team plan | You build | Enterprise plan |