Build deployment and monitoring workflows on top of scoped API keys, typed project payloads, webhook events, and CLI-compatible conventions.
List projects and filter by organization-scoped access.
Issue revocable keys with read, deploy, billing, or admin scopes.
Handle deployment, invoice, alert, and rollback events.
Promote Docker and serverless artifacts with audit trails.
const projects = await atlasops.projects.list({
organization: "northstar-cloud",
status: "ACTIVE"
});
await atlasops.deployments.promote({
projectId: projects[0].id,
environment: "production"
});