# Gpc Team Access

> Manage Play Console users, app grants, roles, and revocations using gpc. Use when granting or revoking developer access.

- Skill: `megastep/gpc-team-access` (Agent Skill)
- Install (CLI): `npx skillmds@latest add megastep/gpc-team-access`
- Raw SKILL.md: https://api.skillmd.com/api/skills/megastep/gpc-team-access/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: megastep (https://skillmd.com/u/megastep)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/megastep/gpc-team-access

---


# Team Access

Use this skill for `users` workflows.

## List users

`gpc users list` does not require an app package:

```bash
gpc users list
gpc users list -o table
```

## Grant and revoke app access

Grant and revoke are package-specific:

```bash
gpc users grant --email developer@example.com --role releaseManager
gpc users revoke --email developer@example.com --confirm
```

Supported role values:
- `admin`
- `releaseManager`
- `appOwner`

## Agent behavior

- List current users before changing access.
- Use the least-privilege role that satisfies the request.
- Require explicit approval before revoking access.
- Do not claim every `users` command needs `--package`; only grant and revoke do.

