python-repl-skill · git:20260728.54ca37f · 2026-07-28 · sha256 f329577ae12f555f
python-repl-skill git:20260728.54ca37fA
Immutable. This exact content is served forever at /api/v1/blob/f329577ae12f555f.
--- name: python-repl-skill description: Demonstrate a persistent Python workspace across multiple calculation steps. --- # Persistent Python Workspace Demo Use this skill when the user asks for a multi-step Python calculation that reuses intermediate values. 1. In the first Python execution, define values = [2, 4, 6, 8] and total = sum(values). 2. In a separate Python execution, reuse those existing variables to calculate average = total / len(values). 3. Return the resulting average. 4. Do not create or execute a bundled script for this workflow.