Skip to main content

envshed org

Manage organizations.

Subcommands

SubcommandDescription
org listList all organizations you belong to
org createCreate a new organization

org list

List organizations you belong to.

Usage

envshed org list

Options

None (global flags like --locale are available).

Example

$ envshed org list
+----------+----------+-------+
| Name | Slug | Role |
+----------+----------+-------+
| Acme Inc | acme-inc | owner |
| Side Co | side-co | admin |
+----------+----------+-------+

org create

Create a new organization.

Usage

envshed org create --name <name> [options]

Options

FlagDescription
-n, --name <name>Organization name (required)
-d, --description <text>Organization description
-s, --slug <slug>Custom slug (auto-derived from name if omitted)
--output jsonPrint result as JSON

Examples

# Create an org with just a name
envshed org create --name "My Team"

# Create with a custom slug and description
envshed org create --name "My Team" --slug my-team --description "Our engineering org"

# JSON output for scripting
envshed org create --name "CI Org" --output json

Backward compatibility

The legacy envshed orgs command still works and is equivalent to envshed org list.