This project was scaffolded with create-agent-kit and ships with a ready-to-run agent app built on @lucid-agents/core.
bun install
bun run devThe dev command runs bun in watch mode, starts the HTTP server, and reloads when you change files inside src/.
src/agent.ts– defines your agent manifest and entrypoints.src/index.ts– boots a Bun HTTP server with the agent.
echo– Echo input text
bun run dev– start the agent in watch mode.bun run start– start the agent once.bun run agent– run the agent module directly (helpful for quick experiments).bunx tsc --noEmit– type-check the project.
- Update
src/agent.tswith your use case. - Wire up
@lucid-agents/coreconfiguration and secrets (seeAGENTS.mdin the repo for details). - Update
.envwith your actual PRIVATE_KEY and configuration values. - Deploy with your preferred Bun-compatible platform when you're ready.