Files
palladum-lightning/doc/lightning-reckless.1.md
ShahanaFarooqui 79ffb3a7ab doc: Update json and markdowns to make them .mdx compatible
readme v2 API expects files to be .mdx compatible.
2026-01-20 15:22:31 +10:30

5.5 KiB

reckless - install and activate a CLN plugin by name

SYNOPSIS

reckless [options] install/uninstall/enable/disable/source target

DESCRIPTION

Reckless is a plugin manager for Core-Lightning. Typical plugin installation involves: finding the source plugin, copying, installing dependencies, testing, activating, and updating the lightningd config file. Reckless does all of these by invoking:

reckless install[@commit/tag] plugin_name

Alternatively, the source path or URL to the plugin repository can be passed directly in place of the plugin_name. In either case, the containing directory or repository should be named for the plugin, don't pass the plugin's executable/entrypoint directly.

reckless will exit early in the event that:

  • the plugin is not found in any available source repositories
  • dependencies are not successfully installed
  • the plugin fails to execute

Reckless-installed plugins reside in the 'reckless' subdirectory of the user's .lightning folder. By default, plugins are activated on the bitcoin network (and use lightningd's bitcoin network config), but regtest may also be used.

Other commands include:

reckless uninstall plugin_name disables the plugin, removes the directory.

reckless search plugin_name looks through all available sources for a plugin matching this name.

reckless enable plugin_name dynamically enables the reckless-installed plugin and updates the config to match.

reckless disable plugin_name dynamically disables the reckless-installed plugin and updates the config to match.

reckless source list list available plugin repositories.

reckless source add repo_url add another plugin repo for reckless to search.

reckless source rm repo_url remove a plugin repo for reckless to search.

reckless update [plugin_name] install the latest commit of a single plugin, or omit to update all reckless-installed plugins. Does not automatically update if a plugin was previously installed by requesting a specific git tag or commit.

OPTIONS

Available option flags:

-d, --reckless-dir reckless_dir specify an alternative data directory for reckless to use. Useful if your .lightning is protected from execution.

-l, --lightning lightning_data_dir lightning data directory (defaults to $USER/.lightning)

-c, --conf lightning_config pass the config used by lightningd

-r, --regtest use the regtest network and config instead of bitcoin mainnet

-v, --verbose request additional debug output

--network=network specify bitcoin, regtest, liquid, liquid-regtest, signet, or testnet networks. (default: bitcoin)

NOTES

Reckless currently supports python, rust, and javascript plugins.

Running the first time will prompt the user that their lightningd's bitcoin config will be appended (or created) to inherit the reckless config file (this config is specific to bitcoin by default.) Management of plugins will subsequently modify this file.

Troubleshooting tips:

Plugins must be executable. For python plugins, the shebang is invoked, so python3 should be available in your environment. This can be verified with which Python3. The default reckless directory is $USER/.lightning/reckless and it should be possible for the lightningd user to execute files located here. If this is a problem, the option flag reckless -d=my_alternate_dir may be used to relocate the reckless directory from its default. Consider creating a permanent alias in this case.

Python plugins are installed to their own virtual environments. The environment is activated by a wrapper (named the same as the plugin) which then imports and executes the actual plugin entrypoint.

For Plugin Developers:

To make your plugin compatible with reckless install:

  • Choose a unique plugin name.
  • The plugin entrypoint is inferred. Naming your plugin executable the same as your plugin name will allow reckless to identify it correctly (file extensions are okay.)
  • For python plugins, a requirements.txt is the preferred medium for python dependencies. A pyproject.toml will be used as a fallback, but test installation via pip install -e . - Poetry looks for additional files in the working directory, whereas with pip, any references to these will require something like packages = [{ include = "*.py" }] under the [tool.poetry] section.
  • Additional repository sources may be added with reckless source add https://my.repo.url/here however, https://github.com/lightningd/plugins is included by default. Consider adding your plugin lightningd/plugins to make installation simpler.
  • If your plugin is located in a subdirectory of your repo with a different name than your plugin, it will likely be overlooked.

AUTHOR

Antoine Poinsot wrote the original reckless plugin on which this is based.

Rusty Russell wrote the outline for the reckless utility's function

Alex Myers alex@endothermic.dev is mostly responsible for the reckless code and this man page, with thanks to Christian Decker for extensive review.

SEE ALSO

reckless(7), Core-Lightning plugins repo: https://github.com/lightningd/plugins

RESOURCES

Main web site: https://github.com/ElementsProject/lightning