11---
2- name : localpibox -repo-workflow
2+ name : lpb-stack -repo-workflow
33description : Manage the 6 LocalPibox repos — CI-only versioning, hooks, image builds, lpb.py.
44---
55# LocalPibox Repository Workflow
@@ -60,11 +60,11 @@ Standardized workflow for managing the 6 LocalPibox repositories, with conventio
6060Workspace (single repo):
6161 /home/lpb/workspace/devstack (devstack + lpb.py + Dockerfile)
6262
63- Agent config (cloned from localpibox /config):
63+ Agent config (cloned from lpb-stack /config):
6464 /home/lpb/.pi/agent/ (settings.json, AGENTS.md, skills/, agents/)
6565
6666Extension clones:
67- /home/lpb/.pi/agent/git/github.com/localpibox /
67+ /home/lpb/.pi/agent/git/github.com/lpb-stack /
6868 lemonade-pi-plugin (lpb-dev)
6969 lpb-memory (dev)
7070 pi-subagents (lpb-dev)
@@ -158,22 +158,22 @@ Same pattern — template in repo, user config on host:
158158
159159ALL LocalPibox-specific commits MUST use:
160160```
161- Author: localpibox <localpibox @gmail.com>
161+ Author: lpb-stack <lpb-stack @gmail.com>
162162```
163163
164164Never use ` lpb ` , ` LocalPibox ` , or other aliases.
165165
166166### Fixing wrong authors
167167``` bash
168168# Single commit
169- git commit --amend --author=" localpibox <localpibox @gmail.com>" --no-edit
169+ git commit --amend --author=" lpb-stack <lpb-stack @gmail.com>" --no-edit
170170
171171# Entire repo history
172172FILTER_BRANCH_SQUELCH_WARNING=1 git filter-branch -f --env-filter '
173- export GIT_AUTHOR_NAME="localpibox "
174- export GIT_AUTHOR_EMAIL="localpibox @gmail.com"
175- export GIT_COMMITTER_NAME="localpibox "
176- export GIT_COMMITTER_EMAIL="localpibox @gmail.com"
173+ export GIT_AUTHOR_NAME="lpb-stack "
174+ export GIT_AUTHOR_EMAIL="lpb-stack @gmail.com"
175+ export GIT_COMMITTER_NAME="lpb-stack "
176+ export GIT_COMMITTER_EMAIL="lpb-stack @gmail.com"
177177' -- --all
178178```
179179
@@ -256,8 +256,8 @@ lpb-config --tag main workspace ensure --fix
256256### Quick manual branch switch
257257``` bash
258258cd /home/lpb/workspace/devstack && git checkout dev
259- cd /home/lpb/.pi/agent/git/github.com/localpibox /pi-subagents && git checkout lpb-dev
260- cd /home/lpb/.pi/agent/git/github.com/localpibox /lemonade-pi-plugin && git checkout lpb-dev
259+ cd /home/lpb/.pi/agent/git/github.com/lpb-stack /pi-subagents && git checkout lpb-dev
260+ cd /home/lpb/.pi/agent/git/github.com/lpb-stack /lemonade-pi-plugin && git checkout lpb-dev
261261```
262262
263263### Creating lpb-dev with upstream base
@@ -292,7 +292,7 @@ git push origin --delete <old-tag>
292292Before declaring a repo clean:
293293- [ ] Default branch set correctly (` dev ` or ` lpb-dev ` )
294294- [ ] Working on default branch
295- - [ ] All commits from ` localpibox <localpibox @gmail.com>`
295+ - [ ] All commits from ` lpb-stack <lpb-stack @gmail.com>`
296296- [ ] Stale branches deleted
297297- [ ] Old LPB tags cleaned up
298298- [ ] ` lpb ` branch exists (receives clean merges from ` lpb-dev ` when stable)
330330` ` `
331331
332332### Build images
333- - ` ghcr.io/localpibox /devstack:cli` — Base dev environment + Pi CLI
334- - ` ghcr.io/localpibox /devstack:web` — Extends cli + VSCodium server
333+ - ` ghcr.io/lpb-stack /devstack:cli` — Base dev environment + Pi CLI
334+ - ` ghcr.io/lpb-stack /devstack:web` — Extends cli + VSCodium server
335335
336336# ## CI does NOT use workspace/pi
337337- CI clones pi to `/opt/pi-src` during Docker build
@@ -348,7 +348,7 @@ The devstack image contains:
348348- Support scripts
349349
350350Extensions loaded from :
351- - ` /home/lpb/.pi/agent/git/github.com/localpibox /`
351+ - ` /home/lpb/.pi/agent/git/github.com/lpb-stack /`
352352- Or symlinked via `workspace/` → extension repos
353353
354354Settings pinned in `~/.pi/agent/settings.json` under `"packages"` array.
0 commit comments