@cascaide-ts/core
v0.5.1
Published
The core engine that powers Cascaide applications.
Readme
@cascaide-ts/core
The core engine that powers Cascaide applications.
Cascaide is a fullstack agent runtime and AI orchestration framework in typescript designed to run anywhere JS/TS can. It was originally built for web applications but works equally well for headless/CLI AI agents and workflows in javascript runtimes.
What it really is is a distributed, observable, durable graph executor. The first split just happens to be client/server, hence full stack.
Installation
@cascaide-ts/core is the package all other packages depend on. You will be using it with other packages like @cascaide-ts/react to build your full stack AI applications.
npm install @cascaide-ts/coreIn your codebase itself, you will be mostly using core for the types.
| Package | Role |
|---|---|
| @cascaide-ts/helpers | Agent factories (createReactAgent, createSupervisorAgent, …) and LLM utilities |
| @cascaide-ts/react | Client-side runtime: WorkflowProvider, WorkflowRenderer, hooks |
| @cascaide-ts/postgres-js | Postgres Persistor for durable cascades |
| @cascaide-ts/server-next | Next.js adapter |
| @cascaide-ts/server-hono | Hono adapter |
| @cascaide-ts/server-fastify | Fastify adapter |
| @cascaide-ts/server-express | Express adapter |
| @cascaide-ts/cli | npx create-cascaide-app — scaffold a working app in one command |
