Community plugin registry for lessel — the message pipeline framework.
# Search for plugins
lessel plugin search sentiment
# Install a plugin
lessel plugin install sentiment-analysis
# List installed plugins
lessel plugin list- Fork this repo
- Create a directory under
plugins/with your plugin name - Add a
plugin.jsonmanifest and at least one version directory - Open a Pull Request
plugins/
your-plugin-name/
plugin.json # Manifest
ˋ1.0.0/ # Version directory
index.js # Plugin code
ˋ1.1.0/
index.js
{
"name": "sentiment-analysis",
"description": "Analyzes message sentiment and adds a sentiment score",
"author": "your-github-username",
"repository": "https://github.com/you/your-plugin-repo",
"schema": ["*"],
"engines": { "lessel": ">=0.1.0" },
"tags": ["utility", "nlp"],
"versions": {
"1.0.0": { "checksum": "sha256:abc...", "published": "2026-07-12" },
"1.1.0": { "checksum": "sha256:def...", "published": "2026-07-14" }
}
}Browse the registry visually at: https://terminay.github.io/lessel-plugins