CLI Commands
Reference for Aether CLI commands.
Global Options
aether [global-options] <command> ...--verbose, -v- Enable verbose logging--help, -h- Show help--version- Show version
Every subcommand that needs configuration takes the path to aether.yaml as its first positional argument. There is no --config flag and no implicit discovery of ./aether.yaml or ~/.config/aether/aether.yaml.
Pipeline Commands
aether pipeline start
Start a new pipeline job.
aether pipeline start <config> <crtdl> [input] [options]Arguments:
<config>- Path toaether.yaml(required, first positional)<crtdl>- CRTDL JSON file (required, second positional)[input]- Optional import-step input:- omitted: torch_import submits the CRTDL; local_import uses
--dir/config - local directory (local_import)
- HTTP(S) URL (http_import)
- TORCH result URL (torch_import; auto-detected from URL shape)
- omitted: torch_import submits the CRTDL; local_import uses
Options:
--no-progress- Disable progress indicators--dir PATH- Directory for local import (overrides config)--allow-http-crtdl- Acknowledge that HTTP data may not match the CRTDL query (required whenhttp_importis enabled)
Examples:
# TORCH extraction with CRTDL
aether pipeline start aether.yaml crtdl.json
# Direct TORCH URL (skip extraction, poll and download results)
aether pipeline start aether.yaml crtdl.json "https://torch.example.com/fhir/extraction/result-123"
# Local import with CRTDL for flattening (dir from flag)
aether pipeline start aether.yaml crtdl.json --dir /path/to/data
# Local import with CRTDL for flattening (dir as positional)
aether pipeline start aether.yaml crtdl.json /path/to/data
# HTTP download piped through flattening
aether pipeline start aether.yaml crtdl.json https://example.com/fhir/data.ndjson --allow-http-crtdl
# Disable progress bars
aether pipeline start aether.yaml crtdl.json --no-progressaether pipeline status
Check pipeline job status.
aether pipeline status <config> <job-id>Output:
- Job ID and status
- Current step
- Progress per step (files, bytes)
- Error messages if failed
Example:
aether pipeline status aether.yaml abc-123-defaether pipeline continue
Resume a paused or failed pipeline.
aether pipeline continue <config> <job-id>Use cases:
- Resume after terminal close
- Continue after fixing errors
- Resume from wait step after placing files in wait directory
Examples:
# Resume failed job
aether pipeline continue aether.yaml abc-123-def
# Resume from wait step (after placing files)
aether pipeline continue aether.yaml abc-123-defJob Commands
aether job list
List all pipeline jobs.
aether job list <config>Output columns:
- JOB ID - Full UUID
- STATUS - completed/in_progress/failed/pending
- STEP - Current step
- FILES - Total files processed
- AGE - Time since creation
Status symbols:
✓- Completed→- In progress✗- Failed○- Pending
Example:
aether job list aether.yamlaether job run
Execute a specific pipeline step manually.
aether job run <config> <job-id> --step <step-name>Options:
--step- Step to execute (required)
Valid steps: torch, local_import, http_import, dimp, validation
Examples:
# Run DIMP step manually
aether job run aether.yaml abc-123-def --step dimp
# Run import step manually
aether job run aether.yaml abc-123-def --step local_importOther Commands
aether completion
Generate shell completion scripts.
aether completion <shell>Shells: bash, zsh, fish, powershell
Examples:
# Generate bash completions
aether completion bash > /etc/bash_completion.d/aether
# Generate zsh completions
aether completion zsh > "${fpath[1]}/_aether"aether version
Show version information.
aether versionaether help
Show help information.
aether help [command]Examples:
aether help
aether help pipeline
aether help pipeline startConfiguration Loading
The path to aether.yaml is the first positional argument of every command that needs configuration; aether does not auto-discover it. CLI flags and AETHER_* environment variables still override individual values from the file.
Environment Variables
Configuration values support environment variable substitution:
services:
torch:
username: "${TORCH_USERNAME}"
password: "${TORCH_PASSWORD}"Next Steps
- Configuration Reference - All configuration options
- Pipeline Steps - Step details