From 333d55e35e6c5608f38524a6d3f2efd4d0714807 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:47:09 +0000 Subject: [PATCH 01/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 41 +++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 8f4e4bb..ff44d92 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -81,8 +81,14 @@ kernel invoke ts-basic get-page-title --payload '{"url": "https://www.google.com # Stagehand kernel invoke ts-stagehand stagehand-task --payload '{"query": "Best wired earbuds"}' -# Computer Use -kernel invoke ts-cu cu-task --payload '{"query": "Search for the top 3 restaurants in NYC according to Pete Wells"}' +# Anthropic Computer Use +kernel invoke ts-anthropic-cua cua-task --payload '{"query": "Search for the top 3 restaurants in NYC according to Pete Wells"}' + +# OpenAI Computer Use +kernel invoke ts-openai-cua cua-task --payload '{"task": "Go to https://news.ycombinator.com and get the top 5 articles"}' + +# Gemini Computer Use +kernel invoke ts-gemini-cua gemini-cua-task ``` ```bash Python @@ -92,8 +98,14 @@ kernel invoke python-basic get-page-title --payload '{"url": "https://www.google # Browser Use kernel invoke python-bu bu-task --payload '{"task": "Compare the price of gpt-4o and DeepSeek-V3"}' -# Computer Use -kernel invoke python-cu cu-task --payload '{"query": "Search for the top 3 restaurants in NYC according to Pete Wells"}' +# Anthropic Computer Use +kernel invoke python-anthropic-cua cua-task --payload '{"query": "Search for the top 3 restaurants in NYC according to Pete Wells"}' + +# OpenAI Computer Use +kernel invoke python-openai-cua cua-task --payload '{"task": "Go to https://news.ycombinator.com and get the top 5 articles"}' + +# OpenAGI Computer Use +kernel invoke python-openagi-cua openagi-default-task -p '{"instruction": "Navigate to https://agiopen.org and click the What is Computer Use? button"}' ``` @@ -111,13 +123,14 @@ You can now update your browser automation with your own logic and deploy it aga These are the sample apps currently available when you run `kernel create`: -| Template | Description | Framework | Params | -|------------------------|-----------------------------------------------------------|----------------------------|------------------| -| **sample-app** | Returns the page title of a specified URL | Playwright | `{ url }` | -| **browser-use** | Completes a specified task | Browser Use | `{ task }` | -| **stagehand** | Returns the first result of a specified Google search | Stagehand | `{ query }` | -| **advanced-sample** | Implements sample apps using advanced Kernel configs | Playwright | n/a | -| **computer-use** | Implements an Anthropic Computer Use prompt loop | Anthropic Computer Use API | `{ query }` | -| **cua** | Implements an OpenAI CUA prompt loop | OpenAI CUA API | `{ task }` | -| **gemini-cua** | Implements a Gemini Computer Use prompt loop | Gemini Computer Use API | `{ task }` | -| **magnitude** | Implements the Magnitude.run SDK | Magnitude.run | n/a | +| Template | Description | Framework | Params | +|-------------------------------|-----------------------------------------------------------|----------------------------|------------------| +| **sample-app** | Returns the page title of a specified URL | Playwright | `{ url }` | +| **browser-use** | Completes a specified task | Browser Use | `{ task }` | +| **stagehand** | Returns the first result of a specified Google search | Stagehand | `{ query }` | +| **advanced-sample** | Implements sample apps using advanced Kernel configs | Playwright | n/a | +| **anthropic-computer-use** | Implements an Anthropic Computer Use prompt loop | Anthropic Computer Use API | `{ query }` | +| **openai-computer-use** | Implements an OpenAI Computer Use Agent prompt loop | OpenAI CUA API | `{ task }` | +| **gemini-computer-use** | Implements a Gemini Computer Use prompt loop | Gemini Computer Use API | `{ task }` | +| **openagi-computer-use** | Implements an OpenAGI Lux computer-use agent | OpenAGI Lux API | `{ instruction }`| +| **magnitude** | Implements the Magnitude.run SDK | Magnitude.run | n/a | From 68deca0fc16d54e6f0394b0118940493edcbc251 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:47:28 +0000 Subject: [PATCH 02/15] Update integrations/overview.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- integrations/overview.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integrations/overview.mdx b/integrations/overview.mdx index a5d062e..e6a9086 100644 --- a/integrations/overview.mdx +++ b/integrations/overview.mdx @@ -21,6 +21,8 @@ Kernel provides detailed guides for popular agent frameworks: - **[Stagehand](/integrations/stagehand)** - AI browser automation with natural language - **[Computer Use (Anthropic)](/integrations/computer-use/anthropic)** - Claude's computer use capability - **[Computer Use (OpenAI)](/integrations/computer-use/openai)** - OpenAI's computer use capability +- **[Computer Use (Gemini)](/integrations/computer-use/gemini)** - Gemini's computer use capability +- **[Computer Use (OpenAGI)](/integrations/computer-use/openagi)** - OpenAGI Lux computer-use models - **[Laminar](/integrations/laminar)** - Observability and tracing for AI browser automations - **[Magnitude](/integrations/magnitude)** - Vision-focused browser automation framework - **[Notte](/integrations/notte)** - AI agent framework for browser automation From a4d8d4ddb4c65c9500658cdf235cf04ae581099f Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:47:49 +0000 Subject: [PATCH 03/15] Update integrations/computer-use/openagi.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- integrations/computer-use/openagi.mdx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/integrations/computer-use/openagi.mdx b/integrations/computer-use/openagi.mdx index 331925a..0c1a790 100644 --- a/integrations/computer-use/openagi.mdx +++ b/integrations/computer-use/openagi.mdx @@ -17,7 +17,21 @@ For more information about Lux's capabilities, visit the [OpenAGI Lux Documentat ## Quick setup with Computer Use -Get started with OpenAGI and Kernel by cloning our pre-configured integration repo: +### Option 1: Use the Kernel CLI template + +The fastest way to get started is using the Kernel CLI's built-in OpenAGI template: + +```bash +kernel create --template openagi-computer-use --language python +cd +kernel deploy main.py --env-file .env +``` + +This creates a pre-configured OpenAGI app with both `AsyncDefaultAgent` and `TaskerAgent` implementations ready to deploy. + +### Option 2: Clone the integration repo + +Alternatively, you can clone our pre-configured integration repo: ```bash git clone https://github.com/onkernel/kernel-oagi.git From bdc54f541323dddbddf8882369e7bc3376b03582 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:50:20 +0000 Subject: [PATCH 04/15] Update integrations/computer-use/openagi.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- integrations/computer-use/openagi.mdx | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/integrations/computer-use/openagi.mdx b/integrations/computer-use/openagi.mdx index 0c1a790..5e05152 100644 --- a/integrations/computer-use/openagi.mdx +++ b/integrations/computer-use/openagi.mdx @@ -17,8 +17,6 @@ For more information about Lux's capabilities, visit the [OpenAGI Lux Documentat ## Quick setup with Computer Use -### Option 1: Use the Kernel CLI template - The fastest way to get started is using the Kernel CLI's built-in OpenAGI template: ```bash @@ -29,18 +27,6 @@ kernel deploy main.py --env-file .env This creates a pre-configured OpenAGI app with both `AsyncDefaultAgent` and `TaskerAgent` implementations ready to deploy. -### Option 2: Clone the integration repo - -Alternatively, you can clone our pre-configured integration repo: - -```bash -git clone https://github.com/onkernel/kernel-oagi.git -``` - -You can also browse the open-source repo directly at [github.com/onkernel/kernel-oagi](https://github.com/onkernel/kernel-oagi). - -Follow the [App Platform docs](/apps/develop) to turn this into a Kernel App, deploy it, and run your Computer Use automation on Kernel's infrastructure. - ## Benefits of using Kernel with OpenAGI - **No local browser management**: Run OpenAGI automations without installing or maintaining browsers locally From 60153ad95e90b9d89ee48384b409849f7b0cb66f Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:51:53 +0000 Subject: [PATCH 05/15] Update integrations/overview.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- integrations/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/overview.mdx b/integrations/overview.mdx index e6a9086..398a349 100644 --- a/integrations/overview.mdx +++ b/integrations/overview.mdx @@ -22,7 +22,7 @@ Kernel provides detailed guides for popular agent frameworks: - **[Computer Use (Anthropic)](/integrations/computer-use/anthropic)** - Claude's computer use capability - **[Computer Use (OpenAI)](/integrations/computer-use/openai)** - OpenAI's computer use capability - **[Computer Use (Gemini)](/integrations/computer-use/gemini)** - Gemini's computer use capability -- **[Computer Use (OpenAGI)](/integrations/computer-use/openagi)** - OpenAGI Lux computer-use models +- **[Computer Use (OpenAGI)](/integrations/computer-use/openagi)** - OpenAGI's computer use capability - **[Laminar](/integrations/laminar)** - Observability and tracing for AI browser automations - **[Magnitude](/integrations/magnitude)** - Vision-focused browser automation framework - **[Notte](/integrations/notte)** - AI agent framework for browser automation From 4ade95468ff1732807f39f97ff1b1972844f5eb4 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:56:43 +0000 Subject: [PATCH 06/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index ff44d92..f546e51 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -79,10 +79,10 @@ kernel deploy main.py # --env ANTHROPIC_API_KEY=XXX if Browser Use or Computer U kernel invoke ts-basic get-page-title --payload '{"url": "https://www.google.com"}' # Stagehand -kernel invoke ts-stagehand stagehand-task --payload '{"query": "Best wired earbuds"}' +kernel invoke ts-stagehand teamsize-task --payload '{"company": "Kernel"}' # Anthropic Computer Use -kernel invoke ts-anthropic-cua cua-task --payload '{"query": "Search for the top 3 restaurants in NYC according to Pete Wells"}' +kernel invoke ts-anthropic-cua cua-task --payload '{"query": "Return the first url of a search result for NYC restaurant reviews Pete Wells"}' # OpenAI Computer Use kernel invoke ts-openai-cua cua-task --payload '{"task": "Go to https://news.ycombinator.com and get the top 5 articles"}' From 735b2a18c582d414a6e50ebee71f6ce0273db1f0 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:56:49 +0000 Subject: [PATCH 07/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart.mdx b/quickstart.mdx index f546e51..1a5c3ac 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -99,7 +99,7 @@ kernel invoke python-basic get-page-title --payload '{"url": "https://www.google kernel invoke python-bu bu-task --payload '{"task": "Compare the price of gpt-4o and DeepSeek-V3"}' # Anthropic Computer Use -kernel invoke python-anthropic-cua cua-task --payload '{"query": "Search for the top 3 restaurants in NYC according to Pete Wells"}' +kernel invoke python-anthropic-cua cua-task --payload '{"query": "Return the first url of a search result for NYC restaurant reviews Pete Wells"}' # OpenAI Computer Use kernel invoke python-openai-cua cua-task --payload '{"task": "Go to https://news.ycombinator.com and get the top 5 articles"}' From 0e25a64f1c6b18f88ed5bf73e04dbdfbce8156ba Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:56:55 +0000 Subject: [PATCH 08/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart.mdx b/quickstart.mdx index 1a5c3ac..075a607 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -105,7 +105,7 @@ kernel invoke python-anthropic-cua cua-task --payload '{"query": "Return the fir kernel invoke python-openai-cua cua-task --payload '{"task": "Go to https://news.ycombinator.com and get the top 5 articles"}' # OpenAGI Computer Use -kernel invoke python-openagi-cua openagi-default-task -p '{"instruction": "Navigate to https://agiopen.org and click the What is Computer Use? button"}' +kernel invoke python-openagi-cua openagi-default-task -p '{"instruction": "Navigate to https://agiopen.org and click the What is Computer Use? button", "record_replay": "True"}' ``` From cdcfe99e30218e4de7fa4d55b9a79c4ff17ae8cc Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:57:11 +0000 Subject: [PATCH 09/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 075a607..8b97c83 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -125,12 +125,12 @@ These are the sample apps currently available when you run `kernel create`: | Template | Description | Framework | Params | |-------------------------------|-----------------------------------------------------------|----------------------------|------------------| -| **sample-app** | Returns the page title of a specified URL | Playwright | `{ url }` | -| **browser-use** | Completes a specified task | Browser Use | `{ task }` | -| **stagehand** | Returns the first result of a specified Google search | Stagehand | `{ query }` | -| **advanced-sample** | Implements sample apps using advanced Kernel configs | Playwright | n/a | -| **anthropic-computer-use** | Implements an Anthropic Computer Use prompt loop | Anthropic Computer Use API | `{ query }` | -| **openai-computer-use** | Implements an OpenAI Computer Use Agent prompt loop | OpenAI CUA API | `{ task }` | -| **gemini-computer-use** | Implements a Gemini Computer Use prompt loop | Gemini Computer Use API | `{ task }` | -| **openagi-computer-use** | Implements an OpenAGI Lux computer-use agent | OpenAGI Lux API | `{ instruction }`| +| **sample-app** | Implements a basic Kernel app | Playwright | `{ url }` | +| **captcha-solver** | Demo of Kernel's auto-CAPTCHA solving capability | Playwright | n/a | +| **browser-use** | Implements Browser Use SDK | Browser Use | `{ task }` | +| **stagehand** | Implements the Stagehand v3 SDK | Stagehand | `{ company }` | +| **anthropic-computer-use** | Implements an Anthropic computer use agent | Anthropic Computer Use API | `{ query }` | +| **openai-computer-use** | Implements an OpenAI computer use agent | OpenAI CUA API | `{ task }` | +| **gemini-computer-use** | Implements a Gemini computer use agent | Gemini Computer Use API | `{ task }` | +| **openagi-computer-use** | Implements an OpenAGI computer use agent | OpenAGI Lux API | `{ instruction }`| | **magnitude** | Implements the Magnitude.run SDK | Magnitude.run | n/a | From baed067f2d90378b391d60f532704a298ea98d2c Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:08:27 +0000 Subject: [PATCH 10/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/quickstart.mdx b/quickstart.mdx index 8b97c83..6734e5d 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -78,9 +78,15 @@ kernel deploy main.py # --env ANTHROPIC_API_KEY=XXX if Browser Use or Computer U # Sample app kernel invoke ts-basic get-page-title --payload '{"url": "https://www.google.com"}' +# CAPTCHA Solver +kernel invoke ts-captcha-solver test-captcha-solver + # Stagehand kernel invoke ts-stagehand teamsize-task --payload '{"company": "Kernel"}' +# Magnitude +kernel invoke ts-magnitude mag-url-extract --payload '{"url": "https://en.wikipedia.org/wiki/Special:Random"}' + # Anthropic Computer Use kernel invoke ts-anthropic-cua cua-task --payload '{"query": "Return the first url of a search result for NYC restaurant reviews Pete Wells"}' From c332ab50ffa406dc7523e473832a680b39f30ee3 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:08:35 +0000 Subject: [PATCH 11/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/quickstart.mdx b/quickstart.mdx index 6734e5d..174f035 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -101,6 +101,9 @@ kernel invoke ts-gemini-cua gemini-cua-task # Sample app kernel invoke python-basic get-page-title --payload '{"url": "https://www.google.com"}' +# CAPTCHA Solver +kernel invoke python-captcha-solver test-captcha-solver + # Browser Use kernel invoke python-bu bu-task --payload '{"task": "Compare the price of gpt-4o and DeepSeek-V3"}' From 57f25d7e59f3c7c230beefa3518080d3e3e53eb9 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:13:24 +0000 Subject: [PATCH 12/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 174f035..aaafc9e 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -61,12 +61,12 @@ This will open your browser to complete the authentication flow. Your credential ```bash Typescript / Javascript cd sample-app -kernel deploy index.ts # --env ANTHROPIC_API_KEY=XXX if Stagehand or Computer Use +kernel deploy index.ts # --env-file .env if environment variables are needed ``` ```bash Python cd sample-app -kernel deploy main.py # --env ANTHROPIC_API_KEY=XXX if Browser Use or Computer Use +kernel deploy main.py # --env-file .env if environment variables are needed ``` From f22508f91b9f781f91fb6b311bb77b26855ddb12 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:18:51 +0000 Subject: [PATCH 13/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index aaafc9e..8c5e887 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -132,14 +132,14 @@ You can now update your browser automation with your own logic and deploy it aga These are the sample apps currently available when you run `kernel create`: -| Template | Description | Framework | Params | -|-------------------------------|-----------------------------------------------------------|----------------------------|------------------| -| **sample-app** | Implements a basic Kernel app | Playwright | `{ url }` | -| **captcha-solver** | Demo of Kernel's auto-CAPTCHA solving capability | Playwright | n/a | -| **browser-use** | Implements Browser Use SDK | Browser Use | `{ task }` | -| **stagehand** | Implements the Stagehand v3 SDK | Stagehand | `{ company }` | -| **anthropic-computer-use** | Implements an Anthropic computer use agent | Anthropic Computer Use API | `{ query }` | -| **openai-computer-use** | Implements an OpenAI computer use agent | OpenAI CUA API | `{ task }` | -| **gemini-computer-use** | Implements a Gemini computer use agent | Gemini Computer Use API | `{ task }` | -| **openagi-computer-use** | Implements an OpenAGI computer use agent | OpenAGI Lux API | `{ instruction }`| -| **magnitude** | Implements the Magnitude.run SDK | Magnitude.run | n/a | +| Template | Description | Framework | +|-------------------------------|-----------------------------------------------------------|----------------------------| +| **sample-app** | Implements a basic Kernel app | Playwright | +| **captcha-solver** | Demo of Kernel's auto-CAPTCHA solving capability | Playwright | +| **browser-use** | Implements Browser Use SDK | Browser Use | +| **stagehand** | Implements the Stagehand v3 SDK | Stagehand | +| **anthropic-computer-use** | Implements an Anthropic computer use agent | Anthropic Computer Use API | +| **openai-computer-use** | Implements an OpenAI computer use agent | OpenAI CUA API | +| **gemini-computer-use** | Implements a Gemini computer use agent | Gemini Computer Use API | +| **openagi-computer-use** | Implements an OpenAGI computer use agent | OpenAGI Lux API | +| **magnitude** | Implements the Magnitude.run SDK | Magnitude.run | From 1b3ee20c6476c9ec2e36b280e1a1a5e7b254b1bd Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:20:27 +0000 Subject: [PATCH 14/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 8c5e887..ceecd73 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -139,7 +139,7 @@ These are the sample apps currently available when you run `kernel create`: | **browser-use** | Implements Browser Use SDK | Browser Use | | **stagehand** | Implements the Stagehand v3 SDK | Stagehand | | **anthropic-computer-use** | Implements an Anthropic computer use agent | Anthropic Computer Use API | -| **openai-computer-use** | Implements an OpenAI computer use agent | OpenAI CUA API | +| **openai-computer-use** | Implements an OpenAI computer use agent | OpenAI Computer Use API | | **gemini-computer-use** | Implements a Gemini computer use agent | Gemini Computer Use API | -| **openagi-computer-use** | Implements an OpenAGI computer use agent | OpenAGI Lux API | +| **openagi-computer-use** | Implements an OpenAGI computer use agent | OpenAGI Computer Use API | | **magnitude** | Implements the Magnitude.run SDK | Magnitude.run | From 114ee1c8b366a01969ce33151da118483bb6b4ca Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:28:28 +0000 Subject: [PATCH 15/15] Update quickstart.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart.mdx b/quickstart.mdx index ceecd73..05bb500 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -114,7 +114,7 @@ kernel invoke python-anthropic-cua cua-task --payload '{"query": "Return the fir kernel invoke python-openai-cua cua-task --payload '{"task": "Go to https://news.ycombinator.com and get the top 5 articles"}' # OpenAGI Computer Use -kernel invoke python-openagi-cua openagi-default-task -p '{"instruction": "Navigate to https://agiopen.org and click the What is Computer Use? button", "record_replay": "True"}' +kernel invoke python-openagi-cua openagi-default-task --payload '{"instruction": "Navigate to https://agiopen.org and click the What is Computer Use? button", "record_replay": "True"}' ```