with one click
python-math
Small Python utilities for math and text files.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Small Python utilities for math and text files.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
城市信息
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