mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-07-07 11:17:48 +02:00
ee0f4bd5d9
- Add comprehensive built-in commands reference (40+ commands) - Document argument handling ($ARGUMENTS, $1, $2, etc.) - Add bash execution syntax (! prefix) and file references (@ prefix) - Update frontmatter to official fields (allowed-tools, argument-hint, model, etc.) - Add Plugin Commands and MCP Slash Commands sections - Add SlashCommand Tool documentation for programmatic invocation - Add Skills vs Slash Commands comparison table - Create commit.md example with bash execution and context - Update existing examples to use official frontmatter format - Add OpenSpec proposal for change tracking
763 B
763 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