moru-python

Execute Python code inside isolated Moru sandboxes.

Updated Feb 7, 2026
One-click install
npx skills add https://github.com/1wos/sdkhackthon --skill moru-python
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: moru-python
Source: https://github.com/1wos/sdkhackthon/tree/main/.agents/skills/moru-python
Command: npx skills add https://github.com/1wos/sdkhackthon --skill moru-python

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Python code execution within Moru sandboxes enables safe experimentation and automation of untrusted or resource-intensive tasks by providing isolated environments with deterministic behavior and easy teardown.

Core Features & Use Cases

  • Run Python code in isolated Moru sandboxes using Sandbox and AsyncSandbox for safe experimentation.
  • Manage files, volumes, and commands inside the sandbox to build automated data processing pipelines or AI agents.
  • Use cases include building reproducible experiments, running web scrapers, or executing automation workflows that require isolation and safety guarantees.

Quick Start

Create a sandbox with Sandbox.create(), write code and data, then run commands inside the sandbox and inspect results.

Frequently Asked Questions about moru-python

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I safely run untrusted Python code in an isolated environment?

You can safely execute untrusted Python code by running it inside isolated Moru sandboxes using the Sandbox class, which provides deterministic behavior, resource isolation, and easy teardown for secure experimentation.

What is the best way to build automated data processing pipelines with sandboxed Python execution?

Sandboxed Python execution supports automated data processing pipelines by using Moru's Sandbox and AsyncSandbox to manage files, volumes, and commands inside isolated environments, ensuring safe and reproducible task execution.

Does this Python sandboxing approach support asynchronous workflows for building AI agents?

Yes, this Python sandboxing approach supports asynchronous workflows for building AI agents via the AsyncSandbox class, allowing you to manage concurrent code execution, file I/O, and commands within isolated environments.

How do I handle timeouts and command execution errors when running Python in sandboxes?

When running Python in sandboxes, you handle timeouts and command execution errors using built-in exception handling classes such as TimeoutException and CommandExitException to manage execution failures and resource limits effectively.

Can I use Moru sandboxes for running web scrapers and reproducible experiments?

Yes, you can use Moru sandboxes for running web scrapers and reproducible experiments because they provide isolated environments that securely execute resource-intensive tasks with deterministic behavior and easy teardown.