From 970104b6ebcf9bb0b527c09ed941ce0235b80a1b Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 17:45:55 +0000 Subject: [PATCH 1/4] feat: Add Computer Use (Anthropic) integration guide --- docs.json | 1 + integrations/computer-use.mdx | 41 +++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 integrations/computer-use.mdx diff --git a/docs.json b/docs.json index b7c0b19..9eaa3ab 100644 --- a/docs.json +++ b/docs.json @@ -98,6 +98,7 @@ "group": "Integrations", "pages": [ "integrations/browser-use", + "integrations/computer-use", "integrations/magnitude", "integrations/stagehand", "integrations/valtown", diff --git a/integrations/computer-use.mdx b/integrations/computer-use.mdx new file mode 100644 index 0000000..a5ee6d0 --- /dev/null +++ b/integrations/computer-use.mdx @@ -0,0 +1,41 @@ +--- +title: "Computer Use (Anthropic)" +--- + +[Computer Use](https://www.anthropic.com/news/3-5-models-and-computer-use) is Anthropic's groundbreaking capability that enables Claude to interact with computers the way humans do—by looking at screens, moving cursors, clicking buttons, and typing text. This powerful feature allows AI agents to control web browsers, navigate interfaces, and perform complex tasks across applications. + +With Computer Use, Claude can: +- **Navigate websites and applications** by interpreting visual interfaces +- **Click buttons and fill forms** just like a human would +- **Take screenshots** to understand and verify its actions +- **Perform multi-step workflows** that span multiple applications or web pages + +By integrating Computer Use with Kernel, you can run these AI-powered browser automations on cloud-hosted infrastructure, eliminating the need for local browser management and enabling scalable, reliable AI agents. + +## Quick setup with Computer Use + +Get started with Computer Use and Kernel using our pre-configured app template: + +```bash +npx @onkernel/create-kernel-app my-computer-use-app +``` + +Choose `TypeScript` as the programming language and then select `Computer Use (Anthropic)` as the template. + +Then follow the [Quickstart guide](/quickstart/) to deploy and run your Computer Use automation on Kernel's infrastructure. + +## Benefits of using Kernel with Computer Use + +- **No local browser management**: Run Computer Use automations without installing or maintaining browsers locally +- **Scalability**: Launch multiple browser sessions in parallel for concurrent AI agents +- **Stealth mode**: Built-in anti-detection features for reliable web interactions +- **Session persistence**: Maintain browser state across automation runs +- **Live view**: Debug your Computer Use agents with real-time browser viewing +- **Cloud infrastructure**: Run computationally intensive AI agents without local resource constraints + +## Next steps + +- Check out [live view](/browsers/live-view) for debugging your Computer Use automations +- Learn about [stealth mode](/browsers/stealth) for avoiding detection +- Learn how to properly [terminate browser sessions](/browsers/termination) +- Learn how to [deploy](/apps/deploy) your Computer Use app to Kernel From 257d0ed32507f6b012b65015c381b7f5a65ad7fa Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 18:50:49 +0000 Subject: [PATCH 2/4] docs(integrations): update Computer Use docs URL and naming --- docs.json | 2 +- integrations/{computer-use.mdx => computer-use-anthropic.mdx} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename integrations/{computer-use.mdx => computer-use-anthropic.mdx} (80%) diff --git a/docs.json b/docs.json index 9eaa3ab..092c727 100644 --- a/docs.json +++ b/docs.json @@ -98,7 +98,7 @@ "group": "Integrations", "pages": [ "integrations/browser-use", - "integrations/computer-use", + "integrations/computer-use-anthropic", "integrations/magnitude", "integrations/stagehand", "integrations/valtown", diff --git a/integrations/computer-use.mdx b/integrations/computer-use-anthropic.mdx similarity index 80% rename from integrations/computer-use.mdx rename to integrations/computer-use-anthropic.mdx index a5ee6d0..8b15baf 100644 --- a/integrations/computer-use.mdx +++ b/integrations/computer-use-anthropic.mdx @@ -2,7 +2,7 @@ title: "Computer Use (Anthropic)" --- -[Computer Use](https://www.anthropic.com/news/3-5-models-and-computer-use) is Anthropic's groundbreaking capability that enables Claude to interact with computers the way humans do—by looking at screens, moving cursors, clicking buttons, and typing text. This powerful feature allows AI agents to control web browsers, navigate interfaces, and perform complex tasks across applications. +[Computer Use](https://docs.claude.com/en/docs/agents-and-tools/tool-use/computer-use-tool) is Anthropic's groundbreaking capability that enables Claude to interact with computers the way humans do—by looking at screens, moving cursors, clicking buttons, and typing text. This powerful feature allows AI agents to control web browsers, navigate interfaces, and perform complex tasks across applications. With Computer Use, Claude can: - **Navigate websites and applications** by interpreting visual interfaces @@ -20,7 +20,7 @@ Get started with Computer Use and Kernel using our pre-configured app template: npx @onkernel/create-kernel-app my-computer-use-app ``` -Choose `TypeScript` as the programming language and then select `Computer Use (Anthropic)` as the template. +Choose `TypeScript` as the programming language and then select `Computer Use` as the template. Then follow the [Quickstart guide](/quickstart/) to deploy and run your Computer Use automation on Kernel's infrastructure. From e830572bea275e505206b8a5b94fd62cdbc2efea Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Wed, 1 Oct 2025 12:04:16 -0700 Subject: [PATCH 3/4] Small change to add Python --- integrations/computer-use-anthropic.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/computer-use-anthropic.mdx b/integrations/computer-use-anthropic.mdx index 8b15baf..8fe83d9 100644 --- a/integrations/computer-use-anthropic.mdx +++ b/integrations/computer-use-anthropic.mdx @@ -20,7 +20,7 @@ Get started with Computer Use and Kernel using our pre-configured app template: npx @onkernel/create-kernel-app my-computer-use-app ``` -Choose `TypeScript` as the programming language and then select `Computer Use` as the template. +Choose `TypeScript` or `Python` as the programming language and then select `Computer Use` as the template. Then follow the [Quickstart guide](/quickstart/) to deploy and run your Computer Use automation on Kernel's infrastructure. From 4425bcd0a7a2d8fdc8c748edec7269f8743194be Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Wed, 1 Oct 2025 12:14:39 -0700 Subject: [PATCH 4/4] Updated docs.json heirarchy Updated heirarchy in docs.json so computer-use would be a sub-section in integration guides, simplifying the naming conventions used. --- docs.json | 7 ++++++- .../anthropic.mdx} | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) rename integrations/{computer-use-anthropic.mdx => computer-use/anthropic.mdx} (98%) diff --git a/docs.json b/docs.json index 092c727..20e0000 100644 --- a/docs.json +++ b/docs.json @@ -98,7 +98,12 @@ "group": "Integrations", "pages": [ "integrations/browser-use", - "integrations/computer-use-anthropic", + { + "group": "Computer Use", + "pages": [ + "integrations/computer-use/anthropic" + ] + }, "integrations/magnitude", "integrations/stagehand", "integrations/valtown", diff --git a/integrations/computer-use-anthropic.mdx b/integrations/computer-use/anthropic.mdx similarity index 98% rename from integrations/computer-use-anthropic.mdx rename to integrations/computer-use/anthropic.mdx index 8fe83d9..50beea9 100644 --- a/integrations/computer-use-anthropic.mdx +++ b/integrations/computer-use/anthropic.mdx @@ -1,5 +1,5 @@ --- -title: "Computer Use (Anthropic)" +title: "Anthropic" --- [Computer Use](https://docs.claude.com/en/docs/agents-and-tools/tool-use/computer-use-tool) is Anthropic's groundbreaking capability that enables Claude to interact with computers the way humans do—by looking at screens, moving cursors, clicking buttons, and typing text. This powerful feature allows AI agents to control web browsers, navigate interfaces, and perform complex tasks across applications.