Plugin Creator
@jrtilak-recall/plugin-creator is the official CLI for building Recall
plugins. Manifest, permission, and theme fields are documented in
Plugin Schema.
Run the CLI directly with Bun:
bunx @jrtilak-recall/plugin-creator --helpValidates a plugin, builds its JavaScript or theme entry, and writes a generated
manifest.json to the output directory.
bunx @jrtilak-recall/plugin-creator build [root] [options]root is the plugin directory and defaults to the current directory.
| Option | Description |
|---|---|
--out-dir <dir> | Set the relative output directory. Defaults to dist. |
--no-clean | Keep existing ordinary files in the output directory. |
--minify | Minify the JavaScript bundle. |
--sourcemap | Emit an external JavaScript source map. |
--zip | Create <out-dir>.zip for marketplace upload. |
Build the current plugin:
bunx @jrtilak-recall/plugin-creator buildCreate a minified marketplace archive:
bunx @jrtilak-recall/plugin-creator build ./my-plugin --minify --zipSee the Plugin Creator changelog for release history.