{"id":28619625,"url":"https://github.com/wp-cli/super-admin-command","last_synced_at":"2025-06-12T04:40:49.699Z","repository":{"id":45040891,"uuid":"88049143","full_name":"wp-cli/super-admin-command","owner":"wp-cli","description":"Lists, adds, or removes super admin users on a multisite installation.","archived":false,"fork":false,"pushed_at":"2025-05-12T18:29:08.000Z","size":8574,"stargazers_count":11,"open_issues_count":0,"forks_count":15,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-05-12T19:46:26.738Z","etag":null,"topics":["admin","cli","hacktoberfest","security","superadmin","wordpress","wp-cli","wp-cli-package"],"latest_commit_sha":null,"homepage":"","language":"Gherkin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wp-cli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-04-12T12:27:29.000Z","updated_at":"2025-05-12T18:29:11.000Z","dependencies_parsed_at":"2024-05-04T06:28:46.309Z","dependency_job_id":"8d190180-a323-47d7-bff2-0ad8bb211c8b","html_url":"https://github.com/wp-cli/super-admin-command","commit_stats":{"total_commits":423,"total_committers":44,"mean_commits":9.613636363636363,"dds":0.7163120567375887,"last_synced_commit":"8e7202b28c80f9181ef12533d1e0cd3b5ace5b07"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/wp-cli/super-admin-command","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fsuper-admin-command","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fsuper-admin-command/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fsuper-admin-command/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fsuper-admin-command/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wp-cli","download_url":"https://codeload.github.com/wp-cli/super-admin-command/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-cli%2Fsuper-admin-command/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259400435,"owners_count":22851809,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin","cli","hacktoberfest","security","superadmin","wordpress","wp-cli","wp-cli-package"],"created_at":"2025-06-12T04:40:46.763Z","updated_at":"2025-06-12T04:40:49.674Z","avatar_url":"https://github.com/wp-cli.png","language":"Gherkin","readme":"wp-cli/super-admin-command\n==========================\n\nLists, adds, or removes super admin users on a multisite installation.\n\n[![Testing](https://github.com/wp-cli/super-admin-command/actions/workflows/testing.yml/badge.svg)](https://github.com/wp-cli/super-admin-command/actions/workflows/testing.yml)\n\nQuick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing) | [Support](#support)\n\n## Using\n\nThis package implements the following commands:\n\n### wp super-admin\n\nLists, adds, or removes super admin users on a multisite installation.\n\n~~~\nwp super-admin\n~~~\n\n**EXAMPLES**\n\n    # List user with super-admin capabilities.\n    $ wp super-admin list\n    supervisor\n    administrator\n\n    # Grant super-admin privileges to the user.\n    $ wp super-admin add superadmin2\n    Success: Granted super-admin capabilities to 1 user.\n\n    # Revoke super-admin privileges from the user.\n    $ wp super-admin remove superadmin2\n    Success: Revoked super-admin capabilities from 1 user.\n\n\n\n### wp super-admin add\n\nGrants super admin privileges to one or more users.\n\n~~~\nwp super-admin add \u003cuser\u003e...\n~~~\n\n**OPTIONS**\n\n\t\u003cuser\u003e...\n\t\tOne or more user IDs, user emails, or user logins.\n\n**EXAMPLES**\n\n    # Grant super-admin privileges to the user.\n    $ wp super-admin add superadmin2\n    Success: Granted super-admin capabilities to 1 user.\n\n\n\n### wp super-admin list\n\nLists users with super admin capabilities.\n\n~~~\nwp super-admin list [--format=\u003cformat\u003e]\n~~~\n\n**OPTIONS**\n\n\t[--format=\u003cformat\u003e]\n\t\tRender output in a particular format.\n\t\t---\n\t\tdefault: list\n\t\toptions:\n\t\t  - list\n\t\t  - table\n\t\t  - csv\n\t\t  - json\n\t\t  - count\n\t\t  - ids\n\t\t  - yaml\n\t\t---\n\n**EXAMPLES**\n\n    # List user with super-admin capabilities.\n    $ wp super-admin list\n    supervisor\n    administrator\n\n\n\n### wp super-admin remove\n\nRemoves super admin privileges from one or more users.\n\n~~~\nwp super-admin remove \u003cuser\u003e...\n~~~\n\n**OPTIONS**\n\n\t\u003cuser\u003e...\n\t\tOne or more user IDs, user emails, or user logins.\n\n**EXAMPLES**\n\n    # Revoke super-admin privileges from the user.\n    $ wp super-admin remove superadmin2\n    Success: Revoked super-admin capabilities from 1 user.\n\n## Installing\n\nThis package is included with WP-CLI itself, no additional installation necessary.\n\nTo install the latest version of this package over what's included in WP-CLI, run:\n\n    wp package install git@github.com:wp-cli/super-admin-command.git\n\n## Contributing\n\nWe appreciate you taking the initiative to contribute to this project.\n\nContributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.\n\nFor a more thorough introduction, [check out WP-CLI's guide to contributing](https://make.wordpress.org/cli/handbook/contributing/). This package follows those policy and guidelines.\n\n### Reporting a bug\n\nThink you’ve found a bug? We’d love for you to help us get it fixed.\n\nBefore you create a new issue, you should [search existing issues](https://github.com/wp-cli/super-admin-command/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.\n\nOnce you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/wp-cli/super-admin-command/issues/new). Include as much detail as you can, and clear steps to reproduce if possible. For more guidance, [review our bug report documentation](https://make.wordpress.org/cli/handbook/bug-reports/).\n\n### Creating a pull request\n\nWant to contribute a new feature? Please first [open a new issue](https://github.com/wp-cli/super-admin-command/issues/new) to discuss whether the feature is a good fit for the project.\n\nOnce you've decided to commit the time to seeing your pull request through, [please follow our guidelines for creating a pull request](https://make.wordpress.org/cli/handbook/pull-requests/) to make sure it's a pleasant experience. See \"[Setting up](https://make.wordpress.org/cli/handbook/pull-requests/#setting-up)\" for details specific to working on this package locally.\n\n## Support\n\nGitHub issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support\n\n\n*This README.md is generated dynamically from the project's codebase using `wp scaffold package-readme` ([doc](https://github.com/wp-cli/scaffold-package-command#wp-scaffold-package-readme)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-cli%2Fsuper-admin-command","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwp-cli%2Fsuper-admin-command","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-cli%2Fsuper-admin-command/lists"}