
























@@ -12,23 +12,25 @@ const COLORS = {
1212softerAmber: "F9D65C",
1313paleYellow: "F7E7A1",
1414saturatedGreen: "0E8A16",
15-mutedGreen: "B8E0B0",
16-paleGreen: "DDF4E4",
17-proofGreen: "C2E0C6",
18-mutedProofGreen: "9BD3A0",
19-overrideGreen: "DDECCF",
15+mutedGreen: "8C959F",
16+paleGreen: "D6E3DA",
17+proofGreen: "2DA44E",
18+mutedProofGreen: "1A7F37",
19+overrideGreen: "2DA44E",
2020saturatedBlue: "0F2CCE",
21-paleBlue: "CFE3F8",
22-channelBlue: "DDEBFA",
23-dedupeBlue: "BFD4F2",
24-triageBlue: "D8E8F8",
21+paleBlue: "0A3069",
22+channelBlue: "0969DA",
23+dedupeBlue: "57606A",
24+triageBlue: "0969DA",
2525saturatedPurple: "7057FF",
26-mutedPurple: "D9CCF5",
27-appPurple: "EADFF8",
28-neutralGray: "EDEDED",
29-duplicateGray: "CFD3D7",
26+mutedPurple: "57606A",
27+taxonomyGray: "6E7781",
28+taxonomySteel: "57606A",
29+appPurple: "6E7781",
30+neutralGray: "E5E7EB",
31+duplicateGray: "D1D5DB",
3032darkGray: "8C8C8C",
31-mutedRose: "E8C4CB",
33+mutedRose: "8C959F",
3234mutedRed: "E99695",
3335black: "000000",
3436white: "FFFFFF",
@@ -43,6 +45,13 @@ const EXACT_COLORS = new Map(
4345P1: COLORS.saturatedOrangeRed,
4446P2: COLORS.saturatedAmber,
4547P3: COLORS.mutedGreen,
48+"rating: 🦀 challenger crab": "1F883D",
49+"rating: 🦞 diamond lobster": "0969DA",
50+"rating: 🐚 platinum hermit": "0F766E",
51+"rating: 🦐 gold shrimp": "B7791F",
52+"rating: 🦪 silver shellfish": "7A828E",
53+"rating: 🧂 unranked krab": "8C2F39",
54+"rating: 🌊 off-meta tidepool": "6E7781",
4655"impact:data-loss": COLORS.saturatedRed,
4756"impact:security": COLORS.saturatedRed,
4857"impact:crash-loop": COLORS.saturatedOrangeRed,
@@ -63,13 +72,13 @@ const EXACT_COLORS = new Map(
6372"triage:done": COLORS.mutedGreen,
6473"triage:needs-review": COLORS.paleBlue,
6574"triage:started": COLORS.mutedPurple,
66-agents: COLORS.mutedPurple,
75+agents: COLORS.taxonomySteel,
6776docs: COLORS.paleBlue,
6877cli: COLORS.paleBlue,
6978commands: COLORS.paleBlue,
7079scripts: COLORS.mutedPurple,
7180gateway: COLORS.mutedPurple,
72-codex: COLORS.neutralGray,
81+codex: COLORS.taxonomySteel,
7382docker: COLORS.paleGreen,
7483tui: COLORS.paleGreen,
7584"extensions: NEW": COLORS.channelBlue,
@@ -158,13 +167,13 @@ const FAMILY_RULES = [
158167{
159168family: "extension",
160169match: (name) => name.startsWith("extensions: "),
161-color: COLORS.neutralGray,
170+color: COLORS.taxonomyGray,
162171reason: "plugin implementation taxonomy should not compete with priority",
163172},
164173{
165174family: "plugin",
166175match: (name) => name.startsWith("plugin: "),
167-color: COLORS.neutralGray,
176+color: COLORS.taxonomyGray,
168177reason: "plugin taxonomy stays neutral unless it becomes an action gate",
169178},
170179{
@@ -196,6 +205,9 @@ function exactFamily(name) {
196205if (/^P[0-3]$/.test(name)) {
197206return "priority";
198207}
208+if (name.startsWith("rating:")) {
209+return "rating";
210+}
199211if (name.startsWith("impact:")) {
200212return "impact";
201213}
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。