@phi-code-admin/phi-code 0.75.1 → 0.75.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.
@@ -985,7 +985,11 @@ export class InteractiveMode {
985
985
  return lines.join("\n");
986
986
  }
987
987
  showLoadedResources(options) {
988
- const showListing = options?.force || this.options.verbose || !this.settingsManager.getQuietStartup();
988
+ // Phi Code: by default we keep the startup terminal clean.
989
+ // The Context/Skills/Extensions panel only appears with --verbose or
990
+ // an explicit force (eg /reload). Use `phi --verbose` to see resources
991
+ // loaded at startup, or run `/agents`, `/skills`, `/keys list` etc.
992
+ const showListing = options?.force === true || this.options.verbose === true;
989
993
  const showDiagnostics = showListing || options?.showDiagnosticsWhenQuiet === true;
990
994
  if (!showListing && !showDiagnostics) {
991
995
  return;