runtm

作者 runtm-ai已验证

Open-source sandboxes where coding agents build and deploy. Spin up isolated environments where Claude Code, Cursor, and other agents code and deploy software.

286
Stars
31
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/runtm-ai/runtm

快速入门

使用 runtm 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Runtm

License: AGPL v3 License: Apache 2.0 License: MIT Discord

Open-source sandboxes where coding agents build and deploy.

Spin up isolated environments where Claude Code, Cursor, Codex, and other agents code and ship software. With live URLs, logs, and previews.

Website · Docs · Get Started

Demo

https://github.com/user-attachments/assets/8d6d5ab8-a5c4-4a3d-8ef1-5d20b67ed3ee

Why Runtm?

  • Sandboxes for yolo agents – Let agents code with full permissions in isolated environments. No risk to your machine or cloud.
  • Run any coding agent – Claude Code, Cursor, Codex, Gemini CLI, and more. Bring your favorite.
  • Real URLs instantly – Agents deploy to live HTTPS endpoints. Test, share, and iterate.
  • Logs and observability – See what your agent built, debug issues, fix and redeploy.

Quick Start

# Install
uv tool install runtm

# Start a local sandbox session
runtm session start

# Your agent builds inside the sandbox...

# Deploy to a live URL
runtm session deploy

You get a live HTTPS endpoint on auto-stopping infrastructure. Machines spin down when idle and wake up on traffic.

Local Sandbox Sessions

Run AI agents in isolated local environments with OS-level sandboxing:

# Start a sandbox (auto-installs deps on first run)
runtm session start

# Start with a template
runtm session start --template web-app

# Use a different agent
runtm session start --agent codex

# List all sandboxes
runtm session list

# Reattach to a sandbox
runtm session attach sbx_abc123

# Deploy from sandbox to live URL
runtm session deploy

What you get:

  • OS-level isolation – Uses bubblewrap (Linux) or seatbelt (macOS) for fast, secure sandboxing
  • Instant startup – Sandboxes start in <100ms, no containers needed
  • Multi-agent support – Works with Claude Code, Codex, Gemini CLI, and more
  • Persistent workspaces – Stop and resume sessions, files preserved

How It Works

┌────────────┐     ┌─────────┐     ┌─────────┐     ┌──────────┐
│ Your Agent │ ──▶ │ Sandbox │ ──▶ │  Runtm  │ ──▶ │ Live URL │
└────────────┘     └─────────┘     └─────────┘     └──────────┘
  1. Spin up a sandbox – Your agent gets an isolated workspace
  2. Agent builds – Full permissions to code, install deps, run tests
  3. Deploy – One command to a real URL with logs and previews
  4. Iterate – Agent can see logs, fix bugs, and redeploy

Installation

The pip CLI (runtm) for local sandboxes, scaffolding, and deploys:

# Recommended
uv tool install runtm

# Alternative
pipx install runtm

# Or with pip
pip install runtm

The Go CLI (runtm-api) is a separate, lighter tool for AI coding agents driving the hosted Cloud API:

curl -fsSL https://runtm.com/install | bash

It is JSON-in / JSON-out, has stable exit codes, and ships with embedded skill files for Claude Code, Cursor, and Codex. See Agent CLI docs and the packages/agent/ source for details. The pip and Go CLIs share the same API key.

Commands

CommandDescription
runtm session startStart a new sandbox session
runtm session listList all sandboxes
runtm session attach <id>Reattach to a sandbox
runtm session stop <id>Stop a sandbox (preserves files)
runtm session destroy <id>Destroy sandbox and delete files
runtm session deployDeploy from sandbox to live URL
runtm initInitialize a new project
runtm deployDeploy to a live URL
runtm logs <id>View build, deploy, and runtime logs
runtm status <id>Check deployment status
runtm destroy <id>Tear down a deployment

See the CLI docs for the full reference.

Self-Hosting

Runtm can be fully self-hosted. See the self-hosting guide.

git clone https://github.com/runtm-ai/runtm.git
cd runtm
cp infra/local.env.example .env

# Install packages (includes sandbox and agents)
./scripts/dev.sh setup

# Start local services
docker compose -f infra/docker-compose.yml up -d

# Use the development CLI
runtm-dev start                    # Start a sandbox session
runtm-dev prompt "Build an API"    # Send prompt to agent

Note: Use runtm-dev (not runtm) when self-hosting. The dev CLI includes sandbox/agents packages.

Project Structure

packages/
  shared/     # Types, manifest schema, errors
  sandbox/    # Local sandbox runtime (OS-level isolation)
  agents/     # AI coding agent adapters (Claude Code, Codex, etc.)
  api/        # FastAPI control plane
  worker/     # Build + deploy pipeline
  cli/        # Python CLI (Typer) - `runtm` (local sandbox + deploy)
  agent/      # Go CLI (Cobra) - `runtm-api` (hosted Cloud API for AI agents)

templates/    # Starter projects (backend, static, fullstack)

Documentation

Full docs at docs.runtm.com:

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

ComponentLicense
Server (api, worker, infra)AGPLv3
CLI, Sandbox, SharedApache-2.0
TemplatesMIT

Support

Open an issue or join our Discord.

常见问题

What is runtm?

runtm is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by runtm-ai. Open-source sandboxes where coding agents build and deploy. Spin up isolated environments where Claude Code, Cursor, and other agents code and deploy software. It has 286 GitHub stars.

Is runtm safe to use?

Yes. runtm passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install runtm?

Clone the repository with "git clone https://github.com/runtm-ai/runtm" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is runtm written in?

runtm is primarily written in Python. It is open-source under runtm-ai on GitHub, so you can review or fork the full source.

Are there alternatives to runtm?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh runtm against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情