# example-skill > An example skill demonstrating the Skill Shop structure - Author: 0xJustice.eth - Repository: singularityhacker/bank-skills - Version: 20260206171837 - Stars: 27 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/singularityhacker/bank-skills - Web: https://mule.run/skillshub/@@singularityhacker/bank-skills~example-skill:20260206171837 --- --- name: example-skill description: An example skill demonstrating the Skill Shop structure homepage: https://github.com/yourusername/skill-shop metadata: {"openclaw":{"emoji":"📦","requires":{"bins":["python"],"env":[]},"primaryEnv":""}} --- # Example Skill ## Purpose This is an example skill that demonstrates the standard Skill Shop structure and format. ## Inputs - `input`: A string input parameter (required) ## Outputs - Returns a JSON object with the processed input ## Usage Command: `./run.sh --input "Hello, World!"` Or via JSON stdin: ```bash echo '{"input": "Hello, World!"}' | ./run.sh ``` ## Failure modes - Missing input: Returns error message - Invalid JSON: Returns parsing error ## When to use Use this as a template when creating new skills. ## When not to use This is just an example - replace with actual skill logic.