rogeriq integrations

Drives the v1 integrations API. Supports Slack, Discord, Shopify, Stripe, Linear, GitHub, and any other provider in the catalog.

bash
rogeriq integrations list

Installed integrations on the active project.

bash
rogeriq integrations catalog [--q stripe] [--category commerce] [--status active]

Browse all available integrations with their install state, health, and most recent sync.

bash
rogeriq integrations get slack

Catalog detail for one provider, including install state.

bash
rogeriq integrations connect slack

Returns a dashboard URL to open in your browser to complete OAuth. OAuth handshakes cannot happen headlessly — the CLI hands the URL back rather than redirecting. Requires write (or integrations:write) scope.

bash
rogeriq integrations lifecycle slack --status pausedrogeriq integrations lifecycle shopify --sidebar true --display-name "Acme Store"rogeriq integrations lifecycle stripe --settings '{"refunds_enabled":true}'

Update status, display name, sidebar visibility, settings, or action permissions for an installed integration.

FlagEffect
--status active|paused|disconnectedLifecycle state
--display-name "..."Override the catalog name
--sidebar true|falseShow / hide in the inbox sidebar
--settings '{...}'Merge provider-specific settings JSON
bash
rogeriq integrations disconnect slack

Sets the integration to disconnected, hides the sidebar, and clears health status.

Common workflows

Pause integrations during maintenance

bash
for p in slack shopify stripe; do rogeriq integrations lifecycle "$p" --status pauseddone# Resume:for p in slack shopify stripe; do rogeriq integrations lifecycle "$p" --status activedone

Audit which integrations are healthy

bash
rogeriq integrations list --json | jq '.[] | select(.health_status != "healthy")'
Ask a question... ⌘I