openanima 0.3.1 → 0.3.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.
- package/dist/bin/index.js +7 -4
- package/package.json +1 -1
package/dist/bin/index.js
CHANGED
|
@@ -7345,7 +7345,10 @@ async function goCommand(options) {
|
|
|
7345
7345
|
}
|
|
7346
7346
|
printSectionHeader(`Phase 2: Personality Test (${questions.length} questions)`);
|
|
7347
7347
|
console.log(
|
|
7348
|
-
chalk4.dim("
|
|
7348
|
+
chalk4.dim(" Read each question carefully. Explain your thinking first,")
|
|
7349
|
+
);
|
|
7350
|
+
console.log(
|
|
7351
|
+
chalk4.dim(" then choose A or B based on your reasoning.")
|
|
7349
7352
|
);
|
|
7350
7353
|
console.log(
|
|
7351
7354
|
chalk4.dim(" Your reasoning stays local and is never uploaded.")
|
|
@@ -7359,12 +7362,12 @@ async function goCommand(options) {
|
|
|
7359
7362
|
console.log(` A) ${q.optionA}`);
|
|
7360
7363
|
console.log(` B) ${q.optionB}`);
|
|
7361
7364
|
console.log("");
|
|
7362
|
-
const
|
|
7363
|
-
answers.push({ questionId: q.id, answer: choice });
|
|
7364
|
-
const reason = (await ask(rl, " Brief reason: ")).trim();
|
|
7365
|
+
const reason = (await ask(rl, " Explain your thinking about this question first:\n > ")).trim();
|
|
7365
7366
|
if (reason) {
|
|
7366
7367
|
reasons.set(q.id, reason);
|
|
7367
7368
|
}
|
|
7369
|
+
const choice = await askChoice(rl, " Based on your reasoning, choose (A/B): ", ["A", "B"]);
|
|
7370
|
+
answers.push({ questionId: q.id, answer: choice });
|
|
7368
7371
|
printProgress(i + 1, questions.length);
|
|
7369
7372
|
console.log("");
|
|
7370
7373
|
const encouragement = getEncouragement(i + 1, questions.length);
|