mirror of
https://github.com/davila7/claude-code-templates.git
synced 2026-09-19 01:30:23 +08:00
48d334eb5c
- Agents organized into 12 categories: ai-specialists, api-graphql, business-marketing, data-ai, database, development-team, development-tools, devops-infrastructure, documentation, expert-advisors, modernization, performance-testing, programming-languages, security, web-tools, plus existing team directories - Commands organized into 6 categories: automation, documentation, git-workflow, licensing, project-management, testing, utilities - MCPs organized into 5 categories: database, deepgraph, filesystem, integration, web - Maintains backward compatibility with subcategory support for downloads while ensuring flat installation structure - Improves discoverability and filtering in web interface with enhanced categorization 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
795 B
795 B
Create Pull Request Command
Create a new branch, commit changes, and submit a pull request.
Behavior
- Creates a new branch based on current changes
- Formats modified files using Biome
- Analyzes changes and automatically splits into logical commits when appropriate
- Each commit focuses on a single logical change or feature
- Creates descriptive commit messages for each logical unit
- Pushes branch to remote
- Creates pull request with proper summary and test plan
Guidelines for Automatic Commit Splitting
- Split commits by feature, component, or concern
- Keep related file changes together in the same commit
- Separate refactoring from feature additions
- Ensure each commit can be understood independently
- Multiple unrelated changes should be split into separate commits