From e2659e3260fd0e23d4c22a39d35fa6cb6efa67ae Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 18 Jun 2026 17:46:39 +0000 Subject: [PATCH 1/4] fix(docs): correct area:ci colour family classification in LABEL_COLOR_STRATEGY.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Addresses Gemini code review findings from PR #990 that were submitted after the PR had already merged: - Section 1.1 Table 1: add area:ci to Blue row Label Categories; remove it from Gray row (it uses #C5DEF5 — Blue tertiary) - Section 2.2 Blue Family: add assignment rule for area:ci → #C5DEF5 and add area:ci to Label Examples - Section 2.7 Gray Family: remove area:ci from Label Examples (assignment rule already correctly noted the Blue family exception) - Bump version v1.1.0 → v1.1.1 and add changelog entry Closes #992. --- docs/LABEL_COLOR_STRATEGY.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/LABEL_COLOR_STRATEGY.md b/docs/LABEL_COLOR_STRATEGY.md index 594c3447..d9590291 100644 --- a/docs/LABEL_COLOR_STRATEGY.md +++ b/docs/LABEL_COLOR_STRATEGY.md @@ -2,7 +2,7 @@ title: Label Color Strategy Specification description: Comprehensive color strategy for the 150 canonical labels based on semantic meaning and workflow state file_type: documentation -version: v1.1.0 +version: v1.1.1 created_date: '2026-05-31' last_updated: '2026-06-18' authors: @@ -24,7 +24,7 @@ stability: stable # Label Color Strategy Specification -**Version**: v1.1.0 +**Version**: v1.1.1 **Created**: 2026-05-31 **Updated**: 2026-06-18 **Owner**: LightSpeed Team @@ -53,12 +53,12 @@ This document defines a comprehensive color strategy for the 150 canonical label | Family | Hex Codes | Semantic Meaning | Label Categories | Count | | --- | --- | --- | --- | --- | | **Green (Ready/Done)** | `#1A7F37`, `#2A7A3B`, `#ABEBC6` | Positive completion, resolution, readiness | status:done, status:ready, type:enhancement (✓merged), design:approved | 18 | -| **Blue (Planning/Review)** | `#0969DA`, `#3467D3`, `#C5DEF5` | Discussion, collaboration, needs input | type:documentation, type:discussion, status:needs-review, lang:* | 52 | +| **Blue (Planning/Review)** | `#0969DA`, `#3467D3`, `#C5DEF5` | Discussion, collaboration, needs input | type:documentation, type:discussion, status:needs-review, area:ci, lang:* | 52 | | **Yellow (Testing/Audit)** | `#D29922`, `#F2D06D`, `#FCE2B7` | Validation, testing, audit workflows | status:needs-testing, type:bug (when testing), type:audit | 24 | | **Red (Blocked/Impediment)** | `#CF222E`, `#B91C1C`, `#FCE2E2` | Blockers, duplicates, critical issues | status:blocked, status:duplicate, priority:critical, type:security | 18 | | **Orange (On-Hold/Deferred)** | `#9A6700`, `#D5A87B`, `#FDBF7C` | Delayed, deferred, rejected, wontfix | status:wontfix, status:on-hold, type:epic (when deferred), priority:minor | 16 | | **Purple (Design Workflows)** | `#8957E5`, `#B4A7E8`, `#D89AF6` | Design, UX, accessibility | type:design, type:ui, type:a11y, design:* | 14 | -| **Gray (Meta/Infrastructure)** | `#57606A`, `#B1BAC4`, `#D0D7DE` | Process, meta, automation, infrastructure | meta:*, area:ci, type:chore, domain:* | 12 | +| **Gray (Meta/Infrastructure)** | `#57606A`, `#B1BAC4`, `#D0D7DE` | Process, meta, automation, infrastructure | meta:*, type:chore, domain:* | 12 | | **Teal (Integration/External)** | `#007580`, `#0D7F6F`, `#9FE1E3` | External systems, integrations, dependencies | area:integration, area:external, type:dependency, platform:* | 16 | **Total Coverage**: 150 labels across 8 families @@ -112,6 +112,7 @@ This document defines a comprehensive color strategy for the 150 canonical label - All `type:documentation` labels → `#3467D3` - All `type:discussion` labels → `#3467D3` - All `lang:*` (language) labels → `#C5DEF5` +- All `area:ci` labels → `#C5DEF5` (Blue tertiary — CI is a planning/infrastructure workflow) - Code review related (needs-review, awaiting-feedback) → `#0969DA` - Discussion/question labels → `#3467D3` @@ -121,6 +122,7 @@ This document defines a comprehensive color strategy for the 150 canonical label - status:needs-feedback - type:discussion - type:documentation +- area:ci - lang:php - lang:javascript @@ -265,7 +267,6 @@ This document defines a comprehensive color strategy for the 150 canonical label - meta:needs-changelog - meta:stale -- area:ci - type:chore - area:maintenance @@ -474,6 +475,7 @@ This specification should be reviewed annually or when: | Date | Change | Author | | --- | --- | --- | +| 2026-06-18 | v1.1.1 — Correct `area:ci` classification: moved from Gray family to Blue family in Table 1 and Section 2.2; removed from Gray family label examples in Section 2.7 (Gemini review follow-up #992) | LightSpeed Team | | 2026-06-18 | v1.1.0 — WCAG 2.2 AA audit: replace 7 non-compliant primary/secondary colors; add tertiary guidance; update accessibility table | LightSpeed Team | | 2026-05-31 | v1.0.0 — Initial specification: 8 color families, 150 label mapping | LightSpeed Team | From 93ef7a93be0b46e42881a627163891340c6520d9 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 19 Jun 2026 04:48:36 +0000 Subject: [PATCH 2/4] fix(docs): correct label family count totals for Blue and Gray MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Blue family count: 52 → 53 (area:ci added) Gray family count: 12 → 11 (area:ci removed) Addresses Gemini Code Assist review feedback on PR #994. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01AuT8NQeGYY9UQHLsX3MMHc --- docs/LABEL_COLOR_STRATEGY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LABEL_COLOR_STRATEGY.md b/docs/LABEL_COLOR_STRATEGY.md index d9590291..403f6d10 100644 --- a/docs/LABEL_COLOR_STRATEGY.md +++ b/docs/LABEL_COLOR_STRATEGY.md @@ -53,12 +53,12 @@ This document defines a comprehensive color strategy for the 150 canonical label | Family | Hex Codes | Semantic Meaning | Label Categories | Count | | --- | --- | --- | --- | --- | | **Green (Ready/Done)** | `#1A7F37`, `#2A7A3B`, `#ABEBC6` | Positive completion, resolution, readiness | status:done, status:ready, type:enhancement (✓merged), design:approved | 18 | -| **Blue (Planning/Review)** | `#0969DA`, `#3467D3`, `#C5DEF5` | Discussion, collaboration, needs input | type:documentation, type:discussion, status:needs-review, area:ci, lang:* | 52 | +| **Blue (Planning/Review)** | `#0969DA`, `#3467D3`, `#C5DEF5` | Discussion, collaboration, needs input | type:documentation, type:discussion, status:needs-review, area:ci, lang:* | 53 | | **Yellow (Testing/Audit)** | `#D29922`, `#F2D06D`, `#FCE2B7` | Validation, testing, audit workflows | status:needs-testing, type:bug (when testing), type:audit | 24 | | **Red (Blocked/Impediment)** | `#CF222E`, `#B91C1C`, `#FCE2E2` | Blockers, duplicates, critical issues | status:blocked, status:duplicate, priority:critical, type:security | 18 | | **Orange (On-Hold/Deferred)** | `#9A6700`, `#D5A87B`, `#FDBF7C` | Delayed, deferred, rejected, wontfix | status:wontfix, status:on-hold, type:epic (when deferred), priority:minor | 16 | | **Purple (Design Workflows)** | `#8957E5`, `#B4A7E8`, `#D89AF6` | Design, UX, accessibility | type:design, type:ui, type:a11y, design:* | 14 | -| **Gray (Meta/Infrastructure)** | `#57606A`, `#B1BAC4`, `#D0D7DE` | Process, meta, automation, infrastructure | meta:*, type:chore, domain:* | 12 | +| **Gray (Meta/Infrastructure)** | `#57606A`, `#B1BAC4`, `#D0D7DE` | Process, meta, automation, infrastructure | meta:*, type:chore, domain:* | 11 | | **Teal (Integration/External)** | `#007580`, `#0D7F6F`, `#9FE1E3` | External systems, integrations, dependencies | area:integration, area:external, type:dependency, platform:* | 16 | **Total Coverage**: 150 labels across 8 families From e6c1cc17bf8229e621dc6379bebc54931edd9d2f Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 19 Jun 2026 04:50:58 +0000 Subject: [PATCH 3/4] fix(docs): bump version to v1.1.2 and update last_updated date MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Required by validate:frontmatter:changed CI check — body changes must be accompanied by a version bump and updated last_updated date. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01AuT8NQeGYY9UQHLsX3MMHc --- docs/LABEL_COLOR_STRATEGY.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/LABEL_COLOR_STRATEGY.md b/docs/LABEL_COLOR_STRATEGY.md index 403f6d10..30bd3474 100644 --- a/docs/LABEL_COLOR_STRATEGY.md +++ b/docs/LABEL_COLOR_STRATEGY.md @@ -2,9 +2,9 @@ title: Label Color Strategy Specification description: Comprehensive color strategy for the 150 canonical labels based on semantic meaning and workflow state file_type: documentation -version: v1.1.1 +version: v1.1.2 created_date: '2026-05-31' -last_updated: '2026-06-18' +last_updated: '2026-06-19' authors: - LightSpeed Team maintainer: LightSpeed Team @@ -24,9 +24,9 @@ stability: stable # Label Color Strategy Specification -**Version**: v1.1.1 +**Version**: v1.1.2 **Created**: 2026-05-31 -**Updated**: 2026-06-18 +**Updated**: 2026-06-19 **Owner**: LightSpeed Team **Status**: Active @@ -475,6 +475,7 @@ This specification should be reviewed annually or when: | Date | Change | Author | | --- | --- | --- | +| 2026-06-19 | v1.1.2 — Correct Blue and Gray label family count totals: Blue 52→53, Gray 12→11 (Gemini review follow-up #994) | LightSpeed Team | | 2026-06-18 | v1.1.1 — Correct `area:ci` classification: moved from Gray family to Blue family in Table 1 and Section 2.2; removed from Gray family label examples in Section 2.7 (Gemini review follow-up #992) | LightSpeed Team | | 2026-06-18 | v1.1.0 — WCAG 2.2 AA audit: replace 7 non-compliant primary/secondary colors; add tertiary guidance; update accessibility table | LightSpeed Team | | 2026-05-31 | v1.0.0 — Initial specification: 8 color families, 150 label mapping | LightSpeed Team | From 897c14d0cbc806bd84ffb8295a5e5541e1f847db Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 19 Jun 2026 05:08:08 +0000 Subject: [PATCH 4/4] fix(docs): sync footer Last Updated date to 2026-06-19 Resolves CodeRabbit review: footer still showed 2026-06-18 while metadata already said 2026-06-19. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01AuT8NQeGYY9UQHLsX3MMHc --- docs/LABEL_COLOR_STRATEGY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/LABEL_COLOR_STRATEGY.md b/docs/LABEL_COLOR_STRATEGY.md index 30bd3474..5fa049fe 100644 --- a/docs/LABEL_COLOR_STRATEGY.md +++ b/docs/LABEL_COLOR_STRATEGY.md @@ -483,6 +483,6 @@ This specification should be reviewed annually or when: --- **Document Status**: ✅ Active -**Last Updated**: 2026-06-18 +**Last Updated**: 2026-06-19 **Next Review**: 2027-06-18 (annual) **Owner**: LightSpeed Team