From 8a4279f7735f4e33d146d0b32570aa95d5459af0 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Sat, 9 May 2026 17:56:29 +0200 Subject: [PATCH] Rename github URL refs to earendil-works/pi Pi moved to its new home at earendil-works on 2026-05-07 (https://pi.dev/news/2026/5/7/pi-has-a-new-home). URL substitution: https://github.com/mariozechner/pi-coding-agent -> https://github.com/earendil-works/pi (coding-agent now lives at packages/coding-agent inside the new monorepo root, but linking to the root is the canonical reference per the announcement post). Brew install references (`brew install pi-coding-agent`) left as-is: the homebrew formula still works at 0.73.1 and a tap update is tracked upstream at earendil-works/pi#2755. --- AGENTS.md | 4 ++-- README.md | 6 +++--- install.sh | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index fd8d04f..7be5c88 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -2,7 +2,7 @@ ## What this is -Harness-side bring-up for the [pi coding-agent](https://github.com/mariozechner/pi-coding-agent). +Harness-side bring-up for the [pi coding-agent](https://github.com/earendil-works/pi). Installs three pi-generic config artifacts into the right places and runs a couple of non-halting probes. Does not depend on MemPalace. @@ -150,7 +150,7 @@ echo "# local edit" >> ~/.oh-my-zsh/custom/pi-env.zsh - **pi must be installed upstream first.** `~/.pi/agent/` is created by pi on first run, not by this installer. Missing → exit 4 with - pointer to https://github.com/mariozechner/pi-coding-agent. + pointer to https://github.com/earendil-works/pi. - **`settings.example.json` is region-specific.** The shipped default uses `eu.` Bedrock inference-profile prefixes. Users on us-east need to swap to `us.` before first run, or pi will reject the model ID. diff --git a/README.md b/README.md index 77d7317..2bc34e7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # pi-toolkit -Harness-side bring-up for the [pi coding-agent](https://github.com/mariozechner/pi-coding-agent). +Harness-side bring-up for the [pi coding-agent](https://github.com/earendil-works/pi). **What's here:** - `pi-env.zsh` — loads `~/.config/pi/.env` into every shell so pi's Bedrock provider has `AWS_PROFILE` / `AWS_REGION` available. @@ -36,7 +36,7 @@ Requires pi to be installed first (`~/.pi/agent/` must exist). Install via: ```bash brew install pi-coding-agent # macOS -# or see https://github.com/mariozechner/pi-coding-agent for Linux +# or see https://github.com/earendil-works/pi for Linux pi --help # first run creates ~/.pi/agent/ ``` @@ -89,7 +89,7 @@ If you don't use a dotfiles repo, create the file manually after step 3 (install ```bash brew install pi-coding-agent # macOS -# or see https://github.com/mariozechner/pi-coding-agent for Linux +# or see https://github.com/earendil-works/pi for Linux pi --help # creates ~/.pi/agent/ ``` diff --git a/install.sh b/install.sh index a8388fb..0c855ed 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # install.sh — install pi-toolkit # -# Harness-side bring-up for the pi coding-agent (https://github.com/mariozechner/pi-coding-agent): +# Harness-side bring-up for the pi coding-agent (https://github.com/earendil-works/pi): # - pi-env.zsh : shell loader sourcing ~/.config/pi/.env so AWS_PROFILE # and AWS_REGION are in every shell that launches pi. # - keybindings.json : mosh/tmux-friendly newline bindings @@ -98,7 +98,7 @@ link_if_into_repo() { require_pi_installed() { if [[ ! -d "$PI_AGENT_DIR" ]]; then err "pi not detected at $PI_AGENT_DIR" - printf ' Install pi first: https://github.com/mariozechner/pi-coding-agent\n' + printf ' Install pi first: https://github.com/earendil-works/pi\n' printf ' Re-run this installer after `pi` has been started at least once\n' printf ' (first run creates ~/.pi/agent/).\n' exit 4