一键导入
python-math
Small Python utilities for math and text files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Small Python utilities for math and text files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
城市信息
Python-based data analysis tools using pandas and numpy for data processing and visualization.
Automatically generate a comprehensive travel plan based on user's travel needs (destination, date, budget, etc.), including transportation, accommodation, attractions, food, and itinerary. Use when a user asks for a travel plan, itinerary, travel tips, or mentions a specific destination.
Simple shell utilities for files and archives.
Simple operations on user-provided text files including summarization.
Weather information query tools including current weather, forecast, and location search.
| name | python-math |
| description | Small Python utilities for math and text files. |
Overview
Run short Python scripts inside the skill workspace. Results can be returned as text and saved as output files.
Examples
Print the first N Fibonacci numbers
Command:
python3 scripts/fib.py 10 > out/fib.txt
Sum a list of integers
Command:
python3 - <<'PY' from sys import stdin nums = [int(x) for x in stdin.read().split()] print(sum(nums)) PY
Output Files