
Project Overview
This is a documentation repository containing Claude Code tips, best practices, and resources. It’s a collection of knowledge about MCP (Model Context Protocol) tools, Git workflows, and essential commands for effective Claude Code usage.
Repository Structure
- COMMANDS.md: Links to essential slash commands from various context engineering projects
- FILES.md: essential files that help you do better AI-assisted development with Claude Code
- GIT.md: Comprehensive guide on using Git as a checkpoint system with Claude Code
- MCP.md: Essential MCP tools and best practices for agentic coding
Key Resources Referenced
Context Engineering Sources
- Context7: Real-time documentation provider (https://context7.com/)
- VisionCraft: 100,000+ libraries with real-time updates augmentedstartups/VisionCraft-MCP-Server
- Gemini CLI Integration: Second opinion consultation for complex decisions
Best Practices Source
Git Workflow Strategy
This repository follows a checkpoint-based Git workflow as documented in GIT.md:
- Create feature branches:
git checkout -b [new_branch]
- Regular checkpoints:
git add . && git commit -m '[status]'
- Rollback capability:
git reset --hard [commit_hash]
- Squash before PR:
git rebase -i [start_commit]
- Force push if needed:
git push origin [branch] -f