create-dotbep-runtime
v0.1.4
Published
Scaffold a dotbep runtime project
Readme
create-dotbep-runtime
Scaffold a runtime project for a dotbep BEP — the handlers and custom lens components that give your BEP dynamic behavior on the platform.
Works equally well with an AI agent or a human developer.
Usage
npm create dotbep-runtime@latestThen follow the prompts.
Setup
- Rename
AGENTS.mdto match your AI agent (CLAUDE.md,GEMINI.md, etc.), or keep it asAGENTS.mdfor Cursor, Windsurf, or Codex CLI. - Copy
.env.exampleto.envand fill inDOTBEP_TOKENandDOTBEP_BEP_ID. - Run
npm install && npm run pull.
MCP server
dotbep ships an MCP server that gives your coding agent direct access to your BEP — read data, manage members, and more.
{
"dotbep-mcp": {
"command": "npx",
"args": ["-y", "@dotbep/mcp@latest"],
"env": {
"DOTBEP_TOKEN": "<your-token>"
}
}
}Learn how to get your token at dotbep.com/docs/getting-started.md.
