This project was scaffolded with create-agent-kit and ships with a ready-to-run agent app built on @lucid-dreams/agent-kit.
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.
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-dreams/agent-kitconfiguration and secrets (seeAGENTS.mdin the repo for details). - Copy
.env.exampleto.envand fill in the values for your environment. - Deploy with your preferred Bun-compatible platform when you're ready.