Overview
- Skill Key
- cohenyehonatan/orgo-desktop-control
- Author
- cohenyehonatan
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/cohenyehonatan/orgo-desktop-control
- Latest Commit SHA
- eaa5477255c00e8409a1fdee66884aeec7bf692a
Provision and control Orgo cloud computers using the orgo_client Python SDK. Use when launching remote desktops, automating browsers, running bash/python remotely, interacting with UI, managing files, or controlling streaming.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 orgo-desktop-control 技能。 若已安装,则直接安装 orgo-desktop-control 技能。
# Orgo Desktop Control Skill (Python SDK)
This skill uses `orgo_client.py` to create and control Orgo cloud computers safely.
Always use the SDK — do NOT manually construct HTTP requests.
---
# When to Use This Skill
Activate when user requests:
- Launch a remote desktop
- Automate browser or UI
- Click, drag, type, scroll
- Execute bash or Python remotely
- Take screenshots
- Upload/export files
- Start/stop/restart environments
- Stream desktop output
- Access VNC credentials
- Build a computer-use agent
Do NOT activate for local-only code.
---
# High-Level Workflow
1. Instantiate client
2. Ensure workspace exists
3. Create computer
4. `wait_until_ready()`
5. Perform actions
6. Export results
7. Stop computer
---
# Initialization
```python
from orgo_client import OrgoClient
client = OrgoClient(api_key=os.environ["ORGO_API_KEY"])
```
---
# Workspace Management
Create:
```python
ws = client.create_workspace("browser-agent")
```
List:
```python
client.list_workspaces()
```
Delete (requires force):
```python
client.delete_workspace(ws.id, force=True)
```
Never delete without explicit user confirmation.
---
# Computer Lifecycle
Create:
```python
computer = client.create_computer(
workspace_id=ws.id,
name="agent-1",
ram=4,
cpu=2,
wait_until_ready=True
)
```
Manual wait:
```python
computer.start()
computer.stop()
computer.restart()
```
Start / Stop / Restart:
```python
computer.start()
computer.stop()
computer.restart()
```
Delete (irreversible):
```python
computer.delete(force=True)
```
Always stop computers when idle.
---
# UI Interaction
Click:
```python
computer.click(100, 200)
```
Right-click:
```python
computer.right_click(100, 200)
```
Double-click:
```python
computer.double_click(100, 200)
```
Drag:
```python
computer.drag(100, 200, 400, 500)
```
Scroll:
```python
computer.scroll("down", amount=3)
```
Type:
```python
computer.type("Hello world")
```
Key:
```python
computer.key("Enter")
computer.key("ctrl+c")...
human-pages-ai
Search and hire real humans for tasks — photography, delivery, research, and more
zseven-w
Reusable skill templates for OpenClaw AI agents. Templates for API integration, data processing, web scraping, CLI tools, and file processing.
capt-marbles
Attio CRM integration for managing companies, people, deals, notes, tasks, and custom objects. Use when working with Attio CRM data, searching contacts, managing sales pipelines, adding notes to records, creating tasks, or syncing prospect information.
capt-marbles
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
caqlayan
Tweet Processor Skill
carlosarturoleon
Connect to Windsor.ai MCP for natural language access to 325+ data sources including Facebook Ads, GA4, HubSpot, Shopify, and more.