Skip to main content

Connector

Connectors are manifest-driven integrations from the built-in catalogue (internal/connectors). Distinct from the Composio subtree (crewship integration composio …) — these are Crewship’s own connector manifests.

crewship connector list

List the catalogue: id, name, category, auth mode.
crewship connector list --format json | jq '.[].id'

crewship connector get <id>

Show one connector’s full manifest (fields, verify probe, install shape).

crewship connector verify <id>

Probe credentials against the provider without persisting them. Exits non-zero when the provider rejects the credentials, so it drops straight into shell conditionals.
FlagTypeEffect
--fieldNAME=value (repeatable)Credential form values for the verify probe.
crewship connector verify slack --field SLACK_TOKEN=xoxb-… && echo ok

crewship connector install <id>

Install the connector as an integration. Workspace scope by default; --crew installs at crew scope.
FlagTypeEffect
--fieldNAME=value (repeatable)Credential form values.
--crewstringCrew slug or id — install at crew scope.
--namestringUser-facing label (default: connector name).
crewship connector install slack --field SLACK_TOKEN=xoxb-… --crew backend
OAuth-mode connectors return a next_step + oauth_url — finish those in a browser; the CLI prints the URL.

See also