تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:١٧٥
forks:٨
updated:٢٣ مارس ٢٠٢٦ في ١٣:١٩
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
)