From 75289f0d5457142e53d08bfd2f5c8832316632ef Mon Sep 17 00:00:00 2001 From: Willem van den Ende Date: Tue, 21 Apr 2026 12:27:50 +0100 Subject: [PATCH] generated Readme --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9c68426 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# pi-extensions + +Experimental monorepo for [Pi coding agent](https://github.com/mariozechner/pi-coding-agent) extensions. + +## Extensions + +### `pi-turn-limit` + +Limits the number of turns (agent round-trips) in a Pi session. When the limit is exceeded, the agent aborts with an error notification. + +- **Default limit:** 25 turns +- **Override:** set `PI_MAX_TURNS` environment variable + +## Installation + +This is an early release — not on npm yet. To install from source: + +```bash +# Clone the repo +git clone +cd pi-extensions + +# Install dependencies +pnpm install + +# Link the extension (or reference it directly in your Pi config) +``` + +## Repository Status + +**Experimental.** APIs and behavior may change without notice. Feedback welcome.