What it does
Minimal agent with a single handler — the fastest way to get started with Reminix.
When to use this
Pick this template when you want to:
- Get a working agent live in minutes without writing boilerplate
- Start from a known-good baseline and customize it
- See how the pieces fit together in a real Reminix project
What's included
- A ready-to-deploy agent with sensible defaults
- The runtime SDK and required dependencies pre-configured
- A
serve()entrypoint Reminix can detect and deploy - A
.env.examplelisting every secret you need to set
Deploy and invoke
Click Deploy above to push this template to a new project in your Reminix workspace. After the build completes, invoke the agent from any client:
curl -X POST https://api.reminix.com/v1/agents/starter-agent/invoke \
-H "Authorization: Bearer $REMINIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input": {"prompt": "Hello"}}'
Customize it
The handler is the file you'll touch most. Open it in your editor, replace the body with whatever logic you need, push, and Reminix redeploys automatically. See Creating Agents for the API surface.