Runtime Installation
Install the Reminix TypeScript runtime
Install the runtime to build and run agents.
Requirements
- Node.js 20 or higher
Install
npm install @reminix/runtime
# or
pnpm add @reminix/runtime
# or
yarn add @reminix/runtimeThis installs:
hono— Web framework for the agent server@hono/node-server— Node.js HTTP serverzod— Schema validation
Verify
import { Agent, serve } from '@reminix/runtime';
console.log('Runtime installed!');Next Steps
- Quickstart — Build your first agent