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.
@@ -11493,20 +11493,22 @@ async function create() {
11493
11493
  useFreeRescan = true;
11494
11494
  } else if (pricing.allowed) {
11495
11495
  spinner.stop();
11496
- const costText = pricing.estimatedCost && pricing.estimatedCost > 0 ? `$${pricing.estimatedCost.toFixed(2)}` : "pay-as-you-go (based on actual processing cost)";
11497
- console.log(
11498
- chalk8.yellow(
11499
- `
11500
- This repository already has context generated.
11501
- A full rescan will cost: ${chalk8.bold(costText)}`
11502
- )
11503
- );
11504
- if (pricing.costWarning) {
11505
- console.log(chalk8.dim(` ${pricing.costWarning}`));
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 paid full rescan?",
11511
+ message: "Proceed with full rescan?",
11510
11512
  default: false
11511
11513
  });
11512
11514
  if (!proceed) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repowisestage",
3
- "version": "0.0.57",
3
+ "version": "0.0.58",
4
4
  "type": "module",
5
5
  "description": "AI-optimized codebase context generator",
6
6
  "bin": {