deploy-bloom

Automate Bloom OTA deployments with QA gates and rollback.

37|12|Updated Feb 24, 2026
One-click install
npx skills add https://github.com/exiao/skills --skill deploy-bloom
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-bloom
Source: https://github.com/exiao/skills/tree/main/deploy-bloom
Command: npx skills add https://github.com/exiao/skills --skill deploy-bloom

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires bun, modal, make, and includes scripts (resource) components.

What problem does it solve?

This Skill automates the process of deploying Over-The-Air (OTA) updates for the Bloom application, ensuring a safe and controlled release process.

Core Features & Use Cases

  • Automated Deployment Pipeline: Orchestrates a multi-step deployment process including linting, testing, building, and deploying the application bundle.
  • Version Management: Handles version bumping (patch, minor, major) and updates version information in the codebase.
  • Safety Guardrails: Includes pre-deployment QA gates, confirmation prompts, and an automatic rollback mechanism in case of deployment failure.
  • Use Case: When a new version of the Bloom frontend is ready, use this skill to push it live to users, ensuring all quality checks are passed and providing a rollback option if issues arise.

Quick Start

Run the deploy-bloom script with the desired version bump flag, like --patch, to deploy a patch update.

Frequently Asked Questions about deploy-bloom

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate OTA updates for my frontend application?

Automating OTA updates requires a deployment pipeline that orchestrates linting, testing, building, and deploying the application bundle. This ensures safe releases through pre-deployment checks and post-deployment health monitoring.

How do I safely deploy a patch update to production?

To safely deploy a patch update, execute the deployment script with a patch flag to trigger the pipeline. The system runs comprehensive QA gates, prompts for confirmation, and provides an automatic rollback mechanism if deployment fails.

Do I need Modal and Bun to deploy Bloom OTA updates?

Yes, deploying Bloom OTA updates requires Bun, Modal, and Make as dependencies. These tools facilitate the automated deployment pipeline, bundle creation, and serverless execution required for the release process.

What happens if a deployment fails during the release process?

If a deployment fails during the release process, an automatic rollback mechanism is triggered to revert the changes. The pipeline also performs post-deployment health monitoring to detect issues immediately after the update.

How does version management work when deploying OTA updates?

Version management works by handling version bumping for patch, minor, or major releases and updating the version information directly in the codebase. This ensures the deployed bundle has the correct version metadata before release.