mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-06-05 22:36:34 +02:00
7f2e77337e
Update all documentation footers from generic "April 2026 / 2.1+" to the specific sync date (April 9, 2026) and documented version (2.3.0). Also add version/date footers to zh/CATALOG.md and zh/01-slash-commands/README.md which were missing them. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
800 B
800 B
description, allowed-tools
| description | allowed-tools |
|---|---|
| Clean up code, stage changes, and prepare a pull request | Bash(git add:*), Bash(git status:*), Bash(git diff:*), Bash(npm test:*), Bash(npm run lint:*) |
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
Last Updated: April 9, 2026