Conversation
Requirement: Shorten command name from /make-branch to /branch for faster invocation during development workflow. Implementation: - Renamed .claude/commands/make-branch.md to branch.md using git mv - Updated command title from "make-branch" to "branch" - Updated all usage examples from /make-branch to /branch - Updated cross-reference to issue-task command in examples 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Requirement: Shorten command name from /make-commit to /commit for faster invocation during development workflow. Implementation: - Renamed .claude/commands/make-commit.md to commit.md using git mv - Updated command title from "Smart Commit Command" to "Commit Command" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Requirement: Shorten command name from /make-pr to /pr for faster invocation during development workflow. Implementation: - Renamed .claude/commands/make-pr.md to pr.md using git mv - Updated command title from "make-pr" to "pr" - Updated workflow example from /make-pr to /pr 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Requirement: Shorten command name from /make-task-issue to /issue-task for faster invocation during development workflow. Implementation: - Renamed .claude/commands/make-task-issue.md to issue-task.md using git mv - Updated command title from "Make Task Issue" to "Issue Task Command" - Updated all usage examples from /make-task-issue to /issue-task - Updated relationship description with /plan command 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Requirement: Shorten command name from /plan-issue to /plan for faster invocation during development workflow. Implementation: - Renamed .claude/commands/plan-issue.md to plan.md using git mv - Updated command title from "Plan Issue" to "Plan Command" - Updated all usage examples from /plan-issue to /plan - Updated references to /issue-task command throughout the file - Updated separation of concerns section to reference new command names 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Requirement: Update make-command.md to reference the newly renamed command files for consistency. Implementation: - Updated Reference section to use new command file names: - make-branch.md → branch.md - make-commit.md → commit.md - make-pr.md → pr.md - make-task-issue.md → issue-task.md - plan-issue.md → plan.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Requirement: Update both English and Korean documentation to reflect the renamed custom commands. Implementation: - Updated CONVENTIONAL_COMMITS.md: - Changed /make-commit to /commit - Changed /make-branch to /branch - Changed /make-pr to /pr - Updated file references in all command sections - Updated CONVENTIONAL_COMMITS.ko.md with same changes in Korean - Maintained all other documentation content unchanged 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Requirement
Resolves #21
The current custom command names (
make-branch,make-commit,make-pr,make-task-issue,plan-issue) are too long and cumbersome to invoke frequently during development. This PR renames them to shorter, more intuitive aliases to improve development workflow efficiency.Implementation
Renamed 5 custom commands to shorter aliases:
/make-branch/branch/make-commit/commit/make-pr/pr/make-task-issue/issue-task/plan-issue/planChanges made:
git mvto preserve historyFiles affected:
.claude/commands/make-branch.md→.claude/commands/branch.md.claude/commands/make-commit.md→.claude/commands/commit.md.claude/commands/make-pr.md→.claude/commands/pr.md.claude/commands/make-task-issue.md→.claude/commands/issue-task.md.claude/commands/plan-issue.md→.claude/commands/plan.md.claude/commands/make-command.md(references updated)docs/CONVENTIONAL_COMMITS.md(custom commands section updated)docs/CONVENTIONAL_COMMITS.ko.md(custom commands section updated)Test
git mvoperations/branch,/commit,/pr,/issue-task,/plancommands work correctlyHuman Check
🤖 Generated with Claude Code