Files
claude-engineering-plugin/plugins/coding-tutor/commands/sync-tutorials.md
Nityesh Agarwal 5a79f97374 Add coding-tutor plugin to marketplace (#61)
Personalized coding tutorials that build on your existing knowledge
and use your actual codebase for examples. Includes spaced repetition
quizzes to reinforce learning.

- 3 commands: /teach-me, /quiz-me, /sync-tutorials
- 1 skill: coding-tutor

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-22 18:08:11 -06:00

26 lines
910 B
Markdown

# 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-tutorials --private --source=. --push`
5. **Report results**: Tell the user what was synced or that everything is already up to date
## Notes
- The tutorials repo is at: `~/coding-tutor-tutorials/`
- Always use `--private` when creating the GitHub repo
- This is your personal learning journey - keep it backed up!