Manage organizations.
Organizations group engines and members. Each engine belongs to exactly one organization.
- me org list -- list your organizations
- me org create -- create an organization
- me org rename -- rename an organization
- me org delete -- delete an organization
- me org member list -- list organization members
- me org member add -- add a member
- me org member remove -- remove a member
List your organizations.
me org list
Displays a table of organizations you belong to, showing ID, name, and slug.
Create an organization.
me org create <name>
| Argument | Required | Description |
|---|---|---|
name |
yes | Organization name. |
Rename an organization.
me org rename <name-or-id> <new-name>
| Argument | Required | Description |
|---|---|---|
name-or-id |
yes | Organization name, slug, or ID. |
new-name |
yes | New organization name. |
Renaming changes only the human-readable name. The org slug is randomly generated at creation time and never changes, so any references to the org by slug or ID continue to work.
Requires the owner or admin role on the organization.
Delete an organization.
me org delete <name-or-id> [options]
| Argument | Required | Description |
|---|---|---|
name-or-id |
yes | Organization name, slug, or ID. |
| Option | Description |
|---|---|
-y, --yes |
Skip the confirmation prompt. |
This operation is irreversible.
List organization members.
me org member list [org] [options]
| Argument | Required | Description |
|---|---|---|
org |
no | Organization name, slug, or ID. |
| Option | Description |
|---|---|
--org <name-or-id> |
Organization name, slug, or ID (alternative to positional argument). |
Displays a table of members with name, email, role, and join date.
Add a member to an organization.
me org member add <email-or-id> <role> [options]
| Argument | Required | Description |
|---|---|---|
email-or-id |
yes | Email address or identity ID of the person to add. |
role |
yes | Role: owner, admin, or member. |
| Option | Description |
|---|---|
--org <name-or-id> |
Organization name, slug, or ID. |
Remove a member from an organization.
me org member remove <name-email-or-id> [options]
| Argument | Required | Description |
|---|---|---|
name-email-or-id |
yes | Member name, email, or identity ID. |
| Option | Description |
|---|---|
--org <name-or-id> |
Organization name, slug, or ID. |
-y, --yes |
Skip the confirmation prompt. |