ReMe/plugins/README.md
jinliyl efcc2b34d1
Some checks are pending
CI / Documentation / Test and build documentation (push) Waiting to run
CI / Python quality / Pre-commit (push) Waiting to run
CI / Python tests / Unit Tests - py3.11 (push) Waiting to run
CI / Python tests / Unit Tests - py3.12 (push) Waiting to run
CI / Python tests / Unit Tests - py3.13 (push) Waiting to run
CI / Windows / CLI smoke - py3.11 (push) Waiting to run
Deploy / Documentation / Build documentation (push) Waiting to run
Deploy / Documentation / deploy (push) Blocked by required conditions
Security / CodeQL / Analyze javascript-typescript (push) Waiting to run
Security / CodeQL / Analyze python (push) Waiting to run
feat: simplify plugin setup and add management CLI (#485)
* feat: simplify plugin setup and add management CLI

* fix: isolate plugin CLI import side effects

* refactor: streamline plugin validation

* fix: route plugin CLI arguments independently

* fix: support standard plugin source layouts
2026-08-23 17:58:20 +08:00

808 B

ReMe Plugins

This directory contains installable extensions of ReMe itself. A plugin exposes its package through the reme.plugins Python entry-point group and declares backend classes plus a low-priority ApplicationConfig fragment under application_defaults in that package's plugin.yaml.

Manage plugin packages with the local CLI:

reme plugins list
reme plugins show auto-fin
reme plugins install reme-auto-fin
reme plugins install ./plugins/auto-fin --editable
reme plugins validate auto-fin
reme plugins uninstall auto-fin

Installation and activation are separate. Enable an installed plugin for one application through its config or CLI:

reme start plugins='["auto-fin"]'

Adapters for external agent hosts belong in ../integrations.