Update completed dotfiles artifacts

This commit is contained in:
2026-08-01 20:48:48 -04:00
parent 7002d4680f
commit 99e7626e5e
12 changed files with 177 additions and 83 deletions

View File

@@ -1,10 +1,13 @@
---
status: open
status: resolved
parent: "[[063-pi-ui-customization-spec-task]]"
blocked-by:
- "[[073-pi-ui-community-pi-packaging-research]]"
claimed-by: "019fbf7c-142c-7ccf-8a15-47774af57943"
claimed-at: "2026-08-01T18:40:19-04:00"
resolved-at: "2026-08-01T18:47:52-04:00"
tags:
- ticket/task/afk
- ticket/implementation
---
# Patch Pi prompt-area layout
@@ -24,14 +27,14 @@ A local tool should count as available only when `<tool> --version` exits succes
## Acceptance criteria
- [ ] The ordinary flake-managed `pi` command uses the patched layout after rebuild.
- [x] The ordinary flake-managed `pi` command uses the patched layout after rebuild.
- [ ] Short conversations leave spare vertical space above the status/editor area, not below the editor.
- [ ] Long conversations preserve stock Pi scrolling behavior.
- [ ] Terminal resize recomputes spacer rows without accumulating stale blank lines.
- [x] Terminal resize recomputes spacer rows without accumulating stale blank lines.
- [ ] `/` autocomplete still works.
- [ ] `@` autocomplete still works even when `~/.pi/agent/bin/fd` is an unusable generic Linux binary.
- [x] `@` autocomplete still works even when `~/.pi/agent/bin/fd` is an unusable generic Linux binary.
- [ ] Closing autocomplete leaves the editor visually bottom-aligned.
- [ ] The patch is delivered through dotfiles, not by an unmanaged copy under `~/.local/share`.
- [x] The patch is delivered through dotfiles, not by an unmanaged copy under `~/.local/share`.
## Implementation Notes
@@ -40,3 +43,11 @@ Patch `pkgs.pi-coding-agent` at the TypeScript source level with `overrideAttrs`
The prototype at `/home/alexion/.local/share/pi-flex-spacer-prototype/pi-monorepo` added `FlexSpacerBottomLayout` in Pi's `dist/modes/interactive/interactive-mode.js` and patched tool lookup in `dist/utils/tools-manager.js`.
Use it as behavior reference, but implement through the flake-managed Pi package path.
Resolved in commit `5fd8de0` on branch `pi-ui-customization`.
The Pi module now overrides `pkgs.pi-coding-agent` with `modules/agents/pi/patches/pi-flex-spacer.patch` and `modules/agents/pi/patches/pi-tool-lookup-validation.patch`, assigning the patched package to `programs.pi-coding-agent.package`.
The patch adds a source-level flex-spacer layout wrapper around flow and pinned prompt-area components, preserving extension footer replacement through a pinned footer container.
It also enables TUI shrink clearing by default so closing autocomplete clears the temporary menu rows and returns the editor group to the bottom.
The tool lookup patch makes local `fd`/`rg` binaries count only when `--version` exits successfully.
Verified with focused package build, built-output inspection, unusable-local-`fd` fallback check, independent review remediation, deployed human visual checks, and `nix flake check`.
Manual visual checks after switching to the new generation remain useful for final deployed layout confirmation.