/** * `setup/` — environment-setup orchestration domain. * * The environment lifecycle layer: init/onboard an environment profile, * mint and store credentials, provision org/CM clients, and bootstrap a * fresh tenant. It composes the `deploy`, `recipe`, and `brand` product * surfaces (allowed peer-area edges) — which is precisely why it lives in * its own area rather than inside `serialization/`, whose product surface * must not depend on those. * * SDK barrel: re-exports the public task entry points that `commands/`, * `cli.ts`, and `mcp/` drive. */ export { runInit, resolveSiteIdentity, matchSiteCollection } from "./init/index.js"; export { runEnvironmentOnboard } from "./onboard.js"; export { runDeployToken } from "./deploy-token.js"; export { runStatus } from "./status.js"; export { runLogout } from "./logout.js"; export { runBootstrap, isHeadAppRepo } from "./bootstrap.js"; export { runSetupEnv } from "./setup-env.js"; export { runSetupOrgClient } from "./setup-org-client.js"; export { runSetupClients } from "./setup-clients.js";