Skip to main content
The table below summarizes the agents that run in OpenShell sandboxes. Agents listed under the base sandbox are pre-installed and auto-configured when you pass them as the trailing command to openshell sandbox create.

Agent table

All sandbox images are maintained in the OpenShell Community repository.

Credential auto-discovery

OpenShell automatically discovers credentials for recognized agents from your shell environment. When you run openshell sandbox create, the CLI reads the relevant environment variables (such as ANTHROPIC_API_KEY, OPENAI_API_KEY, and GITHUB_TOKEN) and creates credential providers from them. Credentials are never written to the sandbox filesystem. They are injected as environment variables at runtime so the agent process can use them without exposing them to the filesystem or other processes.
You do not need to run openshell provider create for recognized agents. If the required environment variable is set in your shell, OpenShell handles the rest automatically.

How providers work

OpenShell manages credentials as providers — named credential bundles that are injected into sandboxes at creation time. Each provider maps to a set of environment variables that the agent inside the sandbox will receive. You can create providers explicitly when auto-discovery is not sufficient:

Launching agents

To launch an agent, pass it as the trailing command to openshell sandbox create.
You can combine the sandbox name, a custom policy, and a provider in a single command:
The -- separator is required. Everything after -- is the command run inside the sandbox.

Community sandboxes

Agents that need a specialized runtime — like OpenClaw and Ollama — are available as community sandbox images. Use --from to pull them from the OpenShell Community catalog.
You can also point --from at a local directory or a container image:
Community sandbox images bundle their own policies. Review the policy file in the community repository before using a sandbox image in a production or sensitive environment.

Next steps

Providers

Create and manage credential providers for your agents.

Community sandboxes

Browse the full catalog of community sandbox images.