Projects

Manage project containers and project members from the CLI.


Projects are private sharing containers inside a workspace. They are useful when a team or workstream should share packs and tracks without making them public.

Manage projects

epismo project list
epismo project create --name "Website" --description "Docs and marketing site"
epismo project update <project-id> --name "Website docs"
epismo project delete <project-id>

Projects exist only in workspace context. Use project IDs in pack and track scopes when private data should be visible to a team.

Project name is required. description is Markdown content. Update commands use PATCH semantics, so omitted fields stay unchanged.

Project members

epismo project member list --project-ids <project-id>
epismo project member add <user-id> --project-id <project-id>
epismo project member delete <user-id> --project-id <project-id>

Project membership should match the users who need access to project-scoped packs and tracks.