@janvitos/pi-plan-build 0.1.34 → 0.1.36
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/package.json +1 -1
- package/plan-panel.ts +0 -1
- package/prompts.ts +1 -1
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ When Pi uses `"tuiMode": "fullscreen"` and the saved plan contains top-level `-
|
|
|
93
93
|
|
|
94
94
|
The passive 64-column right panel reserves terminal columns, so the transcript and editor reflow instead of being covered. Long step instructions wrap across aligned continuation rows rather than being clipped. It never accepts focus or keyboard input and collapses below 132 terminal columns. The panel is a visual status aid only; all control happens through ordinary prompts. The agent interprets intent contextually, so these are examples rather than required commands:
|
|
95
95
|
|
|
96
|
-
- “Implement the next step
|
|
96
|
+
- “Implement the next step,” “Start step 2,” or simply “Approved” / “Go ahead.”
|
|
97
97
|
- “Step 1 is complete,” “I verified that one,” or “I already handled this.”
|
|
98
98
|
- “Change step 3 to …” or “Skip this step.”
|
|
99
99
|
- “Pause the plan,” “hide the plan,” or “show the plan.”
|
package/package.json
CHANGED
package/plan-panel.ts
CHANGED
|
@@ -67,7 +67,6 @@ export class PlanPanel implements Component {
|
|
|
67
67
|
if (this.state.status === "completed") lines.push(pad(this.theme.fg("success", "Plan complete")));
|
|
68
68
|
else if (this.state.status === "paused") lines.push(pad("Tell the agent to resume, cancel, or hide the plan."));
|
|
69
69
|
else if (current?.status === "ready") lines.push(pad("Tell the agent to implement, complete, edit, skip, cancel, or hide this step."));
|
|
70
|
-
else lines.push(pad("Plan progress updates automatically from your prompts."));
|
|
71
70
|
lines.push(border(`╰${"─".repeat(inner)}╯`));
|
|
72
71
|
return lines.map((line) => truncateToWidth(line, safeWidth, ""));
|
|
73
72
|
}
|
package/prompts.ts
CHANGED
|
@@ -71,7 +71,7 @@ Step-by-step execution is waiting for the user's natural-language instruction. N
|
|
|
71
71
|
Current progress:
|
|
72
72
|
${progress}
|
|
73
73
|
|
|
74
|
-
Interpret the user's intent contextually rather than requiring exact phrases.
|
|
74
|
+
Interpret the user's intent contextually rather than requiring exact phrases. In this waiting state, a clear approval or proceed statement such as “Approved,” “Go ahead,” or “Proceed” starts the current ready step. A statement that a ready step is already finished can use the complete action instead. If multiple materially different actions are plausible, ask a brief clarification. Cancellation is always available when the user clearly wants to stop. Do not advance based on hypothetical, uncertain, or unrelated discussion. The sidebar is a passive visual aid and cannot receive input.
|
|
75
75
|
</system-reminder>`;
|
|
76
76
|
}
|
|
77
77
|
|