From d17041f7a9ea624bf74b1793dc2d8ef59191dcaa Mon Sep 17 00:00:00 2001 From: marius-kilocode Date: Mon, 13 Jul 2026 10:26:35 +0200 Subject: [PATCH] chore(script): reconcile team list with active maintainers The hardcoded team list in packages/script/src/index.ts (Script.team) and its duplicate in script/changelog-github.cjs had drifted apart and both included accounts no longer in the Kilo-Org. This list is consumed by script/raw-changelog.ts to strip 'Thanks @user!' attribution for internal members, so stale entries let departed contributors keep receiving credit while active ones still get thanked. Reconcile both copies against the live org-member and repo-collaborator rosters: remove departed humans, add missing active accounts, keep all bot/CI accounts, and alphabetize for parity between the two files. --- packages/script/src/index.ts | 21 +++++++++------------ script/changelog-github.cjs | 21 +++++++++------------ 2 files changed, 18 insertions(+), 24 deletions(-) diff --git a/packages/script/src/index.ts b/packages/script/src/index.ts index 10e5c9fc5c..ed8da4c7cb 100644 --- a/packages/script/src/index.ts +++ b/packages/script/src/index.ts @@ -107,45 +107,42 @@ const VERSION = await (async () => { // kilocode_change start const team = [ "actions-user", - "kilo-maintainer[bot]", - "kiloconnect[bot]", - "kiloconnect-lite[bot]", "alexkgold", "arimesser", "arkadiykondrashov", "bturcotte520", - "catrielmuller", "chrarnoldus", "codingelves", - "darkogj", "dependabot[bot]", "dosire", + "Drixled", "DScdng", "emilieschario", "eshurakov", + "evanjacobson", "Helix-Kilo", "iscekic", "jeanduplessis", "jobrietbergen", - "jrf0110", "johnnyeric", - "alex-alecu", - "imanolmzd-svg", - "kilocode-bot", + "jrf0110", "kilo-code-bot", "kilo-code-bot[bot]", + "kilo-engineering", + "kilo-maintainer[bot]", + "kilocode-bot", + "kiloconnect-lite[bot]", + "kiloconnect[bot]", "kirillk", "lambertjosh", - "LigiaZ", "marius-kilocode", - "markijbema", "olearycrew", "pandemicsyn", "pedroheyerdahl", "RSO", "sbreitenother", + "St0rmz1", "suhailkc2025", - "Sureshkumars", ] // kilocode_change end diff --git a/script/changelog-github.cjs b/script/changelog-github.cjs index 7669e589e8..ab08cf1332 100644 --- a/script/changelog-github.cjs +++ b/script/changelog-github.cjs @@ -5,45 +5,42 @@ const github = require("@changesets/changelog-github") const team = new Set([ "actions-user", - "kilo-maintainer[bot]", - "kiloconnect[bot]", - "kiloconnect-lite[bot]", "alexkgold", "arimesser", "arkadiykondrashov", "bturcotte520", - "catrielmuller", "chrarnoldus", "codingelves", - "darkogj", "dependabot[bot]", "dosire", + "Drixled", "DScdng", "emilieschario", "eshurakov", + "evanjacobson", "Helix-Kilo", "iscekic", "jeanduplessis", "jobrietbergen", + "johnnyeric", "jrf0110", - "kevinvandijk", - "alex-alecu", - "imanolmzd-svg", - "kilocode-bot", "kilo-code-bot", "kilo-code-bot[bot]", + "kilo-engineering", + "kilo-maintainer[bot]", + "kilocode-bot", + "kiloconnect-lite[bot]", + "kiloconnect[bot]", "kirillk", "lambertjosh", - "LigiaZ", "marius-kilocode", - "markijbema", "olearycrew", "pandemicsyn", "pedroheyerdahl", "RSO", "sbreitenother", + "St0rmz1", "suhailkc2025", - "Sureshkumars", ]) const base = github.default || github