@sixsevenai/ai-dlc-installer 1.5.1 → 1.6.0

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/cli.js CHANGED
@@ -24,6 +24,9 @@ var INSTALLER_VERSION = (() => {
24
24
  return "0.0.0-unknown";
25
25
  }
26
26
  })();
27
+ var RECOMMENDED_ENV_VARS = {
28
+ ENABLE_PROMPT_CACHING_1H: "1"
29
+ };
27
30
  var CLAUDE_DIRECTORY_NAME = ".claude";
28
31
  var SOURCE_LIBRARY_RELATIVE = "../library";
29
32
  async function resolveSourceDirectory() {
@@ -96,7 +99,7 @@ var WORKFLOW_STEPS = [
96
99
  { id: "confirm-installation", name: "Confirm Installation", order: 9, isSkippable: true },
97
100
  { id: "execute-installation", name: "Install Files", order: 10, isSkippable: false },
98
101
  { id: "validate-installation", name: "Validate Installation", order: 11, isSkippable: false },
99
- { id: "show-summary", name: "Show Summary", order: 12, isSkippable: false }
102
+ { id: "show-summary", name: "Show Summary with recommended environment variables", order: 12, isSkippable: false }
100
103
  ];
101
104
  function shouldSkipStep(stepId, options, isInteractive) {
102
105
  switch (stepId) {
@@ -4606,6 +4609,15 @@ async function executeShowSummary(ctx, options, theme) {
4606
4609
  console.log(` $ ${step.command}`);
4607
4610
  }
4608
4611
  }
4612
+ const envKeys = Object.keys(RECOMMENDED_ENV_VARS);
4613
+ if (envKeys.length > 0) {
4614
+ console.log("\n Recommended environment variables:");
4615
+ for (const key of envKeys) {
4616
+ const value = RECOMMENDED_ENV_VARS[key];
4617
+ console.log(` bash/zsh: export ${key}=${value}`);
4618
+ console.log(` PowerShell: $env:${key} = '${value}'`);
4619
+ }
4620
+ }
4609
4621
  }
4610
4622
  }
4611
4623
  return {