bun create projectqai/plugin-template my-plugin
cd my-plugin
bun install
bun run devScaffolds a TypeScript plugin for Hydris with formatting, linting, and type checking pre-configured.
index.ts— working plugin that connects to the engine and watches entitiesbiome.json— Biome formatter + lintertsconfig.json— strict TypeScript.vscode/— VS Code and Cursor pick up the formatter automatically
| Command | Description |
|---|---|
bun run dev |
Run plugin with watch mode |
bun run build |
Build OCI image |
bun run lint |
Lint with Biome |
bun run format |
Format with Biome |
bun run typecheck |
Type check with tsc |
- Developing Plugins — tutorial
- Plugin Reference — lifecycle, config, filtering, health metrics, attach() API
Apache-2.0