mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-07-07 11:17:48 +02:00
7db5ade777
Added comprehensive examples for Claude Code features including slash commands, subagents, memory, MCP protocol, skills, and plugins with documentation and quick reference guides. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
701 B
701 B
name, description, tags
| name | description | tags |
|---|---|---|
| Prepare Pull Request | Clean up code, stage changes, and prepare a pull request | git, workflow |
Pull Request Preparation Checklist
Before creating a PR, execute these steps:
-
Run linting:
prettier --write . -
Run tests:
npm test -
Review git diff:
git diff HEAD -
Stage changes:
git add . -
Create commit message following conventional commits:
fix:for bug fixesfeat:for new featuresdocs:for documentationrefactor:for code restructuringtest:for test additionschore:for maintenance
-
Generate PR summary including:
- What changed
- Why it changed
- Testing performed
- Potential impacts