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/runtime

This installs:

  • hono — Web framework for the agent server
  • @hono/node-server — Node.js HTTP server
  • zod — Schema validation

Verify

import { Agent, serve } from '@reminix/runtime';

console.log('Runtime installed!');

Next Steps

On this page