deployment-helper
Installation
SKILL.md
Deployment Helper Skill
Production deployment configurations for elizaOS agents with Docker, monitoring, and scaling.
Deployment Patterns
1. Single Agent Deployment
// src/index.ts
import { AgentRuntime } from '@elizaos/core';
import { PGAdapter } from '@elizaos/adapter-postgresql';
import character from './character';
const runtime = new AgentRuntime({
databaseAdapter: new PGAdapter(process.env.DATABASE_URL),
character,
env: process.env
});