From 55246bd8634ab30128c07647b37b2f961cb63959 Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Wed, 3 Sep 2025 15:39:06 -0400 Subject: [PATCH 1/3] Kernel SDK Installation Instructions Added instructions for installing Kernel SDK in a project. Locations determined by key entry points into docs. --- apps/develop.mdx | 14 +++++++++++++- browsers/create-a-browser.mdx | 6 ++++++ introduction.mdx | 6 ++++++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/apps/develop.mdx b/apps/develop.mdx index 5a2f5dd..836d843 100644 --- a/apps/develop.mdx +++ b/apps/develop.mdx @@ -19,7 +19,19 @@ An `Invocation` is a single execution of an action. Invocations can be triggered ## Getting started: create an app -First, install the Kernel SDK and create an app. +First, install the Kernel SDK for your language: + + +```bash TypeScript/JavaScript +npm install @onkernel/sdk +``` + +```bash Python +pip install kernel +``` + + +Then create an app: ```typescript Typescript/Javascript diff --git a/browsers/create-a-browser.mdx b/browsers/create-a-browser.mdx index 832e735..f05d252 100644 --- a/browsers/create-a-browser.mdx +++ b/browsers/create-a-browser.mdx @@ -9,6 +9,12 @@ Kernel browsers were designed to be lightweight, fast, and efficient for cloud-b ## 1. Create a Kernel browser + +First, install the Kernel SDK: +- JavaScript/TypeScript: `npm install @onkernel/sdk` +- Python: `pip install kernel` + + Use our SDK to create a browser: diff --git a/introduction.mdx b/introduction.mdx index 76ec542..ac114bf 100644 --- a/introduction.mdx +++ b/introduction.mdx @@ -7,6 +7,12 @@ Kernel is a developer platform that provides Crazy Fast Browser Infrastructure f ## kernel.browsers.create() + +To use the Kernel SDK, install it first: +- JavaScript/TypeScript: `npm install @onkernel/sdk` +- Python: `pip install kernel` + + If you are already familiar with browser vendors, you can immediately start using our browsers with `kernel.browsers.create()`. We return a CDP url that you can connect any Playwright or Puppeteer automation to. From d5ce757b95ebcb16bdc2bddd18b3e6a8085d7ecb Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Wed, 3 Sep 2025 18:09:03 -0400 Subject: [PATCH 2/3] Ordering Clean up Cleaned up the order of languages listed. --- browsers/create-a-browser.mdx | 2 +- introduction.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/browsers/create-a-browser.mdx b/browsers/create-a-browser.mdx index f05d252..a3e5ad3 100644 --- a/browsers/create-a-browser.mdx +++ b/browsers/create-a-browser.mdx @@ -11,7 +11,7 @@ Kernel browsers were designed to be lightweight, fast, and efficient for cloud-b First, install the Kernel SDK: -- JavaScript/TypeScript: `npm install @onkernel/sdk` +- TypeScript/JavaScript: `npm install @onkernel/sdk` - Python: `pip install kernel` diff --git a/introduction.mdx b/introduction.mdx index ac114bf..a8dfc3d 100644 --- a/introduction.mdx +++ b/introduction.mdx @@ -9,7 +9,7 @@ Kernel is a developer platform that provides Crazy Fast Browser Infrastructure f To use the Kernel SDK, install it first: -- JavaScript/TypeScript: `npm install @onkernel/sdk` +- TypeScript/JavaScript: `npm install @onkernel/sdk` - Python: `pip install kernel` From 0b60ccb413bf9e6691925a233f61996a9af1507b Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Wed, 3 Sep 2025 18:16:00 -0400 Subject: [PATCH 3/3] Update casing Updated casing so it matched existing standard + so auto-switching of all code snippets on a page in unison would work. --- apps/develop.mdx | 2 +- browsers/create-a-browser.mdx | 2 +- introduction.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/develop.mdx b/apps/develop.mdx index 836d843..c34e776 100644 --- a/apps/develop.mdx +++ b/apps/develop.mdx @@ -22,7 +22,7 @@ An `Invocation` is a single execution of an action. Invocations can be triggered First, install the Kernel SDK for your language: -```bash TypeScript/JavaScript +```bash Typescript/Javascript npm install @onkernel/sdk ``` diff --git a/browsers/create-a-browser.mdx b/browsers/create-a-browser.mdx index a3e5ad3..3ca7ae7 100644 --- a/browsers/create-a-browser.mdx +++ b/browsers/create-a-browser.mdx @@ -11,7 +11,7 @@ Kernel browsers were designed to be lightweight, fast, and efficient for cloud-b First, install the Kernel SDK: -- TypeScript/JavaScript: `npm install @onkernel/sdk` +- Typescript/Javascript: `npm install @onkernel/sdk` - Python: `pip install kernel` diff --git a/introduction.mdx b/introduction.mdx index a8dfc3d..e90446c 100644 --- a/introduction.mdx +++ b/introduction.mdx @@ -9,7 +9,7 @@ Kernel is a developer platform that provides Crazy Fast Browser Infrastructure f To use the Kernel SDK, install it first: -- TypeScript/JavaScript: `npm install @onkernel/sdk` +- Typescript/Javascript: `npm install @onkernel/sdk` - Python: `pip install kernel`