Command-line tool for the Developer Platform - deploy applications with CI/CD pipelines.
curl -sSL https://raw.githubusercontent.com/ChronoAIProject/chrono-cli/main/install.sh | sh# macOS (Apple Silicon)
curl -sSL -o chrono https://github.com/ChronoAIProject/chrono-cli/releases/latest/download/chrono-darwin-arm64
chmod +x chrono && sudo mv chrono /usr/local/bin/
# macOS (Intel)
curl -sSL -o chrono https://github.com/ChronoAIProject/chrono-cli/releases/latest/download/chrono-darwin-amd64
chmod +x chrono && sudo mv chrono /usr/local/bin/
# Linux (x64)
curl -sSL -o chrono https://github.com/ChronoAIProject/chrono-cli/releases/latest/download/chrono-linux-amd64
chmod +x chrono && sudo mv chrono /usr/local/bin/
# Linux (ARM64)
curl -sSL -o chrono https://github.com/ChronoAIProject/chrono-cli/releases/latest/download/chrono-linux-arm64
chmod +x chrono && sudo mv chrono /usr/local/bin/All releases: https://github.com/ChronoAIProject/chrono-cli/releases
- Go 1.22 or later
# Clone the repository
git clone https://github.com/ChronoAIProject/chrono-cli.git
cd chrono-cli
# Build
make build
# Or build directly
go build -o chrono .# Install to ~/go/bin
make install-local
# Install system-wide (requires sudo)
make install# Unit tests
make test
# Integration tests
make test-integrationmake releaseThis builds binaries for all platforms (darwin/linux/amd64/arm64).
# Initialize project (copies skills to .chrono/skills/)
chrono init
# Login to the platform
chrono login
# Detect project type
chrono detect
# Show version
chrono version
# Show help
chrono --helpAI agent skills for deployment automation. These are used by Cursor and other AI coding assistants.
| Skill | Description |
|---|---|
| deploy.md | Deploy current project to the platform |
| restart.md | Rolling restart backend deployment |
| check-setup.md | Verify project structure before deployment |
| agents.md | Instructions for AI agents |
When you run chrono init in your project, the skills are copied to .chrono/skills/. AI agents read these files to understand how to help you deploy.
Simply ask Cursor to deploy, restart, or check your project setup:
- "Deploy this project"
- "Restart the backend"
- "Check if my project is ready for deployment"
The AI will read the relevant skill and follow the steps.
MIT