repowisestage 0.0.56 → 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.
@@ -9676,6 +9676,8 @@ async function startListener() {
9676
9676
  const freshConfig = await getListenerConfig();
9677
9677
  config2.repos = freshConfig.repos;
9678
9678
  config2.lspOverrides = freshConfig.lspOverrides;
9679
+ config2.lspEnabled = freshConfig.lspEnabled;
9680
+ config2.lspAutoWarm = freshConfig.lspAutoWarm;
9679
9681
  } catch {
9680
9682
  }
9681
9683
  }
@@ -11491,20 +11493,22 @@ async function create() {
11491
11493
  useFreeRescan = true;
11492
11494
  } else if (pricing.allowed) {
11493
11495
  spinner.stop();
11494
- const costText = pricing.estimatedCost && pricing.estimatedCost > 0 ? `$${pricing.estimatedCost.toFixed(2)}` : "pay-as-you-go (based on actual processing cost)";
11495
- console.log(
11496
- chalk8.yellow(
11497
- `
11498
- This repository already has context generated.
11499
- A full rescan will cost: ${chalk8.bold(costText)}`
11500
- )
11501
- );
11502
- if (pricing.costWarning) {
11503
- 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
+ );
11504
11507
  }
11508
+ console.log(chalk8.yellow(lines.join("\n")));
11505
11509
  const { confirm: confirm3 } = await import("@inquirer/prompts");
11506
11510
  const proceed = await confirm3({
11507
- message: "Proceed with paid full rescan?",
11511
+ message: "Proceed with full rescan?",
11508
11512
  default: false
11509
11513
  });
11510
11514
  if (!proceed) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repowisestage",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "type": "module",
5
5
  "description": "AI-optimized codebase context generator",
6
6
  "bin": {