Overview
Automatically suggest or apply labels based on issue content.
Tag Detection Rules
| Pattern |
Tag |
| "bug", "broken", "error", "fix" |
bug |
| "feature", "add", "new", "implement" |
enhancement |
| "docs", "documentation", "readme" |
documentation |
| "test", "coverage", "spec" |
testing |
| "refactor", "cleanup", "improve" |
refactor |
| "security", "vulnerability", "CVE" |
security |
Commands
issue create "Fix login bug" --auto-tag # Applies 'bug' automatically
issue create "Add dark mode" --auto-tag # Applies 'enhancement'
issue suggest-tags 42 # Shows suggested tags for existing issue
Configuration
Allow custom rules via .issue-cli.json:
{
"auto_tag_rules": [
{"pattern": "API", "tag": "api"},
{"pattern": "database|migration", "tag": "database"}
]
}
Overview
Automatically suggest or apply labels based on issue content.
Tag Detection Rules
bugenhancementdocumentationtestingrefactorsecurityCommands
Configuration
Allow custom rules via
.issue-cli.json:{ "auto_tag_rules": [ {"pattern": "API", "tag": "api"}, {"pattern": "database|migration", "tag": "database"} ] }