@elyracode/coding-agent 0.3.1 → 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.
- package/CHANGELOG.md +11 -0
- package/dist/modes/interactive/components/startup-animation.d.ts +21 -0
- package/dist/modes/interactive/components/startup-animation.d.ts.map +1 -0
- package/dist/modes/interactive/components/startup-animation.js +90 -0
- package/dist/modes/interactive/components/startup-animation.js.map +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +7 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
|
@@ -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);
|