Integrations

This page links to reference examples for connecting Sagewai to the tools your team already uses: CLI proxies, the agent registry, and Harness primitives.

Prerequisites: Sagewai SDK installed and a running gateway. See Get started if you haven't set up your first agent yet.


CLI proxies

Route an existing AI CLI through Sagewai to add observability, cost tracking, and Sealed credential handling without changing the developer's day-to-day workflow.

#ExampleTool
09proxy_claude_codeClaude Code CLI
10proxy_cursorCursor IDE
11proxy_codexOpenAI Codex

When to use: your team is already running one of these CLIs and you want per-request cost tracking and audit logs without asking developers to change their setup.

Agent registry

Publish agents so other teams or services can invoke them by name. Consume published agents without re-implementing the integration on the caller side.

#ExampleDirection
14register_agentPublish to registry
15discover_agentsConsume from registry

When to use: you are shipping an agent that other teams should invoke without re-implementing the client integration themselves.

Harness primitives

These examples give direct access to the proxy and agent boundary inside the Harness. They are reference-grade for power users integrating Sagewai into an existing tool surface.

#ExampleWhat it adds
23harness_proxyHarness proxy primitives
24harness_agentHarness agent integration

When to use: you need fine-grained control over how the proxy and agent interact, for example to inject custom routing logic or inspect classification decisions before they take effect.