Conversation
Requirement: Follow the official Claude Code slash commands guide (https://docs.claude.com/en/docs/claude-code/slash-commands) which requires frontmatter metadata for better discoverability and context. Implementation: - Added YAML frontmatter to make-branch.md: - description: Brief explanation for SlashCommand tool context - argument-hint: Shows expected input format to guide users - allowed-tools: Specifies Bash(git checkout:*) permission needed - Preserved all existing content structure (Usage, Template, Examples, Workflow) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Requirement: Follow the official Claude Code slash commands guide which mandates frontmatter metadata for proper tool integration and user guidance. Implementation: - Added YAML frontmatter to make-pr.md: - description: Explains command purpose for SlashCommand tool context - allowed-tools: Specifies Bash(gh:*) and Bash(git:*) permissions needed for PR creation workflow - Preserved all existing content (Usage, Purpose, PR Body Generation, Workflow sections) - No argument-hint needed as command doesn't accept arguments 🤖 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 #8
Update all existing custom Claude Code commands to follow the official slash commands guide at https://docs.claude.com/en/docs/claude-code/slash-commands
The guide mandates frontmatter metadata for better discoverability, context provision, and proper tool integration. Commands without frontmatter lack the metadata that SlashCommand tool uses for context and user guidance.
Implementation
Updated make-branch.md
description: Brief explanation for SlashCommand tool contextargument-hint: Shows expected input format[<type>]: <description>\n#<issue-index>allowed-tools: SpecifiesBash(git checkout:*)permission for branch creationUpdated make-pr.md
description: Explains command purpose for SlashCommand tool contextallowed-tools: SpecifiesBash(gh:*)andBash(git:*)permissions for PR workflowNo changes to make-commit.md and make-task-issue.md
Test
Reference
Human Check
🤖 Generated with Claude Code