Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.monolex.ai/llms.txt

Use this file to discover all available pages before exploring further.

Install OpenCLIs

Quick Install

curl -fsSL https://openclis.com/install.sh | sh
PATH is configured automatically. Open a new terminal and run:
openclis

What It Does

  1. Detects your OS and architecture
  2. Downloads the binary from cdn.openclis.com
  3. Verifies SHA-256 integrity
  4. Installs to ~/.openclis/bin/
  5. Adds to your shell PATH automatically
ShellWhere PATH is added
zsh~/.zshrc
bash~/.bash_profile or ~/.bashrc
fish~/.config/fish/conf.d/openclis.fish
Git Bash~/.bashrc
PowerShell / cmdWindows User Path registry
Re-running the installer is safe — PATH entries are never duplicated.

Supported Platforms

PlatformArchitectureInstaller
macOS ARM (M1–M4)aarch64install.sh
macOS Intelx86_64install.sh
Linux x64x86_64install.sh
Linux ARMaarch64install.sh
Windows x64x86_64install.ps1 or install.sh (Git Bash)

Install Tools

# Search for tools
openclis search "code search"

# Learn a tool before installing
openclis init niia

# Install
openclis install niia
openclis install @github/ripgrep
openclis install @github/fd

# List installed
openclis list

Install niia

openclis install niia
See NIIA → Install for details on companion tools and AI CLI integration.

Update

# Update all installed tools
openclis update
To update openclis itself, re-run the installer:
curl -fsSL https://openclis.com/install.sh | sh

Uninstall

rm -rf ~/.openclis
Then remove the PATH line from your shell profile:
ShellFile to edit
zsh~/.zshrc
bash~/.bash_profile or ~/.bashrc
fishDelete ~/.config/fish/conf.d/openclis.fish
Git Bash~/.bashrc
PowerShell[Environment]::SetEnvironmentVariable("Path", ($env:Path -replace [regex]::Escape("$HOME\.openclis\bin;"), ""), "User")

File Layout

~/.openclis/
├── bin/              # Binaries (on PATH)
│   ├── openclis
│   ├── niia
│   ├── rg
│   └── ...
├── versions/         # Installed versions
├── state.json        # Install receipts
└── initiate.md       # AI usage guide (auto-generated)

Troubleshooting

command not found after install

Open a new terminal. Or source manually:
source ~/.zshrc    # zsh
source ~/.bashrc   # bash / Git Bash

macOS: “openclis” is damaged

xattr -d com.apple.quarantine ~/.openclis/bin/openclis

Permission denied

chmod +x ~/.openclis/bin/openclis