Skip to content

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:

Terminal window
bunx @jrtilak-recall/plugin-creator --help

Validates a plugin, builds its JavaScript or theme entry, and writes a generated manifest.json to the output directory.

Terminal window
bunx @jrtilak-recall/plugin-creator build [root] [options]

root is the plugin directory and defaults to the current directory.

OptionDescription
--out-dir <dir>Set the relative output directory. Defaults to dist.
--no-cleanKeep existing ordinary files in the output directory.
--minifyMinify the JavaScript bundle.
--sourcemapEmit an external JavaScript source map.
--zipCreate <out-dir>.zip for marketplace upload.

Build the current plugin:

Terminal window
bunx @jrtilak-recall/plugin-creator build

Create a minified marketplace archive:

Terminal window
bunx @jrtilak-recall/plugin-creator build ./my-plugin --minify --zip

See the Plugin Creator changelog for release history.