Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.rafftechnologies.com/llms.txt

Use this file to discover all available pages before exploring further.

Updated May 10, 2026 The raff invitation command group sends email invitations to grant account or project access, lists pending invitations, and cancels them. Every subcommand supports --output json for scripting. Aliases: raff invitations, raff invite.

Subcommand index

SubcommandWhat it does
listList pending invitations
create-accountInvite to the account
create-projectInvite to the current project
cancelCancel a pending invitation

list

raff invitation list [--project-id <uuid>] [--output table|json]
List pending invitations. Without --project-id, lists pending account invites; with it, lists pending project invites for that project. Output columns: INVITATION ID, EMAIL, ROLE, SCOPE, EXPIRES.
# Pending account invites
raff invitation list

# Pending invites for a specific project
raff invitation list --project-id <project-uuid>

create-account

raff invitation create-account --email <email> --role-id <account-role-uuid>
Send an invitation to join the account. Required: --email, --role-id. The role must be account-scoped — find via raff role list --scope account.

create-project

raff invitation create-project --email <email> --role-id <project-role-uuid>
Send an invitation to join the current project (taken from --project-id global flag, RAFF_PROJECT_ID, or active profile). Required: --email, --role-id. The role must be project-scoped.

cancel

raff invitation cancel <invitation-id>
Cancel a pending invitation. The recipient’s accept link stops working immediately.

Member commands

Account-level members and direct adds.

Project member commands

Project-scoped members.

Role commands

Get a role-id to invite with.
Last modified on May 11, 2026