From coding-tutor
Commits and pushes changes from ~/coding-tutor-tutorials to private GitHub repo (creates if needed). Reports what was synced or if up to date.
How this command is triggered — by the user, by Claude, or both
Slash command
/coding-tutor:sync-tutorialsThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Sync Coding Tutor Tutorials Commit and push your tutorials to the GitHub repository for backup and mobile reading. ## Instructions 1. **Go to the tutorials repo**: `cd ~/coding-tutor-tutorials` 2. **Check for changes**: Run `git status` to see what's new or modified 3. **If there are changes**: - Stage all changes: `git add -A` - Create a commit with a message summarizing what was added/updated (e.g., "Add tutorial on React hooks" or "Update quiz scores") - Push to origin: `git push` 4. **If no GitHub remote exists**: - Create the repo: `gh repo create coding-tutor-tutor...
Commit and push your tutorials to the GitHub repository for backup and mobile reading.
Go to the tutorials repo: cd ~/coding-tutor-tutorials
Check for changes: Run git status to see what's new or modified
If there are changes:
git add -Agit pushIf no GitHub remote exists:
gh repo create coding-tutor-tutorials --private --source=. --pushReport results: Tell the user what was synced or that everything is already up to date
~/coding-tutor-tutorials/--private when creating the GitHub reponpx claudepluginhub 8b-is/8b-is-mp --plugin coding-tutor/sync-tutorialsCommits and pushes changes from ~/coding-tutor-tutorials to private GitHub repo (creates if needed). Reports what was synced or if up to date.
/contribute-kbPackages user's local learnings from knowledge/local/ and creates a GitHub PR to contribute them to a community knowledge base. Sanitizes sensitive data before uploading.
/fire-learncodingTurns any codebase into a linear learning walkthrough — explains each file from the entry point outward. Accepts on/off toggle, GitHub URL or local path, and watch/active modes.
/SKILLCreates conventional git commit from conversation intent using git-agent and pushes to remote. Accepts optional Claude model name for co-author.
/studyStudies changes in the current branch to deeply understand the project's ongoing work and prepare for upcoming tasks.