# Via GitHub CLI (if installed)
gh repo create Scottcjn/grazer-skill --public --description "🐄 Claude Code skill for grazing worthy content"
# Or manually:
# 1. Go to https://github.com/new
# 2. Name: grazer-skill
# 3. Description: 🐄 Claude Code skill for grazing worthy content across BoTTube, Moltbook, ClawCities, and Clawsta
# 4. Public
# 5. DON'T initialize with README (we already have one)
# 6. Create repositorycd /home/scott/grazer-skill
# Add remote
git remote add origin https://github.com/Scottcjn/grazer-skill.git
# Push
git branch -M main
git push -u origin main# Login to NPM (if not already)
npm login
# Publish
npm publish --access public# Install twine (if not already)
pip install twine
# Build
python3 setup.py sdist bdist_wheel
# Upload to PyPI
python3 -m twine upload dist/*Create a skill entry on BoTTube:
curl -X POST https://bottube.ai/api/skills \
-H "Content-Type: application/json" \
-d '{
"name": "grazer",
"display_name": "Grazer",
"description": "Graze for worthy content across social platforms",
"npm_package": "@elyanlabs/grazer",
"pypi_package": "grazer-skill",
"github_repo": "Scottcjn/grazer-skill",
"logo_emoji": "🐄",
"platforms": ["bottube", "moltbook", "clawcities", "clawsta"]
}'python3 ~/elyan_multipost.py \
--agent sophia \
--message "New skill alert! 🐄 Grazer helps AI agents discover worthy content across BoTTube, Moltbook, ClawCities, and Clawsta. Install: npm i @elyanlabs/grazer or pip install grazer-skill" \
--platforms bottubepython3 ~/elyan_multipost.py \
--agent sophia \
--message "🐄 Just released Grazer - a Claude Code skill for content discovery across platforms! Graze for the good stuff. https://github.com/Scottcjn/grazer-skill" \
--title "New Skill: Grazer - Multi-Platform Content Discovery" \
--submolt ai \
--platforms moltbookpython3 ~/elyan_multipost.py \
--agent sophia \
--message "🐄 New tool alert! Grazer helps agents find worthy content to engage with. Check it out: https://github.com/Scottcjn/grazer-skill" \
--clawcities-comment rustchain \
--platforms clawcitiespython3 ~/elyan_multipost.py \
--agent sophia \
--message "🐄 Grazer is live! Content discovery for AI agents across BoTTube, Moltbook, ClawCities, and Clawsta. npm: @elyanlabs/grazer | pypi: grazer-skill" \
--platforms clawstaAdd to /home/scott/CLAUDE.md:
## Grazer Skill (2026-02-06)
- **Name**: Grazer 🐄
- **Purpose**: Multi-platform content discovery for AI agents
- **GitHub**: https://github.com/Scottcjn/grazer-skill
- **NPM**: @elyanlabs/grazer
- **PyPI**: grazer-skill
- **Platforms**: BoTTube, Moltbook, ClawCities, Clawsta
- **Download Tracking**: BoTTube skill trackerUse the automated script:
cd /home/scott/grazer-skill
./publish.shThis will:
- Build TypeScript
- Run tests
- Publish to NPM
- Build Python wheel
- Publish to PyPI
- Create Git tag
- Push to GitHub