← All skills
Tencent SkillHub · Developer Tools

Code Executor

Ejecuta código Python, JavaScript, Bash dinámicamente. El bot puede crear y ejecutar código al vuelo.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Ejecuta código Python, JavaScript, Bash dinámicamente. El bot puede crear y ejecutar código al vuelo.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Code Executor (Ejecutor de Código) 🔥

PODER INFINITO. El bot puede escribir y ejecutar código para resolver cualquier problema.

¿Qué Hace?

Si el bot necesita hacer algo que no tiene una skill: Escribe el código necesario Lo ejecuta en un sandbox Retorna el resultado

Comandos

# Ejecutar código directamente run python "print('Hello World')" run js "console.log(2+2)" run bash "ls -la" # Ejecutar archivo run ~/script.py execute ~/automation.js # El bot decide qué código escribir solve "calcula el factorial de 100" compute "genera 10 números primos"

Ejemplo Real

Usuario: calcula cuántos días faltan para mi cumpleaños (15 de marzo) Bot: ⚡ Necesito calcular esto... 📝 Código generado: ```python from datetime import date today = date.today() birthday = date(today.year, 3, 15) if birthday < today: birthday = date(today.year + 1, 3, 15) days = (birthday - today).days print(f"Faltan {days} días para tu cumpleaños") ``` ⚡ Ejecutando... ✅ Resultado: Faltan 40 días para tu cumpleaños (15 de marzo, 2026)

Resolución de Problemas

Usuario: necesito renombrar 500 archivos agregando la fecha Bot: ⚡ Generando script... ```python import os from datetime import datetime folder = "/ruta/a/archivos" date_str = datetime.now().strftime("%Y%m%d") for filename in os.listdir(folder): name, ext = os.path.splitext(filename) new_name = f"{date_str}_{name}{ext}" os.rename( os.path.join(folder, filename), os.path.join(folder, new_name) ) print(f"Renamed: {filename} -> {new_name}") ``` ⚠️ Este script renombrará 500 archivos. ¿Ejecutar? [Sí] [Ver preview] [Cancelar]

Lenguajes Soportados

LenguajeRuntimePythonpython3JavaScriptnodeTypeScriptts-nodeBashbash/shSQLsqlite3

Modo Interactivo

Usuario: abre un REPL de Python Bot: ⚡ Python REPL iniciado: >>> Usuario: import math; math.pi Bot: >>> import math; math.pi 3.141592653589793 Usuario: exit Bot: ⚡ REPL cerrado

Instalación de Dependencias

Usuario: necesito usar pandas para analizar este CSV Bot: ⚡ pandas no está instalado ¿Instalar pandas? [Sí] [No] Usuario: sí Bot: ⚡ pip install pandas ✅ pandas instalado Continuando con el análisis...

Seguridad

CODE_SANDBOX=true # Ejecutar en sandbox CODE_TIMEOUT=30 # Timeout en segundos CODE_ALLOW_NETWORK=false # Bloquear red por defecto CODE_ALLOW_FILESYSTEM=read # Solo lectura por defecto CODE_REQUIRE_CONFIRM=true # Confirmar antes de ejecutar

Casos de Uso

Cálculos complejos que no tiene ninguna skill Transformación de datos personalizada Automatizaciones únicas que no ameritan una skill Prototipado rápido de soluciones Debugging y testing

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc