# pi-tool-display-summary

Pi extension that adds a required `displaySummary` field to built-in tool calls.

The field is intended for UIs that consume Pi RPC events and want to show a human-friendly progress phrase instead of raw tool arguments. For example, a `read` call can include:

```json
{
  "path": "docs/us/raw/tax-code.pdf",
  "displaySummary": "Checking the Colorado tax code"
}
```

The extension strips `displaySummary` before delegating to Pi's original built-in tool implementations, so tool execution behavior is unchanged.

## Usage

Run directly:

```bash
pi -e git:github.com/mertdeveci5/pi-tool-display-summary@v0.1.0
```

Or install it:

```bash
pi install git:github.com/mertdeveci5/pi-tool-display-summary@v0.1.0
```

## Tools Wrapped

- `read`
- `bash`
- `edit`
- `write`
- `grep`
- `find`
- `ls`
