622 B
622 B
Skill Scripts
This directory contains optional helper scripts that support this skill's functionality.
Purpose
Scripts here can be:
- Referenced by the skill for automation
- Used as examples for users
- Executed during skill activation
Guidelines
- All scripts should be well-documented
- Include usage examples in comments
- Make scripts executable (
chmod +x) - Use
#!/bin/bashor#!/usr/bin/env python3shebangs
Adding Scripts
- Create script file (e.g.,
analyze.sh,process.py) - Add documentation header
- Make executable:
chmod +x script-name.sh - Test thoroughly before committing