Note for template users: This is a skill package template. See SETUP.md for configuration instructions, including the AI-assisted content generation option. Delete this note block after setup.
{{SKILL_DESCRIPTION}}
# Clone the repository
git clone https://github.com/{{GITHUB_ORG}}/{{SKILL_NAME}}.git
cd {{SKILL_NAME}}
# Install the skill
./scripts/install.sh[TODO: Add quick start examples]
- Python 3.8+
- pip
# Install development dependencies
pip install -r requirements-dev.txt
# Run tests
pytest tests/ -v
# Run linting
./scripts/lint.sh
# Validate package structure
python scripts/validate.pyUpdate version across all files:
python scripts/sync-version.py 1.2.0- Update
CHANGELOG.md - Sync version:
python scripts/sync-version.py X.Y.Z - Commit changes
- Create and push tag:
git tag vX.Y.Z && git push origin vX.Y.Z - GitHub Actions will build and publish the release
See CONTRIBUTING.md for guidelines.
[TODO: Add license information]