Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:175
forks:8
updated:23 de marzo de 2026, 13:19
SKILL.md
| name | python-inline-scripts |
| description | Guide for running inline Python scripts with uv |
uv run --no-project -q --script - < <(cat <<'EOF'
# /// script
# # ONLY add dependencies array if you need PyPi packages
# dependencies = [
# "httpx"
# ]
# requires-python = ">=3.12"
# ///
import httpx
print(httpx.get("https://api.github.com/zen").text)
EOF
)