Initialize the RLM database for storing buffers and state
Initializes the RLM database for storing buffers and state.
/plugin marketplace add zircote/rlm-rs-plugin/plugin install zircote-rlm-rs@zircote/rlm-rs-pluginforce=trueInitialize the rlm-rs SQLite database for buffer and state management.
# Check if rlm-rs is installed
if ! command -v rlm-rs &> /dev/null; then
echo "ERROR: rlm-rs not found in PATH"
echo "Install with: cargo install rlm-rs"
exit 1
fi
# Initialize database
rlm-rs init {{#if force}}--force{{/if}}
# Show status
rlm-rs status
.rlm/rlm-state.db SQLite database in current directory--force to reset an existing database (destroys all data)--force (idempotent)