A lightweight AI coding agent CLI for interactive code editing and development workflows.
Laboratory OS Installation Details
Environment
Environment Variables
Install & Run
#!/bin/bash set -e export PATH="/opt/conda/bin:/root/.local/bin:$PATH" # Create the directory if it doesn't exist mkdir -p "/workspace/pi-mono" # Change to the app directory cd "/workspace/pi-mono" # Environment setup complete echo "Environment setup complete!" npm install -g @mariozechner/pi-coding-agent mkdir -p "$APP_DIRECTORY"
CLI Command
# Pi if [ -n "$PI_BASE_URL" ]; then cat > $APP_DIRECTORY/models.json << MODELS_EOF { "providers": { "custom": { "api": "openai-completions", "baseUrl": "$PI_BASE_URL", "apiKey": "$PI_API_KEY", "models": [{ "id": "$PI_MODEL", "name": "Custom Model", "input": ["text"], "output": "text" }] } } } MODELS_EOF fi exec pi