Install and Verify
Purpose
Install the ae CLI and confirm it runs so every later workflow starts from a known-good binary.
This page is optimized for install success first, then immediate verification.
Prerequisites
- Terminal access
curl- Ability to write to
~/.local/bin(default install location)
macOS and Linux (recommended)
bash
curl -fsSL https://raw.githubusercontent.com/fluent-meaning-symbiotic/agentic_executables/main/install.sh | bashVerify install
bash
ae definitionExpected output:
- Successful command execution with AE definition metadata.
Install options
Pin version:
bash
AE_INSTALL_VERSION=v3.0.0 curl -fsSL https://raw.githubusercontent.com/fluent-meaning-symbiotic/agentic_executables/main/install.sh | bashDry run:
bash
AE_INSTALL_DRY_RUN=1 curl -fsSL https://raw.githubusercontent.com/fluent-meaning-symbiotic/agentic_executables/main/install.sh | bashCustom bin directory:
bash
AE_INSTALL_BIN_DIR="$HOME/bin" curl -fsSL https://raw.githubusercontent.com/fluent-meaning-symbiotic/agentic_executables/main/install.sh | bashCommon failure modes
Command not found after install
Cause:
BIN_DIRis not inPATH.
Recovery:
bash
export PATH="$HOME/.local/bin:$PATH"
ae definitionUnsupported target
Cause:
- Platform is not currently published (
darwin-arm64,darwin-x64,linux-x64only).
Recovery:
- Build from source using project README instructions.
Archive missing binary
Cause:
- Corrupt download or release packaging mismatch.
Recovery:
- Retry install, then inspect release artifacts and checksums.
Verify
ae definition completes successfully after install (see Verify install).
If it fails
Use the Common failure modes sections above, then Troubleshooting and the AE Error Code Playbook.
What to run next
ae doctorae instructions --context library --action bootstrap
For structured error recovery, see: