# /grid:update - Update The Grid

---
name: grid:update
description: Update Grid to latest version
disable-model-invocation: true
argument-hint: ""
allowed-tools:
  - Bash
  - Read
---

Update The Grid to the latest version without leaving Claude Code.

## EXECUTION

Run this sequence:

```bash
# Create temp directory
rm -rf ~/.grid-temp 2>/dev/null
git clone --depth 1 https://github.com/JamesWeatherhead/grid.git ~/.grid-temp

# Copy updated commands
cp -r ~/.grid-temp/commands/* ~/.claude/commands/

# Copy updated agents
cp -r ~/.grid-temp/agents/* ~/.claude/agents/

# Get version
cat ~/.grid-temp/commands/grid/VERSION

# Cleanup
rm -rf ~/.grid-temp
```

## DISPLAY

Show this after update:

```
+============================================================+
|  THE GRID - Update Complete                                |
+============================================================+
|                                                            |
|  Commands updated: ~/.claude/commands/grid/                |
|  Agents updated:   ~/.claude/agents/grid-*.md              |
|                                                            |
|  Version: {version from VERSION file}                      |
|                                                            |
+============================================================+

MCP > Grid updated. Changes take effect immediately.

End of Line.
```
