Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

gplay-user-managementgplay 用户管理

Agent Skill

gplay-user-management 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,847

周安装

74

GitHub Stars

33

下载量

598
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gplay-user-management(gplay 用户管理)
来源仓库:https://github.com/tamtom/gplay-cli-skills
仓库路径:skills/gplay-user-management
安装命令:
npx skills add https://github.com/tamtom/gplay-cli-skills --skill gplay-user-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tamtom/gplay-cli-skills --skill gplay-user-management

简介

gplay-user-management 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

User & Grant Management

Use this skill when you need to manage users and their permissions in Google Play Console.

Preconditions

  • Ensure credentials are set (gplay auth login or GPLAY_SERVICE_ACCOUNT env var).
  • Service account needs "Admin" permission to manage users and grants.
  • Developer account ID is required for user operations.

User Management

List all users

gplay users list \
  --developer-id DEVELOPER_ID

List users with pagination

gplay users list \
  --developer-id DEVELOPER_ID \
  --paginate

List users as table

gplay users list \
  --developer-id DEVELOPER_ID \
  --output table

Create a new user

gplay users create \
  --developer-id DEVELOPER_ID \
  --email user@example.com \
  --role admin

Create user with specific permissions

gplay users create \
  --developer-id DEVELOPER_ID \
  --email user@example.com \
  --role custom \
  --permissions "VIEW_APP_INFORMATION,MANAGE_STORE_LISTING"

Update a user

gplay users update \
  --developer-id DEVELOPER_ID \
  --email user@example.com \
  --role viewer

Delete a user

gplay users delete \
  --developer-id DEVELOPER_ID \
  --email user@example.com \
  --confirm

Grant Management

Grants control app-level access for users.

Create a grant (give user access to an app)

gplay grants create \
  --developer-id DEVELOPER_ID \
  --email user@example.com \
  --package com.example.app \
  --permissions "VIEW_APP_INFORMATION,VIEW_FINANCIAL_DATA"

Update a grant (change permissions)

gplay grants update \
  --developer-id DEVELOPER_ID \
  --email user@example.com \
  --package com.example.app \
  --permissions "VIEW_APP_INFORMATION,MANAGE_STORE_LISTING,MANAGE_RELEASES"

Delete a grant (revoke app access)

gplay grants delete \
  --developer-id DEVELOPER_ID \
  --email user@example.com \
  --package com.example.app \
  --confirm

Common Flags

User flags

FlagDescription
--developer-idDeveloper account ID (required)
--emailUser email address
--roleRole: admin, viewer, custom
--permissionsComma-separated permission list (for custom role)
--outputOutput format (json, table, markdown)
--paginateFetch all pages
--confirmRequired for destructive operations

Grant flags

FlagDescription
--developer-idDeveloper account ID (required)
--emailUser email address (required)
--packageApp package name (required)
--permissionsComma-separated permission list (required)
--confirmRequired for delete operations

Available Permissions

PermissionDescription
VIEW_APP_INFORMATIONView app info and download bulk reports
VIEW_FINANCIAL_DATAView financial data, orders, and cancellation surveys
MANAGE_ORDERSManage orders and subscriptions
MANAGE_STORE_LISTINGManage store listing, pricing, and distribution
MANAGE_RELEASESManage production and testing releases
MANAGE_APP_CONTENTManage app content rating and policy declarations
VIEW_APP_QUALITYView app quality information

Workflow Examples

Onboard a new team member

# 1. Create user account
gplay users create \
  --developer-id 1234567890 \
  --email newdev@example.com \
  --role custom \
  --permissions "VIEW_APP_INFORMATION"

# 2. Grant access to specific apps
gplay grants create \
  --developer-id 1234567890 \
  --email newdev@example.com \
  --package com.example.app1 \
  --permissions "VIEW_APP_INFORMATION,MANAGE_RELEASES"

gplay grants create \
  --developer-id 1234567890 \
  --email newdev@example.com \
  --package com.example.app2 \
  --permissions "VIEW_APP_INFORMATION,MANAGE_STORE_LISTING"

Offboard a team member

# Revoke all access by deleting the user
gplay users delete \
  --developer-id 1234567890 \
  --email departed@example.com \
  --confirm

Audit current permissions

# List all users in table format
gplay users list \
  --developer-id 1234567890 \
  --paginate \
  --output table

Promote user to release manager

gplay grants update \
  --developer-id 1234567890 \
  --email dev@example.com \
  --package com.example.app \
  --permissions "VIEW_APP_INFORMATION,MANAGE_RELEASES,MANAGE_STORE_LISTING"

Best Practices

  1. Principle of least privilege - Grant only the permissions each user needs.
  2. Use app-level grants - Prefer grants over account-level roles for fine-grained control.
  3. Audit regularly - Periodically review users and their permissions.
  4. Offboard promptly - Remove users immediately when they leave the team.
  5. Use --confirm carefully - Delete operations are irreversible.
  6. Automate onboarding - Script user creation and grant assignment for consistency.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.66%
按下载量换算207

Claude

28.56%
按下载量换算171

Cursor

20.27%
按下载量换算121

Gemini CLI

9.84%
按下载量换算59

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills