Bundled plugins
Plugins shipped with Flowly
Bundled plugins live inside the Flowly package itself, under
flowly/plugins_bundled/. They're available to every install out of the box, default-on, and serve as canonical reference implementations of the plugin API.What ships with Flowly
The current Flowly distribution includes two bundled plugins. Both are loaded automatically and remain dormant until the user takes the relevant action — they don't affect default behavior.
- disk-cleanup — auto-tracks ephemeral files the agent creates and cleans them up at the end of each turn. Active by default for files matching specific patterns inside
$FLOWLY_HOME. - auto-commit — auto-commits files the agent writes in allow-listed git repositories. Dormant until you opt-in a directory with
/auto-commit add.
Available bundled plugins
disk-cleanup
Auto-tracks and cleans up ephemeral session files. Hooks into post_tool_call + on_session_end. Zero agent involvement.
Slash:
/disk-cleanupauto-commit
Auto-commits files the agent writes inside allow-listed git repos. Hooks into post_tool_call; user opts in via /auto-commit add.
Slash:
/auto-commitDisabling a bundled plugin
Bundled plugins can't be uninstalled — they're inside the Flowly package. To opt out, add them to your plugins.disabled list:
flowly plugins disable disk-cleanup
flowly plugins disable auto-commitRestart the gateway for changes to apply. plugins.disabled is checked first in discovery, so disabled bundled plugins never load.
You can re-enable any time with
flowly plugins enable. The plugin's state directory ($FLOWLY_HOME/<plugin>/) is preserved either way — disabling doesn't delete data.