clie install
Install the EAC extension by pulling its Docker image.
When no extension name is provided, installs all configured extensions.
Syntax
Description
The install command manages extension installation.
It pulls Docker images from the container registry and registers them for use.
Without extension name:
- Reads
.clie/clie.ymlfor configured extensions - Pulls Docker images for all extensions
- Makes extension commands available
With extension name:
- Adds the extension to
.clie/clie.yml - Pulls the extension's Docker image
- Registers the extension for use via
clie <extension>command
Flags
| Flag | Description |
|---|---|
--load-local |
Use local development images instead of pulling from registry |
-h, --help |
Display help information |
Examples
Install EAC Extension
What happens:
- Adds eac to
.clie/clie.yml:
- Pulls
ghcr.io/ready-to-release/eac-ext:latestDocker image - Makes
clie eaccommands available
Install All Configured Extensions
After cloning a repository with existing CLIE configuration:
Three-Step Setup
# 1. Initialize CLIE configuration
clie init
# 2. Install EAC extension
clie install eac
# 3. Configure EAC
clie eac init --ai-provider claude-api
Local Development
Install using a local Docker image (for extension developers):
Configuration Changes
Before Install
.clie/clie.yml:
After clie install eac
.clie/clie.yml:
extensions:
- name: 'eac'
image: 'ghcr.io/ready-to-release/eac-ext:latest'
description: 'Everything-as-Code automation'
Next Steps
After installing the extension:
- Configure the extension:
- Verify installation:
- Start using commands:
See Also
- CLIE CLI Overview - Command overview and architecture
- init command - Initialize configuration before install
- list command - Browse available extensions
- cleanup command - Remove old images to free space
- Configuration Reference - Detailed configuration options
- Quick Start Tutorial - Complete setup guide
Tutorials | How-to Guides | Explanation | Reference
You are here: Reference — information-oriented technical descriptions of the system.