diff --git a/README.md b/README.md index 2f50bb7..f2da257 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ Kernel provides sandboxed, ready-to-use Chrome browsers for browser automations ### What you can do with the CLI +- Create new Kernel applications from templates - Deploy and version apps to Kernel - Invoke app actions (sync or async) and stream logs - Create, list, view, and delete managed browser sessions @@ -50,19 +51,25 @@ kernel --version ## Quick Start -1. **Authenticate with Kernel:** +1. **Create a new Kernel app:** + + ```bash + kernel create + ``` + +2. **Authenticate with Kernel:** ```bash kernel login ``` -2. **Deploy your first app:** +3. **Deploy your app:** ```bash kernel deploy index.ts ``` -3. **Invoke your app:** +4. **Invoke your app:** ```bash kernel invoke my-app action-name --payload '{"key": "value"}' ``` @@ -103,6 +110,20 @@ Create an API key from the [Kernel dashboard](https://dashboard.onkernel.com). - `kernel logout` - Clear stored credentials - `kernel auth` - Check authentication status +### App Creation + +- `--name `, `-n` - Name of the application +- `--language `, `-l` - Sepecify app language: `typescript`, or `python` +- `--template