Exécutez n'importe quel Skill dans Manus
en un clic
en un clic
Exécutez n'importe quel Skill dans Manus en un clic
Commencer$pwd:
$ git log --oneline --stat
stars:175
forks:8
updated:23 mars 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
)