Files
Gerard Hickey 9f807c9260 feat(i18n): Add support for local translation files
Add the `local_tranlation_path` to the `Localization` section  of
the configuration file to allow one to specify a local translation
file outside the distributed translation files. This allows
translation files to be built for local commands without the
need of altering the distributed ones.

Signed-off-by: Gerard Hickey <hickey@kinetic-compute.com>
2026-09-04 21:50:02 -04:00
..

Local plugins and services

Place your own command plugins and service plugins here so they stay separate from bot-provided code.

  • local/commands/ — Python files each defining a command (subclass of BaseCommand). Loaded after built-in commands; duplicate names are skipped.
  • local/service_plugins/ — Python files each defining a background service (subclass of BaseServicePlugin). Loaded after built-in services; duplicate names are skipped.
  • local/config.ini — Optional. Merged with main config.ini; use it for sections and options for your local plugins and services.

See docs/local-plugins.md (or the "Local plugins and services" section in the docs) for how to write a minimal plugin and configure it.