Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Ejecuta código Python, JavaScript, Bash dinámicamente. El bot puede crear y ejecutar código al vuelo.
Ejecuta código Python, JavaScript, Bash dinámicamente. El bot puede crear y ejecutar código al vuelo.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
PODER INFINITO. El bot puede escribir y ejecutar código para resolver cualquier problema.
Si el bot necesita hacer algo que no tiene una skill: Escribe el código necesario Lo ejecuta en un sandbox Retorna el resultado
# 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"
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)
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]
LenguajeRuntimePythonpython3JavaScriptnodeTypeScriptts-nodeBashbash/shSQLsqlite3
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
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...
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
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
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.