@tmjumper/stremai
v1.1.9
Published
StremAI TypeScript SDK. Shared memory layer for AI coding agents; connected agents can recall lessons across Claude Code, Codex, Cursor, and any MCP client.
Maintainers
Readme
StremAI — TypeScript / JavaScript SDK
One brain for all your coding agents. StremAI is a shared memory layer for AI coding agents. Connected agents can store what they learn while working, and other connected agents can recall it later across Claude Code, Codex, Cursor, OpenClaw, and any MCP client.
npm install @tmjumper/stremaiFor Codex, install the default project-memory loop from the repo root:
npx @tmjumper/stremai connect codex --project-id <PROJECT_ID>That command writes a secret-free .stremai/project.json, updates Codex MCP config, installs start-session recall and finish-session writeback instructions, and runs a store/recall/verify smoke test when AGENTBAY_API_KEY is available.
import { StremAI } from '@tmjumper/stremai';
const ab = new StremAI(); // local mode — or new StremAI({ apiKey: 'ab_live_...', projectId: '...' })StremAI is the current product name for the SDK previously published as agentbay. This package re-exports the same implementation, so import { AgentBay } from '@tmjumper/stremai' also works, and the legacy agentbay package stays supported for compatibility.
Full API reference: https://stremai.com/docs/typescript-sdk
