Licence
Apache-2.0
Version
0.1.1
Deps
4
Size
52 kB
Vulns
0
Weekly
0
@cheela/cli
CLI for initializing and deploying Cheela runtimes.
Install
npm install -D @cheela/cli @cheela/runtime @cheela/sdk
Requires Node.js 22+.
Quick start
npx cheela init
# Create a Runtime in the Cheela Dashboard, then:
echo 'CHEELA_API_KEY=ch_...' > .env
npx cheela deploy
Commands
| Command | Description |
|---|---|
cheela init |
Scaffold cheela.config.ts, .cheela/runtime.ts, and package deps |
cheela dev |
Validate config and print registered capabilities |
cheela deploy |
Authenticate with CHEELA_API_KEY and publish deployment metadata |
cheela status |
Show deployment and connection status |
Config
import { defineConfig } from "@cheela/cli";
export default defineConfig({
apiKey: process.env.CHEELA_API_KEY!,
provider: "openai",
model: "gpt-5.1",
});