Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/config/roleIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ export const ROLE_IDS = {
// ===================
WG_IG_FACILITATORS: 'wg-ig-facilitators',

// ===================
// Service Accounts (GWS user only, no platform roles)
// ===================
SERVICE_ACCOUNTS: 'service-accounts',

// ===================
// Email Groups (Google only)
// ===================
Expand Down
10 changes: 10 additions & 0 deletions src/config/roles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,16 @@ export const ROLES: readonly Role[] = [
provisionUser: true,
},

// ===================
// Service Accounts (GWS user only, no platform roles)
// ===================
{
id: ROLE_IDS.SERVICE_ACCOUNTS,
description: 'Service accounts with a Google Workspace user only (no GitHub or Discord)',
provisionUser: true,
// No github/discord/google config - exists solely to provision GWS user accounts
},

// ===================
// Email Groups (Google only)
// ===================
Expand Down
7 changes: 7 additions & 0 deletions src/config/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -872,4 +872,11 @@ export const MEMBERS: readonly Member[] = [
email: 'davideramian@anthropic.com',
memberOf: [ROLE_IDS.ANTITRUST],
},
{
email: 'claude@modelcontextprotocol.io',
firstName: 'Claude',
lastName: 'AI',
googleEmailPrefix: 'claude',
memberOf: [ROLE_IDS.SERVICE_ACCOUNTS],
},
] as const;
Loading