# Agentuity CLI Git Account Remove

> Remove a GitHub account from your organization. Requires authentication

- Skill: `agentuity-docs/agentuity-cli-git-account-remove` (Agent Skill)
- Install (CLI): `npx skillmds@latest add agentuity-docs/agentuity-cli-git-account-remove`
- Raw SKILL.md: https://api.skillmd.com/api/skills/agentuity-docs/agentuity-cli-git-account-remove/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: Apache-2.0
- Author: agentuity (https://skillmd.com/u/agentuity-docs)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/agentuity-docs/agentuity-cli-git-account-remove

---


# Git Account Remove

Remove a GitHub account from your organization

## Prerequisites

- Authenticated with `agentuity auth login`

## Usage

```bash
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:

```bash
bunx @agentuity/cli git account remove
```

Remove a specific account without prompts:

```bash
bunx @agentuity/cli git account remove --org org_abc --account int_xyz --confirm
```

Remove and return JSON result:

```bash
bunx @agentuity/cli --json git account remove --org org_abc --account int_xyz --confirm
```

## Output

Returns JSON object:

```json
{
  "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 |

