Self-service AWS CodePipeline platform — developers ship compliant CI/CD pipelines in minutes via dashboard, CLI, CDK, or AI prompt, while platform teams enforce policy-as-code guardrails, governance, and per-team isolation.
pipeline-manager is the command-line interface for Pipeline Builder. It does two jobs:
infra provision command.The CLI talks to the platform’s REST API for resource operations and drives AWS CDK / CloudFormation for deploys.
pipeline-manager is the command-line interface for Pipeline Builder, serving both operators who install the platform and developers who manage pipelines against a running one. It talks to the platform’s REST API for resource operations and drives AWS CDK / CloudFormation for deploys. This page covers installation, the infra provision installer, the full command reference, configuration precedence, and typical workflows.
Two flows, depending on the job:
Install the platform
npm install -g @pipeline-builder/pipeline-manager.infra provision --target <docker|minikube|ec2|eks> — prereq checks, plan, gated deploy, health verify, and post-install loads.infra provision --teardown.Build and ship a pipeline
auth login against your platform.infra bootstrap a CDK project, then pipeline synth.pipeline deploy to AWS (auto-registers the pipeline); check status, and run audit stacks / audit tokens on a schedule to catch drift.npm install -g @pipeline-builder/pipeline-manager
Requires Node.js 24.14.0+. The binary is exposed as pipeline-manager.
pipeline-manager --help # global help
pipeline-manager <command> --help # full flag reference for any command
pipeline-manager version # CLI version info
pipeline synth / pipeline deploy (and running cdk deploy directly) synthesize
the pipeline stack, which bundles the PluginLookup Lambda via CDK’s
NodejsFunction (esbuild). pipeline synth/deploy preflight this for you —
they check esbuild + pnpm are on PATH and fail fast with the fix below rather
than letting the build die deep in an opaque bundling error. (Bypass the check with
SKIP_BUNDLER_CHECK=1.) If esbuild isn’t on PATH, CDK silently falls back
to Docker bundling, which can’t resolve the handler’s axios / ../config
imports and fails with:
esbuild cannot run locally. Switching to Docker bundling
✘ [ERROR] Could not resolve "axios"
✘ [ERROR] Could not resolve "../config/handler-constants.js"
Install esbuild and pnpm (the handler’s lockfile is pnpm-lock.yaml, so CDK
uses pnpm to run esbuild) — plus the CDK CLI — globally, matching the versions the
CodeBuild bootstrap image bakes in:
npm install -g esbuild@0.28.1 pnpm@10.33.0 aws-cdk@2.1126.0
With esbuild on PATH, NodejsFunction bundles locally (no Docker) and the
Lambda resolves correctly. In CodeBuild this is handled for you — the bootstrap
image ships these tools (see
AWS deployment → CodeBuild bootstrap image).
# Authenticate against your Pipeline Builder platform
pipeline-manager auth login --url https://platform.example.com
# Bootstrap a new pipeline project in the current directory
pipeline-manager infra bootstrap
# Synthesize the CDK app into a CloudFormation template
pipeline-manager pipeline synth
# Deploy the pipeline to AWS (also registers it with the platform)
pipeline-manager pipeline deploy
infra provision)infra provision is the recommended way to stand up the platform (not a pipeline). It runs prerequisite checks, assembles the exact bin/setup.sh command (secrets masked, missing inputs reported — never guessed), shows the plan, and deploys it end-to-end, gated by confirmation prompts.
# Deploy local — show the plan, confirm, deploy, verify /health + /ready, init-platform:
pipeline-manager infra provision --target docker
# Inspect the plan as JSON, run nothing (the only non-executing mode):
pipeline-manager infra provision --target docker --json
# Deploy to EKS Auto Mode (add --yes for non-interactive CI):
pipeline-manager infra provision --target eks \
--domain pipeline.example.com --hosted-zone-id Z123 --ghcr-token ghp_xxx --email
# Tear it down (AWS targets prompt you to TYPE the cluster/target id to confirm):
pipeline-manager infra provision --target eks --teardown
# Bootstrap a fresh machine — sparse-clone only the deploy folders this target needs,
# then deploy + register the admin:
pipeline-manager infra provision --target docker --repo --yes \
--admin-email admin@acme.com --admin-password 's3cret'
# Add post-install loads (each also adds its folder to the sparse clone):
pipeline-manager infra provision --target docker --repo --with-all --with-smoke-test
infra provision handles--yes auto-accepts for CI), then verifying health and running init-platform. --json prints the plan and runs nothing. --teardown removes a deployment: local/minikube stop the stack; EC2 deletes its CloudFormation stack and EKS runs bin/shutdown.sh (cluster + EFS + ACM + Route 53), both irreversibly and require typing the stack/cluster id to confirm (--force skips it for CI).setup.sh exactly — local: Docker, Docker Compose, yq, openssl; minikube: Docker, minikube, kubectl, openssl (+ yq with --with-plugins); ec2: AWS CLI + working credentials; eks: AWS CLI + credentials, kubectl, openssl, envsubst (+ yq with --with-plugins). eksctl is auto-installed by setup.sh when not on PATH. Missing single-binary tools (yq, kubectl, minikube) are offered as an on-demand fetch into ~/.pipeline-manager/tools and put on PATH — no brew/apt, no system change. For local/minikube it also creates the target’s .env from .env.example, generating the CHANGE_ME secrets.--skip-ses-identity. Gated and bounded by --retries (the scripts are idempotent, so a re-run resumes).ANTHROPIC_API_KEY (or AI_PROVIDER + its key) to parse a natural-language --prompt and add free-form failure diagnosis; without a key it falls back to the deterministic issue matcher.--repo). Without a checkout, --repo git-clones the platform repo first, then runs from it. The clone is sparse + partial (--filter=blob:none + cone sparse-checkout, git ≥ 2.27 — else a full-clone fallback): it materializes only the deploy folders the selected target + options need. Re-syncs are additive — a single --workdir can accumulate multiple targets. Override with --repo <url>, --ref <branch|tag>, --workdir <dir>.deploy/bin/provision-docker.sh runs infra provision inside a throwaway node:24-slim container, installing only the tools the chosen target needs. Args pass straight through. (On macOS the container can’t drive Docker Desktop’s CLI, so run local on the host instead — the wrapper shines for the AWS targets.)infra provision registers the admin (non-interactive with --admin-email/--admin-password) and runs opt-in loads — passed as flags or offered interactively after the clone when none are given: --with-plugins (adds deploy/plugins + deploy/codebuild), --with-compliance, --with-samples, --with-all, --with-smoke-test, --with-events (AWS event ingestion: infra store-token writes a platform JWT to Secrets Manager, then infra setup-events deploys the EventBridge → SQS → Lambda), and repeatable --post-step "<cmd>". Default is register-only; --init skip skips even that. All steps are idempotent.The underlying bin/setup.sh / bin/shutdown.sh scripts (and aws cloudformation delete-stack for ec2) remain the source of truth and can always be run directly. Full guide: AWS deployment → AI-assisted install.
Run pipeline-manager <command> --help for the full flag reference on any command.
| Command | Purpose |
|---|---|
infra provision |
Install (or tear down) the platform on local/Minikube/EC2/EKS: prereq checks + assembles the exact bin/setup.sh command, then deploys it (gated by confirmation; --yes for CI, --json to print the plan and run nothing), verifying health + running post-install steps. --repo bootstraps a fresh machine via a sparse clone; --with-*/--post-step add post-install steps; --teardown removes it. On failure it diagnoses + auto-fixes/retries known issues. |
| Command | Purpose |
|---|---|
infra bootstrap |
Scaffold a new pipeline project with cdk.json and starter config |
pipeline synth |
Run CDK synth to emit the CloudFormation template for the pipeline |
pipeline deploy |
Deploy the synthesized pipeline stack to AWS (also registers the pipeline with the platform by its pipelineId) |
pipeline register |
Re-register a deployed pipeline and drain pending intents queued by prior failed deploys (recovery path; exits non-zero if any registration still fails) |
status |
Report the current deployment and execution status |
| Command | Purpose |
|---|---|
pipeline create |
Register a new pipeline definition with the platform |
pipeline list / pipeline get |
Inspect pipelines registered to your organization |
plugin list / plugin get |
Browse the plugin catalog and fetch a single plugin spec |
plugin new |
Scaffold a local plugin directory (config.yaml, plugin-spec.yaml, starter Dockerfile) ready to edit and upload |
plugin upload |
Publish a custom plugin spec + Dockerfile to the platform |
plugin validate |
Validate a local plugin directory (spec + config + `` templates) before upload — exits non-zero on any problem (CI-friendly) |
template validate |
Parse and validate `` templates in a pipeline or plugin spec (local file, registered pipeline by ID, or registered plugin by name:version) |
org export |
Export an organization’s data as JSON for GDPR portability (sysadmins can export any org; org admins their own only) |
| Command | Purpose |
|---|---|
auth login |
Authenticate against the platform and persist the access token (supports --refresh <token> and --org <orgId> to switch organizations) |
infra store-token |
Generate a long-lived JWT and store it in AWS Secrets Manager (used by the events Lambda and CodePipeline synth steps). Add --schedule to also deploy a daily auto-renewal stack so the token never lapses |
infra setup-events |
Deploy the EventBridge → SQS → Lambda stack that streams CodePipeline events into the platform’s reporting service. Add --with-dora to also resolve source commit timestamps in-account for measured commit→deploy lead time — off by default (why: it adds an SCM call + a github-token-secret read per deploy event, so only worthwhile for orgs on the advanced_reporting add-on; the other DORA metrics work without it and lead time simply reports unknown). Re-run to toggle. |
infra redrive-events |
Manual fallback for the events Lambda’s self-healing redrive: move dead-lettered CodePipeline events from pipeline-builder-events-dlq back onto the ingestion queue via SQS StartMessageMoveTask. Skips the move when the DLQ is empty or a move task is already running; idempotent ingest prevents double-counting |
These commands report drift and exit non-zero when findings exist — designed to run on a schedule.
| Command | Purpose | Exit codes |
|---|---|---|
audit stacks |
Diff CloudFormation stacks tagged pipeline-builder against the platform’s pipeline_registry. Surfaces orphaned stacks (no DB row) and missing stacks (DB row, no live stack). See drift detection. |
0 clean / 1 findings / 2 AWS error |
audit tokens |
Scan platform tokens in AWS Secrets Manager and flag any expiring within --warn-days (default 7). Run before tokens lapse to avoid silent reporting outages. |
0 clean / 1 at-risk / 2 AWS error |
| Command | Purpose |
|---|---|
completions |
Print a shell completion script for bash, zsh, or fish. Source it from your shell profile, e.g. eval "$(pipeline-manager completions bash)" in ~/.bashrc (derived from the live command list, so they never drift) |
version |
Print CLI version info |
Every command exits 0 on success. On failure the process exits with a standard code
derived from the error type (not the command), so scripts and CI can branch on the
class of failure consistently. The code is resolved centrally in handleError from the
actual error — typed CLI error → HTTP status → Node system-error code → a
command-specific fallback for anything unclassifiable.
| Code | Name | When |
|---|---|---|
0 |
success | Command completed. |
1 |
GENERAL | Unclassified failure (default fallback for non-API commands). |
2 |
VALIDATION | Bad input — missing/invalid flags, malformed props file, HTTP 400/422. |
3 |
API_REQUEST | Platform API request failed (server 5xx, or the fallback for API commands). |
4 |
AUTHENTICATION | Not authenticated — HTTP 401 (e.g. expired/missing token). |
5 |
AUTHORIZATION | Authenticated but not permitted — HTTP 403. |
6 |
NOT_FOUND | Resource missing — HTTP 404 (e.g. unknown pipeline id). |
7 |
NETWORK | Request never reached the server — DNS/refused/reset, or no HTTP response. |
8 |
CONFIGURATION | Invalid/missing CLI configuration. |
9 |
FILE_SYSTEM | Local file error — ENOENT/EACCES/… (e.g. unreadable props file). |
10 |
TIMEOUT | Timed out — HTTP 408/504, or ETIMEDOUT. |
Codes are defined in src/types/error.ts; the derivation lives in src/utils/error-handler.ts
(resolveExitCode). The operator-audit commands additionally use exit 1 to signal
“findings present” (see Operator audits).
The CLI resolves its settings from three layers, lowest to highest precedence:
~/.pipeline-manager/config.ymlCLI_CONFIG_PATH, else ./config.ymlEnvironment variables override the resolved config. auth login persists your access token to the user config so subsequent commands authenticate automatically.
| Variable | Required | Purpose |
|---|---|---|
PLATFORM_TOKEN |
Yes (for API ops) | Auth token for the Pipeline Builder platform |
PLATFORM_BASE_URL |
Yes (for API ops) | Base URL of your platform deployment |
AWS_REGION |
Yes (for deploy) | Target AWS region for pipeline synth / pipeline deploy / infra provision teardown |
CLI_CONFIG_PATH |
No | Override the project config file path (default ./config.yml) |
UPLOAD_TIMEOUT |
No | Override the plugin-upload request timeout (ms) |
SKIP_BUNDLER_CHECK |
No | Set to 1 to skip the esbuild + pnpm preflight before pipeline synth/deploy (see local deploy prerequisites) |
TLS_REJECT_UNAUTHORIZED |
No | Set to 0 to skip TLS verification (ignored in NODE_ENV=production) |
ANTHROPIC_API_KEY (or other provider key) |
No | Enables infra provision’s natural-language --prompt parsing + failure diagnosis |
AI_PROVIDER / AI_MODEL |
No | Provider + model for infra provision (anthropic | openai | google | xai | bedrock) |
Full reference: Environment Variables.
pipeline-manager infra provision --target eks --repo \
--domain pipeline.example.com --hosted-zone-id Z123 --ghcr-token ghp_xxx \
--email --admin-email admin@acme.com --admin-password 's3cret' \
--with-all --with-events --yes
pipeline-manager auth login --url https://platform.example.com
pipeline-manager infra bootstrap
pipeline-manager pipeline synth
pipeline-manager pipeline deploy
pipeline-manager status
# Non-zero exit on findings makes these CI/cron friendly
pipeline-manager audit stacks || alert "stack drift detected"
pipeline-manager audit tokens --warn-days 14 || alert "tokens expiring soon"
PipelineBuilder construct used by bootstrapped projectstemplate validate