> ## Documentation Index
> Fetch the complete documentation index at: https://gx.mubbie.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# gx

> Git Productivity Toolkit

**gx** is a command-line tool that bundles 25 focused productivity commands into a single binary. Each command solves a specific daily git friction point.

<CardGroup cols={3}>
  <Card title="Everyday" icon="keyboard" href="/commands/undo">
    undo, oops, switch, context, sweep, shelf
  </Card>

  <Card title="Insight" icon="magnifying-glass" href="/commands/who">
    who, recap, drift, conflicts, handoff, view
  </Card>

  <Card title="Stacking" icon="layer-group" href="/stacking/overview">
    stack, sync, retarget, graph, up, down, top, bottom, parent
  </Card>
</CardGroup>

## Design Principles

* Every command does one thing well
* All destructive commands require confirmation and support `--dry-run`
* Colored, human-friendly output
* Zero configuration required
* No external services or authentication needed
* Works in any git repo

## Quick Example

```bash theme={null}
gx context                    # See where you are
gx switch                     # Pick a branch interactively
gx undo                       # Undo the last git action
gx oops -m "better message"   # Fix the last commit
gx shelf push "wip"           # Stash with a name you'll remember
gx who                        # Who knows this repo best
```
