Documentation Index
Fetch the complete documentation index at: https://docs.amika.dev/llms.txt
Use this file to discover all available pages before exploring further.
CLI
The Amika CLI is a single binary that runs on macOS and Linux.
Quick install
curl -fsSL https://raw.githubusercontent.com/gofixpoint/amika/main/install.sh | sh
This downloads the latest release, verifies its SHA-256 checksum, and installs it to /usr/local/bin.
Verify the installation
Options
Install a specific version
curl -fsSL https://raw.githubusercontent.com/gofixpoint/amika/main/install.sh | sh -s -- --install-version 0.5.0
Custom install directory
Set AMIKA_INSTALL_DIR to install somewhere other than /usr/local/bin:
curl -fsSL https://raw.githubusercontent.com/gofixpoint/amika/main/install.sh | AMIKA_INSTALL_DIR=~/.local/bin sh
Make sure the directory is on your PATH.
Dry run
Preview what the installer would do without downloading or installing anything:
curl -fsSL https://raw.githubusercontent.com/gofixpoint/amika/main/install.sh | sh -s -- --dry-run
| OS | Architecture |
|---|
| Linux | x86_64, arm64 |
| macOS | x86_64 (Intel), arm64 (Apple Silicon) |
Build from source
git clone https://github.com/gofixpoint/amika.git && cd amika
make build-cli
# Binary is at dist/amika
SDKs
The TypeScript SDK is available now:
See the TypeScript quickstart to get started.
SDKs for more languages are on the way — in the meantime you can use the
CLI or the HTTP API directly.