ReleasePilot is an assisted release orchestrator that executes yarn commands in an organized, deterministic, and controlled manner, based on variables provided by the operator (platform, contractor, environment, and command).
Its primary goal is to standardize and automate the build, packaging, and delivery process of white-label applications, while respecting the specific differences between contractors, environments, and platforms โ without sacrificing human control at critical steps.
ReleasePilot is intentionally designed to orchestrate commands, not to encapsulate low-level logic or highly specific operational flows. For this reason, granular commands, deep customizations, or platform-specific behaviors must live in dedicated build flows, which are then invoked by yarn.
The orchestratorโs responsibility is to order, coordinate, and operate these commands in a consistent, predictable, and auditable way. To enable this, the package.json must define script aliases that follow the ReleasePilot convention:
{platform}:{contractor}:{environment}:{command}
This allows yarn to act as the execution layer, while ReleasePilot acts as the orchestration layer.
ReleasePilot was created to solve a recurring problem in white-label ecosystems:
How can we execute multiple build commands in a consistent, predictable, and auditable way when each application varies by contractor, environment, and platform?
The answer is not blind automation โ it is conscious orchestration.
-
๐๏ธ Orchestration of
yarncommands based on operational variables -
๐ฑ Multi-platform support (
android,ios) -
๐ข Automatic discovery of contractors via directory structure
-
๐งช Automatic discovery of environments per contractor
-
โ๏ธ Supported commands:
add,build,deploy -
๐ โAllโ option available in every selection step
-
โธ๏ธ Assisted execution with human checkpoints between:
- Environments
- Contractors
-
๐ Execution planning identical to the real execution order
-
๐ฆ Final, traceable release summary
-
๐งฉ Simple, pythonic code with no external dependencies
ReleasePilot does not execute commands randomly.
It:
- Organizes
- Orders
- Operates
Each yarn command is executed within a well-defined context, ensuring that:
- Builds are not mixed across contractors
- Environments are strictly respected
- Artifacts can be safely retrieved between steps
- The operator has full visibility into what is being executed
project-root/
โโ contractor/
โ โโ quickup/
โ โ โโ sandbox/
โ โ โโ alfa/
โ โ โโ beta/
โ โโ kompa/
โ โโ sandbox/
โ โโ beta/
โ โโ prod/
The project name is automatically inferred from the root directory name.
ReleasePilot executes commands following this convention:
yarn {platform}:{contractor}:{environment}:{command}yarn android:quickup:beta:build- Python 3.9+
- Node.js + Yarn
- Git (optional, but recommended for traceability)
pip3 install release-pilotThe command will now be available globally as:
release-pilotrelease-pilotIf the interactive menu appears, the installation was successful โ
which release-pilot
pip listExpected output (example):
~/.local/bin/release-pilot
pip3 uninstall release-pilot- Do not use
sudo pip install - Do not use the system Python to install CLIs
- Do not manually copy binaries
- For Python CLI tools, pipx is always the correct choice
Python library โ
pip install
Before executing any command, ReleasePilot displays the complete execution plan, in the exact order in which commands will run.
This eliminates ambiguity and ensures full predictability.
At the end of execution, ReleasePilot presents a consolidated summary including:
- ๐ Project
- ๐ฆ Contractors
- ๐ฟ Git branch / version
- ๐งช Environments
- ๐ฑ Platforms
- โ๏ธ Total executed commands
This summary improves auditability, communication, and release traceability.
- White-label app builds
- Sandbox / alfa / beta / production environments
- Teams supporting multiple clients
- Sensitive or regulated releases
- Teams that require control + automation
--dry-runmode- Non-interactive execution (
--ci) - Summary export (
.txt/.md) - Commit hash and SemVer tag support
- Slack / Jira / Discord / Telegram integrations
- Persistent execution logs
MIT License.
Andrรฉ Argรดlo CTO โข Software Architect โข DevOps
- ๐ Website: https://argolo.dev
- ๐ GitHub: @argolo
Andrรฉ Argรดlo is a software architect and technology leader with extensive experience in designing and operating mission-critical systems. His work focuses on building scalable platforms, improving developer experience, and creating pragmatic tooling that balances automation with human control โ especially in regulated and high-responsibility environments.