Skip to main content
The Orgo skill is an Agent Skill for Claude Code. It teaches Claude when and how to spin up an Orgo cloud computer - for browser automation, visual testing, sandboxed runs, or any task that needs a real GUI. Once installed, Claude Code discovers it automatically. No prompting required.

Install

Restart Claude Code if it’s already running. Claude will pick up the skill on next start.

Try it

Claude reads the skill’s metadata at startup (~100 tokens) and only loads the full body when one of these prompts triggers it. Cost when idle: nothing.

What’s inside

The skill is a single SKILL.md file with YAML frontmatter (name, description, when_to_use) followed by procedural instructions Claude uses when the user’s request matches:
  • One-shot agent runs - orgo run "<prompt>" with --json output for piping.
  • Interactive agent TUI - orgo agent with persistent, resumable sessions.
  • Direct shell access - orgo ssh <name> with OpenSSH-style disconnect.
  • Provisioning - orgo computers create interactive or flagged.
  • Screenshots - direct via REST or through the agent.
  • Pricing awareness - uses existing running computers before provisioning fresh ones.
  • Guardrails - clear “when NOT to use” so Claude doesn’t spin up a VM for tasks the Read/Edit/Bash tools already handle.
The full source is in § SKILL.md below, or fetch the raw file from orgo.ai/skills/computer/SKILL.md.

Where it works

Uninstall

Prerequisites

The skill assumes the user has:
  • An Orgo account - sign up at orgo.ai.
  • The orgo CLI installed (curl -fsSL https://orgo.ai/install.sh | bash).
  • Run orgo login once.
If any of these aren’t done, Claude will surface the right command when triggered - installation is a one-liner.

License

The skill source is MIT-licensed. Audit it before installing (the SKILL.md is plain markdown) and treat as you would any package you’d add to your Claude Code setup.

SKILL.md

Byte-for-byte what’s served at orgo.ai/skills/computer/SKILL.md and what Claude Code reads when the skill is triggered.

Frontmatter

Body

Everything below is what Claude actually reads when the skill is triggered. Kept under 5k tokens so the model loads it efficiently.