@ai-spec-room/core-sdk
v0.1.1
Published
Provider-neutral TS client and types for the AI Spec Room core API.
Readme
@ai-spec-room/core-sdk
Provider-neutral TypeScript client and types for the AI Spec Room core API.
Use this if you are building a custom MCP adapter or other integration. For the turnkey Claude Code / Cursor / Codex setup, install @ai-spec-room/mcp-adapter instead.
import { CoreClient } from "@ai-spec-room/core-sdk";
const client = new CoreClient({
baseUrl: "https://ai-spec-room.vercel.app",
roomId: "<uuid>",
token: "<participant token>",
});
const { items } = await client.readSpec();