@janvitos/pi-plan-build 0.1.47 → 0.1.48

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 CHANGED
@@ -26,7 +26,7 @@ Optionally keep the approved plan visible in a docked side panel while implement
26
26
 
27
27
  - New sessions start in **Build** mode.
28
28
  - Bare `Tab` cycles **Build → Plan → Build**, while active autocomplete dropdowns retain Pi's normal Tab completion.
29
- - 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. User messages carry a heavy dashed `┇` transcript rail in the mode used to submit them—using the active Pi theme's `warning` color in Plan and `thinkingLow` color in Buildand retain that color after mode changes and session restores. 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.
29
+ - 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. The active composer and submitted user messages use a continuous solid thin `│` left rail in both modes. These rails use the active Pi theme's `warning` color in Plan and `thinkingLow` color in Build, and submitted messages retain their original mode after mode changes and session restores. 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.
30
30
  - `/plan`, `/build`, and the `--plan` startup flag.
31
31
  - Per-session plans at `~/.pi/agent/plans/<session-id>.md`.
32
32
  - In Plan mode, built-in `edit` and `write` are restricted to the exact plan file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@janvitos/pi-plan-build",
3
- "version": "0.1.47",
3
+ "version": "0.1.48",
4
4
  "description": "Plan safely, approve explicitly, then implement here or in a clean session.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -139,7 +139,7 @@ export function installUserMessageRail(
139
139
  resolver: new TranscriptModeResolver(),
140
140
  formatRail: options.formatRail,
141
141
  getFallbackMode: options.getFallbackMode,
142
- glyph: "",
142
+ glyph: "",
143
143
  };
144
144
  globalState[PATCH_KEY] = state;
145
145
  }
@@ -148,7 +148,7 @@ export function installUserMessageRail(
148
148
  state.owner = owner;
149
149
  state.formatRail = options.formatRail;
150
150
  state.getFallbackMode = options.getFallbackMode;
151
- state.glyph = "";
151
+ state.glyph = "";
152
152
  // Reinstall from the preserved original on every extension load. This migrates
153
153
  // already-running processes away from stale decorator code without stacking wrappers.
154
154
  UserMessageComponent.prototype.render = function renderWithModeRail(width: number): string[] {