trpc-group

python-math

@trpc-group/python-math
trpc-group
822
80 forks
Updated 1/18/2026
View on GitHub

Small Python utilities for math and text files.

Installation

$skills install @trpc-group/python-math
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathexamples/skillrun/skills/python_math/SKILL.md
Branchmain
Scoped Name@trpc-group/python-math

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


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

  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