
## Step 8: Publishing Commands

```bash
# 1. Commit and push to GitHub
git add .
git commit -m "Initial commit: Production-ready Python SDK"
git push origin main

# 2. Create version tag
git tag v1.0.0
git push origin v1.0.0

# 3. Create GitHub Release (this triggers auto-publish)
# Go to GitHub → Releases → Create new release
# Select tag v1.0.0, title "Version 1.0.0"
# Click "Publish release"

# 4. Verify installation
pip install zyropai

