# example-python-skill > A simple example skill that echoes input - Author: 小菜一碟 - Repository: EXboys/skilllite - Version: 20260202012510 - Stars: 34 - Forks: 1 - Last Updated: 2026-02-06 - Source: https://github.com/EXboys/skilllite - Web: https://mule.run/skillshub/@@EXboys/skilllite~example-python-skill:20260202012510 --- --- name: example-python-skill entry_point: script/main.py language: python description: A simple example skill that echoes input version: "1.0.0" network: enabled: false outbound: [] block_private_ips: true input_schema: type: object properties: message: type: string description: The message to echo required: - message output_schema: type: object properties: result: type: string input: type: object --- # Example Python Skill This is a simple example skill that demonstrates the SkillBox protocol. ## Usage ```bash skillbox run ./examples/python_skill '{"message": "Hello, World!"}' ``` ## Input - `message` (string, required): The message to echo back ## Output - `result`: Status of the operation - `input`: The original input parameters