Skip to content

Plugin Management

Extend RAPS CLI capability with external plugins and command aliases.

Aliases

Create shortcuts for frequently used commands.

List Aliases

raps plugin alias list

Add Alias

raps plugin alias add <name> "<command>"

Example:

# Create an alias 'up' for uploading with resume
raps plugin alias add up "object upload --resume"

# Use the alias
raps up my-bucket large-file.zip

Remove Alias

raps plugin alias remove <name>

External Plugins

RAPS CLI supports external plugins. Any executable named raps-<name> in your system PATH can be invoked as raps <name>.

List Plugins

List all discovered plugins on your system.

raps plugin list

Enable/Disable Plugins

Control which plugins are active.

raps plugin enable <name>
raps plugin disable <name>