Loading
Small Python utilities for math and text files.
Recommended by author
This prompt takes no variables — just pick a model and run.
Overview Run short Python scripts inside the skill workspace. Results can be returned as text and saved as output files. Examples 1) Print the first N Fibonacci numbers Command: python3 scripts/fib.py 10 > out/fib.txt 2) 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 - out/fib.txt
Running prompts needs a free account.
Sign in and we'll stream the response from Claude Sonnet 4.6 right here — no config needed for the platform models.
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 1) Print the first N Fibonacci numbers Command: python3 scripts/fib.py 10 > out/fib.txt 2) 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 - out/fib.txt