Simplifyd Cloud

Workspaces

Create and manage workspaces, members, and resource usage.

A workspace is the top-level organisational unit. It contains projects, tracks billing, and holds the team members who can access resources within it.

The workspace command can be shortened to ws:

edge ws list

list

List all workspaces your account has access to. The active workspace is marked with *.

edge workspace list
edge workspace list --json

Example output

    SLUG          NAME           PLAN
*   acme-corp     Acme Corp      pro
    side-proj     Side Project   free

create

Create a new workspace.

edge workspace create <name>
edge workspace create "Acme Corp"

The slug is derived automatically from the name.


use

Set the active workspace. All subsequent commands that require a workspace will use this value unless overridden with --workspace/-w or a .edge.json link file.

edge workspace use <slug>
edge workspace use acme-corp

The setting is saved to ~/.simplifyd/config.json.


usage

Show resource usage for the active (or specified) workspace.

edge workspace usage
edge workspace usage --workspace acme-corp --json

Example output

RESOURCE      COUNT
Services      12
Deployments   48
Members       5

members

Manage the members of a workspace.

members list

edge workspace members list
edge workspace members list --workspace acme-corp --json

members add

Add one or more members by email address. The invited user must already have a Simplifyd Cloud account.

edge workspace members add bob@example.com carol@example.com

members remove

Remove a member by their member ID (visible in members list).

edge workspace members remove <member-id>