今すぐ始める

管理と CI

workspace、team、member、credit、scoped automation token を管理します。


workspace と team

epismo workspace create --handle team
epismo workspace update <workspace-id> --handle new-name
epismo workspace checkout <workspace-id>
epismo workspace use acme
epismo -w acme workspace member list
epismo workspace member list
epismo workspace member upsert <user-id> --role admin
epismo workspace member delete <user-id>
 
epismo team list
epismo team create --name "Website" --description "Marketing and docs"
epismo team update <team-id> --name "Website launch"
epismo team member list --team-id <team-id>
epismo team member add <user-id> --team-id <team-id>
epismo team member delete <user-id> --team-id <team-id>

epismo workspace checkout <workspace-id> は hosted subscription checkout を開始します。現在の請求期間の終了時に解約が予約されている workspace では、2つ目の契約を作らず、既存のサブスクリプションを再開します。

workspace role は owner、admin、member です。workspace 参照は正確な ID または acme のような一意な handle です。1 command だけの指定には --workspace/-w、shell/job には EPISMO_WORKSPACE、保存済み default の変更には workspace use を使います。team は選択中 workspace 内の private 共有 principal です。member command は対応する bulk 形式も受け取ります。現在の正確な argument shape は --help で確認してください。

credit

epismo credit balance
epismo credit checkout --quantity 500

解決された execution context が、どの balance を読む・購入するかを決めます。大きな automation job の前に whoami と current workspace を確認してください。選択 context の残高不足時、credit-gated request は 402 を返すことがあります。

CI token

epismo token create --workspace-id <workspace-id>
EPISMO_TOKEN=<access-token> epismo whoami

token は secret manager で保管し、プレイブック Definition、案件 input、記録、repository、shell history へ入れないでください。workspace-scoped の EPISMO_TOKEN はその workspace への access を制限するため、競合する --workspace は使わないでください。個人 session へ影響せず rotate できるよう、automation 環境ごとに token を分けます。