@uedomskikh/agentflow-client
v1.1.0
Published
TypeScript SDK for the AgentFlow API
Downloads
76
Maintainers
Readme
@uedomskikh/agentflow-client
npm package name:
@uedomskikh/agentflow-client. Registry publishing is not complete as of 2026-04-29; until the first greenPublish TypeScript SDKrun, use the local workspace build (npm installinsdk-ts, then import the builtdist/from a relative path or via npm link).
After registry publish:
npm install @uedomskikh/agentflow-clientimport { AgentFlowClient } from "@uedomskikh/agentflow-client";
const client = new AgentFlowClient("http://localhost:8000", "dev-key");
const order = await client.getOrder("ORD-20260404-1001");
console.log(order.status, (await client.getMetric("revenue", "24h")).value);import {
AgentFlowClient,
RetryPolicy,
} from "@uedomskikh/agentflow-client";
const client = new AgentFlowClient("http://localhost:8000", "dev-key");
client.configureResilience({
retryPolicy: new RetryPolicy({ maxAttempts: 5 }),
});