Get up and running with Cortex 2.5.10 in less than 5 minutes.
Cortex can be installed globally with a single command:
curl -sSL https://raw.githubusercontent.com/Dopove/Cortex/main/install.sh | bashAlternatively, you can move the cortex binary manually to your PATH.
Cortex bundles contain your agent logic, dependencies, and model manifests.
# Build your agent directory
./cortex build path/to/your/agent-dir my-agent.cortexExecute your bundle. Cortex will automatically:
- Create an isolated virtual environment.
- Install any
requirements.txtfound in the bundle. - Start the agent(s) defined in the manifest.
./cortex run my-first-agent.cortexTo share bundles securely, add AES-256-GCM encryption.
# Set your password
export CORTEX_BUNDLE_PASSWORD="my-secure-password"
# Encrypt the bundle
./cortex encrypt my-first-agent.cortex
# Now, any run/info command will require the correct password in the environment
./cortex info my-first-agent.cortex- Explore the Usage Reference for all CLI subcommands.
- Review System Requirements for large-scale model deployments.