Your Agent Is the Brain
GolemBot doesn't reinvent AI. It uses the Coding Agent you already have — Cursor, Claude Code, OpenCode, or Codex — as the engine. When the agent gets smarter, your assistant gets smarter automatically.
Connect Cursor, Claude Code, OpenCode, or Codex to IM platforms, HTTP APIs, or your own product — with one command.
Install GolemBot globally, then create and run an assistant in seconds:
npm install -g golembot
mkdir my-bot && cd my-bot
golembot onboard # guided setup wizard
golembot run # interactive REPL
golembot gateway # start IM + HTTP serviceOr use as a library — 5 lines of code:
import { createAssistant } from 'golembot'
const bot = createAssistant({ dir: './my-bot' })
for await (const ev of bot.chat('Analyze last month sales'))
if (ev.type === 'text') process.stdout.write(ev.content)Switch engines by changing one line in golem.yaml — the StreamEvent API stays the same.
Connect to any message source. Built-in adapters need no public URL. Add _adapter: <path> to golem.yaml to plug in email, Discord, GitHub Issues, or anything else — write your own adapter.