@janvitos/pi-plan-build 0.1.24 → 0.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ A global [Pi coding agent](https://github.com/badlogic/pi-mono) extension that a
|
|
|
8
8
|
|
|
9
9
|
- New sessions start in **Build** mode.
|
|
10
10
|
- Bare `Tab` cycles **Build → Plan → Build**, while active autocomplete dropdowns retain Pi's normal Tab completion.
|
|
11
|
-
- The composer uses OpenCode prompt-inspired blue/orange mode colors on the rounded top-left border and left rail, complemented by Pi's border color on the right rail and rounded bottom-right border;
|
|
11
|
+
- The composer uses OpenCode prompt-inspired blue/orange mode colors on the rounded top-left border and left rail, complemented by Pi's border color on the right rail and rounded bottom-right border; rounded corners inherit their vertical rail colors while horizontal `╌` segments bridge the borders at both junctions, paired with a light vertical `┆` at the top right and a mode-specific bottom-left transition: thin `┆` in Plan and heavy `┇` in Build. It also includes a mode/model/thinking metadata row; cycling the thinking level updates this row without adding a duplicate status above the composer. The model is shown as `model-id [provider]` (for example, `gpt-5.6-luna [openai]`), with the model ID inheriting the terminal foreground like unselected entries in `/model` and the provider using the footer's dim text color. The footer keeps the remaining path and usage stats without duplicating model metadata.
|
|
12
12
|
- `/plan`, `/build`, and the `--plan` startup flag.
|
|
13
13
|
- Per-session plans at `~/.pi/agent/plans/<session-id>.md`.
|
|
14
14
|
- In Plan mode, built-in `edit` and `write` are restricted to the exact plan file.
|
package/index.ts
CHANGED
|
@@ -506,7 +506,7 @@ export default function planBuildModes(pi: ExtensionAPI): void {
|
|
|
506
506
|
width - 1,
|
|
507
507
|
"",
|
|
508
508
|
);
|
|
509
|
-
const topBorder = formatModeTopBorder(selectedMode, width,
|
|
509
|
+
const topBorder = formatModeTopBorder(selectedMode, width, this.borderColor("╮"));
|
|
510
510
|
return renderModeComposer(
|
|
511
511
|
lines,
|
|
512
512
|
topBorder,
|
|
@@ -514,7 +514,7 @@ export default function planBuildModes(pi: ExtensionAPI): void {
|
|
|
514
514
|
rightRail,
|
|
515
515
|
topRightVerticalTransition,
|
|
516
516
|
metadata,
|
|
517
|
-
|
|
517
|
+
formatModeRail(selectedMode, "╰"),
|
|
518
518
|
railWidth,
|
|
519
519
|
width,
|
|
520
520
|
{
|