---
slug: "pi-plugins-fast-mode"
source_type: "readme"
source_url: "https://cdn.jsdelivr.net/gh/k3dom/pi-plugins@master/README.md"
repo: "https://github.com/k3dom/pi-plugins"
source_file: "README.md"
branch: "master"
---
# pi-plugins

High-quality, single-purpose plugins for the
[pi-agent](https://github.com/earendil-works/pi) harness, built on
[Effect-TS](https://effect.website) primitives.

Each plugin does one thing well: clear inputs, predictable outputs, and an
implementation that leans on Effect for typed errors, resource safety, and composable
concurrency.

## Packages

| Package                                | Description                                                                                              | Tools / commands            |
| -------------------------------------- | -------------------------------------------------------------------------------------------------------- | --------------------------- |
| [`webfetch`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/webfetch)         | Fetches content over HTTP(S) and returns them as Markdown or raw HTML.                                   | `web_fetch`                 |
| [`subagent`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/subagent)         | Delegates a task to a fresh, headless pi instance with an isolated context window.                       | `subagent`                  |
| [`checkpoint`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/checkpoint)     | Keeps `/tree` conversation navigation and files on disk in sync with lightweight file checkpoints.       | `/checkpoint-cleanup`       |
| [`fast-mode`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/fast-mode)       | Toggles fast, priority inference for configured models on supported providers.                           | `/fast`, `--fast`           |
| [`speed`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/speed)               | Measures inference speed per request — tokens/sec and time to first token.                               | `/speed`                    |
| [`claude-oauth`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/claude-oauth) | Makes pi's Anthropic OAuth requests match the current Claude Code client so OAuth login works correctly. | —                           |
| [`exit`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/exit)                 | Exits pi when `exit` or `quit` is submitted as the whole prompt.                                         | —                           |
| [`prompts`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/prompts)           | A collection of prompt templates, invoked as slash commands.                                             | `/simplify`, `/code-review` |
| [`usage`](https://github.com/k3dom/pi-plugins/tree/HEAD/plugins/usage)               | Shows subscription usage/rate limits for Claude and OpenAI Codex plans.                                  | `/usage`                    |

## Requirements

Pi **0.80.10 or newer** is required.

## Usage

Install a published plugin with pi-agent:

```bash
pi install npm:@pi-plugins/webfetch
```

Or try it for a single run without adding it to settings:

```bash
pi -e npm:@pi-plugins/webfetch
```

For local development, load a plugin directly from its package directory:

```bash
pi -e ./plugins/webfetch
```

Then ask pi to use the tool it registers — for example, to fetch a URL.

## Nix

This repo contains a Nix flake with a development shell for local checks.

```bash
nix develop
ci
```

## License

[MIT](https://github.com/k3dom/pi-plugins/tree/HEAD/LICENSE)
