xclaude-dev-tools
v1.0.0
Published
Claude Code slash commands for development workflows — commit, review, PR, testing, and more.
Maintainers
Readme
xClaude Dev Tools
Claude Code slash commands for development workflows.
Commands
| Command | Description |
|---------|-------------|
| /generate-commit | Interactively stage files and create well-structured commits |
| /review | Review current git diff for correctness, security, architecture issues |
| /pr-review | Review a GitHub PR using the same review criteria |
| /pull-request | Create or update a GitHub PR with a structured description |
| /sync-pr | Lightweight PR description refresh after new commits |
| /migration-review | Review database migrations for safety and best practices |
| /test-for | Generate unit tests for a class following project conventions |
Installation
Per-project (recommended)
npm install @anthropic-tools/xclaude-dev-toolsCommands are auto-installed to .claude/commands/ on npm install. Use them in Claude Code as:
/project:generate-commit
/project:review
/project:pull-requestGlobal (available in all projects)
npx xclaude-dev-tools install --globalCommands are installed to ~/.claude/commands/. Use them as:
/user:generate-commit
/user:review
/user:pull-requestManual
Copy the commands/*.md files into your project's .claude/commands/ directory.
CLI
xclaude-dev-tools install [--global] # Install commands
xclaude-dev-tools uninstall [--global] # Remove commands
xclaude-dev-tools list # Show available commandsUninstall
xclaude-dev-tools uninstall # Remove project commands
xclaude-dev-tools uninstall --global # Remove global commands
npm uninstall @anthropic-tools/xclaude-dev-tools