python-math
Installation
SKILL.md
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
- out/fib.txt
Related skills
More from trpc-group/trpc-agent-go
ocr
Extract text from images using Tesseract OCR
59user-file-ops
Simple operations on user-provided text files including summarization.
49file-tools
Simple shell utilities for files and archives.
49whisper
Transcribe audio files to text using OpenAI Whisper
46write-ok
Write a deterministic OK file to out/ok.txt.
42demo-skill
A tiny skill used by the skill isolation example.
41