How to Contribute
Contribution Guide
Section titled “Contribution Guide”All content on this site is managed on GitHub. Your contributions make the course better!
What You Can Contribute
Section titled “What You Can Contribute”- Fix errors: Correct typos and code mistakes in lecture content
- Improve explanations: Add clarifications to unclear concepts
- Share lab tips: Share your troubleshooting experiences
- Add references: Link useful papers and blogs
- Submit assignments: PR your assignment to the
assignments/folder
Quick Start
Section titled “Quick Start”# 1. Fork on GitHub (Fork button in the top-right)
# 2. Clone locallygit clone https://github.com/[YOUR_USERNAME]/ai-systems-2026.gitcd ai-systems-2026
# 3. Install dependenciespnpm install
# 4. Run development serverpnpm run dev# → http://localhost:4321
# 5. Verify build after changes (required before PR!)pnpm run buildCreating a PR
Section titled “Creating a PR”# Create a new branchgit checkout -b fix/week-03-typo
# Commit after making changesgit add .git commit -m "fix: fix typo in Week 3 MIG description"
# Pushgit push origin fix/week-03-typo
# Create PR on GitHubFurther Reading
Section titled “Further Reading”- PR Guide — PR checklist and review process
- Content Style Guide — Rules for writing course materials