|
| 1 | +# Kubernetes-style label taxonomy for mcpproxy-go |
| 2 | +# Synced to GitHub via .github/workflows/label-sync.yml (crazy-max/ghaction-github-labeler) |
| 3 | +# |
| 4 | +# Color families: |
| 5 | +# kind/* — indigo/purple (#5C4DBF – #7C6DD8) |
| 6 | +# area/* — teal/cyan (#0B7A75 – #1AA3A0) |
| 7 | +# priority/* — red/orange (#B60205 – #E4A000) |
| 8 | +# triage/* — grey/slate (#4A5568 – #B0BEC5) |
| 9 | +# size/* — green (#1A7F37 – #A2D7A0) |
| 10 | +# kept defaults — GitHub conventional colours |
| 11 | + |
| 12 | +# --------------------------------------------------------------------------- |
| 13 | +# kind/* — what type of change is this? |
| 14 | +# --------------------------------------------------------------------------- |
| 15 | +- name: "kind/bug" |
| 16 | + color: "D93F0B" |
| 17 | + description: "Something isn't working" |
| 18 | + |
| 19 | +- name: "kind/feature" |
| 20 | + color: "6E40C9" |
| 21 | + description: "New capability or user-visible behaviour" |
| 22 | + |
| 23 | +- name: "kind/enhancement" |
| 24 | + color: "7C6DD8" |
| 25 | + description: "Improvement to an existing feature" |
| 26 | + |
| 27 | +- name: "kind/docs" |
| 28 | + color: "5C4DBF" |
| 29 | + description: "Documentation only changes" |
| 30 | + |
| 31 | +- name: "kind/refactor" |
| 32 | + color: "8B7FE8" |
| 33 | + description: "Code restructuring with no behaviour change" |
| 34 | + |
| 35 | +- name: "kind/test" |
| 36 | + color: "9B8FF5" |
| 37 | + description: "Adding or improving tests" |
| 38 | + |
| 39 | +- name: "kind/chore" |
| 40 | + color: "A89FD8" |
| 41 | + description: "Maintenance, build, dependency, or CI changes" |
| 42 | + |
| 43 | +- name: "kind/security" |
| 44 | + color: "B60205" |
| 45 | + description: "Security fix or hardening" |
| 46 | + |
| 47 | +- name: "kind/question" |
| 48 | + color: "C0B0EF" |
| 49 | + description: "Further information is requested or a design question" |
| 50 | + |
| 51 | +# --------------------------------------------------------------------------- |
| 52 | +# area/* — which part of the codebase / product domain? |
| 53 | +# --------------------------------------------------------------------------- |
| 54 | +- name: "area/proxy" |
| 55 | + color: "0B7A75" |
| 56 | + description: "Core MCP proxy engine and tool routing" |
| 57 | + |
| 58 | +- name: "area/oauth" |
| 59 | + color: "0E8F89" |
| 60 | + description: "OAuth 2.1 / PKCE authentication flows" |
| 61 | + |
| 62 | +- name: "area/docker" |
| 63 | + color: "11A39D" |
| 64 | + description: "Docker security isolation and container lifecycle" |
| 65 | + |
| 66 | +- name: "area/tray" |
| 67 | + color: "14B8B1" |
| 68 | + description: "macOS / Windows system-tray application" |
| 69 | + |
| 70 | +- name: "area/web-ui" |
| 71 | + color: "17CCC4" |
| 72 | + description: "Vue 3 web dashboard (frontend/)" |
| 73 | + |
| 74 | +- name: "area/cli" |
| 75 | + color: "1AA3A0" |
| 76 | + description: "Command-line interface (mcpproxy CLI commands)" |
| 77 | + |
| 78 | +- name: "area/storage" |
| 79 | + color: "0E8080" |
| 80 | + description: "BBolt database, config, and persistence" |
| 81 | + |
| 82 | +- name: "area/search" |
| 83 | + color: "1296A0" |
| 84 | + description: "BM25 / Bleve search index and tool discovery" |
| 85 | + |
| 86 | +- name: "area/teams" |
| 87 | + color: "0A6E6E" |
| 88 | + description: "Server edition multi-user / teams features" |
| 89 | + |
| 90 | +- name: "area/telemetry" |
| 91 | + color: "178080" |
| 92 | + description: "Anonymous usage telemetry and feedback" |
| 93 | + |
| 94 | +- name: "area/build-ci" |
| 95 | + color: "1BAAAA" |
| 96 | + description: "GitHub Actions, Makefile, build scripts" |
| 97 | + |
| 98 | +- name: "area/packaging" |
| 99 | + color: "1DB8B8" |
| 100 | + description: "Homebrew, .deb, Windows installer, Docker image" |
| 101 | + |
| 102 | +# --------------------------------------------------------------------------- |
| 103 | +# priority/* — how urgent / impactful? |
| 104 | +# --------------------------------------------------------------------------- |
| 105 | +- name: "priority/critical" |
| 106 | + color: "B60205" |
| 107 | + description: "Must fix immediately — data loss, security, or total breakage" |
| 108 | + |
| 109 | +- name: "priority/high" |
| 110 | + color: "D93F0B" |
| 111 | + description: "Should be addressed in the current or next release" |
| 112 | + |
| 113 | +- name: "priority/medium" |
| 114 | + color: "E4A000" |
| 115 | + description: "Important but not blocking a release" |
| 116 | + |
| 117 | +- name: "priority/low" |
| 118 | + color: "F9D0C4" |
| 119 | + description: "Nice to have; address when bandwidth allows" |
| 120 | + |
| 121 | +# --------------------------------------------------------------------------- |
| 122 | +# triage/* — where is this issue in the triage lifecycle? |
| 123 | +# --------------------------------------------------------------------------- |
| 124 | +- name: "triage/needs-triage" |
| 125 | + color: "4A5568" |
| 126 | + description: "Newly opened; not yet reviewed by a maintainer" |
| 127 | + |
| 128 | +- name: "triage/accepted" |
| 129 | + color: "718096" |
| 130 | + description: "Triaged and accepted for the backlog" |
| 131 | + |
| 132 | +- name: "triage/duplicate" |
| 133 | + color: "A0AEC0" |
| 134 | + description: "This issue or PR already exists" |
| 135 | + |
| 136 | +- name: "triage/wontfix" |
| 137 | + color: "B0BEC5" |
| 138 | + description: "This will not be worked on" |
| 139 | + |
| 140 | +- name: "triage/needs-information" |
| 141 | + color: "CBD5E0" |
| 142 | + description: "More information is needed from the reporter" |
| 143 | + |
| 144 | +# --------------------------------------------------------------------------- |
| 145 | +# size/* — estimated effort (set by maintainer or PR automation) |
| 146 | +# --------------------------------------------------------------------------- |
| 147 | +- name: "size/XS" |
| 148 | + color: "1A7F37" |
| 149 | + description: "Trivial change — a few lines" |
| 150 | + |
| 151 | +- name: "size/S" |
| 152 | + color: "2EA44F" |
| 153 | + description: "Small — less than a day of work" |
| 154 | + |
| 155 | +- name: "size/M" |
| 156 | + color: "57C374" |
| 157 | + description: "Medium — a few days of work" |
| 158 | + |
| 159 | +- name: "size/L" |
| 160 | + color: "85D99E" |
| 161 | + description: "Large — up to a week of work" |
| 162 | + |
| 163 | +- name: "size/XL" |
| 164 | + color: "A2D7A0" |
| 165 | + description: "Extra-large — multi-week or architectural change" |
| 166 | + |
| 167 | +# --------------------------------------------------------------------------- |
| 168 | +# GitHub conventional labels — keep as-is |
| 169 | +# --------------------------------------------------------------------------- |
| 170 | +- name: "good first issue" |
| 171 | + color: "7057FF" |
| 172 | + description: "Good for newcomers" |
| 173 | + |
| 174 | +- name: "help wanted" |
| 175 | + color: "008672" |
| 176 | + description: "Extra attention is needed" |
0 commit comments