Organization Commands
Norrix uses organizations to group users, builds, and resources. These commands help you manage your organization context.
norrix orgs list
List all organizations you belong to.
Synopsis
norrix orgs listOutput
Lists organizations with:
- Organization ID
- Organization name
- Your role (Owner, Admin, Member)
Example
norrix orgs listOutput:
Organizations:
org_abc123 Acme Corp (Owner)
org_def456 Beta Team (Member)norrix orgs select
Interactively select the default organization for CLI operations.
Synopsis
norrix orgs selectBehavior
- Fetches your organization memberships
- Displays an interactive selection prompt
- Saves the selection for the current environment (prod/dev)
Example
norrix orgs selectThe selected organization is used for all subsequent commands unless overridden with --org.
norrix orgs current
Show the currently selected organization for the current environment.
Synopsis
norrix orgs currentOutput
Displays:
- Organization ID
- Organization name
- Current environment (prod/dev)
Example
norrix orgs currentOutput:
Current organization: Acme Corp (org_abc123)
Environment: prodPer-Command Override
Any command that accepts --org will use that organization instead of the default:
norrix build ios release --org org_def456This is useful for:
- CI/CD pipelines
- Working with multiple organizations
- Testing across environments
Environment-Specific Selection
Organization selection is stored separately for each environment:
# Set default org for production
norrix orgs select
# Set default org for development
norrix --dev orgs selectThe CLI remembers different selections for prod and dev environments.