repowisestage 0.0.57 → 0.0.58
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/repowise.js +13 -11
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -11493,20 +11493,22 @@ async function create() {
|
|
|
11493
11493
|
useFreeRescan = true;
|
|
11494
11494
|
} else if (pricing.allowed) {
|
|
11495
11495
|
spinner.stop();
|
|
11496
|
-
const
|
|
11497
|
-
|
|
11498
|
-
|
|
11499
|
-
|
|
11500
|
-
|
|
11501
|
-
|
|
11502
|
-
|
|
11503
|
-
)
|
|
11504
|
-
|
|
11505
|
-
|
|
11496
|
+
const lines = [
|
|
11497
|
+
"\n This repository already has full context.",
|
|
11498
|
+
" A full rescan re-runs the complete AI analysis",
|
|
11499
|
+
" (knowledge graph + all context docs).",
|
|
11500
|
+
"",
|
|
11501
|
+
" Billed on ACTUAL processing usage after completion."
|
|
11502
|
+
];
|
|
11503
|
+
if (pricing.lastFullScanCost && pricing.lastFullScanCost > 0) {
|
|
11504
|
+
lines.push(
|
|
11505
|
+
` (For reference, your last full scan used ~$${pricing.lastFullScanCost.toFixed(0)} of processing.)`
|
|
11506
|
+
);
|
|
11506
11507
|
}
|
|
11508
|
+
console.log(chalk8.yellow(lines.join("\n")));
|
|
11507
11509
|
const { confirm: confirm3 } = await import("@inquirer/prompts");
|
|
11508
11510
|
const proceed = await confirm3({
|
|
11509
|
-
message: "Proceed with
|
|
11511
|
+
message: "Proceed with full rescan?",
|
|
11510
11512
|
default: false
|
|
11511
11513
|
});
|
|
11512
11514
|
if (!proceed) {
|