@lnittman/pi-interview 0.5.1 → 0.5.2

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.
@@ -116,7 +116,7 @@ export async function showInterviewUI(ctx, questions, config) {
116
116
  return;
117
117
  }
118
118
  // ── 'n' key: toggle notes ──
119
- if (data === "n") {
119
+ if (data === "i") {
120
120
  noteMode = true;
121
121
  noteText = notes.get(q().id) || "";
122
122
  refresh();
@@ -265,7 +265,7 @@ export async function showInterviewUI(ctx, questions, config) {
265
265
  // Help bar
266
266
  blank();
267
267
  if (!noteMode) {
268
- const hints = ["up/dn", "Space toggle", "Enter confirm", "n note"];
268
+ const hints = ["up/dn", "Space toggle", "Enter confirm", "i note"];
269
269
  if (questions.length > 1)
270
270
  hints.push("Tab next");
271
271
  hints.push("Esc dismiss");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lnittman/pi-interview",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "type": "module",
5
5
  "description": "Multiple-choice + notes interview for pi — ask-deep style structured prompting after every agent turn",
6
6
  "license": "MIT",