-
Notifications
You must be signed in to change notification settings - Fork 480
feat(create-issue): Add skill for creating GitHub issues using templates #34465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
oidacra
wants to merge
5
commits into
main
Choose a base branch
from
34460-create-create-issue-skill
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+350
−0
Conversation
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
7 tasks
KevinDavilaDotCMS
approved these changes
Jan 30, 2026
dario-daza
approved these changes
Jan 30, 2026
sfreudenthaler
previously requested changes
Feb 2, 2026
Member
sfreudenthaler
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love this.
Put in a few items for the missing Team : Platform who's focus is on our dotCMS Cloud Products
Co-authored-by: Steve Freudenthaler <[email protected]>
Co-authored-by: Steve Freudenthaler <[email protected]>
Co-authored-by: Steve Freudenthaler <[email protected]>
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 2, 2026
…tes (#34465) ## Summary Adds a new Claude AI skill that automates GitHub issue creation using repository templates, ensuring consistent issue structure and proper label assignment across the dotCMS project. ## Changes Made ### Documentation - **Added Claude skill**: `.claude/skills/create-issue/SKILL.md` (230 lines) - Comprehensive workflow for creating GitHub issues using predefined templates - Supports Defect, Feature, Task, Spike, Epic, and UX issue types - Handles both English and Spanish input (translates to English) - Automated label assignment including team selection (Falcon, Maintenance, Scout) - Feature label selection logic based on semantic analysis - Integration with GitHub CLI for non-interactive issue creation - **Added feature labels reference**: `.claude/skills/create-issue/references/feature-labels.md` (116 lines) - Complete list of available `dotCMS : [Feature]` labels - Keyword matching guide for label selection - Selection strategy and examples - Instructions for keeping labels up-to-date ## Technical Details The skill follows a 10-step workflow: 1. **Template Discovery**: Dynamically reads available issue templates from `.github/ISSUE_TEMPLATE/` 2. **Template Analysis**: Reads actual template files to understand structure (never assumes) 3. **Issue Classification**: Analyzes user input to determine issue type (Defect/Feature/Task/Spike/Epic/UX) 4. **Title Generation**: Creates concise English titles (translates from Spanish if needed) 5. **Feature Label Selection**: Uses semantic analysis to select appropriate `dotCMS : [Feature]` label 6. **Technology Detection**: Determines technology context (Front-end/Java/Platform) 7. **Team Assignment**: Prompts user for team selection (Falcon/Maintenance/Scout) 8. **Body Construction**: Builds markdown body matching template structure 9. **Issue Creation**: Uses GitHub CLI with proper label assignment 10. **Confirmation**: Verifies all labels and project assignment **Key Features**: - Avoids `--template` flag incompatibility by manually constructing body - Automatically applies template labels, team labels, and feature labels - Handles project assignment via template configuration - Includes authorization refresh instructions for GitHub CLI ## Breaking Changes None - This is a new skill addition that doesn't affect existing functionality. ## Testing - [x] Skill file structure validated - [x] Template reading workflow verified - [x] Label selection logic tested with examples - [x] GitHub CLI command format validated - [x] Markdown formatting verified ## Related Issues N/A - New feature addition ## Additional Notes - The skill is designed to be used by Claude AI assistants (Cursor, Claude Code) when users request issue creation - Feature labels reference can be updated by running: `gh label list --repo dotCMS/core --limit 100 | grep "dotCMS :"` - The skill respects template-specific requirements (e.g., "Product team use only" for Epic/Feature templates) - Team selection is mandatory and uses AskUserQuestion tool for user interaction This PR fixes: #34460 --------- Co-authored-by: Steve Freudenthaler <[email protected]>
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.
Summary
Adds a new Claude AI skill that automates GitHub issue creation using repository templates, ensuring consistent issue structure and proper label assignment across the dotCMS project.
Changes Made
Documentation
Added Claude skill:
.claude/skills/create-issue/SKILL.md(230 lines)Added feature labels reference:
.claude/skills/create-issue/references/feature-labels.md(116 lines)dotCMS : [Feature]labelsTechnical Details
The skill follows a 10-step workflow:
.github/ISSUE_TEMPLATE/dotCMS : [Feature]labelKey Features:
--templateflag incompatibility by manually constructing bodyBreaking Changes
None - This is a new skill addition that doesn't affect existing functionality.
Testing
Related Issues
N/A - New feature addition
Additional Notes
gh label list --repo dotCMS/core --limit 100 | grep "dotCMS :"This PR fixes: #34460