https://github.com/pforret/claude_code_tips
Claude Code tips, best practices, and resources
https://github.com/pforret/claude_code_tips
claude-code
Last synced: 6 months ago
JSON representation
Claude Code tips, best practices, and resources
- Host: GitHub
- URL: https://github.com/pforret/claude_code_tips
- Owner: pforret
- License: mit
- Created: 2025-07-14T15:00:10.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-07-15T09:11:01.000Z (7 months ago)
- Last Synced: 2025-08-07T20:01:30.745Z (6 months ago)
- Topics: claude-code
- Homepage: https://pforret.github.io/claude_code_tips/
- Size: 28.3 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README




# [Claude Code tips](https://github.com/pforret/claude_code_tips)
## 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](COMMANDS.md)**: Links to essential slash commands from various context engineering projects
- **[FILES.md](FILES.md)**: essential files that help you do better AI-assisted development with Claude Code
- **[GIT.md](GIT.md)**: Comprehensive guide on using Git as a checkpoint system with Claude Code
- **[MCP.md](MCP.md)**: Essential MCP tools and best practices for agentic coding
## Key Resources Referenced
### Context Engineering Sources
- **David Kimai**: [davidkimai/Context-Engineering](https://github.com/davidkimai/Context-Engineering/tree/main/.claude/commands)
- **Cole**: [coleam00/context-engineering-intro](https://github.com/davidkimai/Context-Engineering/tree/main/.claude/commands)
- **SuperClaude**: [NomenAK/SuperClaude](https://github.com/davidkimai/Context-Engineering/tree/main/.claude/commands)
### MCP Tools
- **Context7**: Real-time documentation provider (https://context7.com/)
- **VisionCraft**: 100,000+ libraries with real-time updates [augmentedstartups/VisionCraft-MCP-Server](https://github.com/davidkimai/Context-Engineering/tree/main/.claude/commands)
- **Gemini CLI Integration**: Second opinion consultation for complex decisions
### Best Practices Source
- **Anthropic Engineering**: [anthropic.com/engineering/claude-code-best-practices](https://github.com/davidkimai/Context-Engineering/tree/main/.claude/commands)
## Git Workflow Strategy
This repository follows a checkpoint-based Git workflow as documented in GIT.md:
1. Create feature branches: `git checkout -b [new_branch]`
2. Regular checkpoints: `git add . && git commit -m '[status]'`
3. Rollback capability: `git reset --hard [commit_hash]`
4. Squash before PR: `git rebase -i [start_commit]`
5. Force push if needed: `git push origin [branch] -f`