@elyracode/coding-agent 0.3.2 → 0.3.3

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.
@@ -53,6 +53,7 @@ import { ScopedModelsSelectorComponent } from "./components/scoped-models-select
53
53
  import { SessionSelectorComponent } from "./components/session-selector.js";
54
54
  import { SettingsSelectorComponent } from "./components/settings-selector.js";
55
55
  import { SkillInvocationMessageComponent } from "./components/skill-invocation-message.js";
56
+ import { StartupAnimation } from "./components/startup-animation.js";
56
57
  import { ToolExecutionComponent } from "./components/tool-execution.js";
57
58
  import { TreeSelectorComponent } from "./components/tree-selector.js";
58
59
  import { UserMessageComponent } from "./components/user-message.js";
@@ -391,6 +392,12 @@ export class InteractiveMode {
391
392
  this.ui.addChild(this.headerContainer);
392
393
  // Add header with keybindings from config (unless silenced)
393
394
  if (this.options.verbose || !this.settingsManager.getQuietStartup()) {
395
+ // Show animated logo on first startup
396
+ const animationComponent = new StartupAnimation(this.ui, this.version, () => {
397
+ this.headerContainer.removeChild(animationComponent);
398
+ this.ui.requestRender();
399
+ });
400
+ this.headerContainer.addChild(animationComponent);
394
401
  const logo = theme.bold(theme.fg("accent", APP_NAME)) + theme.fg("dim", ` v${this.version}`);
395
402
  // Build startup instructions using keybinding hint helpers
396
403
  const hint = (keybinding, description) => keyHint(keybinding, description);