← All templates

Starter Agent

typescript

Minimal agent with a single prompt handler — the fastest way to get started with Reminix.

The simplest way to build an agent on Reminix. This template gives you a single prompt handler that accepts user input and returns an AI-generated response.

What's included

  • Single prompt handler — processes user messages and returns responses
  • TypeScript setup — fully typed with the Reminix SDK
  • Ready to deploy — push to GitHub and Reminix builds automatically

When to use this

Pick the Starter template when you want to:

  • Prototype a new idea quickly
  • Build a simple Q&A bot or assistant
  • Learn the Reminix SDK basics before adding complexity

Project structure

├── src/
│   └── index.ts          # Agent entry point with prompt handler
├── package.json
├── tsconfig.json
└── reminix.config.ts     # Reminix configuration

Quick start

After deploying, you can interact with your agent via the Reminix API or the built-in playground.

curl -X POST https://api.reminix.com/v1/agents/{agent-id}/run \
  -H "Authorization: Bearer $REMINIX_API_KEY" \
  -d '{"input": "Hello, agent!"}'