TypeScript quickstart
Install
@lynxops/sdk and record your first agent Run.OpenAPI quickstart
Build an integration or SDK in Python, Go, Java, Rust, or another language.
Choose an integration
Use the TypeScript SDK when you want built-in async context, LLM and tool wrappers, local firewalls, batching, retries, and runtime configuration caching. Use the OpenAPI directly when:- Your service uses another language or runtime.
- You are building a community SDK.
- You already have an event queue and delivery system.
- You need explicit control over local storage and policy execution.
Core flow
Production safety
Event delivery should run in the background. A Lynx API outage should not fail your customer request. Use bounded queues, short timeouts, selective retries, and a circuit breaker. Firewall checks run locally before the tool executes. High-risk actions can use fail-closed or approval behavior without depending on a network call.Prompts, tool arguments, model responses, logs, and payloads can contain
sensitive data. Mask secrets before recording them and use
metadata-only
capture when raw content is not required.