
Agentuity Cli Git Account Remove
- 1 installs
- Updated May 13, 2026
- agentuity/example-tanstack-turborepo
agentuity-cli-git-account-remove is a Claude Code skill that documents the `agentuity git account remove` command for removing a GitHub account integration from an Agentuity organization.
About
agentuity-cli-git-account-remove is a Claude Code skill documenting the Agentuity CLI command that removes a GitHub account integration from an organization. It is a destructive, authenticated operation taking --org, --account, and --confirm options, and returns a JSON result with the removed status and integration ID. A developer uses it to disconnect a GitHub account from an Agentuity organization from the terminal.
- Documents `agentuity git account remove` to remove a GitHub account from an organization
- Destructive, authenticated operation with --org, --account, and --confirm options
- Returns a JSON result with removed status and integration ID
Agentuity Cli Git Account Remove by the numbers
- 1 all-time installs (skills.sh)
- Ranked #527 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Jul 7, 2026 (Skillselion catalog sync)
agentuity-cli-git-account-remove capabilities & compatibility
- Capabilities
- github integration remove · access management · cli command
- Works with
- github
- Use cases
- devops
- Runs
- Hosted SaaS
What agentuity-cli-git-account-remove says it does
Remove a GitHub account from your organization
bunx @agentuity/cli git account remove --org org_abc --account int_xyz --confirm
npx skills add https://github.com/agentuity/example-tanstack-turborepo --skill agentuity-cli-git-account-removeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 13, 2026 |
| Repository | agentuity/example-tanstack-turborepo ↗ |
What it does
Removing a GitHub account integration from an Agentuity organization via the CLI.
Who is it for?
Disconnecting a GitHub account integration from an Agentuity org
Skip if: Adding or listing GitHub integrations, or general Git operations in a repo
When should I use this skill?
You need to remove a connected GitHub account from an Agentuity organization.
What you get
The GitHub account integration removed from the organization, with a JSON confirmation.
- A JSON result confirming the account was removed
By the numbers
- 3 required options: --org, --account, --confirm
Files
Git Account Remove
Remove a GitHub account from your organization
Prerequisites
- Authenticated with
agentuity auth login
Usage
agentuity git account remove [options]Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
--org | string | Yes | - | Organization ID |
--account | string | Yes | - | GitHub integration ID to remove |
--confirm | boolean | Yes | - | Skip confirmation prompt |
Examples
Remove a GitHub account from your organization:
bunx @agentuity/cli git account removeRemove a specific account without prompts:
bunx @agentuity/cli git account remove --org org_abc --account int_xyz --confirmRemove and return JSON result:
bunx @agentuity/cli --json git account remove --org org_abc --account int_xyz --confirmOutput
Returns JSON object:
{
"removed": "boolean",
"orgId": "string",
"integrationId": "string"
}| Field | Type | Description |
|---|---|---|
removed | boolean | Whether the account was removed |
orgId | string | Organization ID |
integrationId | string | Integration ID that was removed |