Metadata-Version: 2.4
Name: imbue-mngr-pi-coding
Version: 0.1.1
Summary: Pi coding agent type plugin for mngr
Requires-Python: >=3.12
Requires-Dist: imbue-mngr==0.2.4
Description-Content-Type: text/markdown

# mngr-pi-coding

Plugin that registers the `pi-coding` agent type for mngr.

[Pi](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) is a minimal terminal coding harness. This plugin lets you run it as an mngr agent.

## Usage

```bash
mngr create my-agent pi-coding
```

Pass arguments to the pi command with `--`:

```bash
mngr create my-agent pi-coding -- --help
```

## Configuration

Define a custom variant in your mngr config (`mngr config edit`):

```toml
[agent_types.my_pi]
parent_type = "pi-coding"
cli_args = "--some-flag"
```

Then create agents with your custom type:

```bash
mngr create my-agent my_pi
```

See the [mngr agent types documentation](https://github.com/imbue-ai/mngr/blob/main/libs/mngr/docs/concepts/agent_types.md) for more details.
