Add Kernel Browser kit#20
Open
ealeyner wants to merge 4 commits into
Open
Conversation
Mixin kit for kernel.sh — cloud-hosted Chromium for AI agents. Installs the Kernel CLI globally, wires KERNEL_API_KEY through the sandbox proxy (credentials never enter the VM), and drops a quick- reference guide at /home/agent/.kernel/quickstart.md. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Eli Aleyner <eli@aleyner.com>
Agent kit for Open Interpreter — a natural language interface that writes and runs code (Python, JS, Shell) inside the sandbox. auto_run is enabled by default since the sandbox provides the OS-level isolation that makes it safe. Supports both OpenAI (default, GPT-4o) and Anthropic (Claude) via proxy-managed credentials. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Eli Aleyner <eli@aleyner.com>
….13 compat Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Eli Aleyner <eli@aleyner.com>
Replace pip install references with uv tool install --python 3.12, explain the PEP 668 and numpy/Python 3.13 wheel constraints, and document the background auto-upgrade on startup. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Eli Aleyner <eli@aleyner.com>
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
kernel/mixin kit for kernel.sh — cloud-hosted Chromium for AI agentskernelCLI globally so agents can manage browser sessions from the terminalKERNEL_API_KEYthrough the sandbox proxy viacredentials.sources+environment.proxyManaged— the real credential never enters the VM/home/agent/.kernel/quickstart.mdwith TypeScript, Python, and CLI usage examplesHow auth works
serviceDomainsis intentionally narrow (api.onkernel.comonly). The Kernel API usesAuthorization: Bearer <token>; CDP WebSocket proxy URLs (wss://proxy.<region>.onkernel.com:8443/...) are covered by the*.onkernel.comwildcard inallowedDomainswithout auth injection — a wildcard inserviceDomainswould put the proxy into TLS-intercept mode and corrupt those connections.Test plan
sbx kit validate ./kernel/— VALIDcd kernel && go test -v -count=1 -timeout 10m ./...(requires Docker + Go 1.23+)sbx run claude --kit ./kernel/withKERNEL_API_KEYset — CLI available, quickstart at/home/agent/.kernel/quickstart.md🤖 Generated with Claude Code