@strangeworks-inc/strangeworks-aura-sdk
v0.2.1
Published
Thin TypeScript SDK for the Strangeworks Aura /api/v1 surface (API-key auth).
Readme
@strangeworks-inc/strangeworks-aura-sdk
A thin TypeScript SDK for the Strangeworks Aura public API (/api/v1). It embeds Aura in a Node
backend — deployments, projects, conversations, chat, snapshots — with company API-key auth.
Server-side only (a key is a secret; never ship it in a browser bundle).
npm install @strangeworks-inc/strangeworks-aura-sdkimport { AuraClient } from "@strangeworks-inc/strangeworks-aura-sdk";
const aura = new AuraClient({ apiKey: process.env.AURA_API_KEY! });
const project = await aura.createProject({ name: "vrp demo", fromDeployment: "acme/vrp" });
const reply = await aura.chat(project.id, "Solve this and summarize the result.");📖 docs.aura.strangeworks.com/typescript — the full guide and API reference.
For the terminal, @strangeworks-inc/strangeworks-aura-cli builds the aura command on top of this package. The Python counterpart is strangeworks-aura-sdk.
