New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@onkernel/create-kernel-app

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@onkernel/create-kernel-app

Create Kernel sample applications

latest
Source
npmnpm
Version
0.1.40
Version published
Maintainers
2
Created
Source

create-kernel-app

GitHub License Discord Follow @juecd__ Follow @rfgarcia

A CLI tool to create the scaffolding for a new Kernel applications. This tool helps you get started with building browser automation applications using Kernel's platform.

Features

  • 🚀 Quick project scaffolding for Kernel applications
  • 🔄 Support for multiple programming languages:
    • TypeScript
    • Python
  • 📦 Multiple template options:
    • Sample App: A basic template that extracts page titles using Playwright
    • Browser Use: A template implementing the Browser Use SDK
    • Stagehand: A template implementing the Stagehand SDK
  • ⚡️ Automatic dependency setup
  • 🫶 Interactive CLI

Set-Up

npx @onkernel/create-kernel-app

Usage

Create a new Kernel application by running:

create-kernel-app [app-name] [options]

Options

  • -l, --language <language>: Choose your programming language
    • TypeScript: typescript or ts
    • Python: python or py
  • -t, --template <template>: Select a template
    • sample-app: Basic template with Playwright integration
    • browser-use: Template with Browser Use SDK (Python only)
    • stagehand: Template with Stagehand SDK (Typescript only)
    • advanced-sample: Implements sample apps using advanced Kernel configs
    • computer-use: Implements a prompt loop using Anthropic Computer Use
    • cua: Implements a Computer Use Agent (OpenAI CUA) sample

Examples

Create a TypeScript application with a sample app:

npx @onkernel/create-kernel-app my-app --language typescript --template sample-app

Create a Typescript application with Stagehand template:

npx @onkernel/create-kernel-app my-app --language typescript --template stagehand

Create a Typescript application with Computer Use template:

npx @onkernel/create-kernel-app my-app --language typescript --template computer-use

Create a Python application with a sample app:

npx @onkernel/create-kernel-app my-app --language python --template sample-app

Create a Python application with Browser Use template:

npx @onkernel/create-kernel-app my-app --language python --template browser-use

## Next Steps

After creating your application:

1. Navigate to your project directory:
```bash
cd my-app
  • Set up your environment:
  • For TypeScript: npm install
  • For Python: uv venv && source .venv/bin/activate && uv sync
  • Set your Kernel API key:
kernel login  # or: export KERNEL_API_KEY=<YOUR_API_KEY>
  • Deploy your application:
# Typscript
kernel deploy index.ts  # --env OPENAI_API_KEY=XXX if Stagehand; --env ANTHROPIC_API_KEY=XXX if Computer Use

# Python
kernel deploy main.py   # --env OPENAI_API_KEY=XXX if Browser Use

If deploying an app that requires environment variables, make sure to set them when you deploy.

  • Invoke your application:
# Typescript + Sample App
kernel invoke ts-basic get-page-title --payload '{"url": "https://www.google.com"}'

# Typescript + Stagehand
kernel invoke ts-stagehand stagehand-task --payload '{"query": "Best wired earbuds"}'

# Typescript + Computer Use
kernel invoke ts-cu cu-task --payload '{"query": "Search for the top 3 restaurants in NYC according to Pete Wells"}'

# Python + Sample App
kernel invoke python-basic get-page-title --payload '{"url": "https://www.google.com"}'

# Python + Browser Use
kernel invoke python-bu bu-task --payload '{"task": "Compare the price of gpt-4o and DeepSeek-V3"}'

# Typescript + CUA Sample
kernel invoke ts-cua cua-task --payload '{"task": "Go to https://news.ycombinator.com and get the top 5 articles"}'

# Python + CUA Sample
kernel invoke python-cua cua-task --payload '{"task": "Get current market price range for an unboxed Dreamcast"}'

Sample apps reference

These are the sample apps currently available when you run npx @onkernel/create-kernel-app:

TemplateDescriptionFrameworkQuery Parameters
sample-appReturns the page title of a specified URLPlaywright{ url }
browser-useCompletes a specified taskBrowser Use{ task }
stagehandReturns the first result of a specified Google searchStagehand{ query }
advanced-sampleImplements sample apps using advanced Kernel configsn/a
computer-useImplements a prompt loopAnthropic Computer Use API{ query }
cuaImplements the OpenAI Computer Using Agent (CUA)OpenAI CUA{ task }

Documentation

For more information about Kernel and its features, visit:

Contributing

Contributions are welcome! Please feel free to submit a pull request. See Contributing and Code of Conduct

License

MIT © Kernel

Keywords

kernel

FAQs

Package last updated on 05 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts